 :root {
            --gold: #dbc64b;
            --dark-bg: #0f0f0f;
            --card-bg: #1a1a1a;
            --light-text: #e6e6e6;
            --gray-text: #bfbfbf;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body { background-color: var(--dark-bg); color: var(--light-text); overflow-x: hidden; }

        /* --- NAVBAR (As provided by you) --- */
       .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8%;
    background: rgba(0, 0, 0, 0.95); /* පොඩ්ඩක් තද කළු පාටක් */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.nav-logo { height: 50px; }

.logo-text {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
}

.nav-links { list-style: none; display: flex; gap: 25px; }

.nav-links a {
    text-decoration: none;
    color: var(--white); /* මෙතනට 'var(--white)' හෝ '#ffffff' දෙන්න */
    font-size: 1rem;
    gap: 20px;
    font-weight: 500;
    text-transform: capitalize;
    transition: 0.3s ease;
}

.nav-links a:hover, .nav-links .active { color: var(--gold) !important;}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 28px;
    background: var(--gold);
    margin: 4px 0;
    transition: 0.4s;
}
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0; /* මැද ඉර අයින් කරනවා */
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 850px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        padding-top: 100px;
        padding-left: 30px;
        gap: 25px;
        transition: 0.4s ease;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active { right: 0 !important;}
    .hamburger { display: flex; }
    .nav-links li a {
        font-size: 1.2rem;
        color: var(--gold);
    }
}

        /* --- 1. HERO SECTION --- */
        .service-hero {
            height: 90vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072') no-repeat center center/cover;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            text-align: center; padding-top: 80px;
        }
        .service-hero h1 { font-size: 3.5rem; color: var(--gold); margin-bottom: 15px; }
        .service-hero p { max-width: 700px; font-size: 1.2rem; color: var(--gray-text); }

        /* --- 2. STATS CARD SECTION --- */
        .stats-section { padding: 50px 8%; margin-top: -60px; }
        .stats-container {
            background: var(--card-bg);
            display: grid; grid-template-columns: repeat(4, 1fr);
            padding: 40px; border-radius: 20px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            text-align: center;
        }
        .stat-item h2 { color: var(--gold); font-size: 2.5rem; margin-bottom: 5px; }
        .stat-item p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-text); }
/* --- STATS SECTION RESPONSIVE UPDATE --- */
.stats-container {
    background: var(--card-bg);
    display: grid;
    /* මෙතන 'repeat(4, 1fr)' වෙනුවට මේ 'auto-fit' එක දාන්න */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    text-align: center;
}

/* Tablet සහ Mobile වලදී Padding පොඩ්ඩක් අඩු කරන්න */
@media screen and (max-width: 768px) {
    .stats-section {
        padding: 0 5%;
        margin-top: -40px; /* Hero එක උඩට තියෙන පරතරය පොඩ්ඩක් අඩු කළා */
    }
    
    .stats-container {
        padding: 30px 15px;
    }

    .stat-item h2 {
        font-size: 2rem; /* ෆෝන් එකේදී අකුරු පොඩ්ඩක් පොඩි කළා */
    }
}
        /* --- 3. DIGITAL SOLUTIONS (SERVICES) --- */
       /* --- SECTION TITLE --- */
.section-title {
    text-align: center;
    margin: 100px 0 60px;
}

.section-title span {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

/* --- GRID SYSTEM --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 8% 100px;
}

/* --- PREMIUM SERVICE CARD --- */
.service-card {
    background: rgba(255, 255, 255, 0.03); /* Glass effect background */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

/* Background number effect */
.card-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.04); /* Very subtle gold number */
    transition: 0.5s;
}

.service-card i {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.5s;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
    z-index: 2;
}

.service-card p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: 0.5s;
}

.card-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s;
}

/* --- HOVER EFFECTS --- */
.service-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.service-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .card-number {
    color: rgba(255, 215, 0, 0.08);
    transform: translateY(20px);
}

.service-card:hover p {
    color: #eee;
}

.service-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive adjust */
@media (max-width: 768px) {
    .section-title h2 { font-size: 2rem; }
    .grid-container { padding: 0 5% 60px; }
}

        /* --- 4. PRICING PACKAGES --- */
        /* --- PRICING SECTION --- */
