/* Colors */
:root {
    --primary-blue: #004aad;      /* main blue */
    --accent-pink: #e91e63;       /* hot pink */
    --light-pink: #ff4f89;       /* hot pink */
    --yellow: #ffda00;            /* optional highlight */
    --dark: #222;
    --light: #f7f7f7;
  }


/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }

  /* Keep header fixed on scroll */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #004080; /* main blue */
    color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


/* Sticky Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }


main {
    padding-top: 100px; /* adjust if your header is taller/shorter */
}

/* Accent hover color */
nav ul li a:hover {
    color: #f39c12; /* secondary color (gold/orange) */
}


/* Works on Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;              /* width of vertical scrollbar */
  height: 12px;             /* height of horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #cccaca;      /* background of track */
}

::-webkit-scrollbar-thumb {
  background: #007bff;      /* scrollbar thumb color (your theme color) */
  border-radius: 6px;       /* rounded edges */
}

::-webkit-scrollbar-thumb:hover {
  background: #0056b3;      /* darker shade when hovered */
}

/* Firefox support */
* {
  scrollbar-width: auto;            /* auto | thin */
  scrollbar-color: #007bff #f0ecec; /* thumb | track */
}



  /* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-blue);
  position: relative; /* important for centering the school name */
  color: #fff;
  padding: 15px 20px;
}
.logo img {
    height: 50px;
    width: auto;
  }
  
  .navbar .logo {
    font-size: 20px;
    font-weight: bold;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .navbar .nav-links a {
    color: #fff;
    transition: color 0.3s;
    text-decoration: none;
    font-weight: 500;
  }
  
  .navbar .nav-links a:hover {
    color: var(--light-pink);
  }

  .school-name {
    flex: 1;
    text-align:center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    font-weight: bold;
    color: #ffffff; /* Blue */

  }
  
  .school-name a {
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: inherit;
  }

  /* Dropdown container */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  /* Dropdown toggle arrow */
  .dropdown-toggle {
    cursor: pointer;
    padding: 0 6px;
    display: flex;
    align-items: center;
  }
  
  .dropdown-toggle i {
    transition: transform 0.3s ease;
  }
  
  /* Rotate when active */
  .dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
  }
  
  /* Dropdown menu */
  .dropdown-content {
    display: none;
    position: absolute;
    background: var(--accent-pink);
    top: 100%; /* directly below parent */
    left: 0;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .dropdown-content li {
    list-style: none;
  }
  
  .dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .dropdown-content a:hover {
    background: var(--light);
    color: #fff;
  }
  

/* Hamburger icon (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}
/* Close Button */
.close-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    margin-top: 20px;
  }
  
  /* Hero */
  .hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
  }

  /* Slideshow container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  /* Each slide */
  .hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: shutterEffect 35s infinite;
  }
  /* Active slide (controlled by JS) */
.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }
  

/* Keyframes: shutter horizontal effect */
@keyframes shutterEffect {
    0%   { opacity: 0; clip-path: inset(0 100% 0 0); }
    5%   { opacity: 1; clip-path: inset(0 0 0 0); }
    20%  { opacity: 1; clip-path: inset(0 0 0 0); }
    25%  { opacity: 0; clip-path: inset(0 0 0 100%); }
    100% { opacity: 0; clip-path: inset(0 100% 0 0); }
  }
  
  /* Order of slides */
  .hero-slideshow .slide:nth-child(1) { animation-delay: 0s; }
  .hero-slideshow .slide:nth-child(2) { animation-delay: 5s; }
  .hero-slideshow .slide:nth-child(3) { animation-delay: 10s; }
  .hero-slideshow .slide:nth-child(4) { animation-delay: 15s; }
  .hero-slideshow .slide:nth-child(5) { animation-delay: 20s; }
  .hero-slideshow .slide:nth-child(6) { animation-delay: 25s; }
  .hero-slideshow .slide:nth-child(7) { animation-delay: 30s; }


  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-pink);
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s, background 0.3s;
  }
  
  .btn:hover {
    transform: scale(1.05);
    background: var(--primary-blue);
  }
  
  /* Sections */

  /* intro */

/* About / Intro Section */
.intro.about-section {
    display: flex;
    align-items: center; /* vertical alignment */
    justify-content: space-between; /* space between image and text */
    gap: 40px;
    padding: 60px 20px;
    flex-wrap: nowrap; /* prevent stacking on large screens */
  }

.intro.about-section .content {
  flex: 1 1 500px; /* allow the content to grow and shrink, min width 500px */
  min-width: 300px; /* prevent shrinking too much */
}

