
        /* ====== Body & General Styles ====== */
body {
    font-family: 'Raleway', sans-serif;
    padding-top: 56px;
}
body, html {
    margin: 0; padding: 0; height: 200vh; /* so page is scrollable */
  }



  /* ======NEW MUST ====== */
  .card-img-top {
    height: 300px;
    object-fit: cover;
  }


    .topper-section {
      padding: 30px 0;
      overflow: hidden;
      background: linear-gradient(to right, #fef3c7, #dbeafe);
    }

    .topper-title {
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #1d4ed8;
    }

    .carousel-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .topper-track {
      display: flex;
      position: relative;
      gap: 20px;
      will-change: transform;
    }

    .topper-card {
      flex-shrink: 0;
      width: 160px;
      background: white;
      border-radius: 12px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    }

    .topper-img {
      width: 90px;
      height: 120px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 10px;
      border: 2px solid #3b82f6;
    }

    .topper-name {
      font-weight: bold;
      font-size: 1rem;
      color: #1f2937;
    }

    .topper-class {
      font-size: 0.85rem;
      color: #6b7280;
    }

    .topper-quote {
      font-size: 0.75rem;
      font-style: italic;
      color: #4b5563;
      margin-top: 5px;
    }
 
/* ====== Scroll Top Button ====== */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}









 .topper-section {
      padding: 30px 20px;
      background: linear-gradient(to right, #fef3c7, #dbeafe);
      overflow: hidden;
       max-width: 1400px; 
      margin: auto;
    }
    .topper-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1d4ed8;
    }
    .carousel-wrapper {
      overflow: hidden;
      width: 100%;
      position: relative;
    }
    .topper-track {
      display: flex;
      gap: 20px;
      will-change: transform;
    }
    .topper-card {
          flex: 0 0 160px; /* fixed width */
  margin-right: 20px; /* gap */
      flex-shrink: 0;
      width: 160px;
      background: white;
      border-radius: 12px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
      user-select: none;
    }
    .topper-img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 10px;
      border: 2px solid #3b82f6;
    }
    .topper-name {
      font-weight: 700;
      font-size: 1rem;
      color: #1f2937;
      margin-bottom: 4px;
    }
    .topper-class {
      font-size: 0.85rem;
      color: #6b7280;
      margin-bottom: 6px;
    }
    .topper-quote {
      font-size: 0.75rem;
      font-style: italic;
      color: #4b5563;
    }
    /* Dots */
    .dots-container {
      display: none;
      justify-content: center;
      margin-top: 15px;
      user-select: none;
    }
    .dot {
      width: 10px;
      height: 10px;
      margin: 0 6px;
      background-color: #d1d5db;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .dot.active {
      background-color: #2563eb;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .topper-track {
        gap: 10px;
      }
      .topper-card {
        width: 30%;
      }
      .dots-container {
        display: flex;
      }
    }

.topper-card {
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  color: #1f2937; /* dark slate gray for text */
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
  margin: 0 10px;
}

.topper-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Kiddo theme */
.topper-card.kiddo {
  background: linear-gradient(135deg, #ffc400, #fef3c7);
  border: 2px solid #fff9f4; /* bright orange */
}

/* Junior theme */
.topper-card.junior {
  background: linear-gradient(135deg, #e0efff, #dbeafe);
  border: 2px solid #3b82f6; /* bright blue */
}

/* Image styling */
.topper-img {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.topper-card:hover .topper-img {
  border-color: #2563eb; /* a subtle blue highlight on hover */
}

/* Name styling */
.topper-name {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

/* Class styling */
.topper-class {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8); /* semi-transparent white */
  color: #111827; /* dark text */
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px; /* pill shape */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.6rem;
  user-select: none;
  transition: background-color 0.3s ease;
}

/* Quote styling */
.topper-quote {
  font-style: italic;
  font-size: 0.85rem;
  color: #374151; /* gray-700 */
}



/* CEO */
 /* Fixed full-screen coding vibe background */
    #ceo-grid > div {
      will-change: transform;
      transition: transform 0.2s ease-out;
    }
#bg-parallax {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #93c5fd, #60a5fa, #3b82f6);
    background-position: center bottom;
    background-size: cover;
    z-index: -10;
    will-change: background-position;
  }

  /* The foreground container */
  .content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }


