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

body {
    font-family: 'Roboto Serif', serif;
    color: white;
    overflow-x: hidden;
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('media/kindergarten-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    filter: brightness(1.1) contrast(1.1);
    background-blend-mode: multiply;
    background-attachment: fixed; /* Creates parallax effect */
    animation: subtleBackground 12s infinite alternate ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    mix-blend-mode: multiply;
    animation: floatingGlow 8s infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('media/kindergarten-bg.png') no-repeat;
    background-size: cover;
    z-index: -1;
}
/* Floating glow animation */
@keyframes floatingGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0.9; transform: scale(1.05); }
}

/* Background subtle drift */
@keyframes subtleBackground {
    0% { background-position: 50% 50%; }
    100% { background-position: 55% 55%; }
}

/* Text shadow for readability */
.hero-title, 
.hero-subtitle, 
.logo, 
.nav-links a {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 700px;
}

/* Background subtle drift */
@keyframes subtleBackground {
    0% { background-position: 50% 50%; }
    100% { background-position: 55% 55%; }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.school-logo {
    height: 40px;
    width: auto;
}

.logo {
    font-family: 'Showcard Gothic', cursive;
    font-size: 2rem;
    color: white;
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Roboto Serif', serif;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #EE8F00;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #EE8F00;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 5%;
    margin-top: auto;
    margin-bottom: 15%;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    color: #EE8F00;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.discover-btn,
.apply-btn {
    background-color: #EE8F00;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto Serif', serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.discover-btn:hover,
.apply-btn:hover {
    background-color: #ff9f1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Us Section */
#about-us {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.about-image {
    flex: 1;
    background-image: url('media/teacher-kids.jpg'); /* Change this to your actual About image */
    background-size: cover;
    background-position: center;
}

.about-content {
    flex: 1;
    background-color: white;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading {
    font-family: 'Roboto Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.about-text {
    font-family: 'Roboto Serif', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    max-width: 90%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Feature items with icon on the left, text on the right */
.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 0.4rem 0;
    color: #333;
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}


/* ===== Programs Section ===== */
.programs-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F4F5FA 100%);
    width: 100%;        
    padding: 80px 0;   /* uniform spacing */
    border-top: 1px solid rgba(73,175,139,0.15);   
    border-bottom: 1px solid rgba(73,175,139,0.15);
    box-shadow: 0 10px 30px rgba(73,175,139,0.05); 
}

.container {
    width: 95%;          /* Wider container */
    max-width: 1600px;   /* Bigger limit */
    margin: 0 auto;
}

.section-title {
    font-family: 'Roboto Serif', serif;
    font-size: 3.2rem; 
    text-align: center;
    margin-bottom: 60px; 
    color: #333;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always 4 per row */
    gap: 40px; /* Bigger spacing */
    align-items: stretch; 
}

.program-card {
    background: white;
    border-radius: 20px; 
    padding: 50px 35px; /* Bigger cards */
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1); 
    min-height: 420px;   /* Taller card */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.program-card:hover {
    transform: translateY(-15px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-icon {
    width: 120px;   /* Bigger icon */
    height: 120px;
    object-fit: contain;
    margin-bottom: 30px; 
    transition: transform 0.4s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.12); 
}

.program-card h3 {
    font-family: 'Roboto Serif', serif;
    font-size: 1.9rem; /* Larger heading */
    margin-bottom: 18px;
    color: #333;
    font-weight: 700;
}

.program-card p {
    font-family: 'Roboto Serif', serif;
    color: #555;
    line-height: 1.8; 
    font-size: 1.15rem; /* Larger text */
}

/* ===== Special Activities Section ===== */
        .special-section {
            background: linear-gradient(135deg, #FFFFFF 0%, #F4F5FA 100%);
            padding: 80px 5%;
            border-top: 1px solid rgba(73,175,139,0.15);   
            border-bottom: 1px solid rgba(73,175,139,0.15);
            box-shadow: 0 10px 30px rgba(73,175,139,0.05); 
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }

        .special-container {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 6px 30px rgba(0,0,0,0.08);
            padding: 60px 40px;
            max-width: 1400px;
            width: 100%;
            text-align: center;
        }

        .special-container .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #26547c;
            position: relative;
            display: inline-block;
        }

        .special-container .section-title:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: linear-gradient(90deg, #49AF8B, #FFD166);
            bottom: -10px;
            left: 20%;
            border-radius: 2px;
        }

        .special-container .highlight {
            color: #49AF8B;
            position: relative;
        }

        .special-container .section-subtitle {
            font-size: 1.2rem;
            color: #555;
            max-width: 800px;
            margin: 30px auto 50px;
            line-height: 1.6;
        }

        /* Activities Grid */
        .activities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .activity-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(73,175,139,0.1);
            position: relative;
            overflow: hidden;
        }

        .activity-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #49AF8B, #FFD166);
        }

        .activity-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(73,175,139,0.15);
        }

        .activity-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #49AF8B, #26547c);
            color: white;
            border-radius: 50%;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(73,175,139,0.2);
        }

        .activity-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #26547c;
        }

        .activity-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }
/* ===== Gallery Section ===== */
.gallery-section {
  background-color: #49AF8B;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  color: white;
}

.gallery-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-title {
  font-family: 'Roboto Serif', serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white; /* Ensure main text is white */
}

.gallery-title span {
    color: #F6B407; /* Amber color for "Little Bloom" */
    font-weight: 700; 
}

.gallery-subtitle {
  font-family: 'Roboto Serif', serif;
  font-size: 1.2rem;
  margin-bottom: 60px;
  opacity: 0.9;
}

.gallery-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 950px;
}

.carousel-slides {
  display: flex;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  aspect-ratio: 16/9;
  max-height: 70vh;
}

.slide {
  min-width: 100%;
  transition: transform 0.5s ease;
  position: relative;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  padding: 15px;
  font-family: 'Roboto Serif', serif;
  font-size: 1.2rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.3);
}

.prev-btn {
  left: -70px;
}

.next-btn {
  right: -70px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}


/* ===== Faculty Section ===== */
.faculty-section {
  background-color: white;
  padding: 80px 0;
  display: flex;
  align-items: flex-start; /* prevents vertical centering */
}

.faculty-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Roboto Serif', serif;
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-family: 'Roboto Serif', serif;
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.underline {
  width: 80px;
  height: 4px;
  background: #F6B407;
  margin: 0 auto;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.teacher-card {
  text-align: center;
  transition: all 0.3s ease;
}

.teacher-img-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.teacher-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.teacher-card:hover .teacher-img {
  transform: scale(1.1);
}

.teacher-card h3 {
  font-family: 'Roboto Serif', serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 8px;
}

.teacher-card p {
  font-family: 'Roboto Serif', serif;
  color: #666;
  font-size: 1rem;
}


        .excellence-section {
            padding: 60px 5%;
            display: flex;
            justify-content: center;
            background: linear-gradient(135deg, #f8f9ff 0%, #edf2ff 100%);
            border-top: 1px solid rgba(73,175,139,0.15);   
            border-bottom: 1px solid rgba(73,175,139,0.15);
        }

        .excellence-container {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 6px 30px rgba(0,0,0,0.08);
            padding: 60px 40px;
            max-width: 1400px;
            width: 100%;
            text-align: center;
        }

        .excellence-container .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #26547c;
            position: relative;
            display: inline-block;
        }

        .excellence-container .section-title:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 4px;
            background: linear-gradient(90deg, #49AF8B, #FFD166);
            bottom: -10px;
            left: 20%;
            border-radius: 2px;
        }

        .excellence-container .highlight {
            color: #49AF8B;
            position: relative;
        }

        .excellence-container .section-subtitle {
            font-size: 1.2rem;
            color: #555;
            max-width: 800px;
            margin: 30px auto 50px;
            line-height: 1.6;
        }

        /* Excellence Grid */
        .excellence-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .excellence-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(73,175,139,0.1);
            position: relative;
            overflow: hidden;
        }

        .excellence-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #49AF8B, #26547c);
        }

        .excellence-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(73,175,139,0.15);
        }

        .excellence-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #26547c, #49AF8B);
            color: white;
            border-radius: 50%;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(73,175,139,0.2);
        }

        .excellence-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #26547c;
        }

        .excellence-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .excellence-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .excellence-grid {
                grid-template-columns: 1fr;
            }
            
            .excellence-container .section-title {
                font-size: 2.2rem;
            }
            
            .excellence-container {
                padding: 40px 20px;
            }
          }
