/**
 * Sunshine Kindergarten - Main Stylesheet
 *
 * This stylesheet contains all custom styles for the kindergarten website.
 * It uses a kid-friendly color palette with pastel colors and playful design elements.
 */

/* ======================================
   1. Variables and Base Styles
   ====================================== */

   :root {
    /* Color Palette */
    --primary-color: #ff9aa2; /* Light Pink */
    --secondary-color: #87ceeb; /* Baby Blue */
    --accent-color-1: #98fb98; /* Mint Green */
    --accent-color-2: #ffffcc; /* Soft Yellow */
    --accent-color-3: #b19cd9; /* Soft Purple */
    --dark-color: #4a4a4a; /* Dark Gray for text */
    --light-color: #ffffff; /* White */
    --light-bg: #f8f9fa; /* Light Background */
    --border-color: #e0e0e0; /* Light Gray for borders */
  
    /* Typography */
    --heading-font: "Bubblegum Sans", cursive;
    --body-font: "Open Sans", sans-serif;
    --alt-font: "Comic Neue", cursive;
  
    /* Spacing */
    --section-padding: 80px 0;
    --element-spacing: 20px;
  
    /* Border Radius */
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
  
    /* Box Shadow */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  /* Base Styles */
  body {
    font-family: var(--body-font);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--secondary-color);
    text-decoration: none;
  }
  
  .lead {
    font-size: 1.2rem;
    font-weight: 400;
  }
  
  .section-title {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  .title-decoration {
    height: 5px;
    width: 80px;
    background: var(--primary-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }
  
  .section-title.text-center .title-decoration {
    margin-left: auto;
    margin-right: auto;
  }
  
  .bg-light {
    background-color: var(--light-bg) !important;
  }
  
  /* ======================================
     2. Buttons
     ====================================== */
  
  .btn {
    font-family: var(--alt-font);
    font-weight: 700;
    border-radius: var(--border-radius-md);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.9;
  }
  
  .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
  
  .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  .btn-hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-md);
    border: none;
  }
  
  .btn-hero:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
  }
  
  .btn-cta {
    background-color: var(--accent-color-1);
    color: var(--dark-color);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-md);
    border: none;
    font-weight: 700;
  }
  
  .btn-cta:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
  }
  
  .btn-enroll {
    background-color: var(--accent-color-1);
    color: var(--dark-color);
    border-radius: var(--border-radius-md);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border: none;
  }
  
  .btn-enroll:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
  }
  
  .btn-subscribe {
    background-color: var(--accent-color-3);
    color: var(--light-color);
    border: none;
  }
  
  .btn-subscribe:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
  }
  
  /* ======================================
     3. Header & Navigation
     ====================================== */
  
  .top-bar {
    background-color: var(--secondary-color);
    color: var(--light-color);
    font-size: 0.9rem;
  }
  
  .top-bar a {
    color: var(--light-color);
  }
  
  .top-bar a:hover {
    color: var(--accent-color-2);
  }
  
  .social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
  }
  
  .navbar {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
  }
  
  .navbar-brand {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
  }
  
  .navbar-brand span {
    color: var(--primary-color);
  }
  
  .navbar-nav .nav-link {
    font-family: var(--alt-font);
    font-weight: 700;
    color: var(--dark-color);
    padding: 1.5rem 1rem;
    position: relative;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--primary-color);
  }
  
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 80%;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* ======================================
     4. Hero Section
     ====================================== */
  
  .hero-section {
    position: relative;
  }
  
  .carousel-item {
    height: 600px;
  }
  
  .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.7);
  }
  
  .carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    padding: 0 15%;
  }
  
  .carousel-caption h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
  }
  
  /* ======================================
     5. Welcome Section
     ====================================== */
  
  .welcome-section {
    padding: var(--section-padding);
  }
  
  .welcome-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  .welcome-image img {
    border-radius: var(--border-radius-lg);
    transition: all 0.5s ease;
  }
  
  .welcome-image:hover img {
    transform: scale(1.05);
  }
  
  .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: var(--accent-color-1);
    color: var(--dark-color);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--box-shadow);
    padding: 10px;
  }
  
  .experience-badge .years {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 5px;
  }
  
  .experience-badge .text {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  /* ======================================
     6. Features Section
     ====================================== */
  
  .features-section {
    padding: var(--section-padding);
  }
  
  .feature-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    background-color: var(--accent-color-2);
    color: var(--dark-color);
    transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* ======================================
     7. Programs Preview Section
     ====================================== */
  
  .programs-preview-section {
    padding: var(--section-padding);
  }
  
  .program-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
  }
  
  .program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .program-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    background-color: var(--accent-color-2);
    color: var(--dark-color);
    transition: all 0.3s ease;
  }
  
  .program-card:nth-child(2) {
    border-top-color: var(--secondary-color);
  }
  
  .program-card:nth-child(2) .program-icon {
    background-color: var(--secondary-color);
    color: var(--light-color);
  }
  
  .program-card:nth-child(3) {
    border-top-color: var(--accent-color-1);
  }
  
  .program-card:nth-child(3) .program-icon {
    background-color: var(--accent-color-1);
  }
  
  .program-card:nth-child(4) {
    border-top-color: var(--accent-color-3);
  }
  
  .program-card:nth-child(4) .program-icon {
    background-color: var(--accent-color-3);
    color: var(--light-color);
  }
  
  .program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .program-card p {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .program-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  .program-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.5rem;
  }
  
  .program-card ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
  }
  
  /* ======================================
     8. Testimonials Section
     ====================================== */
  
  .testimonials-section {
    padding: var(--section-padding);
  }
  
  .testimonial-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .testimonial-content {
    position: relative;
    padding-top: 30px;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-content::before {
    content: "\F4AD";
    font-family: "bootstrap-icons";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
  }
  
  .testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  
  .testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  
  /* ======================================
     9. Call to Action Section
     ====================================== */
  
  .cta-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 0;
  }
  
  .cta-section h2 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
  }
  
  .cta-section p {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .btn-cta {
    background-color: var(--light-color);
    color: var(--primary-color);
  }
  
  .btn-cta:hover {
    background-color: var(--accent-color-1);
    color: var(--dark-color);
  }
  
  /* ======================================
     10. Social Media Section
     ====================================== */
  
  .social-section {
    padding: var(--section-padding);
  }
  
  .social-links-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    color: var(--light-color);
    width: 150px;
    transition: all 0.3s ease;
  }
  
  .social-link i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .social-link.facebook {
    background-color: #3b5998;
  }
  
  .social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }
  
  .social-link.twitter {
    background-color: #1da1f2;
  }
  
  .social-link.youtube {
    background-color: #ff0000;
  }
  
  .social-link:hover {
    transform: translateY(-10px);
    color: var(--light-color);
    box-shadow: var(--box-shadow-hover);
  }
  
  /* ======================================
     11. Footer
     ====================================== */
  
  .footer {
    background-color: #333;
    color: var(--light-color);
    position: relative;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(
      90deg,
      var(--primary-color) 0%,
      var(--secondary-color) 25%,
      var(--accent-color-1) 50%,
      var(--accent-color-2) 75%,
      var(--accent-color-3) 100%
    );
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
  
  .widget-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    position: relative;
    padding-bottom: 10px;
  }
  
  .widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .footer-logo {
    margin-bottom: 1rem;
  }
  
  .about-widget p {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-links {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.8rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
  }
  
  .footer-links i {
    margin-right: 5px;
    color: var(--primary-color);
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
  }
  
  .contact-item i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
  }
  
  .contact-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
  }
  
  .contact-item a {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .contact-item a:hover {
    color: var(--primary-color);
  }
  
  .newsletter-row {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-md);
  }
  
  .newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 0.8rem 1.5rem;
  }
  
  .newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .copyright-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .copyright-row p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* ======================================
     12. Back to Top Button
     ====================================== */
  
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-5px);
  }
  
  /* ======================================
     13. Page Banner
     ====================================== */
  
  .page-banner {
    background-color: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
    position: relative;
  }
  
  .page-banner::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(
      90deg,
      var(--primary-color) 0%,
      var(--secondary-color) 25%,
      var(--accent-color-1) 50%,
      var(--accent-color-2) 75%,
      var(--accent-color-3) 100%
    );
  }
  
  .page-banner h1 {
    color: var(--light-color);
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .breadcrumb {
    justify-content: center;
    background-color: transparent;
    margin-bottom: 0;
  }
  
  .breadcrumb-item,
  .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .breadcrumb-item.active {
    color: var(--light-color);
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* ======================================
     14. Contact Page
     ====================================== */
  
  .contact-info-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .contact-info-card .icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    background-color: var(--accent-color-2);
    color: var(--dark-color);
  }
  
  .contact-info-card:nth-child(2) .icon-box {
    background-color: var(--accent-color-1);
  }
  
  .contact-info-card:nth-child(3) .icon-box {
    background-color: var(--accent-color-3);
    color: var(--light-color);
  }
  
  .contact-form-wrapper {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
  }
  
  .map-wrapper,
  .hours-wrapper {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
  }
  
  .map-container {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
  }
  
  .hours-list {
    list-style: none;
    padding-left: 0;
  }
  
  .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--border-color);
  }
  
  .hours-list li:last-child {
    border-bottom: none;
  }
  
  .hours-list .day {
    font-weight: 700;
  }
  
  .enrollment-cta-section {
    background-color: var(--accent-color-1);
  }
  
  .enrollment-cta-section h2 {
    color: var(--dark-color);
  }
  
  .enrollment-cta-section p {
    color: var(--dark-color);
  }
  
  /* ======================================
     15. About Page
     ====================================== */
  
  .about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  .about-image-wrapper img {
    border-radius: var(--border-radius-lg);
  }
  
  .about-image-wrapper .floating-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    max-width: 200px;
  }
  
  .about-image-wrapper .floating-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .about-image-wrapper .floating-card p {
    margin-bottom: 0;
  }
  
  .mission-vision-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .mission-vision-card .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    background-color: var(--accent-color-2);
    color: var(--dark-color);
    text-align: center;
  }
  
  .mission-vision-card:nth-child(2) .icon {
    background-color: var(--accent-color-1);
  }
  
  .mission-vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .team-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .team-image {
    position: relative;
    overflow: hidden;
  }
  
  .team-image img {
    width: 100%;
    transition: all 0.5s ease;
  }
  
  .team-card:hover .team-image img {
    transform: scale(1.1);
  }
  
  .team-info {
    padding: 1.5rem;
    text-align: center;
  }
  
  .team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .team-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .team-social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--dark-color);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .team-social a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  /* ======================================
     16. Programs Page
     ====================================== */
  
  .program-detail-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }
  
  .program-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .program-detail-image {
    position: relative;
  }
  
  .program-detail-image img {
    width: 100%;
  }
  
  .program-age {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
  }
  
  .program-detail-content {
    padding: 2rem;
  }
  
  .program-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .program-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
  }
  
  .program-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.8rem;
  }
  
  .program-features li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .program-schedule {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-top: 1.5rem;
  }
  
  .program-schedule h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .schedule-list {
    list-style: none;
    padding-left: 0;
  }
  
  .schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
  }
  
  .schedule-list li:last-child {
    border-bottom: none;
  }
  
  .schedule-list .time {
    font-weight: 700;
  }
  
  .curriculum-section {
    padding: var(--section-padding);
  }
  
  .curriculum-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
  }
  
  .curriculum-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .curriculum-card:nth-child(2) {
    border-left-color: var(--secondary-color);
  }
  
  .curriculum-card:nth-child(3) {
    border-left-color: var(--accent-color-1);
  }
  
  .curriculum-card:nth-child(4) {
    border-left-color: var(--accent-color-3);
  }
  
  .curriculum-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .curriculum-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .curriculum-card:nth-child(2) .icon {
    color: var(--secondary-color);
  }
  
  .curriculum-card:nth-child(3) .icon {
    color: var(--accent-color-1);
  }
  
  .curriculum-card:nth-child(4) .icon {
    color: var(--accent-color-3);
  }
  
  /* ======================================
     17. Gallery Page
     ====================================== */
  
  .gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  
  .gallery-filter button {
    background-color: transparent;
    border: none;
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .gallery-filter button.active,
  .gallery-filter button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  .gallery-item {
    margin-bottom: 30px;
  }
  
  .gallery-item a {
    display: block;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  .gallery-item img {
    width: 100%;
    border-radius: var(--border-radius-md);
    transition: all 0.5s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-item .gallery-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    transform: scale(0);
    transition: all 0.3s ease;
  }
  
  .gallery-item:hover .gallery-icon {
    transform: scale(1);
  }
  
  /* ======================================
     18. Blog Page
     ====================================== */
  
  .blog-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
  }
  
  .blog-image {
    position: relative;
    overflow: hidden;
  }
  
  .blog-image img {
    width: 100%;
    transition: all 0.5s ease;
  }
  
  .blog-card:hover .blog-image img {
    transform: scale(1.1);
  }
  
  .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.3rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .blog-content {
    padding: 2rem;
  }
  
  .blog-meta {
    display: flex;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--dark-color);
  }
  
  .blog-meta span {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
  }
  
  .blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
  }
  
  .blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .blog-content h3 a {
    color: var(--dark-color);
    transition: all 0.3s ease;
  }
  
  .blog-content h3 a:hover {
    color: var(--primary-color);
  }
  
  .blog-excerpt {
    margin-bottom: 1.5rem;
  }
  
  .blog-sidebar {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
  }
  
  .sidebar-widget {
    margin-bottom: 2rem;
  }
  
  .sidebar-widget:last-child {
    margin-bottom: 0;
  }
  
  .sidebar-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
  }
  
  .sidebar-widget h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  .search-form {
    position: relative;
  }
  
  .search-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 50px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
  }
  
  .search-form button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  }
  
  .category-list {
    list-style: none;
    padding-left: 0;
  }
  
  .category-list li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border-color);
  }
  
  .category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-color);
    transition: all 0.3s ease;
  }
  
  .category-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
  }
  
  .category-list .count {
    background-color: var(--light-bg);
    color: var(--dark-color);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: 0.8rem;
  }
  
  .recent-post {
    display: flex;
    margin-bottom: 1.5rem;
  }
  
  .recent-post:last-child {
    margin-bottom: 0;
  }
  
  .recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-right: 15px;
  }
  
  .recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .recent-post-content h4 a {
    color: var(--dark-color);
    transition: all 0.3s ease;
  }
  
  .recent-post-content h4 a:hover {
    color: var(--primary-color);
  }
  
  .recent-post-content .date {
    font-size: 0.8rem;
    color: var(--primary-color);
  }
  
  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .tag-cloud a {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--light-bg);
    color: var(--dark-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    transition: all 0.3s ease;
  }
  
  .tag-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  .pagination {
    margin-top: 2rem;
    justify-content: center;
  }
  
  .page-link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    margin: 0 5px;
    border-radius: 50%;
    color: var(--dark-color);
    border: none;
    background-color: var(--light-bg);
  }
  
  .page-link:hover,
  .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  /* ======================================
     19. Blog Single Page
     ====================================== */
  
  .blog-single-image {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
  }
  
  .blog-single-image img {
    width: 100%;
  }
  
  .blog-single-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
  }
  
  .blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .blog-single-meta span {
    margin-right: 2rem;
    display: flex;
    align-items: center;
  }
  
  .blog-single-meta i {
    margin-right: 5px;
    color: var(--primary-color);
  }
  
  .blog-single-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .blog-single-content p {
    margin-bottom: 1.5rem;
  }
  
  .blog-single-content blockquote {
    background-color: var(--light-bg);
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
    margin: 2rem 0;
    border-radius: var(--border-radius-sm);
    font-style: italic;
  }
  
  .blog-single-content blockquote p {
    margin-bottom: 0;
  }
  
  .blog-tags {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
  }
  
  .blog-tags span {
    font-weight: 700;
    margin-right: 1rem;
  }
  
  .blog-tags a {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--light-bg);
    color: var(--dark-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .blog-tags a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
  }
  
  .blog-author {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    align-items: center;
    margin-top: 3rem;
  }
  
  .blog-author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
  }
  
  .blog-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .blog-author-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .blog-author-content p {
    margin-bottom: 0;
  }
  
  .blog-comments {
    margin-top: 3rem;
  }
  
  .blog-comments h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .comment {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .comment-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
  }
  
  .comment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .comment-content {
    flex: 1;
  }
  
  .comment-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .comment-content .date {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .comment-content p {
    margin-bottom: 0;
  }
  
  .comment-reply {
    margin-left: 100px;
  }
  
  .comment-form {
    margin-top: 3rem;
  }
  
  .comment-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  /* ======================================
     20. 404 Page
     ====================================== */
  
  .error-section {
    padding: 5rem 0;
    text-align: center;
  }
  
  .error-image {
    max-width: 400px;
    margin: 0 auto 2rem;
  }
  
  .error-content h1 {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .error-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .error-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  /* ======================================
     21. Responsive Styles
     ====================================== */
  
  @media (max-width: 1199.98px) {
    .carousel-caption h1 {
      font-size: 3rem;
    }
  
    .carousel-caption p {
      font-size: 1.3rem;
    }
  
    .experience-badge {
      width: 100px;
      height: 100px;
    }
  
    .experience-badge .years {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 991.98px) {
    .navbar-nav .nav-link {
      padding: 1rem;
    }
  
    .navbar-nav .nav-link::after {
      display: none;
    }
  
    .carousel-item {
      height: 500px;
    }
  
    .carousel-caption h1 {
      font-size: 2.5rem;
    }
  
    .carousel-caption p {
      font-size: 1.1rem;
    }
  
    .section-title h2 {
      font-size: 2rem;
    }
  
    .welcome-image .experience-badge {
      right: 0;
      bottom: 0;
    }
  }
  
  @media (max-width: 767.98px) {
    .carousel-item {
      height: 400px;
    }
  
    .carousel-caption {
      padding: 0 10%;
    }
  
    .carousel-caption h1 {
      font-size: 2rem;
    }
  
    .carousel-caption p {
      font-size: 1rem;
      margin-bottom: 1rem;
    }
  
    .btn-hero {
      padding: 0.6rem 1.5rem;
      font-size: 1rem;
    }
  
    .section-title h2 {
      font-size: 1.8rem;
    }
  
    .welcome-image {
      margin-top: 2rem;
    }
  
    .social-link {
      width: 120px;
      padding: 1rem;
    }
  
    .social-link i {
      font-size: 2rem;
    }
  
    .contact-form-wrapper,
    .map-wrapper,
    .hours-wrapper {
      padding: 1.5rem;
    }
  
    .blog-single-content {
      padding: 1.5rem;
    }
  
    .blog-single-content h1 {
      font-size: 2rem;
    }
  
    .blog-author {
      flex-direction: column;
      text-align: center;
    }
  
    .blog-author-image {
      margin-right: 0;
      margin-bottom: 1rem;
    }
  
    .comment {
      flex-direction: column;
      text-align: center;
    }
  
    .comment-image {
      margin-right: 0;
      margin-bottom: 1rem;
      margin-left: auto;
      margin-right: auto;
    }
  
    .comment-reply {
      margin-left: 0;
    }
  }
  
  @media (max-width: 575.98px) {
    .carousel-item {
      height: 350px;
    }
  
    .carousel-caption h1 {
      font-size: 1.8rem;
    }
  
    .carousel-caption p {
      font-size: 0.9rem;
    }
  
    .section-title h2 {
      font-size: 1.5rem;
    }
  
    .feature-icon,
    .program-icon,
    .contact-info-card .icon-box {
      width: 60px;
      height: 60px;
      line-height: 60px;
      font-size: 1.5rem;
    }
  
    .social-links-large {
      gap: 10px;
    }
  
    .social-link {
      width: 100px;
      padding: 0.8rem;
    }
  
    .social-link i {
      font-size: 1.5rem;
    }
  
    .error-content h1 {
      font-size: 3rem;
    }
  
    .error-content h2 {
      font-size: 1.8rem;
    }
  }
  