/* Pricing Section Base */

.pricing-section {
    padding: 100px 8%;
    background-color: #0b0b0b !important;
    text-align: center;
}

.section-title {
    color: #ffffff !important;
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Luxury Dark Card Style */
.price-card {
    background: #111113 !important;
    border-radius: 24px !important;
    padding: 30px 20px;
    border: none !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

/* Header Badge */
.card-header-badge {
    background: linear-gradient(135deg, #0044cc, #002266);
    color: white;
    padding: 10px;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Price Tag */
.price-tag {
    color: #d4af37 !important;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* List Items Styling */
.price-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-card ul li {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.price-card ul li i {
    color: #00d4ff; /* Neon Blue Check Icon */
    margin-top: 3px;
}

/* WhatsApp Button */
.btn-inquire {
    border: 1.5px solid #d4af37;
    color: #d4af37 !important;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-inquire:hover {
    background: #d4af37;
    color: #0b0b0b !important;
}

        /* --- 5. WORK PROCESS --- */
       .process-section {
    padding: 80px 8%;
    text-align: center;
    background: #111;
}

.process-section .section-title h2 {
    font-size: 2.8rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.process-section .section-title h2::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--gold);
    position: absolute;
    bottom: -10px;
    left: 20%;
    border-radius: 10px;
    box-shadow: 0 0 15px var(--gold);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.step {
    background: #1a1a1a;
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
    transition: 0.35s ease;
    border: 1px solid rgba(255, 215, 0, 0.15);
    position: relative;
}

/* Hover Card Glow */
.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 45px rgba(255, 215, 0, 0.35);
    border-color: var(--gold);
}

/* Gold Circle Number */
.step-num {
    width: 65px;
    height: 65px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transition: 0.3s ease;
}

/* Hover Number Pop */
.step:hover .step-num {
    transform: scale(1.15);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.8);
}

.step h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.step p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}
/* GOLD ICON CIRCLE */
.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 25px rgba(255,215,0,0.5);
    transition: 0.3s ease;
}

/* On hover icon pop */
.step:hover .step-icon {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255,215,0,0.9);
}

/* SMALL NUMBER BADGE */
.step-badge {
    background: #222;
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    width: fit-content;
    margin: 0 auto 12px;
    border: 1px solid rgba(255,215,0,0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

        /* --- FOOTER (As provided by you) --- */
      .main-footer {
    background: #0a0a0a !important;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.main-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 90%; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-grid {
    max-width: 1200px;
    margin: auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    color: #ffffff !important; /* Headings සේරම සුදු කලා */
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1px !important; /* 12px වෙනුවට 6px දාලා ලෝගෝ එක සහ නම ළං කළා */
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    border-radius: 10px;
}
.footer-icon{
    margin-left: -35px !important;
    height: 160px !important; /* සයිස් එක හොඳටම පේන්න 120px වගේ දාලා බලන්න */
    width: auto !important;
    max-height: none !important; /* Bootstrap එකෙන් හිර කරලා තියෙනවා නම් ඒක අයින් කරන්න */
    object-fit: contain;
}

/* ENIX කොටස සඳහා රන්වන් පැහැය (Premium Gold) */
.logo-text .gold-text {
    color: #d4af37 !important;
    font-weight: 800;
}

/* ORA කොටස සඳහා පසුබිමට කැපී පෙනෙන ලස්සන නිල් පැහැය */
.logo-text .blue-text {
    color: #041e41 !important; /* අර තද නිල් වෙනුවට කළු පසුබිමේ කැපිලා පේන Neon Blue එකක් දැම්මා */
    font-weight: 800;
}

.about-desc { color: #ffffff !important; line-height: 1.7; margin-bottom: 25px; opacity: 0.9; }

.social-icons { display: flex; gap: 15px; }
.social-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    color: #d4af37 !important;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.social-icons a:hover { background: #d4af37 !important; color: #000 !important; transform: translateY(-5px); }

/* Links List */
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ffffff !important; text-decoration: none; transition: 0.3s; font-size: 0.95rem; opacity: 0.85; }
.footer-links a:hover { color: #d4af37 !important; opacity: 1; padding-left: 5px; }

/* Contact Details (Gold Section) */
.contact-details { list-style: none; padding: 0; }
.contact-details li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: #d4af37 !important; font-size: 0.95rem; }
.contact-details i { color: #d4af37 !important; font-size: 1.1rem; width: 20px; text-align: center; }
.contact-details a { color: #d4af37 !important; text-decoration: none; transition: 0.3s; }
.contact-details a:hover { color: #ffffff !important; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

.back-to-top {
    position: absolute;
    bottom: 30px; right: 5%; width: 45px; height: 45px;
    background: #d4af37; color: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.back-to-top:hover { transform: scale(1.1); box-shadow: 0 0 20px #d4af37; }

/* ==========================================================================
   10. GLOBAL RESPONSIVE MEDIA QUERIES (BREAKPOINTS)
   ========================================================================== */
@media screen and (max-width: 992px) {
    /* Navbar Hamburger Trigger */
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 250px;
        background: rgba(12, 12, 14, 0.98); backdrop-filter: blur(8px);
        display: flex; flex-direction: column; padding-top: 100px; padding-left: 30px; gap: 25px;
        transition: 0.4s ease; border-left: 1px solid rgba(0, 86, 179, 0.2);
    }
    .nav-links.active { right: 0 !important; }

    /* Hero Text Adjustments */
    .hero-caption h1 { font-size: 2.8rem; }
    .hero-caption p { font-size: 1rem; }

    /* Sections Layouts */
    .choose-wrapper { flex-direction: column; gap: 30px; }
    .choose-image img { height: 280px; }

    /* FIXED TWO-COLUMN MOBILE FOOTER (INDEX COPY) */
    .footer-grid {
        grid-template-columns: 1fr 1.2fr !important; 
        gap: 40px 20px;
        text-align: left;
    }
    
    .footer-grid .footer-col:first-child { grid-column: span 2; margin-bottom: 10px; }
    .footer-logo, .social-icons, .contact-details li { justify-content: flex-start !important; }
    .footer-col h3 { text-align: left !important; font-size: 1.1rem; margin-bottom: 15px; }
    .footer-links a { display: block; padding-left: 0; }
    .contact-details li { font-size: 0.85rem; gap: 10px; }
}

@media screen and (max-width: 600px) {
    .about-hero { height: 75vh; }
    .hero-caption h1 { font-size: 2.2rem; }
    .our-story-container h2, .our-focus .section-header h2, .why-choose-us .section-header h2 { font-size: 2rem; }
    .about-main, .our-focus, .why-choose-us { padding: 60px 5%; }
    
    /* 50% / 50% split for small phones */
    .footer-grid {
        grid-template-columns: 1fr 1.1fr !important;
        gap: 30px 10px;
        padding: 0 4%;
    }
    .about-desc, .footer-links a { font-size: 0.85rem; }
    .back-to-top { bottom: 20px; right: 4%; width: 40px; height: 40px; }
}
/* ============================================================
      FINAL RESPONSIVE FIX PACK (100% MOBILE FRIENDLY)
   ============================================================ */

/* Global small fixes */
:root {
    --white: #ffffff;
}

/* STATS SECTION Conflict Fix */
.stats-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 20px;
}
@media (max-width: 600px) {
    .stats-container {
        padding: 25px 15px !important;
    }
}

/* SERVICES CARD MOBILE FIX */
@media (max-width: 768px) {
    .service-card {
        padding: 35px 25px !important;
    }
    .service-card h3 {
        font-size: 1.3rem;
    }
}

/* PRICING SECTION FULL FIX */
@media (max-width: 768px) {
    .gold-title-glow {
        font-size: 2rem !important;
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
        padding: 0 5%;
        gap: 25px !important;
    }
    .price-card {
        padding: 0 0 25px;
        border-radius: 20px;
    }
    .price-header h4 {
        font-size: 1.8rem;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    .price-card ul li {
        font-size: 0.85rem !important;
    }
    .price-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* FOOTER FIX — prevents breaking */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
    .footer-grid .footer-col:first-child {
        grid-column: span 2;
    }
}
@media (max-width: 550px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-col h3,
    .footer-links,
    .contact-details {
        text-align: center !important;
    }
}