/* General Body & HTML Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}


body {
    margin: 0;
    padding: 0;
    color: #444;
    background-color: #FDF5E6; /* Light Cream/Off-White for background */
    -webkit-font-smoothing: antialiased; /* Smoother fonts */
    -moz-osx-font-smoothing: grayscale; /* Smoother fonts */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    color: #333;
    font-weight: 700; /* Bold for headings */
    line-height: 1.2;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: #87CEEB; /* Sky Blue for links */
    transition: color 0.3s ease;
}

a:hover {
    color: #FFD700; /* Sunny Yellow on hover */
}

p {
    margin-bottom: 1em;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none; /* Default for all lists, overridden for specific lists */
}

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

.text-center {
    text-align: center;
}

/* Header Styling */
.main-header {
    background-color: #FFFFFF; /* White background for header */
    /* padding: 15px 0; */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky; /* Keeps header visible on scroll */
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.logo{
    height: auto;
    width: auto;
    cursor: pointer;
    background-color: transparent;
}

.logo img {
    height: 60px; /* Adjust logo size as needed */
    max-width: 100%;
    vertical-align: middle; /* Aligns with text if any */
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: center;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: #333;
    font-weight: 600;
    padding: 5px 0;
    display: block; /* Makes the entire area clickable */
}

.main-nav ul li a:hover {
    color: #FFD700; /* Sunny Yellow */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.primary-btn {
    background-color: #FFD700; /* Sunny Yellow */
    color: #333;
    border: none;
}

.primary-btn:hover {
    background-color: #FFC107; /* Slightly darker yellow */
    transform: translateY(-2px);
}

.link-btn {
    background-color: #87CEEB; /* Sky Blue */
    color: #FFFFFF;
    border: none;
    padding: 8px 15px; /* Smaller for inline use */
    font-size: 0.9em;
}

.link-btn:hover {
    background-color: #7BBFEB; /* Slightly darker blue */
}

.page-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #d6f5f5;
    min-height: 500px;
}

/* Sliding Gallery */
.page-hero{
    width: 100%;
    height: 100vh;
    margin-top: 0;
}

.sliding-gallery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;   /* full screen height */
  width: 100vw;    /* full screen width */
  z-index: 0;
  opacity: 0.25;   /* faded so text is visible */
}



/* Header */
.main-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

/* Navigation Menu */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0px;
}

.main-nav ul li a {
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #333;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #ff6600;
}

/* Hamburger Icon */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-icon div {
  width: 28px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-icon {
    display: flex;
  }

  .main-nav.active {
    display: block;
  }

  /* Animation for icon (turn into "X") */
  .menu-icon.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-icon.open div:nth-child(2) {
    opacity: 0;
  }

  .menu-icon.open div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}


/* Column Settings */
.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.column img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Left Column Scroll Up */
.column-left {
    animation: slideUp 25s linear infinite;
}

.column-mid {
    animation: slideDown 25s linear infinite;
}


/* Right Column Scroll Down */
.column-right {
    animation: slideUp 25s linear infinite;
}

/* Animations */
@keyframes slideUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes slideDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* Hero Text Styling */
.hero-text {
    position: relative;
    z-index: 1;
    max-width: 1050px; 
    height: 300px; /* box ko bada kiya */
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px; /* spacious padding */
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.25);
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff5e5e;
    margin-bottom: 20px; /* heading aur para ke beech gap */
}

.hero-text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 35px; /* paragraph aur button ke beech gap */
}

.hero-text button {
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-size: 1rem;
}




.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ffd700;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: 20px;
}

.cta-btn:hover {
    background-color: white;
}


/* Intro Section */
.intro-section {
    padding: 40px 0;
    text-align: center;
    background-color: #FDF5E6; /* Light Cream */
}

.intro-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 20px auto 40px;
}

.highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    
}

