
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeIn 1.5s ease;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            color: #1a2a6c;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background: white;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #1a2a6c;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-text h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            bottom: 0;
            left: 40px;
        }
        
        .about-text p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        /* Why Choose Us Section */
        .features {
     
            background: #f5f7fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #1a2a6c;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            font-size: 1.2rem;
           
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #ffcc00, #ff9900);
            transition: width 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card:hover:before {
            width: 100%;
            opacity: 0.1;
        }
        
        .feature-icon {
            font-size: 50px;
            color: #1a2a6c;
            margin-bottom: 25px;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a2a6c;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.7;
        }
        
        /* Mission & Vision Section */
        .mission-vision {
            padding: 100px 0;
            background: white;
        }
        
        .mv-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .mv-card {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(145deg, #f5f7fa, #e6e9ef);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .mv-icon {
            font-size: 50px;
            margin-bottom: 25px;
            background: linear-gradient(to right, #1a2a6c, #2a4ba0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .mv-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #1a2a6c;
        }
        
        .mv-card p {
            color: #555;
            line-height: 1.8;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a2a6c 0%, #2a4ba0 100%) !important;
            color: white;
        }
        
        .testimonials .section-title h2 {
            color: white;
        }
        
        .testimonials .section-title h2:after {
            background: linear-gradient(to right, #ffcc00, #ff9900);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .author-info p {
            color: #ffcc00;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('/assets//img/about/Contact-us.jpg') no-repeat center center/cover;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
       
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero {
                height: 70vh;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .about-text, .about-image {
                flex: 100%;
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .about-image {
                transform: none;
            }
        }
    