/* ===== GLOBAL RESET ===== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}


/* Add this at the top or bottom of your CSS file */
html {
    scroll-behavior: smooth;
}

body {
    overscroll-behavior: contain;
}

/* Optional scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #a0a0a0;
}


/* ======================================================= */
/* !!! POSITION: FIXED SOLUTION (GUARANTEED TO STICK) !!!  */
/* ======================================================= */

/* --- ANCESTOR RESET (For clean application) --- */
html, body, #wrapper, #page-wrapper, #container, #main, .main-content {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    height: auto !important; 
}

/* ===== TOP BAR (FIXED) ===== */
.topbar {
    background: linear-gradient(135deg, #df32a0 0%, #6a0a3f 100%);
    color: #f3f7ff;
    font-size: 13px;
    padding: 1px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 10px rgba(171, 2, 123, 0.2);
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000; 
    overflow: hidden;
    /* FIX: Hint to the browser for better scrolling performance */
    will-change: transform; 
    transition: box-shadow 0.3s ease;
}

/* FIX: Removed complex shimmer on topbar, as it was redundant and costly */
.topbar::before {
    content: none; /* Removed the slow 'left' animation */
}

.topbar:hover::before {
    content: none;
}

.topbar-left {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.topbar-left span {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.topbar-left span:hover {
    transform: translateY(-2px);
}

.topbar-left i {
    margin-right: 5px;
    color: #f8d300;
    font-size: 14px;
    text-shadow: 0 0 5px rgba(248, 211, 0, 0.5);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.facebook-link {
    color: #f8fbff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.facebook-link:hover {
    color: #0d5bd8;
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.portal-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,123,255,0.3);
    position: relative;
    overflow: hidden;
}

.portal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    /* FIX: Changed 'left' to 'transform' for hardware acceleration */
    transform: translateX(-100%); 
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    /* FIX: Changed 'left' transition to 'transform' transition */
    transition: transform 0.5s ease; 
}

.portal-btn:hover::before {
    /* FIX: Changed 'left' to 'transform' for hardware acceleration */
    transform: translateX(100%);
}

.portal-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.4);
}

/* ===== MAIN HEADER (FIXED) ===== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 40px;
    background: linear-gradient(135deg, #ffedfd 0%, #ffe1eb 100%);
    position: fixed; 
    top: 30px; 
    width: 100%; 
    background-color: #fce4ec;
    z-index: 999; 
    height: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    /* FIX: Hint to the browser for better scrolling performance */
    will-change: transform; 
}

/* Enroll Now Button */
.header-left .enroll-btn {
    background: linear-gradient(135deg, #ff9603 0%, #ff7700 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(255,150,3,0.3);
    position: relative;
    overflow: hidden;
}

.header-left .enroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    /* FIX: Changed 'left' to 'transform' for hardware acceleration */
    transform: translateX(-100%); 
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    /* FIX: Changed 'left' transition to 'transform' transition */
    transition: transform 0.5s ease; 
}

.header-left .enroll-btn:hover::before {
    /* FIX: Changed 'left' to 'transform' for hardware acceleration */
    transform: translateX(100%);
}

.header-left .enroll-btn:hover {
    background: linear-gradient(135deg, #ff7700 0%, #e66900 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(255,150,3,0.4);
}

/* Logo Center (overlapping downward) */
.header-center {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-logo {
    height: 98px;
    max-width: 240px;
    position: absolute;
    bottom: -73px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
    transition: all 0.4s ease;
}

.site-logo:hover {
    transform: translateX(-50%) scale(1.03);
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.2));
}

/* Navigation Menu */
.header-right .nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header-right .nav-menu li {
    position: relative;
}

.header-right .nav-menu li a {
    text-decoration: none;
    color: #372c5f;
    font-weight: 800;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
    font-family: 'Happy Monkey', sans-serif;
    font-size: 1rem;
}

.header-right .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #ab027b);
    transition: width 0.3s ease;
}

.header-right .nav-menu li a:hover {
    color: #007bff;
}

.header-right .nav-menu li a:hover::after {
    width: 100%;
}

