/* ========================
   FRUITFUL PRE SCHOOL & DAYCARE
   Custom CSS Styles
   Cross-Browser Compatible
   ======================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@300;400;700&family=Fredoka+One:wght@400&family=Nunito:wght@300;400;600;700;800&display=swap');

/* Browser Reset and Compatibility */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Webkit scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Fix for older browsers */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ========================
   CSS Variables
   ======================== */
:root {
    --primary-color: #6b8e23;      /* Olive Green */
    --secondary-color: #ab6e44;    /* Brown */
    --accent-color: #8FBC8F;       /* Dark Sea Green */
    --warning-color: #DAA520;      /* Goldenrod */
    --success-color: #32CD32;      /* Lime Green */
    --purple-color: #9370DB;       /* Medium Purple */
    --pink-color: #ab6e44;         /* Brown for accents */
    --primary-rgb: 107, 142, 35;   /* RGB for primary color */
    --secondary-rgb: 171, 110, 68; /* RGB for secondary color */
    
    --light-bg: #F0FFF0;           /* Honeydew */
    --white: #FFFFFF;
    --light-gray: #F5FFFA;         /* Mint Cream */
    --dark-gray: #556B2F;          /* Dark Olive Green */
    --text-color: #2F4F2F;         /* Dark Sea Green */
    --text-dark: #1C3D1C;
    
    --shadow-light: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
    
    --border-radius: 15px;
    --border-radius-small: 10px;
    --border-radius-large: 25px;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ========================
   Global Styles
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* ========================
   Typography
   ======================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* ========================
   Header & Navigation
   ======================== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--text-dark) !important;
    text-decoration: none;
}

.navbar-brand i {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.brand-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem !important;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--pink-color));
    border: none;
    border-radius: var(--border-radius-large);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(45deg, var(--pink-color), var(--primary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius-large);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--pink-color));
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* ========================
   Hero Slider Section
   ======================== */
.hero-slider-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* Running Text Animation */
.running-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
}

.running-text {
    white-space: nowrap;
    color: #6b8e23;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-animation: scrollText 20s linear infinite;
    animation: scrollText 20s linear infinite;
    padding-left: 100%;
    display: inline-block;
}

@-webkit-keyframes scrollText {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scrollText {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide[data-bg="slide1"] {
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.15) 0%, rgba(171, 110, 68, 0.15) 100%);
}

.hero-slide[data-bg="slide2"] {
    background: linear-gradient(135deg, rgba(171, 110, 68, 0.15) 0%, rgba(107, 142, 35, 0.15) 100%);
}

.hero-slide[data-bg="slide3"] {
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.1) 0%, rgba(171, 110, 68, 0.2) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(69, 183, 209, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: var(--shadow-medium);
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    color: var(--pink-color);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.hero-content {
    z-index: 2;
    position: relative;
    animation: slideInLeft 1s ease-out;
}

.text-highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: slideIn 0.8s ease-out 0.5s both;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-illustration {
    font-size: 15rem;
    color: var(--secondary-color);
    animation: bounce 2s ease-in-out infinite;
}
.fontImage{
    font-size: 10rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    animation-delay: -0.5s;
}

.shape-2 {
    top: 20%;
    right: 20%;
    animation-delay: -1s;
}

.shape-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: -1.5s;
}

.shape-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: -2s;
}

.shape-5 {
    top: 50%;
    left: 5%;
    animation-delay: -2.5s;
}

.hero-buttons {
    margin-top: 2rem;
}

.floating-btn {
    animation: pulse 2s ease-in-out infinite;
}

/* ========================
   Package & Event Services Cards
   ======================== */
.package-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.package-card:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.package-card:hover .package-icon {
    -webkit-transform: scale(1.1) rotate(5deg);
    -moz-transform: scale(1.1) rotate(5deg);
    -ms-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
}

.package-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.package-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.package-price {
    text-align: center;
    margin-top: auto;
}

.package-price .price {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}

/* Decoration Cards */
.decoration-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(107, 142, 35, 0.1);
}

.decoration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.decoration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.decoration-card:hover .decoration-icon {
    transform: scale(1.15);
}

