/* =========================================================
   👑 ULTRA-PREMIUM LUXURY DESIGN TOKENS (APPLE & STRIPE LEVEL)
   ========================================================= */
:root {
    --color-bg: #02040A; /* Deeper Black for maximum contrast */
    --color-surface: rgba(255, 255, 255, 0.015);
    --color-border: rgba(255, 255, 255, 0.05);
    --color-text-pure: #FFFFFF;
    --color-text-muted: #8B949E;
    --cyan-glow: #00F5FF; /* Pure Neon Cyan */
    --gold-glow: #FFB800; /* Pure Liquid Gold */
    --grad-primary: linear-gradient(135deg, #00F5FF 0%, #0066FF 100%);
    --grad-gold: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    --grad-text: linear-gradient(90deg, #00F5FF, #0066FF, #FFB800);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-pure);
    overflow-x: hidden;
    position: relative;
}

/* 🌌 Cinematic Moving Ambient Glow Mechanics */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    -webkit-filter: blur(160px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -100px;
    animation: luxuryGlowOne 12s ease-in-out infinite alternate;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: 40vh;
    left: -200px;
    animation: luxuryGlowTwo 15s ease-in-out infinite alternate;
}

@keyframes luxuryGlowOne {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 60px) scale(1.1); }
}
@keyframes luxuryGlowTwo {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -40px) scale(0.9); }
}

/* 🟢 Floating WhatsApp Button Style */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: 0.3s ease;
}
.whatsapp-float:hover { 
    transform: scale(1.05) translateY(-5px); 
}

/* 🕶️ Smoked Frosted Glass Navigation Bar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--color-border);
    background-color: rgba(2, 4, 10, 0.6);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

header .logo {
    font-size: 22px;
    font-weight: 800;
}

header .logo span { color: var(--gold-glow); }

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    margin-left: 35px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}

/* Metallic Gold Call-To-Action Button */
.nav-links .nav-btn {
    background: var(--grad-gold);
    color: #02040A;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
}

.mobile-menu-icon { display: none; color: white; font-size: 22px; cursor: pointer; }

/* 🚀 High-End Hero Framework */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    gap: 40px;
}

.hero-content { flex: 1; }

.executive-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--cyan-glow);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--cyan-glow);
    animation: luxuryPulse 1.8s infinite alternate;
}

@keyframes luxuryPulse {
    0% { transform: scale(0.7); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 1; }
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-content p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 15px; }

.btn-primary {
    padding: 15px 30px;
    background: var(--grad-primary);
    color: white;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    padding: 15px 30px;
    background: transparent;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    display: inline-block;
}

/* =========================================================
   📸 3D LIQUID ORBIT CEO DISPLAY ENGINE (STRIPE MASTER LEVEL)
   ========================================================= */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    perspective: 1200px; 
    z-index: 10;
}

.ceo-luxury-card {
    position: relative;
    width: 390px;
    height: 440px; 
    border-radius: 32px;
    background: #0D1117;
    padding: 6px; 
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.9);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    overflow: visible; 
}

/* 🌀 Liquid Neon Orbit Border */
.ceo-luxury-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, var(--cyan-glow), transparent, var(--gold-glow));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: 0.5s;
}

.ceo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px; 
    filter: brightness(0.95) contrast(1.05);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glow-overlay {
    position: absolute;
    inset: 6px;
    border-radius: 26px;
    background: linear-gradient(180deg, transparent 40%, rgba(2, 4, 10, 0.4) 70%, rgba(2, 4, 10, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
    transition: 0.5s;
}

/* 🕶️ Hover 3D Shift */
.ceo-luxury-card:hover {
    transform: translateY(-14px) rotateX(6deg) rotateY(-8deg) scale(1.02);
    box-shadow: 
        -20px 40px 80px rgba(0, 245, 255, 0.1), 
        20px 40px 80px rgba(255, 184, 0, 0.1),  
        0 50px 100px rgba(0, 0, 0, 0.9);
}

.ceo-luxury-card:hover .ceo-img {
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.1);
}

/* 🎖️ Floating Luxury Analytics Badge */
.floating-luxury-badge {
    position: absolute;
    bottom: 25px;
    left: -40px; 
    background: rgba(2, 4, 10, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transform: translateZ(40px); 
    animation: luxuryFloatEffect 6s ease-in-out infinite;
}

.badge-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(0, 245, 255, 0.06);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-box i {
    color: var(--cyan-glow);
    font-size: 18px;
    text-shadow: 0 0 10px var(--cyan-glow);
}

.floating-luxury-badge h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-text-pure);
    letter-spacing: -0.2px;
}