/* ===== MOBILE RESPONSIVE (FIXED) ===== */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 5px 15px;
        font-size: 12px;
    }

    .topbar-left {
        gap: 8px;
        width: 100%;
        justify-content: flex-start;
    }

    /* Hide elements on mobile (as requested) */
    .topbar-address, /* Previous request */
    .portal-btn,    /* HIDE PORTAL LOGIN */
    .facebook-link  /* HIDE FACEBOOK LINK */
    {
        display: none !important;
    }

    .topbar-left span {
        font-size: 12px;
    }

    .topbar-right {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 4px;
    }

    .topbar-right .facebook-link, 
    .topbar-right .portal-btn {
        /* These specific selectors are used if the generic ones above fail due to specificity */
        display: none !important;
    }

    /* MAIN HEADER Mobile Fixed Position */
    .main-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        padding: 10px 15px;
        height: 60px;
        position: fixed;
        top: 28px;
        width: 100%;
    }

    /* Enroll button on left */
    .header-left {
        flex: 0 0 auto;
    }

    .header-left .enroll-btn {
        background: linear-gradient(135deg, #ff8103 0%, #e66900 100%);
        color: #fff;
        padding: 5px 16px;
        margin-top: -10px;
        border-radius: 55px;
        text-decoration: none;
        box-shadow: 0 2px 5px rgba(255,129,3,0.3);
    }

    /* Logo stays in center, overlapping */
    .header-center {
        flex: 1;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .site-logo {
        height: 80px;
        max-width: 140px;
        position: absolute;
        bottom: -36px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
    }

    /* Hamburger toggle on right */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        cursor: pointer;
        padding: 3.5px 0;
        transition: transform 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        transform: scale(1.1);
    }

    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: linear-gradient(90deg, #333, #555);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Navigation menu hidden initially */
    .header-right .nav-menu {
        position: absolute;
        top: 100%; 
        right: 0;
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        width: 200px;
        display: none;
        flex-direction: column;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 10px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        z-index: 999;
        animation: slideDown 0.3s ease;
        
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Show menu when active (toggle via JS) */
    .header-right .nav-menu.active {
        display: flex;
    }

    .header-right .nav-menu li {
        margin: 10px 0;
        text-align: left;
        padding: 0 15px;
        line-height: 1;
    }

    .header-right .nav-menu li a {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-right .nav-menu li:last-child a {
        border-bottom: none;
    }

    .header-right .nav-menu li a::after {
        display: none;
    }
}

/* ===FOOTER FOR ALL */
/* --- ECD Footer Section CSS --- */

.footer {
    /* Primary Colors: Soft and Inviting */
   background: linear-gradient(135deg, #0094d4, #057cb7);

    color: #ffffff; /* White text for maximum contrast */
    padding: 40px 20px 10px; /* Top/bottom padding for separation */
    font-family: 'Comic Sans MS', 'Arial', sans-serif; /* Consistent, friendly font */
}

.footer-container {
    /* Layout using Flexbox for columns */
    display: flex;
    flex-wrap: wrap; /* Allow columns to stack on small screens */
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px; /* Space between columns */
    padding-bottom: 20px;
}

.footer-column {
    /* Each column takes up roughly equal space */
    flex: 1 1 220px; /* Flex-grow, flex-shrink, flex-basis */
    padding: 10px;
}

/* Column Headings (H3) */
.footer-column h3 {
    color: #ffeb3b; /* Bright Yellow/Gold for highlighting section titles */
    font-size: 1.4em;
    margin-bottom: 15px;
 
    font-family: 'Happy Monkey', sans-serif;
    padding-bottom: 5px;
     display: inline-block;   /* allows width control */
  width: 60%;              /* adjust length (e.g., 50%, 80%, or 150px) */
}

/* Paragraph Text in Footer */
.footer-column p {
    font-size: 0.85em;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    margin-top: -2px;
}

/* List Styling (Quick Links and More From Us) */
.footer-column ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ffffff; /* White link text */
    text-decoration: none; /* Remove underline */
    font-size: 1rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    font-family: 'Outfit', sans-serif;
    
}

/* Link Hover Effect (Bright and Inviting) */
.footer-column ul li a:hover {
    color: #ff9800; /* Bright Orange on hover */
    
}

/* Contact Information (P tags in the last column) */
.footer-column:last-child p {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.1px;
    line-height: 1.2;
    margin-top: -5px;
}
.footer-column:last-child a {
     color: #ffeb3b; /* Make email/phone links yellow for visibility */
     text-decoration: none;
}
.footer-column:last-child a:hover {
     text-decoration: underline;
}

/* --- Footer Bottom Section (Copyright) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Subtle white line separator */
    padding: 10px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85em;
    color: #fce4ec; /* Light pink/rose color for subtle secondary text */
    
}

.footer-bottom a {
    color: #ffeb3b; /* Bert Plus link colour */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 992px) {
    .footer-column {
        flex: 1 1 45%; /* Two columns per row */
    }
}

@media (max-width: 576px) {
    .footer-container {
        flex-direction: column; /* Stack all columns vertically */
        gap: 15px;
    }
    .footer-column {
        flex: 1 1 100%; /* Full width for each column */
        text-align: center;
        margin-bottom: -40px;
    }
    .footer-column h3 {
        text-align: center;
    }
    .footer-column ul {
        text-align: center;
    }


    .footer-column ul li a {
    font-size: 1em;

    
}



    .footer-column:last-child p {
margin-bottom: 20px;
line-height: 1.2;
font-size: 0.9rem;
margin-top: -10px;
}


.footer-bottom {
  margin-top: 30px;
}

}


/* ====PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #2d547a, #21305a);
  color: white;
  padding: 30px 20px;
  text-align: center;
 padding-top: 120px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-header .page-title {
  font-family: 'Happy Monkey', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.breadcrumbs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.breadcrumbs i {
  color: rgba(255, 255, 255, 0.7);
}

/* 🌐 Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-header {
    padding: 20px 10px;
    padding-top: 120px;
  }

  .page-header .page-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .breadcrumbs ul {
    gap: 6px;
    font-size: 0.8rem;
    flex-wrap: wrap; /* Allows breadcrumbs to wrap on small screens */
    justify-content: center;
  }

  .breadcrumbs a {
    font-size: 0.8rem;
  }

  .breadcrumbs i {
    font-size: 0.7rem;
  }
}