.decoration-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.decoration-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.decoration-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(107, 142, 35, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* ========================
   Testimonial Cards
   ======================== */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Featured testimonial styling */
.featured-testimonial {
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.05), rgba(171, 110, 68, 0.05));
    border: 2px solid var(--primary-color);
}

.featured-testimonial::before {
    height: 6px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.featured-testimonial .testimonial-content p {
    font-size: 1.1rem;
    font-weight: 500;
}

.featured-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(107, 142, 35, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-content p::before {
        font-size: 2.5rem;
        top: -8px;
        left: -10px;
    }
}

/* ========================
   Detailed Team Profile Cards
   ======================== */
.detailed-profile {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.detailed-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.detailed-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.team-image-large {
    position: relative;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-basic-info h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-basic-info .team-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.team-email {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.team-email a {
    color: var(--primary-color);
    text-decoration: none;
}

.team-email a:hover {
    text-decoration: underline;
}

.team-description {
    padding-left: 1rem;
}

.team-description p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-achievements li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.team-achievements li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.team-achievements li:last-child {
    margin-bottom: 0;
}

/* Social Media Icons for Team */
.team-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.team-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive adjustments for detailed profiles */
@media (max-width: 768px) {
    .detailed-profile {
        padding: 1.5rem;
        text-align: center;
    }
    
    .team-description {
        padding-left: 0;
        margin-top: 1rem;
    }
    
    .profile-image {
        height: 150px;
    }
    .imgMob{
        object-fit: fill;
    }
    .team-achievements li {
        font-size: 0.85rem;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .detailed-profile .row {
        flex-direction: column;
    }
    
    .profile-image {
        height: 200px;
        max-width: 200px;
        margin: 0 auto;
    }
    .imgMob{
        object-fit: fill;
    }
    .team-basic-info {
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* ========================
   Circular Team Profile Cards
   ======================== */
.circular-profile {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.circular-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.circular-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.team-image-circular {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.circular-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 3px;
    z-index: 1;
}

.circular-border.green {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.circular-border.orange {
    background: linear-gradient(135deg, #FF9800, #FFC107);
}

.circular-border.blue {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
}

.circular-border.purple {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
}

.circular-profile h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.circular-profile .team-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.circular-profile .team-bio {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Hover effects for circular profiles */
.circular-profile:hover .circular-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.circular-profile:hover .circular-border {
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

/* Team section improvements */
.team-section .section-subtitle {
    margin-bottom: 2rem;
}

.team-section .row.justify-content-center {
    margin-top: 1rem;
}

/* Better spacing for team sections */
.team-section h3.section-subtitle {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.team-section h3.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* Responsive adjustments for circular profiles */
@media (max-width: 768px) {
    .team-image-circular {
        width: 100px;
        height: 100px;
    }
    
    .circular-image {
        width: 80px;
        height: 80px;
    }
    
    .circular-profile {
        padding: 1.5rem;
    }
    
    .team-section .row.justify-content-center {
        margin-top: 0;
    }
}

/* ========================
   Facilities Section - Simple & Compact
   ======================== */
.facility-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e9ecef;
    position: relative;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.facility-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.facility-image {
    height: 120px;
    overflow: hidden;
    position: relative;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.facility-image img {
    max-width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-content {
    padding: 1.25rem;
    text-align: center;
}

.facility-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.facility-content p {
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.facility-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.facility-features li {
    background: rgba(107, 142, 35, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.facility-features li:last-child {
    margin-bottom: 0;
}

.facility-features li i {
    margin-right: 0.25rem;
    font-size: 0.7rem;
}

/* Responsive adjustments for facilities */
@media (max-width: 768px) {
    .facility-image {
        height: 100px;
        padding: 12px;
    }
    
    .facility-image img {
        max-height: 76px;
    }
    
    .facility-content {
        padding: 1rem;
    }
    
    .facility-content h4 {
        font-size: 1rem;
    }
    
    .facility-content p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

@media (max-width: 576px) {
    .facility-image {
        height: 80px;
        padding: 10px;
    }
    
    .facility-image img {
        max-height: 60px;
    }
    
    .facility-content {
        padding: 0.75rem;
    }
    
    .facility-features {
        gap: 0.25rem;
    }
    
    .facility-features li {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

/* ========================
   Page Header
   ======================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--purple-color) 100%);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================
   Cards & Components
   ======================== */
.feature-card, .service-card, .value-card, .team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before, .service-card::before, .value-card::before, .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: var(--transition-slow);
}

.feature-card:hover::before, .service-card:hover::before, .value-card:hover::before, .team-card:hover::before {
    left: 100%;
}

.feature-card:hover, .service-card:hover, .value-card:hover, .team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.feature-icon, .service-icon, .value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.feature-card:hover .feature-icon,
.service-card:hover .service-icon,
.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h4, .service-card h4, .value-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p, .service-card p, .value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ========================
   Special Service Cards
   ======================== */
.special-service {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    border-left: 5px solid var(--primary-color);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-price {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.service-price .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: 'Fredoka One', cursive;
}

/* ========================
   Stats Section
   ======================== */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Fredoka One', cursive;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================
   Forms
   ======================== */
.contact-form-container, .application-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
}

.form-control {
    border: 2px solid #E9ECEF;
    border-radius: var(--border-radius-small);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section .section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

/* ========================
   Franchise Form Section
   ======================== */
.franchise-section {
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.05), rgba(171, 110, 68, 0.05));
}

.franchise-form-container .card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.franchise-form-container .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.franchise-form-container .card-header {
    border-radius: 15px 15px 0 0 !important;
    border: none;
}

.franchise-form-container .form-control {
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.franchise-form-container .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(107, 142, 35, 0.25);
    outline: none;
    transform: translateY(-1px);
}

.franchise-form-container .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.franchise-form-container .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.franchise-form-container .form-check-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
}

.franchise-form-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.3);
}

/* Investment Range Styling */
.franchise-form-container .form-check {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.franchise-form-container .form-check:hover {
    background-color: rgba(107, 142, 35, 0.05);
}

.franchise-form-container .form-check-input[type="radio"] {
    margin-top: 0.3em;
}

/* Responsive adjustments for franchise form */
@media (max-width: 768px) {
    .franchise-form-container .card-body {
        padding: 2rem 1.5rem;
    }
    
    .franchise-form-container .card-header h3 {
        font-size: 1.25rem;
    }
    
    .franchise-section .section-title {
        font-size: 2rem;
    }
    
    .franchise-section .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .franchise-form-container .card-body {
        padding: 1.5rem 1rem;
    }
    
    .franchise-form-container .btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 12px;
    }
}

/* ========================
   Footer
   ======================== */
.footer-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--warning-color));
}

.footer-about h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Fredoka One', cursive;
}

.footer-about p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.footer-links h6, .footer-contact h6, .footer-hours h6 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-item, .hours-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.contact-item i {
    width: 20px;
    margin-right: 1rem;
    color: var(--primary-color);
}

.hours-item {
    justify-content: space-between;
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.7);
    margin: 0;
    text-align: center;
}

/* ========================
   Contact Info Cards
   ======================== */
.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info .contact-item {
    display: flex;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.contact-details p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.5;
}

/* ========================
   Animations
   ======================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* ========================
   Responsive Design
   ======================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-illustration {
        font-size: 8rem;
    }
    
    .contact-form-container, .application-form-container {
        padding: 2rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .floating-shape {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .contact-info {
        position: static;
        margin-top: 2rem;
    }
    
    /* Enhanced Mobile Slider Styles */
    .hero-slider-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-slider {
        height: 80vh;
        min-height: 600px;
        touch-action: pan-y pinch-zoom;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important; /* Fix for mobile */
        overflow: hidden;
        min-height: 600px;
        padding: 95px 0 20px 0; /* Account for fixed header and running text */
    }
    
    .hero-slide .container {
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .hero-slide .row {
        min-height: auto !important;
        align-items: center !important;
    }
    
    .hero-content {
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 1rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
        /* font-size: 0.9rem; */
        font-size: 0.6rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        text-align: center;
        height: 0px;
    }
    
    .hero-illustration {
        font-size: 4rem !important;
    }
    
    .floating-elements {
        display: none; /* Hide floating elements on mobile for cleaner look */
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        color: var(--primary-color);
    }
    
    .slider-dots {
        bottom: 30px;
        gap: 10px;
    }
    
    .slider-dots .dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.9);
    }
    
    .slider-dots .dot.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    /* Running Text Mobile Styles */
    .running-text-container {
        height: 35px;
    }
    
    .running-text {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-form-container, .application-form-container {
        padding: 1.5rem;
    }
    
    .feature-icon, .service-icon, .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-illustration {
        font-size: 6rem;
    }
    
    .floating-shape {
        font-size: 1.2rem;
    }
    
    /* Ultra-mobile slider optimizations */
    .hero-slider-section {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-slider {
        height: 90vh;
        min-height: 500px;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .hero-slide {
        min-height: 500px;
        padding: 110px 0 20px 0; /* More padding for fixed header and running text */
    }
    
    .hero-title {
        font-size:1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .hero-buttons .btn {
        width: 180px;
        font-size: 0.6rem;
        padding: 0.3rem 0.8rem;
        /* font-size: 0.85rem;
        padding: 0.6rem 1rem; */
    }
    
    .hero-illustration {
        font-size: 3rem !important;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 6px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Running Text Ultra-Mobile Styles */
    .running-text-container {
        height: 30px;
    }
    
    .running-text {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
}

/* ========================
   Utility Classes
   ======================== */
.bg-light-custom {
    background-color: var(--light-bg) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-medium) !important;
}

.rounded-custom {
    border-radius: var(--border-radius) !important;
}

.transition-custom {
    transition: var(--transition) !important;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.contact-style{
    color: #000;
    border: 1px solid #000;
}
.stat-number-opacity{
    font-size: 20px;
    opacity: 1!important;
}
/* ========================
   About Page Enhancements
   ======================== */

/* Learning Activities Section */
.learning-activities {
    margin: 2rem 0;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
    transition: var(--transition);
    transition-behavior: normal;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: all;
}

.activity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.activity-item i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.activity-item span {
    line-height: 1.5;
    color: var(--text-color);
}

.activity-item strong {
    color: var(--primary-color);
}

/* School Features List */
.school-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.school-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.school-features li:hover {
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateX(3px);
}

.school-features li:before {
    content: '🏫';
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

/* Enhanced About Section Headers */
.about-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-content h3 i {
    font-size: 1.2rem;
}

/* Responsive Design for About Sections */
@media (max-width: 768px) {
    .activity-item {
        flex-direction: column;
        text-align: center;
    }
    
    .activity-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    
    .school-features li:before {
        display: none;
    }
    
    .about-content h3 {
        justify-content: center;
        text-align: center;
    }
}

/* ========================
   Services Page - Daily Activities
   ======================== */

/* Schedule Period Sections */
.schedule-period {
    margin-bottom: 2rem;
}

.period-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    justify-content: center;
}

.period-title i {
    font-size: 2rem;
}

/* Activity Cards */
.activity-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.activity-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.activity-time {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.activity-content p:last-child {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Different border colors for different periods */
.schedule-period:nth-child(1) .activity-card {
    border-left-color: #6b8e23; /* Olive green for morning */
}

.schedule-period:nth-child(2) .activity-card {
    border-left-color: #ab6e44; /* Brown for midday */
}

.schedule-period:nth-child(3) .activity-card {
    border-left-color: #8a9a5b; /* Lighter olive for afternoon */
}

/* Icon colors for different periods */
.schedule-period:nth-child(1) .activity-icon {
    background: linear-gradient(135deg, #6b8e23, #8a9a5b);
    color: #ffffff !important;
}

.schedule-period:nth-child(2) .activity-icon {
    background: linear-gradient(135deg, #ab6e44, #c4896b);
    color: #ffffff !important;
}

.schedule-period:nth-child(3) .activity-icon {
    background: linear-gradient(135deg, #8a9a5b, #a3b36e);
    color: #ffffff !important;
}

/* Ensure icon visibility */
.activity-icon i {
    color: inherit;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Responsive Design for Activity Cards */
@media (max-width: 768px) {
    .activity-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .activity-icon {
        margin-bottom: 0.75rem;
    }
    
    .period-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .period-title i {
        font-size: 1.5rem;
    }
}

/* ========================
   Animated Text Effects
   ======================== */

/* Bounce Animation */
.bounce-text {
    animation: bounceIn 2s ease-out;
    display: inline-block;
}

.bounce-text.bounce-active {
    animation: bounceRepeat 3s ease-in-out infinite;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes bounceRepeat {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Snake Wave Animation */
.snake-text {
    display: inline-block;
    animation: snakeWave 4s ease-in-out infinite;
}

.snake-text.snake-active {
    animation: snakeWaveActive 3s ease-in-out infinite;
}

@keyframes snakeWave {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-15px) rotateZ(2deg);
    }
    50% {
        transform: translateY(0px) rotateZ(0deg);
    }
    75% {
        transform: translateY(15px) rotateZ(-2deg);
    }
}

@keyframes snakeWaveActive {
    0% { transform: translateY(0px); }
    10% { transform: translateY(-10px); }
    20% { transform: translateY(5px); }
    30% { transform: translateY(-15px); }
    40% { transform: translateY(10px); }
    50% { transform: translateY(-5px); }
    60% { transform: translateY(15px); }
    70% { transform: translateY(-10px); }
    80% { transform: translateY(5px); }
    90% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

/* Zoom In/Out Animation */
.zoom-text {
    display: inline-block;
    animation: zoomIn 1.5s ease-out;
}

.zoom-text.zoom-active {
    animation: zoomPulse 4s ease-in-out infinite;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animated Text General */
.animated-text {
    animation: slideInUp 1s ease-out;
}

.animated-text.animate-in {
    animation: slideInUpActive 2s ease-out;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUpActive {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Highlight with Avocado Theme */
.text-highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 700;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: highlightGrow 1s ease-out 0.5s both;
}

@keyframes highlightGrow {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

/* Responsive Text Animations */
@media (max-width: 768px) {
    .bounce-text, .snake-text, .zoom-text, .animated-text {
        animation-duration: 1s;
    }
    
    .bounce-text.bounce-active {
        animation-duration: 2s;
    }
    
    .snake-text.snake-active {
        animation-duration: 2s;
    }
    
    .zoom-text.zoom-active {
        animation-duration: 3s;
    }
}

/* Hero Slider Improvements for Edge */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide[data-bg="slide1"] {
    background: linear-gradient(135deg, var(--light-bg) 0%, #E8F5E8 100%);
}

.hero-slide[data-bg="slide2"] {
    background: linear-gradient(135deg, #E8F5E8 0%, var(--light-gray) 100%);
}

.hero-slide[data-bg="slide3"] {
    background: linear-gradient(135deg, var(--light-gray) 0%, #F0FFF0 100%);
}

/* ========================
   Google Maps Styles
   ======================== */
.map-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.google-map-embed {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.google-map-embed:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.google-map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.map-overlay-info {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    pointer-events: none;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.map-info-card:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.map-info-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.map-info-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.map-actions .btn-sm {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.map-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.map-actions .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.map-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

/* Mobile Responsiveness for Google Maps */
@media (max-width: 768px) {
    .google-map-embed iframe {
        height: 300px;
    }
    
    .map-overlay-info {
        position: static;
        margin-top: 15px;
    }
    
    .map-info-card {
        background: rgba(255, 255, 255, 1);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 8px;
        padding: 15px;
    }
    
    .map-actions {
        justify-content: center;
    }
    
    .map-actions .btn-sm {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .google-map-embed iframe {
        height: 250px;
    }
    
    .map-info-card {
        padding: 12px;
    }
    
    .map-info-card h5 {
        font-size: 1rem;
    }
    
    .map-info-card p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .map-actions .btn-sm {
        font-size: 0.75rem;
        padding: 5px 10px;
        min-width: 100px;
    }
}

/* ========================
   Play Kids Emoji Styling
   ======================== */
.play-kids-emoji {
    font-size: 4rem;
    line-height: 1.2;
    text-align: center;
    display: inline-block;
    animation: bounce 2s infinite;
    letter-spacing: 0.2em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Enhanced bouncing animation for emojis */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-10px) scale(1.05);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Mobile responsive emoji */
@media (max-width: 768px) {
    .play-kids-emoji {
        font-size: 3rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 576px) {
    .play-kids-emoji {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }
}