.intro.about-section .content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.intro.about-section .content p {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.intro.about-section .content .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--accent-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.intro.about-section .content .btn:hover {
  background-color: #005bb5; /* darker blue on hover */
}

.intro.about-section .image {
    flex: 0 0 100px; /* don't grow or shrink */
    text-align: center;
    max-width: 100%; /* limit container width */
}

.intro.about-section .image img {
  display: block; /* remove inline spacing issues */
  max-width: 100px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.intro.about-section .image img:hover {
  transform: scale(1.05); /* subtle zoom on hover */
}

/* Heading */
.intro .content h2 {
  font-size: 2rem;       /* desktop */
  font-weight: 700;
  color: #007bff;        /* theme color */
  margin-bottom: 8px;
}

/* Paragraphs */
.intro .content p {
  font-size: 1.2rem;     /* base text size */
  line-height: 1.6;
  color: #000000;
  margin-bottom: 8px;
  
}






  .container {
    width: 90%;
    max-width: 1700px;
    margin: auto;
    padding: 40px 0;
  }
  
  .intro, .about-highlights, .cta, .contact-info {
    text-align: center;
    padding: 50px 20px;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .highlight {
    background: var(--light);
    border-left: 5px solid var(--accent-pink);
    transition: transform 0.3s;
  }
  .highlight:hover {
    transform: translateY(-5px);
  }
  
/* CTA */
.cta {
    background: var(--primary-blue);
    color: #fff;
  }
  
  .cta .btn {
    background: var(--accent-pink);
  }
  
  .cta .btn:hover {
    background: #fff;
    color: var(--primary-blue);
  }


/* Director message */

.directors-message {
    position: relative;
    padding: 6rem 10%;
    background: var(--light-bg);
    overflow: hidden;
  }
  
  .message-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/subtle.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
  }
  
  .director-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    z-index: 1;
    position: relative;
    flex-wrap: wrap;
  }
  
  .director-image img {
    width: 300px;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
  }
  
  .director-text {
    flex: 1;
    color: var(--black);
  }
  
  .director-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .director-text h3 {
    font-size: 1.7rem;
    margin-top: 2rem;
  }
  
  .director-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .director-text ul {
    list-style: disc inside;
    margin: 1rem 0;
    font-size: 1.3rem;

  }
  
  .pull-quote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--primary-color);
    color: var(--accent-pink);
    font-size: 1.8rem;
    font-style:italic;
    font-weight: 200;
    border-radius: 1rem;
    text-align: center;
  }
  
  .cta-btn {
    margin-top: 2rem;
  }
  
  .cta-btn .btn {
    background: var(--accent-pink);
    padding: 1rem 2rem;
    font-size: 1.4rem;
    border-radius: 0.8rem;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .cta-btn .btn:hover{
    background:var(--accent-pink) ;
    color: var(--light);
  }


  .director-social-text {
    text-align: center;
    font-size: 1.6rem;
    color: var(--black);
    margin-top: 3rem;
    font-weight: 300;
}
  
  .director-social {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center; /* center the icons */
}

.director-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--black);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.director-social a:hover {
    background: var(--primary-color);
    color:#d12f07 ;
    transform: translateY(-4px) scale(1.1);
}

.director-contact {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.6rem;
    color: var(--dark);
}

.director-contact p {
    margin: 0.5rem 0;
    font-weight: bolder;
}

.director-contact a {
    color: var(--accent-pink); /* matches theme */
    text-decoration: none;
    transition: color 0.3s ease;
}

.director-contact a:hover {
    color: var(--primary-blue); /* highlight on hover */
}



/* Community Page Styles */

.community-hero {
    background: url("../images/community.jpg") center/cover no-repeat;
    height: 50vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .community-hero .overlay {
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
  }
  .community-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .community-intro, 
  .community-highlight, 
  .community-future {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
    text-align: center;
    font-size: 1.5rem;
  }
  .community-intro h2,
  .community-highlight h2,
  .community-future h2 {
    margin-bottom: 1rem;
    color: #0c4a6e;
  }
  .community-gallery {
    background: #f9fafb;
    padding: 2rem 1rem;
    text-align: center;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  .community-cta {
    background: #0c4a6e;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
  }
  .community-cta h2 {
    margin-bottom: 1rem;
  }
  .cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #0c4a6e;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
  }
  .cta-btn:hover {
    background: #e91e63;
    color: #fff;
  }
  section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  section.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  














/* Footer */
.site-footer {
    background: url("../images/3.png") no-repeat center center/cover;
    color: #fff;
    padding: 40px 20px 20px;
    font-size: 1.5rem;
    text-align: left;
    position: relative;
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-section {
    flex: 1 1 250px;
    text-align: left;
  }

  .footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin: 8px 0;
    font-size: 15px;
  }
  
  .site-footer .footer-content p {
    margin: 5px 0;
    font-size: 15px;
    text-align: left;
  }
  
  .site-footer a {
    color: #ffdd57; /* gold-like highlight */
    text-decoration: none;
  }
  
  .site-footer a:hover {
    text-decoration: underline;
  }
  
  /* Bottom copyright */
  .footer-bottom {
    text-align: left;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
    font-size: 14px;
    color: #ddd;
  }

  /* Footer layout - Desktop & Tablets */
footer .footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; /* Contact gets more room, links stay neat */
  gap: 20px;
  padding: 20px;
  align-items: start;
}

footer .footer-column {
  font-size: 18px;
  line-height: 1.6;
  align-items: center;
}

footer .footer-column h3 {
  font-size: 16px;
  margin-bottom: 10px;
  white-space: nowrap; /* Keeps 'Quick Links' on one line */
}

footer .footer-column a,
footer .footer-column p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-column ul li {
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  padding: 15px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 15px;
}
  
  /* Follow */

  .follow-us {
    padding: 4rem 10%;
    text-align: center;
    background: var(--light-bg);
}

.follow-us .heading-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black);
}

.follow-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.follow-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 10rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--box-shadow);
    text-decoration: none;
    color: var(--black);
    font-size: 1.6rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.follow-card i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Hover effects for each platform */