.floating-luxury-badge p {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

@keyframes luxuryFloatEffect {
    0%, 100% { transform: translateY(0) translateZ(40px); }
    50% { transform: translateY(-12px) translateZ(55px); }
}

/* =========================================================
   🏅 METALLIC TRUST ROW ARCHITECTURE (100% RESPONSIVE)
   ========================================================= */
.trust-row {
    padding: 50px 8%;
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(180deg, #02040A 0%, #050814 100%);
}

.trust-row p {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 30px;
    font-weight: 700;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-badge-item {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text-muted);
    letter-spacing: -0.3px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.trust-badge-item:hover {
    color: var(--color-text-pure);
    border-color: rgba(0, 245, 255, 0.2);
    background: rgba(0, 245, 255, 0.01);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.05);
    transform: translateY(-2px);
}

/* 🚀 COUNTDOWN SECTION STYLE */
.countdown-section {
    padding: 80px 8%;
    background: rgba(255, 184, 0, 0.02);
    border-bottom: 1px solid var(--color-border);
}

.countdown-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.launch-badge {
    color: var(--gold-glow);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.countdown-container h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.countdown-container p {
    color: var(--color-text-muted);
    max-width: 500px;
    font-size: 14.5px;
    line-height: 1.6;
}

.timer-display { display: flex; gap: 20px; }

.time-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    padding: 15px;
    border-radius: 12px;
    min-width: 85px;
}

.time-box span {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-glow);
    display: block;
}

.time-box p {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* 👑 MODERN 2X2 MATRIX ABOUT US ARCHITECTURE */
.about-section { padding: 120px 8%; }

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-stats-matrix {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 45%;
    width: 100%;
}

.matrix-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.matrix-icon {
    font-size: 24px;
    color: var(--color-text-muted);
    display: inline-block;
    margin-bottom: 15px;
}

.matrix-card h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text-pure);
}

.matrix-card p {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.matrix-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.glow-card {
    border-color: rgba(0, 245, 255, 0.15);
    background: rgba(0, 245, 255, 0.01);
}
.glow-card h3 {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.unique-glow-card {
    border-color: rgba(255, 184, 0, 0.2);
    background: rgba(255, 184, 0, 0.01);
}
.unique-glow-card h3 {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text-content { flex: 1.2; }
.about-text-content h2 { font-size: 44px; font-weight: 800; margin-bottom: 30px; line-height: 1.15; }
.about-text-content p { color: var(--color-text-muted); font-size: 16.5px; line-height: 1.85; margin-bottom: 22px; }
.about-text-content p strong { color: white; }

/* Expertise Section Architecture */
.expertise-section { padding: 100px 8%; border-top: 1px solid var(--color-border); }
.section-title { text-align: center; margin-bottom: 60px; }
.sub-title { font-size: 11px; font-weight: 800; letter-spacing: 3px; color: var(--gold-glow); display: block; margin-bottom: 10px; }
.section-title h2 { font-size: 40px; font-weight: 800; }
.section-title p { color: var(--color-text-muted); margin-top: 15px; }

.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.expertise-card { background: rgba(255, 255, 255, 0.01); border: 1px solid var(--color-border); padding: 40px 35px; border-radius: 16px; }
.expertise-card i { font-size: 28px; color: var(--gold-glow); margin-bottom: 20px; display: block; }
.expertise-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; }
.expertise-card p { color: var(--color-text-muted); font-size: 14.5px; line-height: 1.65; }

/* =========================================================
   💼 ULTRA-SHARP 3D PORTFOLIO ARCHITECTURE (UPGRADED)
   ========================================================= */
.portfolio-section { 
    padding: 120px 8%; 
    border-top: 1px solid var(--color-border); 
    background: #02040A; 
}

.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px; 
}

/* Premium Card Body styling */
.portfolio-card { 
    background: #090C15; /* සයිට් එකේ කළු පසුබිමෙන් මිදී වෙනම ඉස්මතු වීමට Deeper Blue/Black එකක් */
    border-radius: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    overflow: hidden; 
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* මූලික සෙවනැල්ල */
}

/* Image Container with Cinematic Fade */
.card-img-container { 
    height: 280px; /* පින්තූරය තවත් පැහැදිලිව පෙනීමට උස වැඩි කළා */
    position: relative; 
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.03); 
}