/* ===== Testimonials Section ===== */

.testimonials-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F4F5FA 100%); /* White to Ghost White */
    border-top: 1px solid rgba(73,175,139,0.15);   /* Subtle Mint border */
    border-bottom: 1px solid rgba(73,175,139,0.15);
    box-shadow: 0 10px 30px rgba(73,175,139,0.05); /* Soft Mint shadow */
    padding: 80px 20px;
    position: relative;
}

.testimonials-section::before {
    content: "";
    font-family: serif;
    font-size: 400px;
    color: rgba(255,255,255,0.05); /* Light decorative texture */
    position: absolute;
    top: 50px;
    left: -50px;
    line-height: 0;
    z-index: 0;
}

.testimonials-section h2 {
    font-family: 'Roboto Serif', serif;
    font-size: 2.8rem;
    color: #333; /* Strong heading color */
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.testimonials-section p::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #49AF8B; /* Mint underline accent */
    margin: 10px auto 0;
    border-radius: 2px;
}

.testimonials-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #555; /* More visible than grey */
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px; /* Centered with spacing */
    line-height: 1.7;
    padding: 0 15px;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(73, 175, 139, 0.25); /* Mint glow */
}

.family-photo {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center;     /* centers vertically if needed */
    margin-bottom: 20px;     /* space below the image */
}

