:root {
    --primary-color: #084f85;
    --secondary-color: #4CAF50;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --accent-color: #FF5722;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka One', cursive;
    color: var(--dark-color);
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
}

.navbar-brand {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

/* .navbar-brand:hover {
    transform: scale(1.05);
} */

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: var(--dark-color) !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:hover:after {
    width: 100%;
}

/* carousel */
.carousel {
    margin-top: 80px;
}

/* .carousel .carousel-item img {
    height: 90vh;
} */

section {
      overflow-x: hidden !important;
}

.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('https://images.unsplash.com/photo-1600494603989-9650cf6ddd3d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.hero-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3); */
}

.btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-primary:focus:after,
.btn-primary:active:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box:hover:before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-box h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: var(--dark-color);
}

.about-section {
    background-color: var(--light-color);
    padding: 100px 0;
    position: relative;
}

.about-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23FFC107" opacity="0.05" d="M0,0 L100,0 L100,100 Q50,80 0,100 L0,0 Z"></path></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Common button  */
.com-btn {
    font-size: 16px;
    font-weight: 600;
    background-color: var(--primary-color);
    padding: 8px 15px;
    margin-top: 20px;
    border-radius: 99px;
    position: relative;
    border: none;
    /* top: 20px; */
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
}

.com-btn .text {
    color: #fff;
    line-height: 1;
    position: relative;
    z-index: 5;
    margin-right: 20px;
}

.com-btn svg {
    display: inline-block;
    position: relative;
    z-index: 5;
    transform: rotate(0deg) translateX(0);
    transform-origin: left;
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
}

.com-btn::before {
    content: '';
    background-color: var(--secondary-color);
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    z-index: 1;
    border-radius: 99px;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
}

.com-btn.light {
    background-color: #95C11F;
}

.com-btn.light::before {
    background-color: #154633;
}

.com-btn:hover svg {
    transform: rotate(45deg) translateX(-8px);
}

.com-btn:hover::before {
    content: '';
    width: 100%;
    height: 100%;
    right: 0;
}


.program-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 30px;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .card-img-top {
    transform: scale(1.1);
}

.program-card .card-body {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.program-card .card-title {
    color: var(--secondary-color);
    font-weight: 700;
}

.testimonial-section {
    background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
    position: relative;
}

.testimonial-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%234CAF50" opacity="0.2" d="M0,0 L100,0 L100,100 Q50,80 0,100 L0,0 Z"></path></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(76, 175, 79, 0.349);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.testimonial-card .stars {
    color: gold;
    font-size: 30px;
    margin-bottom: 5px;

}

.contact-section {
    padding: 40px;
    /* background: linear-gradient(to right, #dceeff 0%, #d2fbd4 50%, #fffbea 100%); */
    background: linear-gradient(to right, #dceeff6e 0%, #d2fbd482 50%, #fffbea 100%);
    border-radius: 50px;
}

.contact-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-section h3 span {
    color: #4CAF50;
}

/* .contact-info {
    margin-bottom: 30px;
} */

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.contact-info:hover i {
    transform: rotate(15deg) scale(1.2);
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
    position: relative;
}

footer:before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23333" d="M0,0 L100,0 L100,100 Q50,0 0,100 L0,0 Z"></path></svg>'); */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

footer h4 {
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:before {
    content: '»';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 15px;
}

.footer-links a:hover:before {
    opacity: 1;
    left: 0;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) rotate(10deg);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.timing-box {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.timing-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.nutrition-section {
    background-color: var(--light-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.nutrition-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.facility-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-box:hover .facility-icon {
    animation: bounce 0.5s ease;
}

@keyframes bounce {

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

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

.counter-box {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.counter-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.counter-box:hover:before {
    transform: scaleX(1);
}

.counter-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.counter-box:hover .counter {
    color: var(--secondary-color);
}

.counter-label {
    font-size: 1.2rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.counter-box:hover .counter-label {
    color: var(--secondary-color);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 15s infinite linear;
}

.shape.circle {
    border-radius: 50%;
    background-color: var(--primary-color);
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid var(--secondary-color);
}

.shape.square {
    background-color: var(--accent-color);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

.floating-shapes .shape:nth-child(1) {
    left: 10%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
    animation-duration: 20s;
}

.floating-shapes .shape:nth-child(2) {
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 2s;
    animation-duration: 18s;
}

.floating-shapes .shape:nth-child(3) {
    left: 25%;
    width: 30px;
    height: 30px;
    animation-delay: 4s;
    animation-duration: 22s;
}

.floating-shapes .shape:nth-child(4) {
    left: 40%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-shapes .shape:nth-child(5) {
    left: 70%;
    width: 40px;
    height: 40px;
    animation-delay: 1s;
    animation-duration: 17s;
}

.floating-shapes .shape:nth-child(6) {
    left: 80%;
    width: 60px;
    height: 60px;
    animation-delay: 3s;
    animation-duration: 20s;
}

.floating-shapes .shape:nth-child(7) {
    left: 35%;
    width: 70px;
    height: 70px;
    animation-delay: 7s;
    animation-duration: 23s;
}

.floating-shapes .shape:nth-child(8) {
    left: 50%;
    width: 30px;
    height: 30px;
    animation-delay: 15s;
    animation-duration: 18s;
}

.floating-shapes .shape:nth-child(9) {
    left: 20%;
    width: 50px;
    height: 50px;
    animation-delay: 2s;
    animation-duration: 22s;
}

.floating-shapes .shape:nth-child(10) {
    left: 85%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
    animation-duration: 25s;
}

/* Floating animation for hero elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

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

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

/* Bounce animation for CTA button */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Pulse animation for important elements */
.pulse {
    animation: pulse 2s infinite;
}

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

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Rotating animation for icons */
.rotate {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Fade-in animation for sections */
.fade-in {
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .floating-shapes {
        display: none;
    }
}

/* facility-section  */
.facility-item {
    -ms-flex-preferred-size: calc(33.33333% - 30px);
    flex-basis: calc(33.33333% - 30px);
    margin: 0 15px 30px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.facility-item:hover p {
    color: white;
}

.facility-item-link {
    display: block;
    text-decoration: none;
    padding: 30px 20px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.facility-item-link:hover {
    text-decoration: none;
    color: #FFF;
}

.facility-item-link:hover .facility-item-bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
}

.facility-item-title {
    min-height: 50px;
    overflow: hidden;
    font-weight: bold;
    font-size: 25px;
    color: var(--primary-color);
    z-index: 2;
    position: relative;
}

.facility-item-link p {
    color: #515151;
    position: relative;
    z-index: 99;
    transition: all .5s ease;

}

.facility-icon {
    position: relative;
    z-index: 99;
}

.facility-item-bg {
    height: 128px;
    width: 128px;
    background-color: #f9b234;
    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;
    border-radius: 50%;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.facility-item:nth-child(2n) .facility-item-bg {
    background-color: #3ecd5e;
}

.facility-item:nth-child(3n) .facility-item-bg {
    background-color: #e44002;
}

.facility-item:nth-child(4n) .facility-item-bg {
    background-color: #952aff;
}

.facility-item:nth-child(5n) .facility-item-bg {
    background-color: #cd3e94;
}

.facility-item:nth-child(6n) .facility-item-bg {
    background-color: #4c49ea;
}



/* @media only screen and (max-width: 979px) {
  .ag-courses_item {
    -ms-flex-preferred-size: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
  .ag-courses-item_title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }

} */
/* @media only screen and (max-width: 639px) {
  .ag-courses_item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .ag-courses-item_title {
    min-height: 72px;
    line-height: 1;

    font-size: 24px;
  }
  .ag-courses-item_link {
    padding: 22px 40px;
  }
  .ag-courses-item_date-box {
    font-size: 16px;
  }
} */

#programs {
    position: relative;
}

#contact {
    position: relative;
    margin-top: 30px;
}

.sec-elem-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.elem-9,
.elem-10 {
    position: absolute;
    width: 120px;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.elem-9 {
    top: 0%;
    left: 0%;
    animation-delay: 0.5s;
}

.elem-10 {
    bottom: 40%;
    right: 0%;
    animation-delay: 1s;
}

.elem-11 {
    position: absolute;
    /* width: 150px; */
    bottom: 75%;
    right: 5%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@media (max-width: 768px) {

    .elem-9,
    .elem-10,
    .elem-11 {
        display: none;
    }
}


/* About Page  */
/*=============================about page start==========================================*/
.banner-about {
    background-image: url(../images/breadcrumb.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    height: 50vh;
    margin-top: 80px;
    width: 100%;
}

.banner-about h2 {
    color: #f9c605;
}

.banner-about .breadcrumb-item,
a {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.about-container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 30px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

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

.about-content {
    max-width: 800px;
    margin: 0 auto;
    /* text-align: center; */
    position: relative;
}

.established-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.about-image {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    max-height: 400px;
    object-fit: cover;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    /* top: -100px; */
    left: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    bottom: -50px;
    right: -50px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-title {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }

    .about-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .circle-1,
    .circle-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .established-badge {
        font-size: 1rem;
    }

    .value-item {
        min-width: 100%;
    }
}

.about-container img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    width: 100%;
}

.about-header h2 {
    color: var(--primary-color);
}

.about-header h5 {
    color: var(--secondary-color);
}

.ventures {
    margin-top: 30px;
}

.ventures h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.venture-item {
    background-color: #e6edf2;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Contact Page  */

.message-box {
    border-radius: 15px;
    background: linear-gradient(to right, #dceeff21 0%, #d9fddb82 50%, #fffcef 100%);
    padding: 30px;
}

.message-box h3 {
    color: var(--primary-color);
}

.card-box {
    background-color: #eef2fb;
    border-radius: 40px;
    padding: 40px;
    margin: auto;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 250px;
}

.card-box h3 {
    font-size: 22px;
    font-weight: 400;
    color: #1e266d;
    margin-bottom: 20px;
}

.card-box .icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: 2px solid #1e266d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-clock::before {
    content: "🕒";
    /* you can use SVG or Font Awesome icon here */
    font-size: 20px;
    color: #1e266d;
}

.divider {
    height: 1px;
    background-color: #ccc;
    margin: 10px 0 20px;
    opacity: 0.3;
}

.schedule-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 18px;
    color: #333;
}

/* Gallery  */
/* Gallery Section */
.gallery-section {
    position: relative;
    padding: 150px 0 120px;
}

.gallery-section .filters {
    text-align: center;
}

.gallery-section .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.gallery-section .filter-tabs li {
    margin: 0 10px 15px;
    padding: 10px 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
}

.gallery-section .filter-tabs li.active {
    color: var(--secondary-color);
    cursor: pointer;
}

.gallery-block .inner-box {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-block .image img {
    width: 100%;
    transition: .5s;
    object-fit: cover;
    aspect-ratio: 1/0.800;
}

.gallery-block .inner-box:hover img {
    transform: scale(1.05);
}

.gallery-block .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: rgba(11, 20, 40, 0.6);
}

.gallery-block .inner-box:hover .overlay {
    opacity: 1;
}

.gallery-block .zoom-btn {
    position: relative;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    transition: .7s;
    overflow: hidden;
}

.gallery-block .inner-box:hover .zoom-btn {
    transform: rotate(180deg);
}

.gallery-block .zoom-btn a {
    width: 70px;
    height: 70px;
    display: inline-block;
}

.gallery-block .zoom-btn:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 25px solid rgb(255 255 255 / 33%);
    border-radius: 50%;
    transition: .7s;
    opacity: 0;
    transform: scale(1.2);
}

.gallery-block .inner-box .zoom-btn:hover:before {
    transform: scale(0);
    opacity: 1;
}


/* Programs Page  */
.program-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    border-radius: 0 0 20px 20px;
}

.program-title {
    font-size: 35px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.program-highlights {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.highlight-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.age-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .program-title {
        font-size: 2.2rem;
    }

    .program-section {
        padding: 50px 0;
    }
}

/* About program  */
/* .abt-title {
    font-weight: 700;
    color: #1a237e;
} */

.abt-program .image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.abt-program .image-card:hover {
    transform: scale(1.02);
}

.abt-program .image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 0.900;
}

/* 360 development  */
.development-section {
    background: #fdf8f6;
    padding: 50px 0;
    text-align: center;
    margin-top: 50px;
}

.development-section h2 {
    font-weight: 700;
    color: #084f85;
}

.development-section p {
    max-width: 800px;
    margin: 10px auto 30px;
    font-size: 1.1rem;
}

.info-box {
    background-color: #ec0024;
    color: white;
    border-radius: 15px;
    padding: 30px;
    font-weight: 600;
    font-size: 1.2rem;
}

.icon-box {
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    /* background: #ff3030; */
    padding: 20px;
    border-radius: 50px;
}

.icon-red {
    color: #4caf50;
}

.icon-blue {
    color: #084f85;
}

.simple-divider {
    border: 0;
    height: 2px;
    background: #dbdbdb;
    margin: 2rem 0;
}


/* Swiper  */
/* testimonial */

swiper-slide {
    background-position: center;
    background-size: cover;
}

swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}


.testimonials {
    background: linear-gradient(rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
padding-top: 30px;
}

.testimonials swiper-container {
    width: 100%;
    height: 55vh;
}

.testimonials .testimonial {
    /* background-color: rgb(255, 255, 255); */
    border-radius: 15px;
    padding: 20px 20px;
    /* border: 1px solid rgba(0, 0, 0, 0.123); */
    position: relative;
    z-index: 1;
}

.testimonials .common-title, .testimonials h2,.testimonials h6 {
    color: white;
}

.testimonials .testimonial p {
    margin: 24px 40px;
    color: var(--theme-color2);
    font-weight: 600;
}

.testimonials blockquote {
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.13); */
    padding-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

.testimonial img {
    position: absolute;
    right: 5%;
    bottom: 20%;
    width: 70px;
    z-index: -1;
}


/* STICKY BUTTON  */
.sticky-button {
  position: fixed;
  bottom: 25px;
  right: 40px;
  z-index: 1;
}

.sticky-button .icon {
  background-color: rgb(35 94 162 / 50%);
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 50%;
  margin: 5px 0px;

}

.sticky-button img {
  width: 30px;
}

@media(min-width: 992px) {
  .sticky-button img {
    width: 40px;
  }
}