/* පින්තූරය සහ අකුරු වෙන් කරන අඳුරු සිනමාටික් Gradient එක */
.card-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, #090C15 100%);
    pointer-events: none;
}

.card-img-src { 
    height: 100%; 
    width: 100%;
    background-size: cover; 
    background-position: top center; /* වෙබ් සයිට් Screenshots වල උඩ කොටස පැහැදිලිව පෙනීමට */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.9;
}

/* Hover Effect - 3D Lift & Neon Glow */
.portfolio-card:hover { 
    transform: translateY(-15px); 
    border-color: rgba(0, 245, 255, 0.25);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.9), 0 0 40px rgba(0, 245, 255, 0.08); /* කැපිලා පේන Cyan Glow එකක් */
}

.portfolio-card:hover .card-img-src { 
    transform: scale(1.08); 
    opacity: 1;
}

/* Text Alignment inside the Card */
.card-body { 
    padding: 35px 40px 45px 40px; 
    display: flex; 
    flex-direction: column; 
    flex: 1; 
}

.card-tag { 
    font-size: 11px; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--cyan-glow); 
    display: block; 
    margin-bottom: 15px; 
}

.card-body h3 { 
    font-size: 26px; 
    font-weight: 800; 
    margin-bottom: 16px; 
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.card-body p { 
    color: var(--color-text-muted); 
    font-size: 15.5px; 
    line-height: 1.8; 
    margin-bottom: 35px; 
    flex: 1; /* Description එක දිග වුණත් Button එක පල්ලෙහාටම තල්ලු වීමට */
}

/* Action Link Styling */
.luxury-link { 
    color: white; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 13px; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    transition: 0.3s;
}

.luxury-link i { 
    font-size: 14px; 
    color: var(--gold-glow); 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-link:hover { 
    color: var(--cyan-glow); 
}

.luxury-link:hover i { 
    transform: translateX(6px); 
    color: var(--cyan-glow); 
}

/* ✉️ ULTRA-PREMIUM CONTACT & FOOTER ARCHITECTURE */
.contact-section { padding: 120px 8%; border-top: 1px solid var(--color-border); }
.contact-container { display: flex; justify-content: space-between; gap: 60px; }
.contact-info { flex: 1; max-width: 45%; }
.contact-info h2 { font-size: 40px; font-weight: 800; margin-bottom: 30px; }
.info-items { display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; align-items: center; gap: 20px; }
.info-item i { width: 45px; height: 45px; background: rgba(0, 245, 255, 0.05); border: 1px solid rgba(0, 245, 255, 0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--cyan-glow); font-size: 18px; }
.info-item h4 { font-size: 15px; font-weight: 700; }
.contact-form-box { flex: 1; background: rgba(255, 255, 255, 0.01); border: 1px solid var(--color-border); padding: 45px; border-radius: 24px; }
.luxury-form input, .luxury-form textarea { width: 100%; padding: 14px 18px; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--color-border); border-radius: 10px; color: white; margin-bottom: 20px; }
.luxury-form input:focus, .luxury-form textarea:focus { outline: none; border-color: var(--cyan-glow); }
.btn-submit { width: 100%; padding: 16px; background: var(--grad-primary); border: none; color: white; font-weight: 700; border-radius: 10px; cursor: pointer; }
.luxury-footer { text-align: center; padding: 40px; border-top: 1px solid var(--color-border); font-size: 13px; color: var(--color-text-muted); }

/* =========================================================
   🎛️ EXECUTIVE CMS DROPDOWN STYLING FIX
   ========================================================= */
.admin-form select {
    cursor: pointer;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300F5FF'><path d='M1 4l5 5 5-5H1z'/></svg>"); 
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

.admin-form select option {
    background: #0D1117; 
    color: #FFFFFF; 
    padding: 15px;
    font-size: 14.5px;
}

.admin-form select option:disabled {
    color: #555555;
}

/* =========================================================
   👑 NEW WORLD-CLASS LUXURY DESIGN ADDITIONS
   ========================================================= */
.metrics-row {
    display: flex;
    justify-content: space-between;
    padding: 60px 8%;
    background: linear-gradient(90deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.01) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    gap: 30px;
}

.metric-item { flex: 1; }

.metric-item h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--color-text-pure);
    margin-bottom: 5px;
}