/* 📱 Extra small devices (below 480px) */
@media (max-width: 480px) {
  .page-header {
    padding: 35px 8px;
    padding-top: 110px;
  }

  .page-header .page-title {
    font-size: 1.7rem;
   
  }

  .breadcrumbs ul {
    gap: 4px;
    font-size: 0.75rem;
  }

  .breadcrumbs a {
    font-size: 0.75rem;
  }

  .breadcrumbs i {
    font-size: 0.6rem;
  }
}



/* =====HOME PAGE START */
/* HERO IMAGE */
.hero {
  position: relative;
  width: 100%;
  height: 96vh; /* nearly full screen */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Text overlay */
.hero-text {
  position: absolute;

  z-index: 2;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 4.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #eef2ff;
  font-family: 'Happy Monkey', sans-serif;
  align-items: left;

}

.hero-text .highlight-year {
    color: #ff6347; /* starting color */
    font-weight: bold;
    transition: color 0.5s ease, transform 0.5s ease;
}


.hero-text p {
  font-size: 1.2rem;
  margin: 0;
  color: #bec5d6;
  font-family: 'Outfit',sans-serif;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}


/* OUR GOAL */

.our-goals {
    padding: 20px 50px;
    background-color: #fce4ec;
    text-align: center;
    border-radius: 15px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.our-goals h2 {
    color: #00bcd4;
    font-size: 2.40rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.4px;
    font-family: 'Happy Monkey', sans-serif;
}

.our-goals h2::after {
    content: '';
    display: block;
    width: 10%;
    height: 4px;
    background-color: #ff9800;
    margin: 5px auto 0;
    border-radius: 2px;
}

.goals-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.goals-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.goal {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;

    /* Start hidden above */
    opacity: 0;
    transform: translateY(-50px) translateZ(0); /* Force GPU rendering for mobile */
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden; /* mobile fix */
}

.goal.show {
    opacity: 1;
    transform: translateY(0);
}



.goal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: #ffeb3b;
}

.goal i {
    font-size: 3em;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.goal:nth-child(1) i {
    background-color: #4caf50;
}

.goal:nth-child(2) i {
    background-color: #ff5722;
}

.goal:nth-child(3) i {
    background-color: #9c27b0;
}

.goal h3 {
    color: #333333;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Happy Monkey', sans-serif;
    
}

.goal p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 768px) {
    .goals-container {
        flex-direction: column;
        
    }

.our-goals {
    padding: 20px 20px;
     border-radius: 0px;
     margin-top: -10px;
}

    .goal {
        min-width: 100%;
        margin-bottom: 5px;
    }

    .our-goals h2 {
    color: #00bcd4;
    font-size: 1.70rem;

    }

.goal h3 {
    color: #333333;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 0px;
}

.goal p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 0;
}


}


