 :root {
            --emerald: #10b981;
            --emerald-dark: #059669;
            --emerald-light: #34d399;
            --gold: #fbbf24;
            --gold-dark: #f59e0b;
            --black: #111827;
            --white: #f9fafb;
            --gray: #6b7280;
            --gray-light: #e5e7eb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Jost', sans-serif;
            line-height: 1.6;
            color: var(--black);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            border: none;
            font-family: 'Jost', sans-serif;
        }
        
        .btn-primary {
            background-color: var(--emerald);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--emerald-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--emerald);
            border: 2px solid var(--emerald);
        }
        
        .btn-secondary:hover {
            background-color: rgba(16, 185, 129, 0.1);
            transform: translateY(-3px);
        }
        
        .btn-gold {
            background-color: var(--gold);
            color: var(--black);
        }
        
        .btn-gold:hover {
            background-color: var(--gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
        }
        
        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            
            z-index: 1000;
            background-color: transparent;
            transition: all 0.4s ease;
        }
        
        .navbar.scrolled {
            background-color: transparent;
            padding: 15px 0;
            
        }
        
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
       .logo:hover {
    transform: translateY(-2px);
}



.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}
 .logo {
        font-size: 1.8rem;
        font-weight: 500;
        /*color; #14c794;*/;
        color:white;
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo span {
        color: #00e6a4;
      }

      .logo i {
        margin-right: 8px;
        color: var(--emerald);
      }

      .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}
        .nav-links {
            display: flex;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: white;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gold);
            left: 0;
            bottom: 0;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: var(--gold);
        }
        
        .nav-links a.active:after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Hero Section */
        .hero {
            height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            overflow: hidden;
        }
        
.page-hero {
    position: relative;
    height: 75vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

/* Background */
.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.55)
        ),
        url("image\ -\ 2026-01-25T151321.227.webp");
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: slowZoom 18s ease-in-out infinite alternate;
    z-index: -1;
}

/* Content */
.hero-content {
    max-width: 900px;
    padding: 0 1.5rem;
    animation: fadeUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--emerald-light);
}

.hero-content p {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    line-height: 1.7;
    color: #f1f1f1;
    max-width: 720px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero {
        height: 65vh;
    }

    .hero-content p {
        font-size: 1.05rem;
    }
}


        
        .hero-content {
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* Page Hero */
        .page-hero {
            height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        
        .page-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .page-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .footer-logo .logo-img {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            margin-right: 10px;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: var(--gray-light);
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--gold);
            left: 0;
            bottom: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--gray-light);
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--emerald);
        }
        
        .contact-info li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--gray-light);
        }
        
        .contact-info i {
            color: var(--emerald);
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--emerald);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 999;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        /* About Page Specific Styles */
        .about-section {
            padding: 80px 0;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            margin-bottom: 50px;
            align-items: start;
        }
        
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .facts-box {
            background: var(--emerald);
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .facts-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .facts-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--black);
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .education-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .education-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--emerald);
        }
        
        .edu-icon {
            width: 60px;
            height: 60px;
            background: var(--emerald);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.5rem;
        }
        
        .edu-icon.gold {
            background: var(--gold);
            color: var(--black);
        }
        
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--emerald);
            margin-bottom: 50px;
        }
        
        .timeline-item {
            margin-bottom: 40px;
            position: relative;
        }
        
        .timeline-dot {
            position: absolute;
            left: -36px;
            top: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--emerald);
        }
        
        .values-box {
            background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
            padding: 50px;
            border-radius: 10px;
            color: white;
            text-align: center;
        }
        
        .values-box h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .values-box p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .page-hero h1 {
                font-size: 2.8rem;
            }
            
            .page-hero p {
                font-size: 1.2rem;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--black);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 1000;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .nav-links a {
                font-size: 1.3rem;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .page-hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                left: 20px;
            }
            
            .values-box {
                padding: 40px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .education-card {
                padding: 20px;
            }
        }