.follow-card.instagram:hover { background: #d12f07; color: #fff; }
.follow-card.facebook:hover { background: #1877F2; color: #fff; }
.follow-card.youtube:hover { background: #FF0000; color: #fff; }
.follow-card.tiktok:hover { background: #000000; color: #fff; }

.follow-card:hover {
    transform: translateY(-5px);
}


    
  /* We Are Social Section */
  .we-are-social {
    padding: 4rem 10%;
    background: var(--light-bg);
    text-align: center;
}

.we-are-social .heading-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--light);
    background-color: var(--primary-blue);

}

/* Card Grid */
.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 2rem;
}

/* Individual Card */
.social-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-decoration: none;
    color: var(--black);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Image Container */
.social-card .social-image {
    width: 100%;
    height: 18rem;
    overflow: hidden;
}

.social-card .social-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-card:hover .social-image img {
    transform: scale(1.05); /* subtle zoom on hover */
}

/* Caption */
.social-caption {
    padding: 1rem 1.2rem;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: left;
}

/* Follow Button */
.follow-btn {
    margin-top: 3rem;
}



/* Transport Section */
.transport-section {
    padding: 4rem 10%;
    background: var(--light-bg);
    text-align: center; /* only the heading is centered */
}

.transport-section .heading-title {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.transport-section .transport-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* paragraphs run naturally */
    line-height: 1.6;
}

/* Swiper carousel */
.transport-swiper {
    width: 100%;
    margin-bottom: 2.5rem;
}

.transport-swiper .swiper-slide img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

/* Transport Info Box */
.transport-info {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.transport-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.transport-info ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.transport-info ul li {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.transport-rule {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;

}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 3rem;
    height: 3rem;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}


/* Facilities Page */
.facilities-page {
    padding: 4.5rem 10%;
    background: var(--light-bg);
    color: var(--black);
  }
  
  .facilities-page .page-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 0.75rem;
  }
  
  .facilities-page .lead {
    max-width: 1000px;
    margin: 0.5rem auto 2.5rem auto;
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: left; /* paragraph reads left->right */
  }
  
  /* Facility block */
  .facility {
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
  }
  
  /* visible state triggered by IntersectionObserver */
  .facility.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Alternate sides for visual interest */
  .facility:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  /* Image column */
  .facility-image {
    flex: 0 0 420px;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .facility-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    object-fit: cover;
  }
  
  /* Text column */
  .facility-content {
    flex: 1 1 520px;
    text-align: left;
  }
  
  .facility-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--primary-blue);
  }
  
  .facility-content p {
    font-size: 1.2rem;
    line-height: 1.75;
    margin-bottom: 0.9rem;
  }
  
  /* CTA (end of page) */
  .facilities-cta {
    text-align: center;
    margin-top: 2.5rem;
  }
  
  .facilities-note {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
  }


  /* Hero Section */
.cocurricular-hero {
    position: relative;
    background: url("../images/sporty.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
  }
  .cocurricular-hero .overlay {
    background: rgba(0,0,0,0.5);
    padding: 40px;
  }
  
  /* Intro & Activities */
  .cocurricular-intro, .activity, .cocurricular-cta {
    max-width: 2000px;
    margin: 40px auto;
    padding: 20px;
    font-size: 1.4rem;
    text-align: center;
  }

  .cocurricular-intro h2{
    font-size: 2rem;
    text-decoration: none;
    color: var(--primary-blue);
  }
  .cocurricular-intro p{
    font-size: 1.4rem;
    text-decoration: none;
  }

  .activity {
    margin-top: 40px;
  }
  .activity h2 {
    margin-top: -60px;
    margin-bottom: 5px;
    text-decoration: underline;
    color: var(--accent-pink);
  }
  
  /* Swiper */
  .swiper {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
  }
  .swiper-slide img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* CTA */
  .cocurricular-cta {
    background: #f5f5f5;
    border-radius: 8px;
  }
  .cocurricular-cta h2{
    font-size: 1.7rem;
  }
  .cocurricular-cta p{
    font-size: 1.3rem;
  }

  .cocurricular-cta .cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #0073e6;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;

  }
  .cocurricular-cta .cta-btn:hover {
    background: #e91e63;
    color: #fff;

  }



  /* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #0073e6;  /* match your theme */
  transition: 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #005bb5;
}


/* Hero section */
.resources-hero {
    position: relative;
    background: url('../images/4.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
  }
  .resources-hero .overlay {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 10px;
    display: inline-block;
  }
  
  /* Intro */
  .resources-intro {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
  }
  
  /* General docs */
  .resources-general {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 300px;
  }
  .doc-list {
    list-style: none;
    padding: 0;
  }
  .doc-list li {
    margin: 10px 0;
  }
  .doc-list a {
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
  }
  .doc-list a:hover {
    text-decoration: underline;
    color: var(--accent-pink);
  }
  
  /* Academic cards */
  .resources-academics {
    padding: 40px 20px;
  }
  .resources-academics h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .resource-card {
    background: var(--light);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }
  .resource-card:hover {
    transform: translateY(-5px);
  }
  .resource-card h3 {
    margin-bottom: 15px;
    color: #333;
  }
  .resource-card ul {
    list-style: none;
    padding: 0;
  }
  .resource-card li {
    margin: 8px 0;
  }
  .resource-card a {
    text-decoration: none;
    color: #0077cc;
  }
  .resource-card a:hover {
    text-decoration: underline;
    color: var(--accent-pink);
  }
  
  .media-hero {
    background: url('../images/IMG_0012.jpg') center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
  }
  .media-hero .overlay {
    background: rgba(0,0,0,0.6);
    display: inline-block;
    padding: 40px;
    border-radius: 10px;
  }
  
  .media-gallery, .media-videos, .media-social, .media-cta {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .media-gallery h2{
    text-align: center;
    font-size: 1.6rem;
    color: var(--primary-blue);
  }
  
  .media-videos h2{
    text-align: center;
    font-size: 1.6rem;
    color: var(--primary-blue);
  }

  .gallery-category {
    margin-bottom: 50px;
  }
  .gallery-category h3 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 20px;
  }
  .video-card iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
  }
  
  .media-social .social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
  }
  .media-cta {
    text-align: center;
  }
  .cta-buttons {
    margin-top: 20px;
  }
  .cta-buttons .btn {
    margin: 5px;
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-pink);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
  }
  .cta-buttons .btn:hover {
    background: #0077cc;
  }
  

  /* === Admissions Page Styles === */

