/* Home page css */
        :root {
            --primary: #1a5276;
            --secondary: #27ae60;
            --primary-dark: #13405c;
            --primary-light: #2c7fb8;
            --secondary: #27ae60;
            --secondary-dark: #1e8449;
            --secondary-light: #2ecc71;
            --accent: #f39c12;
            --accent-dark: #d68910;
            --accent-light: #f7b731;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --text: #333333;
            --text-light: #6c757d;
            --gray: #e9ecef;
            --border: #dee2e6;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            --radius: 30px;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            font-size: 18px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 3.5rem;
        }
        
        h2 {
            font-size: 2.8rem;
        }
        
        h3 {
            font-size: 2.2rem;
        }
        
        h4 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn:hover {
            background-color: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: var(--secondary-dark);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .header-scrolled {
            padding: 5px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -1px;
        }
        
        .logo-text span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            font-size: 1.1rem;
        }
        .nav-menu li a.active {
            border-bottom: 3px solid var(--bs-success);
            font-weight: 600;
            padding-bottom: 2px;
        }
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 82, 118, 0.85), rgba(39, 174, 96, 0.8)), url('https://images.unsplash.com/photo-1545569341-9eb8b30979d9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 200px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            animation: backgroundMove 20s linear infinite;
        }
        
        @keyframes backgroundMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100px, -100px); }
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .tagline {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 2rem;
            color: var(--light);
            animation: fadeInUp 1s ease 0.1s both;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        /* About Section */
        .about {
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Values Section */
        .values {
            background-color: var(--light);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .value-card {
            background: white;
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .value-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .value-icon {
            font-size: 50px;
            color: var(--primary);
            margin-bottom: 25px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: rgba(26, 82, 118, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .value-card:hover .value-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .value-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        /* Programs Section */
        .programs {
            background-color: white;
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .program-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .program-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .program-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
        }
        
        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .program-card:hover .program-image img {
            transform: scale(1.1);
        }
        
        .program-content {
            padding: 25px;
        }
        
        .program-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.6rem;
        }
        
        .program-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            margin-top: 15px;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .program-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .program-link:hover {
            color: var(--secondary);
        }
        
        .program-link:hover i {
            transform: translateX(5px);
        }
        
        /* Impact Section */
        .impact {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
        }
        
        .impact-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 60px;
        }
        
        .stat-item {
            text-align: center;
            margin: 20px;
            padding: 30px;
            border-radius: var(--radius);
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-text {
            color: rgba(255,255,255,0.9);
            font-weight: 500;
            font-size: 1.2rem;
        }
        
        /* Team Section */
        .team {
            background-color: var(--light);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .team-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .team-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .team-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2));
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.05);
        }
        
        .team-info {
            padding: 30px 25px;
        }
        
        .team-info h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.6rem;
        }
        
        .team-role {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: backgroundMove 30s linear infinite;
        }
        
        .cta h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.3rem;
            position: relative;
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary);
            position: relative;
        }
        
        .btn-light:hover {
            background-color: var(--light);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 1rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Styles */
        @media (max-width: 1100px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
            
            .hero h1 {
                font-size: 3.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .tagline {
                font-size: 1.5rem;
            }
            
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
        }
       
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
                padding-right:10px;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 60px;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
           
        
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .nav-menu a {
                font-size: 1.3rem;
            }
            
            .hero {
                padding: 160px 0 100px;
            }
            
            .hero h1 {
                font-size: 2.4rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .tagline {
                font-size: 1.3rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
            }
            
            h1 {
                font-size: 2.4rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .cta h2 {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 576px) {
            .logo-text {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .tagline {
                font-size: 1.1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
            
            .values-grid, .programs-grid, .team-grid {
                grid-template-columns: 1fr;
            }
        }
/* mission vision on home page */
.vision-mission-box {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* Contact us page  css */

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
        }

        .btn-primary:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        
        /* Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(26, 82, 118, 0.85), rgba(39, 174, 96, 0.8));
            padding: 150px 0 100px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .contact-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0aDI0djI0SDM2VjM0ek0wIDM0aDI0djI0SDBWMzR6TTM2IDBoMjR2MjRIMzZWMHpNMCAwaDI0djI0SDBWMHoiLz48L2c+PC9nPjwvc3ZnPg==');
            opacity: 0.1;
        }

        .contact-hero-content {
            position: relative;
            z-index: 1;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
        }
        .contact-hero p{
            color: white;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--gradient);
            margin: 15px auto;
        }

        /* Contact Details */
        .contact-info {
            background-color: var(--light);
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .contact-info ul {
            list-style: none;
            padding: 0;
        }

        .contact-info li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-info li i {
            color: var(--primary);
            font-size: 1.5rem;
            width: 30px;
        }

        /* Contact Form */
        .contact-form {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow);
        }

        .form-control, .form-select {
            border-radius: 30px;
            padding: 12px 20px;
            border: 1px solid #ced4da;
            transition: border-color 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(44, 95, 45, 0.25);
        }

        textarea.form-control {
            border-radius: 20px;
        }
        
        /* Map */
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }


        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

       

        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-hero h1 {
                font-size: 2.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
        }

        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.3rem;
            }
            
            .contact-hero {
                padding: 120px 0 80px;
            }
        }


/* Success overlay for Contact Form */
.form-overlay {
  display: none;
  position: absolute;
  background: #97bc62; /* Matching your theme */
  opacity: 0.7;
  color: #fff;
  width: 100%;
  height: 100%;
  top: 0; 
  left: 0;
  z-index: 10;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.5rem;
  border-radius: 10px;
}

.check-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

#ContactFormWrapper {
  position: relative;
}

#ContactForm {
  position: relative;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* teams css */

      /* Hero Section */
        .team-hero {
            background: linear-gradient(rgba(26, 82, 118, 0.85), rgba(39, 174, 96, 0.8));
            padding: 150px 0 100px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .team-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxn IGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0aDI0djI0SDM2VjM0ek0wIDM0aDI0djI0SDBWMzR6TTM2IDBoMjR2MjRIMzZWMHpNMCAwaDI0djI0SDBWMHoiLz48L2c+PC9nPjwvc3ZnPg==');
            opacity: 0.1;
        }

        .team-hero-content {
            position: relative;
            z-index: 1;
        }

        .team-hero h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
        }
        .team-hero p{
            color:white;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--gradient);
            margin: 15px auto;
        }

        /* Team Cards */
        .team-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 30px;
            height: 100%;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* .team-img {
            height: 300px;
            width: 100%;
            background-color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
        } */
        /* .team-img {
    height: fit-content;  
    width: 100%;
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
} */


        .team-img img {
            width: auto;
            height: 100%;
            object-fit: cover; /* makes image fill the box without distortion */
            opacity: 1; /* keep normal visibility */
            border-radius: 0; /* optional: remove rounding */
        }

        

        .team-content {
            padding: 25px;
        }

        .team-name {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .team-position {
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .team-desc {
            color: var(--text-light);
        }

        /* Advisory Board */
        .advisory-section {
            background-color: var(--light);
        }

        .advisory-card {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            height: 100%;
        }

        .advisory-name {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .advisory-role {
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 15px;
        }


        /* Responsive Styles */
        @media (max-width: 992px) {
            .team-hero h1 {
                font-size: 2.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
        }

        @media (max-width: 768px) {
            .team-hero h1 {
                font-size: 2.3rem;
            }
            
            .team-hero {
                padding: 120px 0 80px;
            }
            
            .team-img {
                height: 220px;
            }
        }

/*cta css*/
.cta-section {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        padding: 80px 0;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-section p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 2rem;
    }
.footer-logo{
    background: aliceblue;
    padding: 11px;
    margin-bottom: 7px;
    border-radius: 2%;
}