:root {
            --primary: #2872AF;
            --primary-light: #3A8BC4;
            --primary-dark: #1F5180;
            --secondary: #F5F5F5;
            --text-primary: #1a1a1a;
            --text-secondary: #666;
            --border-color: #e0e0e0;
            --white: #ffffff;
            --gray-50: #f9f9f9;
            --gray-100: #f0f0f0;
            --gray-200: #e8e8e8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* ==================== HEADER & NAVIGATION ==================== */
        header {
            position: sticky;
            top: 0;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

       .logo-image {
  height: 100px;
}

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        nav a:hover,
        nav a.active {
            color: var(--primary);
        }

        .cta-button {
            background-color: var(--primary);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(40, 114, 175, 0.3);
        }

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

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

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

        /* ==================== HERO SECTION ==================== */
        .hero {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
            padding: 4rem 2rem;
            text-align: center;
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary);
            animation: slideUp 0.8s ease-out 0.2s both;
            line-height: 1.2;
        }

        @keyframes slideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            animation: slideUp 0.8s ease-out 0.4s both;
        }

        .hero-image {
            margin-top: 2rem;
            animation: slideUp 0.8s ease-out 0.6s both;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        /* ==================== SECTION STYLES ==================== */
        section {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
            padding-bottom: 1rem;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* ==================== CONTENT CARDS ==================== */
        .content-section {
            background-color: var(--white);
            padding: 3rem 2rem;
        }

        .content-section:nth-child(even) {
            background-color: var(--gray-50);
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

         .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .card {
            background: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
            animation: fadeInUp 0.6s ease-out both;
        }

        @keyframes fadeInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .card:hover {
            box-shadow: 0 8px 20px rgba(40, 114, 175, 0.15);
            transform: translateY(-5px);
        }

        .card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .card p {
            margin-bottom: 0;
        }

        /* ==================== TWO COLUMN LAYOUT ==================== */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .two-column-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .two-column-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .two-column-content h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .two-column-content ul {
            list-style: none;
            margin-top: 1rem;
        }

        .two-column-content li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-secondary);
        }

        .two-column-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
            padding: 3rem 2rem;
            border-radius: 12px;
            margin: 3rem auto;
            max-width: 800px;
        }

        .cta-section h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .cta-section .cta-button {
            background-color: var(--white);
            color: var(--primary);
            font-weight: bold;
            padding: 1rem 2rem;
        }

        .cta-section .cta-button:hover {
            background-color: var(--gray-100);
        }

        /* ==================== PROCESS SECTION ==================== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .step {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .step:hover {
            box-shadow: 0 8px 20px rgba(40, 114, 175, 0.15);
            transform: translateY(-5px);
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .step h4 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
        }

        /* ==================== CONTACT PAGE ==================== */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: stretch;
            margin-top: 2rem;
        }

        .contact-form-wrapper {
            background: var(--gray-50);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-weight: 500;
        }

        input,
        textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(40, 114, 175, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-submit {
            width: 100%;
        }

        .contact-map {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            height: 100%;
            min-height: 400px;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact-info {
            background: var(--gray-50);
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
        }

        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .contact-detail {
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
        }

        .contact-detail strong {
            display: block;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background-color: var(--text-primary);
            color: var(--white);
            padding: 3rem 2rem 1rem;
            margin-top: 4rem;
        }
        .footer-logo-image {
  height: 50px;
}

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .footer-section a,
        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 0.75rem;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
        }

        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 768px) {
            .header-content {
                padding: 1rem;
            }

            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--white);
                padding: 1rem;
                gap: 1rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            .logo-image {
    width: 300px;
    height: 60px;
  }

            nav.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .two-column,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }

            .contact-map {
                min-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 0.75rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            section {
                padding: 2rem 1rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .cta-button {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
        }

        /* ==================== PAGE TRANSITIONS ==================== */
        .page {
            display: none;
            animation: fadeIn 0.5s ease-out;
        }

        .page.active {
            display: block;
        }

        /* ==================== UTILITY CLASSES ==================== */
        .section-padding {
            padding: 4rem 2rem;
        }

        .max-width {
            max-width: 1400px;
            margin: 0 auto;
        }

        .text-center {
            text-align: center;
        }

        .mb-2 {
            margin-bottom: 2rem;
        }

        .mt-4 {
            margin-top: 4rem;
        }

        .badge {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }