/* @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    /* Options: auto, thin, none */
    scrollbar-color: var(--primary-color) #f1f1f1;
    /* thumb-color track-color */
}

:root {
    --space-3xs-2xs: clamp(0.3125rem, 0.1847rem + 0.5682vw, 0.625rem);
    --space-2xs-xs: clamp(0.5625rem, 0.4091rem + 0.6818vw, 0.9375rem);
    --space-xs-s: clamp(0.875rem, 0.7216rem + 0.6818vw, 1.25rem);
    --space-s-m: clamp(1.125rem, 0.8182rem + 1.3636vw, 1.875rem);
    --space-m-l: clamp(1.6875rem, 1.3551rem + 1.4773vw, 2.5rem);
    --space-l-xl: clamp(2.25rem, 1.6364rem + 2.7273vw, 3.75rem);
    --space-xl-2xl: clamp(3.375rem, 2.7102rem + 2.9545vw, 5rem);
    --space-2xl-3xl: clamp(4.5rem, 3.2727rem + 5.4545vw, 7.5rem);
    --primary-color: #34CAC9;
    --secondary-color: #F39D24;
    --light-color: #fff;
    --dark-color: #000;
    --dark-two-color: #FFF8F0;
    --footer-color: #0D2B3E;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.65;
    --swiper-wrapper-transition-timing-function: linear !important;
    --font-headline: 'Nunito', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
    scroll-padding-top: 150px;
}

header,
main,
nav,
section {
    display: block
}

ul,
ol {
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none !important;
}

button {

    letter-spacing: 1px !important;
    font-weight: 400 !important;
}

button:focus {
    outline: none;
    box-shadow: none;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Varela Round", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
       font-family: var(--font-headline);
}

p {
    font-family: var(--font-body);
}


/* Header Base Styling */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 30px 0;
    background: transparent;
    transition: padding 0.3s ease;
}

.logo-link {
    display: inline-block;
}

.logo-img {
    max-height: 55px;
    object-fit: contain;
}

/* Button Styling matching the image */


/* Sticky Header Styling */
.site-header.sticky {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    /* Start hidden above the viewport */
    background: rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.2px);
    -webkit-backdrop-filter: blur(5.2px);
    border: 1px solid rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Transition specifically for the top property to create slide effect */
    transition: top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
}



.glass-card {
    width: 240px;
    height: 360px;

}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));
}


/* Slide Down Class added by JS */
.site-header.sticky.slide-in {
    top: 0;
}

/* From Uiverse.io by OliverZeros */
.contact-btn {
    position: relative;
    display: inline-flex;
    height: 3.5rem;
    align-items: center;
    border-radius: 9999px;
    padding-left: 2rem;
    padding-right: 2rem;
    font-family: 'Varela Round', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    cursor: pointer;
    text-decoration: none !important;
}

.contact-btn .button-bg {
    overflow: hidden;
    border-radius: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
    border-color: #7b0e4a;
    background-color: #ec1f8f;
    display: block;
}

.contact-btn .button-bg-layers {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -60%;
    aspect-ratio: 1 / 1;
    width: max(200%, 10rem);
}

.contact-btn .button-bg-layer {
    display: block;
    border-radius: 9999px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
}

.contact-btn .button-bg-layer.-purple {
    background-color: rgba(163, 116, 255);
}

.contact-btn .button-bg-layer.-turquoise {
    background-color: rgba(23, 241, 209);
}

.contact-btn .button-bg-layer.-yellow {
    background-color: #ec1f8f;
}

.contact-btn .button-inner,
.contact-btn .button-inner-hover,
.contact-btn .button-inner-static {
    pointer-events: none;
    display: block;
}

.contact-btn .button-inner {
    position: relative;
}

.contact-btn .button-inner-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(70%);
}

.contact-btn:hover .button-inner-static {
    opacity: 0;
    transform: translateY(-70%);
    transition:
        transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.3s linear;
}