/* ====== Carousel Styles ====== */
.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-inner img {
    width: 100%;
    height: 600px; /* Adjust height for larger screens */
    object-fit: cover;
    transform: rotate(0deg); /* No tilt for simplicity */
}

/* Medium screens (tablets, small laptops) */
@media (max-width: 992px) {
    .carousel-inner img {
        height: 400px; /* Reduce height for medium-sized screens */
    }
}

/* ====== Mission Section ====== */
.mission {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-radius: 8px;
}

/* ====== Quote Styles ====== */
.quote {
    display: flex;
    align-items: center;
    margin: 20px 0;
    border: 1px solid rgb(0, 123, 255); /* Border for the quote box */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding inside the box */
    background-color: #f0f8ff; /* Light background for better contrast */
}

.quote img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

/* ====== Video Section ====== */
#top-video {
    position: relative;
    overflow: hidden;
    height: 120vh; /* Full height on larger screens */
}
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#welcome-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Responsive video height */
@media (max-width: 768px) {
    #top-video {
        height: 30vh;
    }
}

/* ====== Overlay Text on Video ====== */
.video-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5); /* Optional for readability */
    padding: 20px 30px;
    border-radius: 15px;
    animation: fadeIn 1.5s ease-in-out;
    z-index: 2;
}

.video-overlay-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.video-overlay-text .highlight {
    color: #ffcc00; /* Optional: highlight Bengali word */
}

