         :root {
            /* Logo Color Palette */
            --gold: #d4a017; /* Golden yellow from the logo */
            --gold-hover: #b58813;
            --black: #000000;
            --dark-gray: #111111;
            --card-dark: #1a1a1a;
            --white: #ffffff;
            --light-bg: #f9f9f9;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            scroll-behavior: smooth;
            background-color: var(--white);
        }

        /* --- Global Overrides --- */
        .text-gold { color: var(--gold) !important; }
        .bg-gold { background-color: var(--gold) !important; color: var(--black) !important; }
        
        .btn-gold {
            background-color: var(--gold);
            border-color: var(--gold);
            color: var(--black);
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 24px;
            transition: all 0.3s ease;
        }
        
        .btn-gold:hover {
            background-color: var(--gold-hover);
            border-color: var(--gold-hover);
            color: var(--black);
            transform: translateY(-2px);
        }

        .btn-outline-gold {
            color: var(--gold);
            border: 2px solid var(--gold);
            background: transparent;
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 24px;
            transition: all 0.3s ease;
        }

        .btn-outline-gold:hover {
            background-color: var(--gold);
            color: var(--black);
        }

        /* --- Navigation --- */
        .navbar {
            background-color: var(--black) !important;
            padding: 0 0px;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand .letter-a { color: var(--gold); }
        .navbar-brand .letter-c { color: var(--white); }
        
        .nav-link {
            font-weight: 500;
            font-size: 0.95rem;
            color: #ccc !important;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--gold) !important;
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 100px 0;
            position: relative;
        }
        
        .hero-badge {
            background-color: rgba(212, 160, 23, 0.15);
            color: var(--gold);
            font-weight: 600;
            letter-spacing: 1px;
            padding: 8px 16px;
            border-radius: 50px;
            display: inline-block;
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 24px;
            border: 1px solid rgba(212, 160, 23, 0.3);
        }

        .hero-text h1 {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text p {
            font-size: 1.15rem;
            color: #aaa;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 90%;
        }

        .hero-list li {
            font-size: 1.05rem;
            color: #ddd;
            display: flex;
            align-items: center;
        }

        .hero-list i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        /* Contact Form Card (Hero Right) */
        .contact-card {
            background: var(--card-dark);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .contact-card .form-control {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--white);
            border-radius: 8px;
            padding: 12px 15px;
        }
        
        .contact-card .form-control:focus {
            background: rgba(255,255,255,0.08);
            border-color: var(--gold);
            box-shadow: none;
            color: var(--white);
        }
        
        .contact-card .form-control::placeholder {
            color: #777;
        }

        .contact-card label {
            color: #bbb;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 8px;
        }

        /* --- Section Titles --- */
        .section-title {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--black);
        }
        
        .section-subtitle {
            color: var(--gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
        }

        /* --- Services Section --- */
        .services-section {
            background-color: var(--light-bg);
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px 30px;
            border: 1px solid #eaeaea;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            border-color: transparent;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .icon-wrapper {
            width: 60px;
            height: 60px;
            background: rgba(212, 160, 23, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .service-icon {
            font-size: 1.5rem;
            color: var(--gold);
        }

        .service-card h5 {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: var(--black);
        }

        .service-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- About Section --- */
        .about-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        /* --- FAQ Section --- */
        .accordion-item {
            border: 1px solid #eaeaea;
            border-radius: 12px !important;
            margin-bottom: 15px;
            overflow: hidden;
            background: var(--white);
        }

        .accordion-button {
            font-weight: 600;
            padding: 20px 25px;
            color: var(--black);
            background-color: var(--white);
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background-color: rgba(212, 160, 23, 0.05);
            color: var(--gold);
        }

        .accordion-button::after {
            background-size: 1rem;
        }

        .accordion-body {
            padding: 0 25px 25px;
            color: #666;
            line-height: 1.6;
        }

        /* --- Newsletter Section --- */
        .newsletter-section {
            background-color: var(--gold);
            color: var(--black);
            padding: 70px 40px;
            border-radius: 24px;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section h3 {
            font-weight: 800;
        }

        .newsletter-section p {
            font-weight: 500;
            color: rgba(0,0,0,0.8);
        }

        .newsletter-form .form-control {
            border: none;
            padding: 15px 20px;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        
        .newsletter-form .form-control:focus {
            box-shadow: none;
        }

        .newsletter-form .btn {
            background-color: var(--black);
            color: var(--white);
            border: none;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
            padding: 0 30px;
        }
        
        .newsletter-form .btn:hover {
            background-color: #222;
        }

        /* --- Footer --- */
        .footer {
            background-color: #001738;
            color: #999;
            padding: 80px 0 30px;
        }
        
        .footer-logo {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--white);
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .footer-logo .letter-a { color: var(--gold); }
        .footer-logo .letter-c { color: var(--white); }

        .footer h5 {
            color: var(--white);
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer a:hover {
            color: var(--gold);
        }
        
        .footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            margin-right: 12px;
            transition: all 0.3s;
            color: var(--white);
        }
        
        .footer-socials a:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
 <style>
        :root {
            /* Logo Color Palette */
            --gold: #d4a017; /* Golden yellow from the logo */
            --gold-hover: #b58813;
            --black: #000000;
            --dark-gray: #111111;
            --card-dark: #1a1a1a;
            --white: #ffffff;
            --light-bg: #f9f9f9;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            scroll-behavior: smooth;
            background-color: var(--white);
        }

        /* --- Global Overrides --- */
        .text-gold { color: var(--gold) !important; }
        .bg-gold { background-color: var(--gold) !important; color: var(--black) !important; }
        
        .btn-gold {
            background-color: var(--gold);
            border-color: var(--gold);
            color: var(--black);
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 24px;
            transition: all 0.3s ease;
        }
        
        .btn-gold:hover {
            background-color: var(--gold-hover);
            border-color: var(--gold-hover);
            color: var(--black);
            transform: translateY(-2px);
        }

        .btn-outline-gold {
            color: var(--gold);
            border: 2px solid var(--gold);
            background: transparent;
            font-weight: 600;
            border-radius: 8px;
            padding: 10px 24px;
            transition: all 0.3s ease;
        }

        .btn-outline-gold:hover {
            background-color: var(--gold);
            color: var(--black);
        }

        /* --- Navigation --- */
        .navbar {
            background-color: var(--black) !important;
            padding: 0px 0;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .navbar-brand .letter-a { color: var(--gold); }
        .navbar-brand .letter-c { color: var(--white); }
        
        .nav-link {
            font-weight: 500;
            font-size: 0.95rem;
            color: #ccc !important;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--gold) !important;
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 100px 0;
            position: relative;
        }
        
        .hero-badge {
            background-color: rgba(212, 160, 23, 0.15);
            color: var(--gold);
            font-weight: 600;
            letter-spacing: 1px;
            padding: 8px 16px;
            border-radius: 50px;
            display: inline-block;
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 24px;
            border: 1px solid rgba(212, 160, 23, 0.3);
        }

        .hero-text h1 {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text p {
            font-size: 1.15rem;
            color: #aaa;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 90%;
        }

        .hero-list li {
            font-size: 1.05rem;
            color: #ddd;
            display: flex;
            align-items: center;
        }

        .hero-list i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        /* Contact Form Card (Hero Right) */
        .contact-card {
            background: var(--card-dark);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .contact-card .form-control {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--white);
            border-radius: 8px;
            padding: 12px 15px;
        }
        
        .contact-card .form-control:focus {
            background: rgba(255,255,255,0.08);
            border-color: var(--gold);
            box-shadow: none;
            color: var(--white);
        }
        
        .contact-card .form-control::placeholder {
            color: #777;
        }

        .contact-card label {
            color: #bbb;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 8px;
        }

        /* --- Section Titles --- */
        .section-title {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--black);
        }
        
        .section-subtitle {
            color: var(--gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
        }

        /* --- Services Section --- */
        .services-section {
            background-color: var(--light-bg);
        }

        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 40px 30px;
            border: 1px solid #eaeaea;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            border-color: transparent;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .icon-wrapper {
            width: 60px;
            height: 60px;
            background: rgba(212, 160, 23, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .service-icon {
            font-size: 1.5rem;
            color: var(--gold);
        }

        .service-card h5 {
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: var(--black);
        }

        .service-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- About Section --- */
        .about-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        /* --- FAQ Section --- */
        .accordion-item {
            border: 1px solid #eaeaea;
            border-radius: 12px !important;
            margin-bottom: 15px;
            overflow: hidden;
            background: var(--white);
        }

        .accordion-button {
            font-weight: 600;
            padding: 20px 25px;
            color: var(--black);
            background-color: var(--white);
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background-color: rgba(212, 160, 23, 0.05);
            color: var(--gold);
        }

        .accordion-button::after {
            background-size: 1rem;
        }

        .accordion-body {
            padding: 0 25px 25px;
            color: #666;
            line-height: 1.6;
        }

        /* --- Newsletter Section --- */
        .newsletter-section {
            background-color: var(--gold);
            color: var(--black);
            padding: 70px 40px;
            border-radius: 24px;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section h3 {
            font-weight: 800;
        }

        .newsletter-section p {
            font-weight: 500;
            color: rgba(0,0,0,0.8);
        }

        .newsletter-form .form-control {
            border: none;
            padding: 15px 20px;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        
        .newsletter-form .form-control:focus {
            box-shadow: none;
        }

        .newsletter-form .btn {
            background-color: var(--black);
            color: var(--white);
            border: none;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
            padding: 0 30px;
        }
        
        .newsletter-form .btn:hover {
            background-color: #222;
        }

        /* --- Footer --- */
        .footer {
            background-color: var(--black);
            color: #999;
            padding: 80px 0 30px;
        }
        
        .footer-logo {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--white);
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .footer-logo .letter-a { color: var(--gold); }
        .footer-logo .letter-c { color: var(--white); }

        .footer h5 {
            color: var(--white);
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer a:hover {
            color: var(--gold);
        }
        
        .footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            margin-right: 12px;
            transition: all 0.3s;
            color: var(--white);
        }
        
        .footer-socials a:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
  
  
  
   /* From Index Page*/
  
  
      /* Modern Typography & Gradients */
    .text-gradient {
        background: linear-gradient(135deg, var(--brand-red), #ff4d4d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }
    
    .text-gradient-blue {
        background: linear-gradient(135deg, var(--brand-blue), #1a528a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Modern Hero Section with Background Image */
    .hero-modern {
        background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(4, 18, 32, 0.98) 100%), 
                    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
        position: relative;
        overflow: hidden;
        padding: 120px 0 100px;
    }
    
    /* Glowing orb effect in background */
    .hero-modern::before {
        content: '';
        position: absolute;
        top: -150px;
        right: -100px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(217, 4, 41, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    /* Glassmorphism Form */
    .glass-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    }

    .glass-card label {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        margin-bottom: 8px;
    }

    .glass-card .form-control {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        border-radius: 12px;
        padding: 14px 18px;
        transition: all 0.3s;
    }

    .glass-card .form-control:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--brand-red);
        box-shadow: 0 0 0 4px rgba(217, 4, 41, 0.2);
        color: #fff;
    }

    .glass-card .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    /* Floating Modern Cards */
    .service-card-modern {
        background: #fff;
        border-radius: 24px;
        padding: 40px 30px;
        border: none;
        box-shadow: 0 10px 40px rgba(10, 37, 64, 0.05);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        position: relative;
        z-index: 1;
    }

    .service-card-modern:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(10, 37, 64, 0.12);
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(10, 37, 64, 0.04);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--brand-blue);
        margin-bottom: 24px;
        transition: all 0.4s ease;
    }

    .service-card-modern:hover .icon-circle {
        background: var(--brand-red);
        color: #fff;
        transform: scale(1.1) rotate(5deg);
    }

    /* About Section */
    .about-image-modern {
        border-radius: 30px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        object-fit: cover;
        width: 100%;
        height: 550px;
        border: 8px solid #fff;
    }

    /* Separated FAQ Accordions */
    .faq-modern .accordion-item {
        border: none;
        border-radius: 16px !important;
        margin-bottom: 16px;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        transition: all 0.3s;
    }

    .faq-modern .accordion-item:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .faq-modern .accordion-button {
        border-radius: 16px !important;
        font-weight: 600;
        font-size: 1.1rem;
        padding: 24px;
        color: var(--brand-blue);
        background: transparent;
        box-shadow: none !important;
    }

    .faq-modern .accordion-button:not(.collapsed) {
        color: var(--brand-red);
        background: transparent;
    }

    .faq-modern .accordion-button::after {
        transition: transform 0.3s ease;
    }

    .faq-modern .accordion-body {
        padding: 0 24px 24px 24px;
        color: #64748b;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* Sleek Newsletter */
    .newsletter-modern {
        background: linear-gradient(135deg, var(--brand-blue) 0%, #0A1929 100%);
        border-radius: 30px;
        padding: 80px 50px;
        position: relative;
        overflow: hidden;
    }

    .newsletter-modern::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(217, 4, 41, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }

    .newsletter-modern-input {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #fff !important;
        border-radius: 12px 0 0 12px !important;
        padding: 16px 24px !important;
    }

    .newsletter-modern-input::placeholder {
        color: rgba(255,255,255,0.6) !important;
    }

    .newsletter-modern-btn {
        border-radius: 0 12px 12px 0 !important;
        padding: 0 32px !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px;
    }

    /* Floating Contact Buttons */
    .floating-actions {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1050;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #ffffff !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        text-decoration: none;
    }

    .floating-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }

    .btn-whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }

    .btn-phone {
        background: linear-gradient(135deg, var(--brand-blue), #1a528a);
    }
    
    /*Header File CSS*/
    
    :root {
                /* New Color Palette: Red, Blue, White, Black */
                --brand-blue: #0A2540; /* Deep navy blue for trust and depth */
                --brand-blue-light: #183b5e;
                --brand-red: #d90429; /* Vibrant red for action and accents */
                --brand-red-hover: #bf0424;
                --black: #111111;
                --white: #ffffff;
                --light-bg: #f4f6f9;
            }

            body {
                font-family: 'Poppins', sans-serif;
                color: var(--black);
                scroll-behavior: smooth;
                background-color: var(--white);
            }

            /* --- Global Utility Classes --- */
            .text-red { color: var(--brand-red) !important; }
            .text-blue { color: var(--brand-blue) !important; }
            .bg-blue { background-color: var(--brand-blue) !important; color: var(--white) !important; }
            
            .btn-accent {
                background-color: var(--brand-red);
                border-color: var(--brand-red);
                color: var(--white);
                font-weight: 600;
                border-radius: 6px;
                padding: 12px 28px;
                transition: all 0.3s ease;
            }
            
            .btn-accent:hover {
                background-color: var(--brand-red-hover);
                border-color: var(--brand-red-hover);
                color: var(--white);
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(217, 4, 41, 0.3);
            }

            .btn-outline-accent {
                color: var(--brand-red);
                border: 2px solid var(--brand-red);
                background: transparent;
                font-weight: 600;
                border-radius: 6px;
                padding: 10px 24px;
                transition: all 0.3s ease;
            }

            .btn-outline-accent:hover {
                background-color: var(--brand-red);
                color: var(--white);
            }

            /* --- Navigation --- */
            .navbar {
                background-color: var(--white) !important;
                padding: 15px 0;
                box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            }
            
            .navbar-brand {
                font-weight: 800;
                font-size: 1.5rem;
                letter-spacing: 0.5px;
                color: var(--brand-blue) !important;
            }
            
            .navbar-brand .brand-dot { color: var(--brand-red); }
            
            .nav-link {
                font-weight: 600;
                font-size: 0.95rem;
                color: var(--black) !important;
                transition: color 0.3s ease;
            }
            
            .nav-link:hover, .nav-link.active {
                color: var(--brand-red) !important;
            }

            /* --- Hero Section --- */
            .hero-section {
                background-color: var(--brand-blue);
                color: var(--white);
                padding: 100px 0;
                position: relative;
            }
            
            .hero-badge {
                background-color: rgba(255, 255, 255, 0.1);
                color: var(--white);
                font-weight: 600;
                letter-spacing: 1px;
                padding: 8px 16px;
                border-radius: 50px;
                display: inline-block;
                font-size: 0.85rem;
                text-transform: uppercase;
                margin-bottom: 24px;
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .hero-text h1 {
                font-weight: 800;
                font-size: 3.5rem;
                line-height: 1.2;
                margin-bottom: 20px;
            }

            .hero-text p {
                font-size: 1.15rem;
                color: #d1d9e0;
                margin-bottom: 40px;
                line-height: 1.7;
                max-width: 95%;
            }

            .hero-list li {
                font-size: 1.05rem;
                color: #fff;
                display: flex;
                align-items: center;
            }

            .hero-list i {
                color: var(--brand-red);
                font-size: 1.2rem;
            }

            /* Contact Form Card (Hero Right) */
            .contact-card {
                background: var(--white);
                border-radius: 12px;
                padding: 40px;
                box-shadow: 0 20px 50px rgba(0,0,0,0.3);
                color: var(--black);
            }

            .contact-card .form-control {
                background: #f8f9fa;
                border: 1px solid #dee2e6;
                color: var(--black);
                border-radius: 6px;
                padding: 12px 15px;
            }
            
            .contact-card .form-control:focus {
                background: #fff;
                border-color: var(--brand-blue);
                box-shadow: 0 0 0 0.2rem rgba(10, 37, 64, 0.25);
            }

            .contact-card label {
                color: var(--brand-blue);
                font-size: 0.9rem;
                font-weight: 600;
                margin-bottom: 8px;
            }

            /* --- Section Titles --- */
            .section-title {
                font-weight: 800;
                font-size: 2.5rem;
                margin-bottom: 20px;
                color: var(--brand-blue);
            }
            
            .section-subtitle {
                color: var(--brand-red);
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                font-size: 0.9rem;
                margin-bottom: 10px;
                display: block;
            }

            /* --- Services Section --- */
            .services-section {
                background-color: var(--light-bg);
            }

            .service-card {
                background: var(--white);
                border-radius: 12px;
                padding: 40px 30px;
                border: 1px solid #e2e8f0;
                transition: all 0.4s ease;
                height: 100%;
                position: relative;
                overflow: hidden;
                z-index: 1;
            }

            .service-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: var(--brand-red);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.4s ease;
                z-index: -1;
            }

            .service-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 30px rgba(10, 37, 64, 0.08);
                border-color: transparent;
            }

            .service-card:hover::before {
                transform: scaleX(1);
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
                background: rgba(10, 37, 64, 0.05);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 25px;
            }

            .service-icon {
                font-size: 1.5rem;
                color: var(--brand-blue);
            }
            
            .service-card:hover .service-icon {
                color: var(--brand-red);
            }

            .service-card h3 {
                font-weight: 700;
                font-size: 1.25rem;
                margin-bottom: 15px;
                color: var(--brand-blue);
            }

            .service-card p {
                color: #555;
                font-size: 0.95rem;
                line-height: 1.6;
            }

            /* --- About Section --- */
            .about-image-wrapper {
                position: relative;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            }

            .about-image {
                width: 100%;
                height: 500px;
                object-fit: cover;
                display: block;
            }

            /* --- FAQ Section --- */
            .accordion-item {
                border: 1px solid #e2e8f0;
                border-radius: 8px !important;
                margin-bottom: 15px;
                overflow: hidden;
                background: var(--white);
            }

            .accordion-button {
                font-weight: 600;
                padding: 20px 25px;
                color: var(--brand-blue);
                background-color: var(--white);
                box-shadow: none !important;
            }

            .accordion-button:not(.collapsed) {
                background-color: var(--light-bg);
                color: var(--brand-red);
            }

            .accordion-body {
                padding: 0 25px 25px;
                color: #555;
                line-height: 1.6;
            }

            /* --- Newsletter Section --- */
            .newsletter-section {
                background-color: var(--brand-blue);
                color: var(--white);
                padding: 70px 40px;
                border-radius: 16px;
                margin: 60px 0;
                border-bottom: 6px solid var(--brand-red);
            }

            .newsletter-section h3 {
                font-weight: 800;
            }

            .newsletter-section p {
                font-weight: 400;
                color: #d1d9e0;
            }

            .newsletter-form .form-control {
                border: none;
                padding: 15px 20px;
                border-radius: 6px 0 0 6px;
                font-size: 1rem;
            }

            .newsletter-form .btn {
                background-color: var(--brand-red);
                color: var(--white);
                border: none;
                border-radius: 0 6px 6px 0;
                font-weight: 600;
                padding: 0 30px;
            }
            
            .newsletter-form .btn:hover {
                background-color: var(--brand-red-hover);
            }

            /* --- Footer --- */
            .footer {
                background-color: #001738;
                color: #a0aec0;
                padding: 80px 0 30px;
            }
            
            .footer-logo {
                font-weight: 800;
                font-size: 1.8rem;
                color: var(--white);
                text-decoration: none;
                display: inline-block;
                margin-bottom: 20px;
            }
            
            .footer-logo .brand-dot { color: var(--brand-red); }

            .footer h5 {
                color: var(--white);
                font-weight: 700;
                margin-bottom: 25px;
            }

            .footer ul li {
                margin-bottom: 12px;
            }

            .footer a {
                color: #a0aec0;
                text-decoration: none;
                transition: color 0.3s;
                font-size: 0.95rem;
            }

            .footer a:hover {
                color: var(--white);
            }
            
            .footer-socials a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                background: rgba(255,255,255,0.1);
                border-radius: 6px;
                margin-right: 12px;
                transition: all 0.3s;
                color: var(--white);
            }
            
            .footer-socials a:hover {
                background: var(--brand-red);
                color: var(--white);
                transform: translateY(-3px);
            }
            
            .footer-bottom {
                margin-top: 60px;
                padding-top: 30px;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            
            /* --- Floating Contact Buttons --- */
            .floating-actions {
                position: fixed;
                bottom: 30px;
                right: 30px;
                display: flex;
                flex-direction: column;
                gap: 15px;
                z-index: 1050;
            }

            .floating-btn {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 28px;
                color: #ffffff !important;
                box-shadow: 0 10px 25px rgba(0,0,0,0.2);
                transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
                text-decoration: none;
            }

            .floating-btn:hover {
                transform: translateY(-5px) scale(1.05);
                box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            }

            .btn-whatsapp {
                background: linear-gradient(135deg, #25D366, #128C7E);
            }

            .btn-phone {
                background: linear-gradient(135deg, var(--brand-blue), #1a528a);
            }