.contact-btn:hover .button-inner-hover {
    opacity: 1;
    transform: translateY(0);
    transition:
        transform 1.4s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-btn:hover .button-bg-layer {
    transition:
        transform 1.3s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.3s linear;
}

.contact-btn:hover .button-bg-layer-1 {
    transform: scale(1);
}

.contact-btn:hover .button-bg-layer-2 {
    transition-delay: 0.1s;
    transform: scale(1);
}

.contact-btn:hover .button-bg-layer-3 {
    transition-delay: 0.2s;
    transform: scale(1);
}

.hero {
    background-image: url('../img/banner/main.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    padding: 12rem 0;
}

.special-tag {
    background: rgba(52, 202, 202, 0.178);
    border-radius: 50px;
    padding: 10px 28px;
    color: var(--light-color);
    font-weight: 500;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: inline-block;
}


.hero .heading h1 {
    font-size: 3rem;
    color: var(--light-color);
}

.hero .heading p {
    color: var(--light-color);
}

.hero .col-md-4 {
    position: relative;
}

.rating {
    background-color: var(--primary-color);
    border-radius: 10px;
    display: inline-block;
    padding: 0.8rem 1rem;
    color: var(--light-color);
    position: absolute;
    bottom: -100px;
    left: 0;
}

.rating p {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Child Development Section */
.child-development {
    position: relative;
    padding: 6rem 0;
    background-color: #ffffff;
    overflow: hidden;
    /* Prevent floating icons from causing horizontal scroll */
}

.child-development .section-title {
    color: #0B2035;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-transform: uppercase;
}

.dev-card {
    text-align:center;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.card-yellow {
    background-color: #FFF6CD;
    border: 2px dashed rgb(255 219 104);
    text-align: center;
}

.card-pink {
    background-color: #FFE5EE;
    border: 2px dashed #f689af;
}

.card-purple {
    background-color: #F1EAFC;
    border: 2px dashed #a082d1;
}

.card-cyan {
    background-color: #E2FAF6;
    border: 2px dashed #63b3a6bf;
}

.icon-box {

    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

}

.icon-box svg {
    width: 62px;
    height: 62px;
}

.icon-teal {
    background-color: #1A908C;
    box-shadow: 0 8px 16px rgba(26, 144, 140, 0.3);
}

.icon-pink {
    background-color: #DA3D6C;
    box-shadow: 0 8px 16px rgba(218, 61, 108, 0.3);
}

.icon-purple {
    background-color: #7952D8;
    box-shadow: 0 8px 16px rgba(121, 82, 216, 0.3);
}

.icon-cyan {
    background-color: #218A84;
    box-shadow: 0 8px 16px rgba(33, 138, 132, 0.3);
}

.dev-card .card-title {
    color: #0B2035;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dev-card .card-text {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.highlight-teal {
    color: #34CAC9;
    font-size: 1.5rem;
}

/* Floating Animations */
@keyframes floatUpAndDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

.floating-icon {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    animation: floatUpAndDown 4s ease-in-out infinite;
}

.floating-star {
    left: 3%;
    top: 40%;
    animation-duration: 3.5s;
     display: none;
}

.floating-rocket {
    right: 12%;
    top: 28%;
    animation-duration: 4.2s;
    animation-delay: 1s;
    z-index: 3;
    display: none;
}

.emoji-3d {
    font-size: 5rem;
    display: inline-block;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
    transform: rotate(-15deg);
}

.floating-rocket .emoji-3d {
    transform: rotate(15deg);
}

.child-development .row {
    max-width: 900px;
    margin: 0 auto;
}

/* Wave Separator Animation */
.separator {
    position: absolute;
    bottom: 0;
    left: -5%;
    /* Start slightly offscreen to hide edges */
    width: 110%;
    /* Wider than the container to allow movement */
    z-index: 2;
    pointer-events: none;
    animation: snakeWave 4s ease-in-out infinite alternate;
}

@keyframes snakeWave {
    0% {
        transform: translateX(-3%);
    }

    100% {
        transform: translateX(3%);
    }
}

.play-school {
    padding: var(--space-xl-2xl) 0;
    position: relative;

}

.play-school .heading h2 {
    font-size: 2.2rem;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.play-school-card {
    background-color: var(--primary-color);
    position: relative;
    margin: 0 auto;
    padding: 5rem 2rem;
    border-radius: 20px;
}

.play-school-card .colmd-6 {
    position: relative;
}

.play-school .row {
    max-width: 900px !important;
    margin: 0 auto;
}

.play-school-card .heading {
    padding-left: 2rem;
    color: var(--light-color);
}

.play-img {
    position: absolute;
    bottom: 0;
}


.floating-icon-one {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    animation: floatUpAndDown 4s ease-in-out infinite;
    width: 30px;
    display: none;
}

.floating-icon-one img {
    width: 80px;
}

.floating-star-one {
    left: 50%;
    top: 60%;
    animation-duration: 3.5s;
}

.floating-icon-two {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    animation: floatUpAndDown 4s ease-in-out infinite;
    width: 30px;
    display: none;
}

.floating-icon-two img {
    width: 80px;
}

.floating-star-two {
    left: 88%;
    top: 30%;
    animation-duration: 3.5s;
}

.play-school .floating-star img {
    width: 140px;
    transform: scaleX(-1);
}

.play-school .floating-rocket img {
    width: 76px;
}

.play-school .floating-rocket {
    right: 20%;
    top: 15%;
}

/* Parents Confident Section */
.parents-confident {
    padding: var(--space-xl-2xl) 0;
    background-color: #ffffff;
}

.parents-confident .section-title {
    color: #0B2035;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 500;
}

.step-card {
    position: relative;
    background: #fff;
    border: 1.5px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    /* Space for the tag */
}

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

.step-img {
    width: 100%;
    padding-top: 1rem;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.step-card .card-title {
    color: #0B2035;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.step-card .card-text {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.step-tag {
    position: absolute;
    top: -18px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 30px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(52, 202, 201, 0.3);
    white-space: nowrap;
    z-index: 2;
}

.tag-1 {
    left: 33%;
    transform: rotate(-4deg);
}

.tag-2 {
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
}

.tag-3 {
    right: 33%;
    transform: rotate(-3deg);
}

/* Child Programe Section */
.child-programe {
    padding: var(--space-xl-2xl) 0;
    background-image: url(../img/icon/pattern.svg);
    background-size: cover;
    background-repeat: no-repeat;
    animation: snakeWaveBg 4s ease-in-out infinite alternate;
    position: relative;
}

@keyframes snakeWaveBg {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}
.child-programe .section-title {

 color: #0B2035;
  font-size: 2rem; 
  text-transform: uppercase;
}


/* Custom Nav Pills */
.custom-pills {
    gap: 15px;
}

.custom-pills .nav-link {
    border: 1px solid #dee2e6;
    border-radius: 50px !important;
    padding: 10px 25px;
    color: #4A5568;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-pills .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.custom-pills .nav-link.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 202, 201, 0.4);
    border-radius: 30px;
}

/* Programe Card */
.programe-card {
    background-color: #F0FFEA;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.programe-img-wrapper {
    position: relative;
    border-radius: 20px;
}

.programe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Age Badge */
.age-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(243, 157, 36, 0.4);
    z-index: 1;
}

/* Category Badge */
.category-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Typography inside card */
.programe-title {
    font-family: 'Bebas Neue', cursive;
    color: #0B2035;
    font-size: 2rem;
    line-height: 1.1;
    padding: 1rem 0;

}

.programe-subtitle {
    color: #4A5568;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.programe-desc {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Custom Bullet List */
.programe-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.programe-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #2D3748;
    font-size: 1rem;
}

.programe-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* Orange Button */
.btn-orange {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 157, 36, 0.4);
    text-decoration: none;
}

.btn-orange:hover {
    background-color: #E08A1E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 157, 36, 0.5);
}

.child-programe {
    position: relative;
}

.child-programe .floating-star {
    top: 90% !important;

    left: 5%;
}

/* Testimonial Section */
.testimonial {
    background-color: var(--primary-color);
    padding: var(--space-xl-2xl) 0 6rem 0;
    position: relative;
    overflow: hidden;
    /* to contain any floating stuff */
}

.testimonial .section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    letter-spacing: 1px;
}

.custom-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.custom-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.custom-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.custom-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.testimonial-card {
    background-color: #F0FFEA;
    border-radius: 20px;
    padding: 3rem 4rem;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-img-box {
    position: relative;
    transform: rotate(-3deg);
    display: inline-block;
    padding: 10px;
}

.testimonial-img {

    object-fit: cover;
}

.testimonial-name {
    position: absolute;
    bottom: 3px;
    left: 56%;
    transform: translateX(-50%) rotate(-6deg);
    background: #fff;
    padding: 8px 25px;
    border-radius: 8px;
    font-weight: 600;
    color: #2D3748;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.testimonial-quote {
    font-size: 1.25rem;
    color: #2D3748;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    margin-right: 2px;
}

.testimonial-author-meta {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Custom Controls */


.custom-control-prev,
.custom-control-next {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    /* Re-enable clicks on arrows */
    transition: all 0.3s ease;
}

/* Position arrows slightly outside the card */
.custom-control-prev {
    top: 50%;
    left: -70px;
    position: absolute;

}

.custom-control-next {
    top: 50%;
    right: 0;
    position: absolute;
    margin-right: -20px;
}

.custom-control-prev:hover,
.custom-control-next:hover {
    background-color: #f8f9fa;
}

/* Indicators */
.custom-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.custom-indicators button {
    width: 10px;
    height: 06px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-indicators button.active {
    width: 30px;
    border-radius: 10px;
    background-color: #fff;
}

/* Contact Section */
.contact-card {
    background-color: #fff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.custom-label {
    color: #2D3748;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.custom-input,
.custom-select {
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px 15px;
    color: #4A5568;
    font-size: 1rem;
    box-shadow: none;
    transition: all 0.3s ease;
}

.custom-input:focus,
.custom-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 202, 201, 0.25);
}

.custom-input::placeholder {
    color: #A0AEC0;
}

/* Custom Phone Group */
.phone-prefix {
    background-color: #F1F5F9;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    color: #4A5568;
    font-weight: 500;
    padding: 0 15px;
    min-width: 90px;
}

/* Custom Select Chevron */
.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232D3748' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
}

.contact-submit-btn {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.contact {
    background-image: url('../img/banner/contact.jpg');
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 5rem 0;

}

.contact .heading h2 {
    font-size: 2.2rem;
}

/* FAQ Section */
.faq {
    background-color: var(--dark-two-color);
    padding: var(--space-xl-2xl) 0;
}

.faq .section-title {
    color: #0B2035;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 500;
}

.custom-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    background-color: #fff;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    font-weight: 500;
    color: #0B2035;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    background-color: #fff;
    box-shadow: none !important;
    border: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--primary-color);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2334CAC9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-body {
    color: #4A5568;
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: var(--footer-color);
    padding: 5rem 0 3rem;
    color: var(--light-color);
}

.site-footer .footer-top {
    margin-bottom: 3rem;
}

.site-footer .footer-heading {
    color: var(--light-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.site-footer .btn-orange {
    font-size: 1.1rem;
    padding: 12px 40px;
    font-weight: 500;
}

.site-footer .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    margin: 0 0 2rem;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
    color: var(--light-color);
}

.site-footer .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Animations */
@keyframes smoothRipple {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 202, 201, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(52, 202, 201, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 202, 201, 0);
    }
}

/*.special-tag,*/
/*.category-badge {*/
/*    animation: smoothRipple 2s infinite;*/
/*}*/

.rating {
    -webkit-animation: jello-horizontal 2s ease-out 2s infinite forwards;
    animation: jello-horizontal 2s ease-out 2s infinite forwards;
}

@-webkit-keyframes jello-horizontal {


    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes jello-horizontal {



    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}