/* Responsive text size */
@media (max-width: 768px) {
    .video-overlay-text h1 {
        font-size: 1.8rem;
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


/* ====== Mission Section ====== */
/* .mission {
    margin-top: 50px;
    background-color: rgb(84, 104, 255);
}
.mission h1 {
    color: #007bff;
}

/* Mission Cards */
/* .mission-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6fc;
    color: #1c1c1c;
} */ 

.mission-section {
    position: relative;
    padding: 80px 20px;
    background: rgba(84, 104, 255, 0.5); /* Brand Blue with 50% transparency */
    backdrop-filter: blur(6px);
    color: #ffffff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-title {
    font-size: 3em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.mission-subtitle {
    font-size: 1.2em;
    color: #e0e0ff;
    margin-bottom: 40px;
}

/* ==== Skill Badges ==== */
.badge-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.badge:hover {
    background: #ffb703; /* Yellow theme accent */
    color: #000;
}

/* ==== Mission Cards ==== */
.mission-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 30px 25px;
    max-width: 330px;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.mission-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.mission-card h3 {
    font-size: 1.4em;
    color: #ffb703; /* Yellow Accent */
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 1em;
    color: #f9f9f9;
    line-height: 1.6;
}


/* ====== Course List ====== */
.course-list {
    list-style: none;
    padding: 0;
}

.course-list li {
    margin: 10px 0;
    font-size: 18px;
}

/* ====== Student Slider ====== */
.student-slider {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.student-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 10px;
}

/* ====== Contact Button ====== */
.contact-btn {
    margin-top: 20px;
}

/* ====== Navbar Styles ====== */
.premium-navbar {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.9));
    height: 75px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Logo styling */
.navbar-logo {
    height: 45px;
    transition: transform 0.3s ease;
}

/* Logo shrink on hover */
.navbar-logo:hover {
    transform: scale(0.9);
}

/* Navbar link styling */
.navbar-nav .nav-link {
    color: #333; /* Ash color */
    font-size: 18px;
    margin-left: 15px;
    padding: 8px 12px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Link hover effect */
.navbar-nav .nav-link:hover {
    color: #ffcc00; /* Premium yellow */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Toggler icon */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(51,51,51, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive Navbar adjustments */
@media (max-width: 767px) {
    .navbar-logo {
        height: 35px;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        margin-left: 5px;
    }

    /* Hide navbar items when collapsed */
    .navbar-nav {
        display: none; /* Hide by default */
    }

    .navbar-collapse.show .navbar-nav {
        display: block; /* Show when expanded */
    }
}

.navbar-collapse {
    transition: all 0.3s ease;
}





/* MISSION */

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.mission-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-in-out;
}

.mission-tagline {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #f0f0f0;
    animation: fadeInDown 1.2s ease-in-out;
}

/* Skills Animation */
.skills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 1.5s ease-in-out;
}

.skill-badge {
    background: linear-gradient(135deg, #ff6f00, #ffa000);
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.skill-badge:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
s




/* ====== Footer Styles ====== */
footer {
    background-color: #007bff; /* Blue color for footer */
    color: white;
    padding: 20px 0;
}

/* ====== CEO Image Styles ====== */
.ceo-img {
    width: 400px;  /* Set desired width */
    height: 400px; /* Set desired height */
    object-fit: fill; /* Corrected from 'fills' to 'fill' */
    border-radius: 10%; /* Rounded corners */
}

/* Media query for smaller devices */
@media (max-width: 1200px) {
    .ceo-img {
        width: 400px;  
        height: 400px;
    }
}

@media (max-width: 450px) {
    .ceo-img {
        width: 400px;  
        height: 400px;
    }
}

/* ====== Main Section ====== */
.stage-section {
    background-color: #f0f0f8; /* Light background */
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}
.stage-heading-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
    transition: transform 0.3s;
}
.stage-heading-img{
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.stage-heading-box:hover {
    transform: translateY(-5px);
}

/* ====== Course Boxes ====== */
.course-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 280px;

}
.course-box:hover {
    transform: translateY(-5px);
}
.course-image {
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
}


/* ====== Responsive Course Box ====== */
@media (max-width: 992px) {
    .course-box {
        max-width: 240px;
    }
}
@media (max-width: 768px) {
    .course-box {
        max-width: 100%; /* Full width on smaller screens */
    }
}

/* ====== Team Section ====== */
.team-member {
    margin-bottom: 30px;
}
.team-details {
    margin-top: 15px;
    background-color: #f9f9f9; /* Light background for details */
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* ====== Headings ====== */
h2 {
    margin-bottom: 40px; /* Space below the title */
}


/* ====== About Us Section ====== */
.about-us-box {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-us-box h3 {
    font-size: 28px;
    font-family: 'Noto Sans Bengali', sans-serif;
    color: #0056b3;
}
.about-us-box p {
    font-size: 18px;
    font-family: 'Noto Sans Bengali', sans-serif;
    color: #333;
    margin-top: 15px;
}

/* ====== Scroll to Top Button ====== */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: #0d6efd;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#scrollTopBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


    /* ====== Footer Styles ====== */
.footer {
    background: linear-gradient(90deg, rgba(245, 245, 245, 0.9), rgba(230, 230, 230, 0.9));
    color: #333;
    box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

.footer a.text-link {
    color: #ffcc00; /* Premium yellow color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer a.text-link:hover {
    color: #333; /* Ash color on hover */
}

/* ====== Loading Page ====== */
.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-logo {
    position: relative;
    width: 400px;
    height: 400px;
}

.loading-logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ====== Rotation Animation ====== */
.rotating {
    animation: rotate 7s linear infinite;
    transform-origin: center;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(45deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-45deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* ====== Location Section ====== */
#location {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-image img {
    border-radius: 10px;
    transition: transform 0.3s;
}

.location-image img:hover {
    transform: scale(1.05);
}

/* ====== Testimonial Images (Duplication Removed) ====== */
.testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-top: 20px;
    border: 3px solid #007bff;
    border-radius: 50%;
}

/* ====== Card Styling ====== */
.card {
    border: none;
    background-color: #f8f9fa;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 15px;
}

/* ====== Navbar Collapse Transition ====== */
.navbar-collapse {
    transition: all 0.3s ease;
}







/* ============================= */
/*       Animation Keyframes     */
/* ============================= */
@keyframes rotate {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(45deg); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(-45deg); }
    100% { transform: rotate(0deg); }
}

/* ============================= */
/*       Enrollment Form         */
/* ============================= */
.enrollment-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
    overflow-y: auto;
    max-height: 90vh;
}

.enrollment-container::-webkit-scrollbar {
    width: 6px;
}
.enrollment-container::-webkit-scrollbar-thumb {
    background-color: #336699;
    border-radius: 10px;
}

#enrollmentForm {
    display: flex;
    flex-direction: column;
}
#enrollmentForm h2 {
    text-align: center;
    color: #336699;
}
#enrollmentForm label,
#enrollmentForm input,
#enrollmentForm select,
#enrollmentForm button {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
}
#enrollmentForm button {
    background-color: #336699;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
#enrollmentForm button:hover {
    background-color: #224466;
}

/* Enroll Button */
.enroll-button {
    padding: 12px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #336699;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.enroll-button:hover {
    background-color: #224466;
}

/* ============================= */
/*    Registration Button       */
/* ============================= */
.registration-link {
    font-size: 28px;
    padding: 12px 24px;
}
.card {
  height: 100%;
}

@media (max-width: 768px) {
    .registration-link {
        font-size: 18px;
        padding: 8px 16px;
        top: 40%;
    }
    .science-fest-container img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .registration-link {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* ============================= */
/*     Facebook & Updates Box    */
/* ============================= */
.fb-group-section, .updates-section {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fb-logo img {
    width: 40px;
    height: auto;
    margin-bottom: 10px;
}

.btn {
    margin-top: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .fb-logo img {
        width: 35px;
    }
    .fb-group-section, .updates-section {
        padding: 10px;
    }
    .btn {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .fb-logo img {
        width: 30px;
    }
    .fb-group-section, .updates-section {
        padding: 8px;
        font-size: 14px;
        overflow-y: auto;
        max-height: 300px;
    }
}

/* ============================= */
/*      Trial Button             */
/* ============================= */
.trial-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 10px;
    width: 500px;
    margin: 20px auto;
    text-decoration: none;
}
.trial-button:hover {
    background-color: #0056b3;
}
.trial-button img {
    margin-right: 10px;
}

/* ============================= */
/*          */
/* ============================= */
.student-box {
    width: 220px;
    height: 220px;
    background: white;
    transition: transform 0.3s;
    border: 5px solid #007bff1a;
}
.student-box:hover {
    transform: scale(1.05);
}
.student-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slider-img.active {
    opacity: 1;
}

/* ============================= */
/*      Classroom Gallery        */
/* ============================= */
#classroom-gallery img {
    transition: transform 0.3s ease;
    cursor: pointer;
}
#classroom-gallery img:hover {
    transform: scale(1.05);
}


   .multicolor-text {
        background: linear-gradient(to right, #ffffff, #130b6b); /* Red to Green gradient */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 2.5rem;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
    }






    #photo-gallery-slider {
        background-color: #f9f9f9;
        padding: 30px 15px;
    }

    #photo-gallery-slider h2 {
        color: #2c3e50;
        font-weight: bold;
        font-size: 28px;
    }

    .carousel-inner img, .carousel-inner video {
        height: auto;
        width: 100%;
        max-height: 450px; /* Adjust to your preference */
        object-fit: contain; /* Ensures the entire image/video is visible */
    }

    .carousel-indicators button {
        background-color: #2c3e50;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        filter: invert(100%);
    }









    