/* OUR FACILITY */
/* Section styling */
.our-facility {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef7 100%);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.our-facility::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 99, 71, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(145, 12, 127, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Inner container with different background */
.facility-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfd 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.08),
    0 4px 12px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.8);
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.9);
}

/* Columns */
.facility-col {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Image column */
.image-col img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.8);
  height: 300px;
}

.image-col img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Text column */
.text-col h4,
.text-col h2,
.text-col p {
  text-align: left;
}

.text-col h4 {
  color: #ff6347;
  margin-bottom: 10px;
  font-weight: bold;
  background: linear-gradient(135deg, #ff6347, #ff4500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(255, 99, 71, 0.1);
}

.text-col h2 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  margin-top: -6px;
  letter-spacing: -0.4px;
 font-family: 'Happy Monkey', sans-serif;
  color: #0d3d6e;
  background: linear-gradient(135deg, #0d3d6e, #1a5ba5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(13, 61, 110, 0.1);
}

.text-col p {
  color: #696778;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: -10px;
  transition: color 0.3s ease;
}

.text-col:hover p {
  color: #444;
}



.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ff9603 0%, #ff7700 100%);
  color: #fff;
  padding: 7px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(255,150,3,0.3);
  font-size: 1rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #311762 0%, #2d243e 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(42, 34, 77, 0.4);
}


/* Points column */
.points-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.points-col h4,
.points-col h2 {
  text-align: left;
}

.points-col h4 {
  color: #ff6347;
  margin-bottom: 5px;
  font-weight: bold;
  background: linear-gradient(135deg, #ff6347, #ff4500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(255, 99, 71, 0.1);
}

.points-col h2 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  margin-top: -6px;
  letter-spacing: -0.4px;
  font-family: 'Happy Monkey', sans-serif;
  color: #13569a;
  background: linear-gradient(135deg, #0d3d6e, #1a5ba5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(13, 61, 110, 0.1);
}

.points-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.points-col li {
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
font-family: 'Outfit', sans-serif;
  color: #545369;
  padding: 2px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.points-col li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(145, 12, 127, 0.05), transparent);
  transition: left 0.6s ease;
}

.points-col li:hover::before {
  left: 100%;
}

.points-col li:hover {
  background: rgba(145, 12, 127, 0.04);
  transform: translateX(5px);
  color: #444;
}

.points-col li i {
  color: #910c7f;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #910c7f, #b80fa3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 3px rgba(145, 12, 127, 0.2));
}

.points-col li:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 3px 5px rgba(145, 12, 127, 0.3));
}

/* Responsive */
@media (max-width: 992px) {
  .facility-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-radius: 16px;
  }
  .facility-col {
    align-items: flex-start;
  }
  .points-col li {
    justify-content: flex-start;
  }

  .points-col h2, .text-col h2 {
    font-size: 1.6rem;
  }

  .text-col p {
    color: #555;
    font-size: 0.85rem;
  }

  .points-col h4, .text-col h4 {
    color: #ff6347;
    margin-top: -10px;
  }

  .image-col img:hover {
    transform: translateY(-3px) scale(1.01);
  }


.facility-inner {
  padding: 40px 15px;
}


.btn-primary {
  margin-bottom: 15px;
}

}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .image-col img,
  .points-col li,
  .points-col li i {
    transition: none;
  }
  
  .image-col img:hover,
  .points-col li:hover {
    transform: none;
  }
  
  .points-col li::before {
    display: none;
  }
}


/* FACILITIES */
.facilities-section {
  padding: 60px 0;
  background-color: #fce4ec; 
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title1 {
  font-family: 'Happy Monkey', sans-serif;
  font-size: 2.5rem;
  color: #ab027b; /* Deep pink/purple from your gradients */
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4d495b; /* Deep neutral color from your menu links */
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}



.facilities-grid {
  display: grid;
  /* Desktop: 4 columns */
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
}

/* --- Facility Card Styles --- */

.facility-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;

  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.6s ease;
}