/* Hero */
.admission-hero {
  background: url('../images/33.png') center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}
.admission-hero .overlay {
  background: rgba(0,0,0,0.45);
  display: inline-block;
  padding: 30px 40px;
  border-radius: 10px;
}
.admission-hero h1 { font-size: 2.8rem; margin-bottom: 8px; }
.admission-hero p { font-size: 1.15rem; margin-bottom: 15px; }

/* Steps */
.admission-steps { padding: 50px 0; text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.step-card {
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: left;
}
.step-card .step-num {
  width: 44px;
  height: 44px;
  background: var(--accent-pink);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.step-card h3 { margin: 6px 0 8px; }
.step-card p { color: #000000; font-size: 1.1rem; }
.step-card p.small { color: #666; font-size: 0.95rem; margin-top: 8px; }

/* Requirements */
.admission-requirements { padding: 40px 0;
  
}
.admission-requirements h2{ 
  text-align: center;
  color: var(--accent-pink);  
}
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.req-card {
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Documents */
.admission-docs { padding: 40px 0; }

.admission-docs h2{ 
  text-align: center;
  color: var(--accent-pink);  
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.doc-card {
  padding: 18px;
  background: var(--primary-blue);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(240, 33, 147, 0.05);
  color: var(--light);
}

/* Why choose */
.admission-why { padding: 40px 0; }
.why-list {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  font-size: 1.2rem;
}

/* Contact & Map */
.admission-contact { padding: 40px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-card, .map-card {
  padding: 20px;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.contact-card p {
  font-size: 1.1rem;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.map-wrapper iframe { border-radius: 8px; }


/* Hero */
.contact-hero {
  position: relative;
  background: url('../images/22.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.contact-hero .overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px;
  border-radius: 10px;
  display: inline-block;
}

/* Intro */
.contact-intro {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 1.2rem;
}

/* Form */
.contact-form-section {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.form-actions {
  display: flex;
  gap: 15px;
}
.btn {
  display: inline-block;
  background: var(--accent-pink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}
.btn:hover {
  background: #0077cc
}
.email-btn { background: #0077cc; }
.whatsapp-btn { background: #25d366; }

/* Direct WhatsApp */
.direct-whatsapp {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
}
.whatsapp-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 15px;

}

/* Hero Section */
.events-hero {
  position: relative;
  background: url('../images/trips-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.events-hero .overlay {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 10px;
  display: inline-block;
}

/* Section styling */
.trips-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.trips-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}
.trips-section p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #000000;
}

/* Swiper */

.swiper-button-next, .swiper-button-prev {
  color: #0077cc;
}
.swiper-pagination-bullet {
  background-color: var(--accent-pink);
}

/* Importance section */
.trips-importance {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}
.trips-importance h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.trips-importance p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.trips-importance ul {
  list-style: disc inside;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  color: #000000;
}
.trips-importance li {
  margin: 10px 0;
  font-size: 1.3rem;
  
}




.event-hero {
  background: url("images/cultural.jpg") center/cover no-repeat;
  position: relative;
  text-align: center;
  padding: 120px 20px;
  color: #fff;
}

.event-hero .overlay {
  background: rgba(21, 1, 94, 0.788);
  padding: 50px;
  border-radius: 10px;
}
.event-hero p {

  font-size: 1.4rem;
}

.cultural-intro, .cultural-importance {
  max-width: 1100px;
  margin: 5px auto;
  padding: 0 10px;
  text-align: center;
}
.cultural-section h2 {
  max-width: 1100px;
  font-size: 1.8rem;
  margin: 5px auto;
  padding: 0 10px;
  text-align: center;
}
.cultural-section p {
  max-width: 1100px;
  font-size: 1.4rem;
  margin: 5px auto;
  padding: 0 10px;
  text-align: center;
}

.cultural-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.cultural-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.cultural-item:hover {
  transform: translateY(-8px);
}

.cultural-item img {
  width: 100%;
  border-radius: 10px;
  height: 240px;
  object-fit: cover;
}

.cultural-item h3 {
  margin: 15px 0 10px;
  font-size: 1.3rem;
  color: #000000;
}

.cultural-item p {
  font-size: 0.95rem;
  color: #000000;
}

.cultural-importance ul {
  list-style: disc inside;
  padding: 0;
  text-align: left;
}

.cultural-importance li {
  margin: 12px 0;
  font-size: 1.3rem;
  color: #000000;
}
.cultural-importance h2 {
  font-size: 1.7rem;
  color: var(--primary-blue);
}
.cultural-importance p {
  font-size: 1.4rem;
  color: var(--accent-pink);
}

/* Floating background icons (balloon effect) */

body {
  position: relative;
}

.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;   /* put them above hero overlay but still behind text */
}

.float-img {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.12;
  animation: floatVertical 25s linear infinite;
}

/* Balloons scattered across page */
.float-img:nth-child(1) { top: 10%; left: 5%;  animation-delay: 0s; }
.float-img:nth-child(2) { top: 30%; left: 8%;  animation-delay: 5s; }
.float-img:nth-child(3) { top: 60%; left: 3%;  animation-delay: 10s; }
.float-img:nth-child(4) { top: 20%; right: 5%; animation-delay: 7s; }
.float-img:nth-child(5) { top: 50%; right: 8%; animation-delay: 12s; }
.float-img:nth-child(6) { top: 80%; right: 4%; animation-delay: 15s; }

@keyframes floatVertical {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-80px); }
  100% { transform: translateY(0); }
}



/* Hero */
.ptc-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url("../images/ptc1.jpg") center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
.ptc-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.ptc-hero p {
  font-size: 1.3rem;
}

/* About */
.ptc-about {
  background: #fff;
  text-align: center;
}
.ptc-about p{
  font-size: 1.3rem;
}

/* Groups */
.ptc-groups .group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.ptc-groups h2{
  text-align: center;
}
.group-card {
  background: #ff4da6; /* hot pink */
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s ease;
}
.group-card:hover {
  background: #0b5fa5; /* switch to blue */
}

/* Testimonial */
.ptc-testimonial {
  background: #0b5fa5;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}
.ptc-testimonial blockquote {
  font-size: 1.3rem;
  font-style: italic;
  padding-bottom: 1rem;
}
.ptc-testimonial span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}


.ptc-testimonia {
  background: var(--accent-pink);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  margin-top: -4rem;
}
.ptc-testimonia blockquote {
  font-size: 1.3rem;
  font-style: italic;
  padding-bottom: -5rem;
}
.ptc-testimonia span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}



/* Gallery */
.ptc-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.ptc-gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Closing */
.ptc-closing {
  background: #fff;
  text-align: center;
  padding-bottom: 3rem;
}
.ptc-closing h2 {
  margin-bottom: 1rem;
}
.ptc-closing p {
  color: #000000;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.6s ease-out;
}

.group-card, .gallery-grid img {
  opacity: 0;
  transform: translateY(30px);
}

/* Hero Section */
.sports-hero {
  position: relative;
  background: url("../images/sports0.jpg") no-repeat center center/cover;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.sports-hero .overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  border-radius: 12px;
}

.sports-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sports-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* About Section */
.sports-about {
  padding: 4rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

.sports-about h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #333;
}

.sports-about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #000000;
}

/* Highlights Section */
.sports-highlights {
  padding: 4rem 1rem;
}

.sports-highlights h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #222;
}
.sports-highlights h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #222;
}
.sports-highlights p {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #222;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.highlight-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  color: #0073e6;
}

/* Gallery Section */
.sports-gallery {
  padding: 4rem 1rem;
  background: #f9f9f9;
}

.sports-gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox.active {
  display: flex;
}

.lightbox span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Closing Section */
.sports-closing {
  padding: 4rem 1rem;
  text-align: center;
}

.sports-closing h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #222;
}

.sports-closing p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #000000;
}

/* =======================
   Graduation Page Styles
   ======================= */

/* Hero */
.graduation-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url("../images/cel1.jpg") center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.graduation-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.graduation-hero p {
  font-size: 1.4rem;
}

/* About */
.graduation-about {
  text-align: center;
  background: #fff;
  padding: 3rem 1rem;
}
.graduation-about h2 {
  color: #0b5fa5; /* brand blue */
  margin-bottom: 1rem;
  font-size: 1.7rem;
}
.graduation-about p {
  max-width: 1200px;
  margin: auto;
  line-height: 1.7;
  font-size: 1.3rem;
}

/* Preparations */
.graduation-prep {
  background: #f9f9f9;
  text-align: center;
  padding: 3rem 1rem;
}
.graduation-prep h2 {
  color: #ff4da6; /* hot pink */
  margin-bottom: 1rem;
  font-size: 1.7rem;
}
.graduation-prep p {
  max-width: 1000px;
  margin: auto;
  line-height: 1.7;
  font-size: 1.3rem;
}

/* Highlights */
.graduation-highlights {
  padding: 3rem 1rem;
  background: #fff;
  text-align: center;
}
.graduation-highlights h2 {
  color: #0b5fa5;
  margin-bottom: 2rem;
  font-size: 1.7rem;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.highlight-card {
  background: #ff4da6;
  color: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-8px);
  background: #0b5fa5;
}
.highlight-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #000000;
}
.highlight-card p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ffffff;
}

/* Gallery */
.graduation-gallery {
  padding: 3rem 1rem;
  background: #f9f9f9;
}
.graduation-gallery h2 {
  text-align: center;
  color: #ff4da6;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-out;
}

/* Closing */
.graduation-closing {
  background: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.graduation-closing h2 {
  color: #0b5fa5;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}
.graduation-closing p {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  font-style: italic;
  font-size: 1.3rem;
}

/* Animations */
.fade-in {
  opacity: 1 !important;
  transform: scale(1) !important;
}


/* About Hero */
.about-hero {
  background: url('../images/1a.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}
.about-hero .overlay {
  background: rgba(0,0,0,0.5);
  padding: 60px 20px;
  border-radius: 12px;
}

/* Intro */
.about-intro {
  padding: 60px 20px;
  text-align: left;
}
.about-intro p{
  font-size: 1.4rem;

}

/* Mission & Vision */
.about-mission-vision {
  background: #f7f9fc;
  padding: 60px 20px;
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.mv-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.mv-card h3 {
  color: var(--primary-blue);
  font-size: 1.5rem;
}
.mv-card p {
  font-size: 1.4rem;
}

.mv-extra {
  margin-top: 30px;
  text-align: center;
  font-style: italic;
  font-size: 1.4rem;
}

/* Timeline */
.about-journey {
  padding: 60px 20px;
}

.timeline {
  list-style: none;
  padding-left: 0;
}
.timeline li {
  margin: 20px 0;
  font-size: 1.6em;
}
.timeline span {
  font-weight: bold;
  color: var(--main-color, #0077cc);
  margin-right: 10px;
}

/* Core Values */
.about-values {
  background: #f1f5f9;
  padding: 60px 20px;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.value-card:hover {
  transform: translateY(-5px);
}
.value-card h4 {
  font-size: 1.1rem;

}
.value-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

/* Campus */
.about-campuses {
  padding: 10px 20px;
  background: #fff;
}
.about-campuses h2{
  color: var(--primary-blue);
  text-align: center;
  font-size: 1.4rem;

}
.about-campuses p{
  font-size: 1.5rem;
  text-align: center;
}

/* Closing */
.about-closing {
  background: var(--main-color, #0077cc);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 8px 8px 0 0;
}

.about-closing p{
  font-size: 1.5rem;
  text-align: center;
}


/* Stats Section */
.about-stats {
  background: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card h3 {
  font-size: 2.8rem;
  color: #0b5fa5; /* blue */
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.stat-card p {
  font-size: 1.4rem;
  color: #444;
  margin: 0;
}

/* ===== Terms & Privacy Pages Styling ===== */
.privterm-hero {
  background: url('../images/IMG_0289.jpg') center/cover no-repeat;
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  position: relative;
}

.privterm-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 60px 20px;
  border-radius: 10px;
}

.privterm-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.privterm-hero p {
  font-size: 1.2rem;
}

.privterm-content {
  background: #fdfdfd;
  padding: 60px 20px;
}

.privterm-container {
  max-width: 900px;
  margin: 0 auto;
}

.privterm-container h2 {
  color: #e91e63; /* hot pink theme */
  margin-top: 30px;
  font-size: 1.6rem;
}

.privterm-container p,
.privterm-container ul {
  line-height: 1.7;
  margin: 15px 0;
  color: #000000;
  font-size: 1.3rem;
  font-family: Arial, Helvetica, sans-serif;
}

.privterm-container ul {
  list-style: disc inside;
  margin-left: 15px;
}







 
  
  

  
  
  

  
















  /* Responsive */

  /* Desktop: show on hover */
  @media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
      display: block;
      color: #ddd;
    }
  }
  
  /* Mobile: dropdown inline, no absolute positioning */
  
/* Responsive / Mobile & Tablet Styles */
@media (max-width: 900px) {
    .intro.about-section {
      flex-direction: column; /* stack vertically */
      text-align: center;
      gap: 20px;
      padding: 40px 15px;
    }
  
    /* Image adjustments */
    .intro.about-section .image {
      max-width: 250px;      /* limit image width */
      margin: 0 auto;        /* center horizontally */
      order: 0;              /* image on top */
    }
  
    .intro.about-section .image img {
      width: 100%;
      height: auto;
      max-width: 250px;      /* cap image size */
    }
  
    /* Text adjustments */
    .intro.about-section .content {
      flex: none;
      width: 90%;
      margin: 0 auto;
      order: 1;              /* text below image */
    }
  
    .intro.about-section .content h2 {
      font-size: 2rem;
    }
  
    .intro.about-section .content p {
      font-size: 1rem;
    }
    .social-cards {
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); /* smaller cards */
        gap: 1.2rem;
    }

    .social-card .social-image {
        height: 14rem; /* reduce image height */
    }

    .social-caption {
        font-size: 1.4rem;
    }

    .director-content {
        flex-direction: column;
        align-items: center;
        text-align: left;
        gap: 2rem;
      }
    
      .director-image img {
        width: 70%;
        max-width: 300px;
      }

      .transport-section {
        padding: 3rem 5%;
    }

    .transport-section .heading-title {
        font-size: 2rem;
    }

    .transport-section .transport-intro,
    .transport-info,
    .transport-info ul,
    .transport-info ul li,
    .transport-rule {
        font-size: 1rem;
    }




    .transport-swiper .swiper-slide img {
        height: 15rem;
    }
    .resources-general {
        padding: 0 100px;
      }
      .resources-intro {
        font-size: 1.2rem;
      }
  }


    /* Responsive: stack for small screens */
    @media (max-width: 920px) {
        .facility {
          flex-direction: column;
          gap: 1.25rem;
        }
        .facility:nth-child(even) {
          flex-direction: column; /* remove reverse on mobile */
        }
        .facility-image {
          flex: none;
          max-width: 100%;
          width: 100%;
        }
        .facility-image img {
          height: auto;
          max-height: 320px;
        }
        .facility-content {
          width: 100%;
        }
        .facilities-page .lead,
        .facilities-note {
          text-align: left;
          font-size: 1rem;
        }
        .facilities-page {
          padding: 3rem 6%;
        }
      }
      
  
  @media (max-width: 768px) {
    /* Hero text smaller */
    .hero h1 {
      font-size: 2rem;
    }
  
    .tagline {
      font-size: 1rem;
    }
  
    /* Mobile menu */
    .menu-toggle {
      display: block;
    }
  
    .close-menu {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%; /* hidden by default */
      height: 100vh;
      width: 250px;
      background: #e91e63;
      flex-direction: column;
      align-items: center;
      padding: 80px 20px;
      gap: 15px;
      transition: right 0.3s ease;
    }
  
    .nav-links .dropdown {
      flex-direction: column;
      align-items: center;     /* vertical centering */
      gap: 5px;                /* little space between text and arrow */
    }
  
    .nav-links .dropdown-content {
      position: static;
      box-shadow: none;
      background: none;
      width: 100%;
      padding-left: 15px;
    }
  
    .nav-links .dropdown-content a {
      padding: 8px 0;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links li a {
      font-size: 18px;
      padding: 10px 0;
      width: 100%;
      display: block;
    }

    .follow-cards {
        flex-direction: row; /* stack horizontal */
        align-items: center;    /* center cards */
        gap: 1.3rem;            /* reduce gap for mobile */
    }

    .follow-card {
        width: 100%;            /* make cards wider for small screens */
        max-width: 100px;      /* optional max width */
        height: auto;          /* auto height to adjust */
        font-size: 1.2rem;     /* slightly smaller font */
        padding: 1rem 0;       /* add vertical padding */
    }

    .follow-card i {
        font-size: 2.5rem;       /* scale down icons */
        margin-bottom: 0.8rem;
    }
    /* Footer adjustments */
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 10px;
    }
  
    .footer-section {
      flex: 0 0 250px;
      min-width: 200px;
    }
  
    .footer-section h3 {
      border: none;
    }
    .social-cards {
        grid-template-columns: 1fr; /* stack vertically */
        gap: 1rem;
    }

    .social-card .social-image {
        height: 12rem; /* smaller image for mobile */
    }

    .social-caption {
        font-size: 1.3rem;
        text-align: center;
    }

    .transport-swiper .swiper-slide img {
        height: 14rem;
    }

    .transport-info {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
      }
      .community-hero h1 {
        font-size: 2.2rem;
      }
      .community-hero p {
        font-size: 1.1rem;
      }
      .community-intro h2,
      .community-highlight h2,
      .community-gallery h2,
      .community-future h2,
      .community-cta h2 {
        font-size: 1.6rem;
      }
      .community-intro p,
      .community-highlight p,
      .community-future p,
      .community-cta p {
        font-size: 1rem;
      }

      .cocurricular-hero h1 { font-size: 28px; }
      .cocurricular-hero p { font-size: 16px; }
      .cocurricular-intro h2 { font-size: 1.5rem; }
      .cocurricular-intro p { font-size: 1.3rem;    
        text-decoration: none;
        
    }
      .activity h2 { font-size: 1.5rem;
        margin-top: -5rem;
    
    }
      .activity p { font-size: 1.3rem;
        text-decoration: none;
        text-align: left;
    
    }
    .resources-hero h1 { font-size: 28px; }
    .resources-hero p { font-size: 16px; }
    .resource-card h3 { font-size: 20px; }

    .resources-hero {
        padding: 70px 15px;
      }
      .resources-hero .overlay {
        padding: 20px;
      }
      .resources-hero h1 {
        font-size: 28px;
      }
      .resources-hero p {
        font-size: 16px;
      }
      .resources-general {
        padding: 0 40px;
        margin: 50px auto;
      }
      .resources-intro {
        font-size: 1rem;
      }
      .resources-academics h2 {
        font-size: 1.5rem;
      }

      .media-hero { padding: 80px 10px; }
      .media-hero .overlay { padding: 20px; }
      .video-card iframe { height: 200px; }

      .admission-hero { padding: 60px 12px; }
      .admission-hero h1 { font-size: 1.9rem; }
      .contact-grid { grid-template-columns: 1fr; }

      .form-actions {
        flex-direction: column;
      }
      .whatsapp-links {
        flex-direction: column;
      }

      .event-hero {
        padding: 80px 20px;
    }

    .trips-section h2 {
        font-size: 1.5rem;
    }
    .trips-section p {
        font-size: 1rem;
    }
    .privterm-hero h1 {
      font-size: 2rem;
    }
    .privterm-container h2 {
      font-size: 1.3rem;
    }




    
}



@media (max-width: 600px) {
    .social-cards {
        grid-template-columns: 1fr; /* stack vertically */
        gap: 1rem;
    }

    .social-card .social-image {
        height: 10rem; /* smaller image for mobile */
    }

    .social-caption {
        font-size: 1rem;
        text-align: center;
    }
}


/* Mobile screens (≤ 480px) */
@media (max-width: 480px) {
    .community-hero h1 {
      font-size: 1.3rem;
    }
    .community-hero p {
      font-size: 1rem;
    }
    .community-intro h2,
    .community-highlight h2,
    .community-gallery h2,
    .community-future h2,
    .community-cta h2 {
      font-size: 1.3rem;
    }
    .community-intro p,
    .community-highlight p,
    .community-future p,
    .community-cta p {
      font-size: 0.9rem;
    }
    .resources-hero {
        padding: 50px 10px;
      }
      .resources-hero h1 {
        font-size: 1.3rem;
      }
      .resources-hero p {
        font-size: 1rem;
      }
      .resources-general {
        padding: 0 20px;
      }
      .resources-intro {
        font-size: 0.95rem;
      }
      .resources-academics h2 {
        font-size: 1.3rem;
      }
      .resource-card {
        padding: 15px;
      }
      .resource-card h3 {
        font-size: 1.1rem;
      }
      .swiper-slide img {
        height: 150px;
    }
    .trips-section h2 {
        font-size: 1.3rem;
    }
    .trips-section p {
        font-size: 0.95rem;
    }

  /* Shrink and center the school name */
  .school-name a {
    font-size: 1.2rem;        /* smaller text so it fits in one line */
    white-space: nowrap;      /* prevent breaking into two lines */
    display: block;
    text-align: center;
    margin-right: -15px;
  }

  /* Adjust logo size slightly for better fit */
  .logo img {
    max-width: 45px;
    height: auto;
    margin-top: 8px;

  }

  /* Make navbar spacing tighter */
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 8px;
  }

  .menu-toggle {
    font-size: 1.3rem;
  }

    /* Follow Us section */
    .follow-us {
      text-align: center;
      margin-top: 10px;
    }
    .follow-us .heading-title {
      font-size: 1.5rem;   /* much smaller than the default big size */
      margin-bottom: 8px;
      text-align: center;
    }
    .we-are-social .heading-title {
      font-size: 1.5rem;   /* much smaller than the default big size */
      text-align: center;
    }
  
  
    .follow-us a {
      font-size: 1rem;        /* shrink icon size */
      margin: 0 6px;
    }
  
    .follow-us i {
      font-size: 1.4rem;      /* smaller icons */
    }

      .intro .container.about-section {
        flex-direction: column;
        padding: 15px;
      }
    
      .intro .image img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
      }
    
      .intro .content h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        text-align: left;
      }
    
      .intro .content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left; /* keep it left aligned for better flow */
        margin-bottom: 10px;
      }
    
      .intro .content a.btn {
        display: inline-block;
        font-size: 0.9rem;
        padding: 8px 14px;
      }

  footer .footer-container {
    grid-template-columns: 1fr;
    text-align: left;

  }

  footer .footer-column {
    margin-bottom: 8px;
    font-size: 16px;
  }

    /* Director's Message Container */
    .directors-message .container {
      width: 100%;
      max-width: 100%;
      padding: 15px 12px;
    }
  
    /* Stack image and text vertically */
    .director-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;

    }
  
    /* Director Image */
    .director-image {
      width: 100%;
      max-width: 250px;
      margin: 0 auto 15px auto;
    }
  
    .director-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
  
    /* Director Text */
    .director-text {
      width: 100%;
      text-align: left;
      font-size: 0.95rem;
      line-height: 1.6;
    }
  
    .director-text h2 {
      font-size: 1.5rem;
      margin-bottom: 8px;
    }
  
    .director-text h3 {
      font-size: 1.3rem;
      margin-top: 15px;
      margin-bottom: 5px;
    }
  
    .director-text p {
      margin-bottom: 10px;
      font-size: 1rem;
      width: 100%;
    }
  
    .director-text ul {
      padding-left: 18px;
      margin: 10px 0;
      font-size: 1.2rem;

    }
  
    .director-text ul li {
      margin-bottom: 6px;
      font-size: 1rem;
    }
  
    /* Pull Quote */
    .pull-quote {
      font-size: 1rem;
      font-weight: 500;
      font-style:italic;
      padding: 10px 12px;
      margin: 15px 0;
      border-left: 3px solid #ccc;
      background: rgba(255, 255, 255, 0.05);
      width: 100%;

    }
  
    /* CTA Button */
    .cta-btn {
      text-align: center;
      margin: 15px 0;
    }
  
    .cta-btn .btn {
      display: inline-block;
      font-size: 0.9rem;
      padding: 8px 14px;
    }
  
    /* Social Media */
    .director-social-text {
      font-size: 0.9rem;
      text-align: center;
      margin-top: 15px;
      font-weight: 300;
      
    }
  
    .director-social {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin: 10px 0 15px;
    }
  
    .director-social a i {
      font-size: 1.1rem;
    }
  
    /* Contact */
    .director-contact {
      text-align: center;
      font-size: 0.9rem;
      margin-top: 10px;
    }
  
    .director-contact a {
      font-size: 0.95rem;
    }
      /* Activities */
      .cocurricular-intro {
        width: 100%;
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.6;
      }
      .cocurricular-intro h2{
        font-size: 1.3rem;
        margin-bottom: 8px;
        text-align: center;
      }
      .cocurricular-intro p {
        font-size: 1rem;
        margin-bottom: 8px;
      }
      .activity {
        width: 100%;
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.6;
      }
    
      .activity h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        text-align: center;
      }
      .activity p {
        font-size: 1rem;
        margin-bottom: 8px;
      }

      .cocurricular-cta {
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
      }
    
      .cocurricular-cta h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        text-align: center;
      }
      .cocurricular-cta p {
        font-size: 1rem;
        margin-bottom: 8px;
      }

      .facility-content {
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
      }
    
      .facility-content h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        text-align: center;
      }
      .facility-content p {
        font-size: 1rem;
        margin-bottom: 8px;
      }

      .trips-importance h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        text-align: center;
      }
      .trips-importance p {
        font-size: 1rem;
      }
      .trips-importance li {
        font-size: 0.95rem;
      }

      .cultural-section h2 {
        font-size: 1.3rem;
      }
      .cultural-section p {
        font-size: 1rem;
      }

      .cultural-importance li {
        font-size: 0.95rem;
      }
      .cultural-importance h2 {
        font-size: 1.3rem;
      }
      .cultural-importance p {
        font-size: 1rem;
      }

      
  
    

    
  }