.metric-item p {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-item h2 {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.philosophy-quote {
    background: rgba(0, 245, 255, 0.02);
    border-left: 3px solid var(--cyan-glow);
    padding: 24px;
    border-radius: 0 16px 16px 0;
    margin: 30px 0;
    position: relative;
}

.philosophy-quote i {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 32px;
    color: var(--cyan-glow);
    opacity: 0.08;
}

.philosophy-quote p {
    font-size: 16px !important;
    font-weight: 700;
    font-style: italic;
    color: var(--color-text-pure) !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-pills span {
    font-size: 11px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: 5px 12px;
    border-radius: 100px;
    color: var(--color-text-muted);
    transition: 0.3s;
}

.expertise-card:hover .tech-pills span {
    border-color: rgba(0, 245, 255, 0.2);
    color: var(--color-text-pure);
    background: rgba(0, 245, 255, 0.02);
}

/* =========================================================
   📱 HIGH-END RESPONSIVE STYLING (MOBILE OPTIMIZED)
   ========================================================= */
@media (max-width: 1024px) {
    .hero-section { flex-direction: column-reverse; text-align: center; padding-top: 150px; gap: 65px; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 40px; }
    .hero-actions { justify-content: center; }
    
    /* 3D Orbit Overrides for Tablets/Small Screens */
    .hero-image-wrapper { justify-content: center; width: 100%; }
    .ceo-luxury-card { width: 320px; height: 370px; }
    .floating-luxury-badge { left: 50%; transform: translateX(-50%) translateZ(0) !important; bottom: -25px; animation: none; width: max-content; }
    .ceo-luxury-card:hover { transform: translateY(-5px) scale(1.02); }
    
    .countdown-container { flex-direction: column; text-align: center; gap: 40px; }
    .about-container { flex-direction: column-reverse; gap: 60px; }
    .about-stats-matrix { max-width: 100%; width: 100%; }
    .about-text-content { text-align: center; }
    
    .portfolio-grid { grid-template-columns: 1fr; gap: 35px; }
    .expertise-grid { grid-template-columns: 1fr; gap: 25px; }
    
    .nav-links { position: absolute; top: 70px; right: -100%; width: 80%; height: calc(100vh - 70px); background: rgba(2, 4, 10, 0.95); backdrop-filter: blur(30px); display: flex; flex-direction: column; align-items: center; padding-top: 60px; gap: 40px; border-left: 1px solid var(--color-border); transition: 0.5s; }
    .nav-links.active { right: 0; }
    .mobile-menu-icon { display: block; }
    .nav-links a { margin-left: 0; font-size: 16px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}

@media (max-width: 768px) {
    header { padding: 20px 6%; }
    .trust-row { padding: 40px 5%; }
    .logo-grid { gap: 15px; }
    .trust-badge-item { font-size: 13px; padding: 8px 14px; flex: 1 1 40%; }
    .contact-container { flex-direction: column; gap: 50px; }
    .contact-info { max-width: 100%; text-align: center; }
    .info-item { flex-direction: column; }
    .contact-form-box { padding: 30px 20px; }
    
    /* Metrics Row Mobile Overrides */
    .metrics-row { flex-direction: column; gap: 40px; padding: 50px 5%; }
    .metric-item h2 { font-size: 32px; }
}

@media (max-width: 600px) {
    .about-stats-matrix { grid-template-columns: 1fr; gap: 15px; }
}

/* --- Contact Info Alignment Fix --- */
.contact-info .info-item {
    display: flex;
    align-items: center; /* අයිකන් එකයි අකුරුයි හරියටම මැදට ගන්නවා */
    gap: 15px; /* අයිකන් එක සහ අකුරු අතර දුර */
    margin-bottom: 20px; /* එක පේළියක් සහ ඊළඟ පේළිය අතර දුර */
}

.contact-info .info-item i {
    width: 30px; /* අයිකන් ඔක්කොම එකම තරමකට තියාගන්න */
    text-align: center;
    font-size: 1.2rem; /* අයිකන් එකේ සයිස් එක (අවශ්‍ය නම් වෙනස් කරගන්න) */
}

.contact-info .info-item p {
    margin: 0 !important; /* මේකෙන් තමයි අර අවුල හදන්නේ (default ඉඩ නැති කරනවා) */
    padding: 0;
    line-height: 1.5;
}