/* Visible state */
.facility-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: gentle hover lift for playful effect */
.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}



.facility-card:hover {
  transform: translateY(-8px); /* Lift card on hover */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.facility-card img {
  width: 100%;
  height: 240px; /* Fixed height for visual consistency */
  object-fit: cover;
  border-bottom: 4px solid #ff9603; /* Orange accent color from Enroll button */
  transition: transform 0.5s ease;
}

.facility-card:hover img {
  transform: scale(1.05); /* Zoom image slightly on hover */
}

.facility-card h3 {
  font-family: 'Happy Monkey', sans-serif;
  font-size: 1.4rem;
  color: #372c5f;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.facility-card p {
  font-size: 0.9rem;
  color: #505165;
  padding: 0 15px;
  line-height: 1.5;
  font-family: 'Outfit', sans-serif;
}


@media (max-width: 992px) {
  .facilities-grid {
    /* Tablet: 2 columns */
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

.section-title1 {

  font-size: 1.7rem;
}


.facility-card p {
  margin-top: -3px;
}

.facility-card h3 {
  font-size: 1.4rem;
}

}

@media (max-width: 576px) {
  .facilities-section {
    padding: 40px 0;
  }
  
  .facilities-grid {
    /* Mobile: 1 column */
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title1 {
    font-size: 1.6rem;
  }

  .section-subtitle {
    margin-bottom: 30px;
    font-size: 0.9rem;
    margin-top: -3px;
  }

  .facility-card img {
    height: 260px;
  }
}






/* ===CONTACT US PAGE STARTS=== */

/* --- Contact & FAQ Section CSS --- */

.contact-faq {
    padding: 60px 20px;
    background-color: #fce4ec; /* Light pink/rose background, friendly and soft */
    
}

.inner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px; /* Space between the two main columns */
    flex-wrap: wrap; /* Allows columns to stack on mobile */
}

/* --- Shared Column Styling --- */
.column {
    flex: 1 1 45%; /* Allows both columns to grow but keeps minimum width */
    padding: 30px;
    background-color: #ffffff; /* White background for clean contrast */
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Titles */
.contact-faq h2 {
    color: #00bcd4; /* Bright Cyan/Sky Blue for headings */
    font-size: 1.7rem;
    margin-bottom: 25px;
    
    padding-bottom: 5px;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
}

/* --- 1. Contact Form Column --- */

.contact-form-col form {
    display: flex;
    flex-direction: column;
}

.contact-form-col label {
    font-size: 1em;
    font-weight: bold;
    color: #4caf50; /* Green for form labels, suggesting growth/submission */
    margin-top: 15px;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.contact-form-col input,
.contact-form-col textarea {
    padding: 12px;
    border: 2px solid #ffeb3b; /* Yellow border for a playful look */
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.contact-form-col input:focus,
.contact-form-col textarea:focus {
    border-color: #4a4581; /* Orange focus color */
    outline: none;
    box-shadow: 0 0 5px rgba(255, 87, 34, 0.5);
}

.contact-form-col textarea {
    resize: vertical;
}

.contact-form-col button[type="submit"] {
    background-color: #122751; /* Bright Red-Orange for the main action button */
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form-col button[type="submit"]:hover {
    background-color: #ff9800; /* Bright Orange on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* --- 2. FAQ Column --- */

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f7f7f7; /* Slight off-white background for each item */
}

.faq-item h4 {
    color: #07ab9d; /* Purple for question headings, representing imagination/wisdom */
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-family: 'Outfit', sans-serif;
}

/* Simple icon/marker for questions */


.faq-item p {
    color: #555555;
    font-size: 1em;
    line-height: 1.5;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .inner-container {
        gap: 30px;
    }
    .column {
        flex: 1 1 100%; /* Columns stack vertically on smaller screens */
        max-width: 600px; /* Constrain width when stacked */
        margin: 0 auto;
    }
    .contact-faq h2 {
        text-align: center;
        display: block;
        width: 100%;
        font-size: 1.6rem;
    }
}