.family-photo .parent {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .family-photo .parent {
    transform: scale(1.1);
}

.stars {
    color: #F6B407; /* Amber stars */
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

blockquote {
    font-family: 'Roboto Serif', serif;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

blockquote::before {
    content: "“"; /* Proper quote mark */
    font-size: 60px;
    color: rgba(73, 175, 139, 0.2); /* Mint accent */
    position: absolute;
    left: -15px;
    top: -30px;
}

.family-info h3 {
    font-family: 'Roboto Serif', serif;
    color: #333;
    margin-bottom: 5px;
}

.family-info p {
    font-family: 'Roboto Serif', serif;
    color: #666;
    font-size: 0.9rem;
}

/* ===================== CONTACT US SECTION ===================== */

.glass-contact-section {
  background: linear-gradient(45deg, #49AF8B, #49AF8B);
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-size: 400% 400%;
  animation: gradientShift 30s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.glass-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.glass-title {
  font-family: 'Roboto Serif', serif;
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.glass-subtitle {
  font-family: 'Roboto Serif', serif;
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.yellow-underline {
  width: 60px;
  height: 4px;
  background-color: #FFC107;
  margin: 10px auto 40px;
  border-radius: 2px;
}

/* ===================== GLASS CARDS ===================== */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px 0;
  justify-items: center;
}

.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  width: 100%;
  max-width: 260px;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.3);
}

.glass-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.glass-card:hover .glass-icon {
  transform: scale(1.15) rotate(5deg);
}

.glass-card h3 {
  font-family: 'Roboto Serif', serif;
  color: white;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.glass-card p {
  font-family: 'Roboto Serif', serif;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

/* ===================== ENROLL BUTTON ===================== */
.glass-enroll-btn {
  position: relative;
  display: inline-block;
  background: #FFC107;
  color: white;
  font-family: 'Roboto Serif', serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  border: 2px solid white;
  transition: all 0.4s ease;
}

.hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFF, rgba(255,255,255,0.5));
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.glass-enroll-btn:hover {
  transform: translateY(-3px);
  background-color: #FFC107;
  color: #49AF8B;
  border-color: #FFC107;
}

.glass-enroll-btn:hover .hover-effect {
  opacity: 1;
}

@media (max-width: 1024px) {
  .glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}































/* ===== Footer Styles ===== */
.site-footer {
  background-color: #3a8a6d; /* Slightly darker green for contrast */
  color: #fff;
  padding: 50px 0 20px;
  font-family: 'Roboto Serif', serif;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

/* ===== Logo & Brand ===== */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 55px;
  height: auto;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 250px;
}

/* ===== Headings ===== */
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.footer-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #F6B407;
  margin-top: 6px;
  border-radius: 2px;
}

/* ===== Quick Links ===== */
.footer-links,
.resources-list,
.downloads-list,
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.resources-list li,
.downloads-list li,
.contact-info li {
  margin-bottom: 12px;
}

.footer-links a,
.resources-list a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.resources-list a:hover {
  color: #F6B407;
}

/* ===== Contact Info ===== */
.contact-info {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.contact-info i {
  margin-right: 8px;
  color: #F6B407;
}

/* ===== Social Links ===== */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #F6B407;
  transform: translateY(-3px);
}

/* ===== Downloads Section ===== */
.downloads-list a {
  text-decoration: none;
  display: block;
  background: rgba(255,255,255,0.08);
  padding: 12px 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.downloads-list a:hover {
  background: rgba(246,180,7,0.85);
}

.downloads-list span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== Copyright ===== */
.copyright-section {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
}

.powered-by {
  margin-left: 8px;
  font-weight: 600;
  color: #F6B407;
}































/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    #about-us {
        flex-direction: column;
    }
    
    .about-image {
        min-height: 50vh;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

     .section-title {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .programs-grid {
        grid-template-columns: 1fr 1fr; /* 2 cards per row */
        gap: 25px;
    }

    .program-card {
        min-height: 360px;
        padding: 40px 25px;
    }

    .program-card h3 {
        font-size: 1.6rem;
    }

    .program-card p {
        font-size: 1rem;
    }

    .activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .special-section .section-title {
    font-size: 1.9rem;
  }

  .activity-card {
    padding: 25px 15px;
  }

  .gallery-title {
        font-size: 2.2rem;
    }
  
  .gallery-subtitle {
    font-size: 1rem;
   }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .prev-btn {
    left: -20px;
  }
  
  .next-btn {
    right: -20px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

    .excellence-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .excellence-container .section-title {
    font-size: 1.9rem;
  }

  .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
  .testimonial-card {
        max-width: 400px;
        margin: 0 auto;
    }
    

  .glass-title { font-size: 2.2rem; }
  .glass-subtitle { font-size: 1rem; margin-bottom: 25px; }
  .glass-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .footer-container {
    gap: 30px;
  }
  
  .logo-name {
    font-size: 1.3rem;
  }

  .footer-heading {
    font-size: 1.1rem;
  }

}









@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .discover-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .programs-grid {
        grid-template-columns: 1fr; /* 1 card per row */
    }

    .program-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .program-icon {
        width: 90px;
        height: 90px;
    }

    .program-card h3 {
        font-size: 1.4rem;
    }

    .program-card p {
        font-size: 0.95rem;
    }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .special-container .section-title {
    font-size: 1.6rem;
  }

  .special-container .section-subtitle {
    font-size: 1rem;
  }

  .activity-card h3 {
    font-size: 1.2rem;
  }

  .activity-card p {
    font-size: 0.95rem;
  }

   .gallery-section {
    padding: 60px 0;
    }
  
  .gallery-title {
    font-size: 1.8rem;
  }
  
  .carousel-slides {
    aspect-ratio: 4/3;
  }

    .faculty-grid {
    grid-template-columns: 1fr;
  }
  
  .teacher-img-container {
    width: 180px;
    height: 180px;
  }

    .excellence-grid {
    grid-template-columns: 1fr;
  }

  .excellence-container .section-title {
    font-size: 1.6rem;
  }

  .excellence-container .section-subtitle {
    font-size: 1rem;
  }

  .excellence-card h3 {
    font-size: 1.2rem;
  }

  .excellence-card p {
    font-size: 0.95rem;
  }


  .glass-title { font-size: 1.8rem; }
  .glass-subtitle { font-size: 0.95rem; }
  .glass-grid { grid-template-columns: 1fr; gap: 20px; }
  .glass-card { padding: 25px 18px; max-width: 100%; }
  .glass-enroll-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

}