.highlight-item {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    width: 28%; /* Adjust for responsiveness */
    min-width: 250px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item img {
    margin-bottom: 15px;
    height: 60px; /* Size of placeholder icons */
    width: 60px;
}

.highlight-item h3 {
    color: #7CFC00; /* Grassy Green */
    margin-top: 0;
    font-size: 1.4em;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #D3F3EE; /* Same as hero, or a complementary light color */
    padding: 50px 0;
    text-align: center;
}

.testimonials-section h2 {
    color: #FF6347;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 20px auto; /* Margin for multiple cards */
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.testimonial-card span {
    font-weight: 600;
    color: #666;
}


/* Page Hero Section for inner pages */
.page-hero {
    background-color: #D3F3EE; /* Soft background */
    padding: 60px 0 40px;
    text-align: center;
}

.page-hero h2 {
    font-size: 2.8em;
    color: #FF6347;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Section for inner pages */
.content-section {
    padding: 40px 0;
    background-color: #FDF5E6;
}

.content-section h3 {
    font-size: 2em;
    color: #87CEEB; /* Sky Blue */
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none; /* Remove default bullet */
    padding-left: 0;
}

.content-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.content-section ul li::before {
    content: '✓'; /* Checkmark icon */
    color: #7CFC00; /* Grassy Green */
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2em;
}

/* Founder Profile Styling */
.founder-profile {
    display: flex;
    flex-direction: column; /* Default to column for small screens */
    align-items: center;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 40px;
    text-align: center;
}

.founder-photo {
    width: 180px; /* Adjust size */
    height: 180px; /* Make it square */
    border-radius: 50%; /* Circular photo */
    /* object-fit: cover; Ensures photo covers the area without distortion */
    border: 5px solid #FFD700; /* Sunny Yellow border */
    margin-bottom: 20px;
    /* padding: 1px; */
    cursor: pointer;
}

.founder-details h4 {
    font-size: 1.8em;
    color: #FF6347; /* Playful red */
    margin-bottom: 5px;
}

.founder-details .qualification {
    font-style: italic;
    color: #666;
    margin-top: 0;
    margin-bottom: 15px;
}

.founder-details .quote {
    font-style: italic;
    color: #555;
    margin-top: 20px;
    border-left: 4px solid #87CEEB;
    padding-left: 15px;
}


/* Programs Page Specific */
.program-category {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.program-category h3 {
    color: #FF6347; /* Playful Red for program categories */
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.program-category ul li::before {
    content: '\2022'; /* Regular bullet point for these lists */
    color: #87CEEB; /* Sky Blue bullet */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.program-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 10px 15px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    vertical-align: middle;
    width: 300px; /* Example fixed width, adjust as needed */
    object-fit: cover; /* Ensures image covers area without distortion */
}

/* Facilities Page Specific */
.facility-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.facility-item h3 {
    color: #FF6347;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.facility-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

.facility-image.large {
    max-height: 400px; /* Max height for larger images like tours */
    width: 100%;
}


/* Gallery Page Specific */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden; /* Hides parts of image outside border-radius */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px; /* Fixed height for consistent look */
    object-fit: cover; /* Ensures images fill the space nicely */
    display: block;
}


/* FAQ Page Specific (Accordion) */
.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    overflow: hidden; /* Crucial for animation */
}

.faq-question {
    background-color: #87CEEB; /* Sky Blue background for questions */
    color: #FFFFFF;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.faq-question:hover {
    background-color: #7BBFEB;
}

.faq-question::after {
    content: '+'; /* Plus sign for closed state */
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background-color: #FFD700; /* Sunny Yellow when active */
    color: #333; /* Dark text for active question */
}

.faq-question.active::after {
    content: '-'; /* Minus sign for open state */
    transform: rotate(0deg); /* No rotation needed for '-' */
}


.faq-answer {
    padding: 0 25px;
    background-color: #F8F8F8; /* Light grey for answer background */
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;  /* Smooth transition */
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
    font-size: 1em;
    color: #555;
}

/* When the answer is active/open */
.faq-answer.active {
    max-height: 500px; /* Adjust as needed for content, should be greater than max possible height */
    padding: 15px 25px;
}


/* Contact Us Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column default */
    gap: 40px;
    margin-top: 30px;
}

.contact-info-block, .inquiry-form-block {
    background-color: #FFFFFF;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info-block h3, .inquiry-form-block h3 {
    color: #FF6347;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail h4 {
    color: #87CEEB;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.contact-detail p {
    margin: 0;
}

.contact-detail a {
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box; /* Include padding in width */
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FFD700; /* Sunny Yellow on focus */
    outline: none;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.contact-form textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form .primary-btn {
    width: auto; /* Button doesn't take full width */
    padding: 12px 40px;
    font-size: 1.1em;
}

.form-note {
    font-size: 0.9em;
    color: #888;
    margin-top: 20px;
    text-align: center;
}

/* Footer Styling */
.main-footer {
    background-color: #444; /* Darker background for professionalism */
    color: #FDF5E6; /* Light text */
    padding: 40px 0 20px;
}

.main-footer .container {
    padding-top: 0; /* Adjust padding due to inner elements */
}

.main-footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #FFD700; /* Sunny Yellow for footer headings */
    margin-bottom: 15px;
    font-size: 1.4em;
}

.footer-section p, .footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section a {
    color: #FDF5E6; /* Light text for footer links */
    display: block; /* Make links take full width for clickability */
    margin-bottom: 8px;
    font-size: 0.95em;
}

.footer-section a:hover {
    color: #87CEEB; /* Sky Blue on hover */
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #ccc;
}

.main-header .container .logo .menu-icon{
    display: none;
}


/* Responsive Design */
@media (max-width: 420px) {

    .main-header .container{
        /* border: 1px solid #000; */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-header .container .logo .menu-icon{
        display: block;
        cursor: pointer;
    }


    .main-header .container .logo .menu-icon{
        font-size: 20px;
        position: absolute;
        right: 10px;
        display: grid;
        gap: 10px;
    }
    .main-header .container .logo .menu-icon div{
        width: 30px;
        height: 2px;
        background-color: #000;
    }

    .main-header{
        display: block;
    }
    .main-header .container .logo{
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .main-header ul{
        display: none;
    }

    .main-nav ul li {
        margin-left: 15px;
    }
    .highlights, .footer-content {
        justify-content: center;
    }
    .highlight-item {
        width: 45%;
    }
    .facility-item {
        flex-direction: column;
    }
    .facility-image {
        max-width: 80%;
    }
    .founder-profile {
        flex-direction: column;
        text-align: center;
    }
    .founder-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }
    .main-nav ul {
        flex-direction: column;
        margin-top: 15px;
    }
    .main-nav ul li {
        margin: 10px 0;
    }
    .hero-content h2 {
        font-size: 2.5em;
    }
    .hero-content h3 {
        font-size: 1.5em;
    }
    .page-hero h2 {
        font-size: 2.2em;
    }
    .highlight-item {
        width: 90%;
    }
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    .hero-content h2 {
        font-size: 2em;
    }
    .hero-content h3 {
        font-size: 1.2em;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .main-nav ul li {
        margin: 5px 0;
    }
    .faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .faq-answer p {
        padding: 10px 0;
    }
    .footer-section {
        min-width: 90%;
    }
}


/* Conceptual CSS for Background Elements (Advanced - uncomment and adjust as needed) */
/*
.hero-section::before, .hero-section::after {
    content: '';
    position: absolute;
    background-color: rgba(135, 206, 235, 0.1); // Sky Blue translucent
    border-radius: 50%; // Circular shape
    z-index: 1;
    animation: float 10s ease-in-out infinite;
}



