        :root {
            --primary-color: #0066cc;
            --secondary-color: #004999;
            --accent-color: #ffcc00;
            --text-color: #333333;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section Styles */
        .hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 110px; /* Adjusted to account for both headers */
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: left;
            color: #fff;
            padding: 0 20px;
            max-width: 1400px;
            margin-left: 10%;
        }

        .slide-content h1 {
            font-size: 2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: var(--transition);
        }

        .btn-primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }

        .slider-prev,
        .slider-next {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s;
            margin: 0 10px;
        }

        .slider-prev:hover,
        .slider-next:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .slider-dots {
            display: flex;
            margin: 0 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

        .dot.active {
            background: #fff;
            transform: scale(1.2);
        }

        /* Animation Delay Classes */
        .delay-1 {
            animation-delay: 0.3s;
        }

        .delay-2 {
            animation-delay: 0.6s;
        }

        /* About Section */
        .about-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
            background-color: #ffffff;
          }
          
          .about-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
          }
          
          .about-image {
            flex: 1;
            height: 500px;
            min-width: 300px;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          }
          
          .about-image img {
            width: 100%;
            height: 500px;
            display: block;
            transition: transform 0.5s ease;
          }
          
          .about-image:hover img {
            transform: scale(1.03);
          }
          
          .about-content {
            flex: 1;
            min-width: 300px;
          }
          
          .about-title {
            font-size: 2.5rem;
            color: #0a2463;
            margin-bottom: 10px;
            position: relative;
            padding-bottom: 15px;
          }
          
          .about-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #0a2463, #3e92cc);
            border-radius: 2px;
          }
          
          .about-subtitle {
            font-size: 1.2rem;
            color: #3e92cc;
            margin-bottom: 25px;
            font-weight: 500;
          }
          
          .about-description {
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
          }
          
          .stats-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
          }
          
          .stat-item {
            flex: 1;
            min-width: 140px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }
          
          .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          }
          
          .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #0a2463;
            margin-bottom: 5px;
          }
          
          .stat-label {
            color: #777;
            font-size: 0.9rem;
          }
          
          .values-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
          }
          
          .value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            flex: 1;
            min-width: 220px;
          }
          
          .value-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(62, 146, 204, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #3e92cc;
            font-size: 1.5rem;
          }
          
          .value-content h4 {
            color: #0a2463;
            margin-bottom: 8px;
          }
          
          .value-content p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
          }
          
          .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, #0a2463, #3e92cc);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 15px;
          }
          
          .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: linear-gradient(to right, #0a2463, #3e92cc);
          }

                    
          
          /* Responsive Design */
          @media (max-width: 768px) {
            .about-container {
              flex-direction: column;
            }
            
            .about-image {
              margin-bottom: 30px;
              width: 100%;
            }
            
            .stats-container {
              justify-content: center;
            }
            
            .stat-item {
              min-width: 120px;
            }
            
            .about-title {
              font-size: 2rem;
            }
          }
          
          @media (max-width: 480px) {
            .about-section {
              padding: 50px 15px;
            }
            
            .stats-container {
              flex-direction: column;
            }
            
            .stat-item {
              width: 100%;
            }
            
            .values-container {
              flex-direction: column;
            }
          }
          
          /* Animation */
          @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
          }
          
          .animate-in {
            animation: fadeIn 0.8s ease forwards;
          }
          
          .delay-1 { animation-delay: 0.2s; }
          .delay-2 { animation-delay: 0.4s; }
          .delay-3 { animation-delay: 0.6s; }
          .delay-4 { animation-delay: 0.8s; }

        /* Responsive Styles */
        @media screen and (max-width: 991px) {
            .slide-content h1 {
                font-size: 2.5rem;
            }
        }

        @media screen and (max-width: 768px) {
            /* Improved spacing between top header and main header */
            header {
                top: 50px; /* Increased top value for better spacing */
                padding: 15px 0; /* Increased padding for better visibility */
            }
            
            /* Adjust hero section margin to accommodate new header heights */
            .hero-section {
                margin-top: 130px; /* Increased to account for taller headers */
            }
            
            .menu-toggle {
                display: block;
            }

            .menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98); /* Increased opacity for better visibility */
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 100px 0 20px 0; /* Increased top padding */
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: left 0.4s ease;
                z-index: 1001;
                overflow-y: auto; /* Allow scrolling if menu is too tall */
            }

            .menu.active {
                left: 0;
                animation: slideIn 0.4s forwards;
            }

            @keyframes slideIn {
                from {
                    left: -100%;
                }
                to {
                    left: 0;
                }
            }

            .menu li {
                margin: 15px 0;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.3s ease;
                width: 100%;
                text-align: center;
            }

            .menu.active li {
                opacity: 1;
                transform: translateY(0);
                transition-delay: 0.2s;
            }

            .menu.active li:nth-child(2) {
                transition-delay: 0.3s;
            }

            .menu.active li:nth-child(3) {
                transition-delay: 0.4s;
            }

            .menu.active li:nth-child(4) {
                transition-delay: 0.5s;
            }

            .menu.active li:nth-child(5) {
                transition-delay: 0.6s;
            }

            .menu a {
                font-size: 1.2rem;
                text-align: center;
                display: block;
                padding: 10px 0;
                width: 100%;
            }

            .slide-content h1 {
                font-size: 2rem;
            }

            .slide-content p {
                font-size: 1rem;
            }

            .slider-prev,
            .slider-next {
                width: 35px;
                height: 35px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }
            
            .slide-content {
                margin-left: 5%;
            }
            
            /* Fix for top-header on mobile */
            .top-header {
                padding: 10px 0; /* Increased padding */
            }
            
            .contact-info a {
                margin-right: 10px;
                font-size: 0.8em;
            }
            
            /* When menu is open, fix header position */
            header.menu-open {
                background-color: transparent;
                box-shadow: none;
            }
            
            header.menu-open .logo h2 {
                color: var(--primary-color);
            }
            
            /* Fix hero slide background for mobile */
            .hero-slide {
                background-position: center center;
                background-repeat: no-repeat !important;
                background-size: cover !important;
            }
        }

        @media screen and (max-width: 576px) {
            /* Further adjust spacing for smaller devices */
            header {
                top: 60px; /* More space on smaller screens */
                padding: 10px 0;
            }
            
            .hero-section {
                height: 80vh;
                margin-top: 110px; /* Adjusted for new header heights */
            }
            
            /* Ensure images show properly on mobile */
            .hero-slide {
                background-position: center center !important;
                background-repeat: no-repeat !important;
                background-size: cover !important;
            }

            .slide-content h1 {
                font-size: 1.8rem;
            }

            .slide-content p {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }

            .btn-primary {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .slide-content {
                margin-left: 15px;
                padding: 0 10px;
                width: 90%; /* Ensure content is properly sized */
            }
            
            .contact-info {
                display: flex;
                flex-direction: column;
            }
            
            .contact-info a {
                margin-right: 0;
                margin-bottom: 5px;
                font-size: 0.8em;
            }
            
            .social-links a {
                margin-left: 10px;
                font-size: 1em;
            }
            
            /* Better spacing for menu items on small screens */
            .menu li {
                margin: 20px 0;
            }
            
            .menu a {
                font-size: 1.4rem;
            }
            
            /* Ensure top header is visible but not too large */
            .top-header .container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .social-links {
                margin-top: 5px;
                align-self: flex-start;
            }
        }
        
        /* Extra small devices */
        @media screen and (max-width: 375px) {
            .logo h2 {
                font-size: 16px;
            }
            
            .logo img {
                height: 40px;
            }
            
            .social-links a {
                margin-left: 8px;
            }
            
            .hero-section {
                margin-top: 130px; /* Additional adjustment for extra small screens */
                height: 70vh; /* Shorter for better proportions on small screens */
            }
            
            /* Ensure top header content fits */
            .top-header {
                padding: 8px 0;
            }
            
            .contact-info a {
                font-size: 0.75em;
            }
            
            /* Make sure menu toggle is easily tappable */
            .menu-toggle {
                padding: 5px;
            }
            
            /* Ensure hero images fill the space properly */
            .hero-slide {
                background-position: center center !important;
            }
        }