
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-color: #0b2545; /* Deep Trust Blue */
            --accent-color: #134074;  /* Lighter Blue */
            --highlight-color: #00b4d8; /* Modern Cyan/Blue */
            --success-color: #2a9d8f; /* Growth Green */
            --text-dark: #1d1d1f;
            --text-light: #f5f5f7;
            --bg-light: #fbfbfd;
            --bg-white: #ffffff;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --shadow: 0 10px 40px -10px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Manrope', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            box-shadow: 0 4px 15px rgba(11, 37, 69, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(11, 37, 69, 0.4);
        }

        .btn-outline {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 800;
        }

        .section-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* --- ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HEADER --- */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            height: 80px;
            display: flex;
            align-items: center;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo i {
            color: var(--success-color);
        }

        .nav-menu {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-menu a {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--primary-color);
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--success-color);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }

        /* --- HERO SECTION --- */
        #hero {
            background: linear-gradient(135deg, rgba(11, 37, 69, 0.9), rgba(19, 64, 116, 0.8)), url('../img/hero.jpg');
            background-size: cover;
            background-position: center;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 300;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
        }

        /* --- ABOUT --- */
        #about {
            background-color: var(--bg-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img img {
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        /* --- WHY CHOOSE US --- */
        #why-us {
            background-color: var(--bg-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: var(--transition);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--success-color);
            margin-bottom: 20px;
        }

        .feature-card h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        /* --- SERVICES --- */
        #services {
            background-color: var(--bg-white);
        }

        .services-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .service-box {
            background: white;
            border: 1px solid #eee;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .service-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .service-header i {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .service-body {
            padding: 25px;
        }

        .service-body ul li {
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #555;
            border-bottom: 1px dashed #eee;
            padding-bottom: 8px;
        }

        .service-body ul li:last-child {
            border-bottom: none;
        }

        /* --- TESTIMONIALS --- */
        #testimonials {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            text-align: center;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .test-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .test-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .test-author {
            font-weight: 700;
            color: var(--highlight-color);
        }

        /* --- FAQ --- */
        #faq {
            background-color: var(--bg-light);
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color);
            transition: background 0.3s;
        }

        .accordion-header:hover {
            background-color: #f0f4f8;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 20px;
            background: #fcfcfc;
            color: #555;
        }

        .accordion-item.active .accordion-content {
            padding: 20px;
            max-height: 200px;
            border-top: 1px solid #eee;
        }

        .icon-rotate {
            transition: transform 0.3s ease;
        }

        .accordion-item.active .icon-rotate {
            transform: rotate(180deg);
        }

        /* --- CONTACT & NEWSLETTER --- */
        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .form-box {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .newsletter-box {
            background: var(--primary-color);
            color: white;
            padding: 40px;
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            transition: border 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #051a30;
            color: #ccc;
            padding: 70px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a:hover {
            color: var(--success-color);
            padding-left: 5px;
        }

        .social-icons a {
            display: inline-flex;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: var(--success-color);
            color: white;
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.9rem;
        }

        /* --- TOAST --- */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: white;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            border-left: 5px solid var(--success-color);
            display: flex;
            align-items: center;
            gap: 15px;
            transform: translateX(200%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 2000;
        }
        
        .toast.show {
            transform: translateX(0);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .hero-title { font-size: 2.5rem; }
            .about-grid, .split-layout { grid-template-columns: 1fr; }
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                padding: 40px;
                transition: 0.3s;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            }
            .nav-menu.active { right: 0; }
            .mobile-toggle { display: block; }
        }

        @media (max-width: 576px) {
            .hero-btns { flex-direction: column; }
            .btn { width: 100%; text-align: center; }
        }
        /* Modal Styles */
    .modal {
      display: none; /* Hidden by default */
      position: fixed; 
      z-index: 1000; 
      left: 0;
      top: 0;
      width: 100%; 
      height: 100%;
      overflow: auto; 
      background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      width: 90%;
      max-width: 600px;
      position: relative;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 24px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
    }

    .modal h2 {
      margin-top: 0;
      color: #0b2545;
    }

    .modal p {
      line-height: 1.6;
      margin: 10px 0;
    }

    