/* ===================================== */
/*              ROOT & GLOBALS           */
/* ===================================== */


h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: var(--color-heading);
}



/* ===================================== */
/*              TEMPLATE SECTIONS        */
/* ===================================== */

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    width: 60px;
    height: 60px;
    background-color: var(--color-orange-head);
    /* Your root orange */
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    text-align: center;
    line-height: 60px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--color-primary-blue);
    transform: translateY(-4px);
}

/* ===== Spinner ===== */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* ===== Buttons ===== */
.btn {
    font-weight: 500;
    transition: .8s;
    border-radius: 30px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    padding: 10px 20px;
    text-decoration: none;
}

.btn.btn-primary {
    color: var(--color-white);
    background-color: var(--color-cta);
    border-color: var(--color-cta);
}

.btn.btn-primary:hover {
    background-color: var(--color-hover);
    border-color: var(--color-hover);
}

.btn:active,
.btn:focus {
    outline: none;
    box-shadow: none;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

/* ===== Typography Helpers ===== */
.font-secondary {
    font-family: 'Fredoka', sans-serif;
}

/* ===== Navbar ===== */
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

/* .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
} */

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* ...existing navbar styles... */


/* ===== Header ===== */
/* ===== Carousel Image Full Coverage ===== */
.carousel-img {
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

/* Dark overlay for text contrast */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Caption above overlay */
.carousel-caption {
    position: absolute;
    z-index: 2;
    text-align: left;
}

/* Buttons */
/* .custom-btn {
    background-color: #D89B3E;
    color: #fff;
    font-weight: 500;
    border: none;
    transition: 0.3s ease;
}

.custom-btn:hover {
    background-color: #b87d2f;
    color: #fff;
} */

/* Top & Bottom Decorative Borders */
.header-top-design {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('../img/bg-header-top.png') center center repeat-x;
    z-index: 3;
}

.header-bottom-design {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 19px;
    background: url('../img/bg-header-bottom.png') center center repeat-x;
    z-index: 3;
}

/* Animation for text */
.animated.slideInDown {
    animation: slideInDown 1s ease-in-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 30px !important;
    }

    .carousel-caption p {
        font-size: 16px !important;
    }

    .carousel-img {
        height: 500px;
    }

    .header-top-design,
    .header-bottom-design {
        display: none;
        /* Optional: hide on small screens */
    }

    .banner-btn {
        width: 100% !important;
    }

    .carousel-caption h1 {
        font-size: 25px !important;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .carousel-caption p {
        font-size: 15px !important;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 992px) {
    .carousel-caption h1 {
        font-size: 50px !important;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .carousel-caption p {
        font-size: 25px !important;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
}




/* ===== Facility Section ===== */
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 100%;
    margin: 0px 40px 0px 40px;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    background: var(--color-white);
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: var(--color-white) !important;
    border-color: var(--light) !important;
}

.facility-text .btn {
    width: fit-content;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.facility-text .btn:hover {
    background-color: #1F3C78;
    color: white;
}

@media (min-width: 991px) and (max-width: 1200px) {
    .facility-item .facility-text {
        min-height: 276px;
        padding: 20px;
        margin: 0px 20px 0px 20px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .facility-item .facility-text {
        min-height: 276px;
        padding: 20px;
        margin: 0px 20px 0px 20px;
    }
}

@media (max-width: 576px) {
    .facility-item .facility-text {
        min-height: 220px;
        padding: 20px;
        margin: 0px 20px 0px 20px;
    }

}

/* ===== About Section ===== */
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}

/* Mission Image Container */
.our-mission-img {
    min-height: 400px;
}

/* Image Styling */
.mission-img {
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .our-mission-img {
        min-height: 220px;
    }

    .mission-img {
        object-fit: contain;
        height: auto;
    }
}

/* ===== Classes Section ===== */
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}

.book-img {
    width: 100%;
    height: 280px;
}


@media (max-width: 1200px) {
    .book-img {
        height: 230px;
    }
}
/* ===== Team Section ===== */
.team-item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -15%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--color-white);
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

@media (min-width:991px) {
    .team-text-right-side {
        right: 0;
    }

    .team-text-left-side {
        left: 0;
    }

}


.team-item:hover .team-text {
    border-color: var(--primary);
}


/* ===== Footer General ===== */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff80;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
    color: #fff;
}

/* ===== Social Buttons ===== */
.btn-social {
    width: 45px;
    height: 45px;
    font-size: 16px !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.btn-social:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===== Newsletter Form ===== */
.newsletter-form .form-control {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
    padding: 8px 16px;
    font-size: 15px !important;
    white-space: nowrap;
}

/* Responsive Padding */
@media (max-width: 575.98px) {
    .newsletter-form .btn {
        font-size: 14px !important;
        padding: 8px 12px;
    }

    .btn.btn-social {
        font-size: 16px !important;
    }
}




/* package section  */
.site-section {
    padding: 2.5em 0;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .site-section {
        padding: 5em 0;
    }
}

.site-section.site-section-sm {
    padding: 4em 0;
}

.site-section-cover {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.site-section-cover,
.site-section-cover .container {
    position: relative;
    z-index: 2;
}

.site-section-cover,
.site-section-cover .container>.row {
    height: calc(100vh - 196px);
    min-height: 777px;
}

@media (max-width: 991.98px) {

    .site-section-cover,
    .site-section-cover .container>.row {
        height: calc(70vh - 196px);
        min-height: 777px;
    }
}

.site-section-cover.overlay {
    position: relative;
}

.site-section-cover.overlay:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.site-section-cover.inner-page,
.site-section-cover.inner-page .container>.row {
    height: auto;
    min-height: auto;
    padding: 2em 0;
}

.site-section-cover.img-bg-section {
    background-size: cover;
    background-repeat: no-repeat;
}

.site-section-cover h1 {
    font-size: 3rem;
    color: #fff;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .site-section-cover h1 {
        font-size: 2rem;
    }
}

.site-section-cover p {
    font-size: 18px;
    color: #fff;
}

.site-section {
    padding: 7rem 0;
}

@media (max-width: 991.98px) {
    .site-section {
        padding: 3rem 0;
    }
}

/* package start */
.package {
    min-height: 100%;
    color: #777;
    padding: 20px;
    border-radius: 7px;
    background-color: var(--color-card-bg);
}

.package h3 {
    font-size: 18px;
    margin-bottom: 30px;
    /* color: var(--color-heading); */
}

.package .img-wrap {
    display: block;
    margin: 0 auto 30px auto;
    width: 80px;
}

.package .img-wrap img {
    width: 80px;
}

/* button insdie package  */
.btn {
    border-radius: 30px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    padding: 10px 20px;
    text-decoration: none;
}

.btn:active,
.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.btn-teal {
    background: #16c3b0;
}

.btn.btn-danger {
    background: #fd4d40;
}

.btn.btn-outline-white {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.btn.btn-outline-white:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.btn-custom-1 {
    border-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.text-cursive {
    font-family: "Indie Flower", cursive !important;
}

/* package end  */


/* wrap icon start  */
/* .select-wrap,
.wrap-icon {
    position: relative;
}

.select-wrap .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 22px;
}

.feature-1 .wrap-icon {
    font-size: 2rem;
}


.wrap-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 3px #71717144;
    margin: 0 auto 30px;
    position: relative;
}

.wrap-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: white;
}


.ui-icon-home {
    background-position: 0 -112px;
}

.ui-icon-person {
    background-position: -144px -96px;
} */

/* block-2 start  */
/* .block-2 {
    padding: 40px;
    position: relative;
    text-align: center;
    /* height: 100%;
}

.block-2 .wrap-icon {
    position: relative;
    width: 80px;
    margin-left: auto;
    margin-right: auto;
    height: 80px;
    display: block;
    border-radius: 50%;
    margin-top: -33%;
    margin-bottom: 10px;
}

@media (max-width: 567px) and (min-width: 992px) {
    .block-2 .wrap-icon {
    margin-top: -25%;
    }
}


@media (max-width: 567px) {
    .block-2 .wrap-icon {
    margin-top: -25%;
    }
}


.block-2 h2 {
    font-size: 18px;
    color: #fff;
}

.block-2 p {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    letter-spacing: 3px;
    color: var(--light);
}

.card-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
} */

/* block-2 end  */


/* Main Card Wrapper */
.block-2 {
    border-radius: 16px;
    padding: 30px 20px 20px 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    box-sizing: border-box;

}

/* Icon Circle Style */
.wrap-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    z-index: 1;
}

/* Paragraph Styling */
.block-2 p {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    letter-spacing: 1px;
    color: var(--dark-charcoal);
    /* or fallback #1D1D1D */
    margin-top: 10px;
}

/* Icon Font Styling */
.wrap-icon i {
    font-size: 28px;
    color: #fff;
}

/* Optional: Responsive Adjustments */
@media (max-width: 576px) {
    .block-2 {
        padding-top: 30px;
    }

    .wrap-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .block-2 p {
        font-size: 15px;
        letter-spacing: 0.5px;
    }
}

/* ======= Example Color Classes (Can be customized) ======= */


/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/


.about-us {
    box-sizing: border-box;
    position: relative;
    padding: 0px !important;
    margin: 100px 0px 100px 0px;
    z-index: 0;
}

.about-us:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 84%;
    height: 100%;
    background-color: #e7f1fb;
    content: '';
    border-top-left-radius: 500px;
    border-bottom-left-radius: 500px;
}

.accordion {
    margin-top: -40px;
    margin-bottom: -40px;
    background-color: var(--color-heading);
    border-radius: 40px;
    padding: 80px 50px 50px 50px;
}

.accordion-item {
    background-color: var(--color-white);
    border-radius: 40px !important;
    margin-bottom: 30px;
    border: none;
}


.accordion-item .accordion-button {
    outline: none;
    box-shadow: none;
    border-radius: 40px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--color-heading);
    background-color: var(--color-white);
}

h2.accordion-header button {
    padding: 15px 25px;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
}

.accordion-button::after {
    font-size: 18px;
    font-weight: 500;
    background-image: none;
    content: '+';
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background-color: var(--color-heading);
    color: var(--color-white);
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    line-height: 32px;
    content: '-';
}

.accordion-body {
    padding: 0px 25px 30px 25px;
    font-size: 14px;
    line-height: 28px;
    color: var(--color-text-body);
}



.about-us .section-heading {
    margin-left: 0px;
    margin-bottom: 0px;
}

.about-us .section-heading .main-button {
    margin-top: 50px;
}


@media (max-width: 992px) {
    .about-us {
        margin-top: 100px;
    }

    .accordion {
        padding: 40px 25px 10px 25px;
    }

    .services .service-item .icon {
        width: 170px;
        height: 170px;
        line-height: 170px;
    }

    .about-us .section-heading {
        margin-left: 0px;
        /* margin-top: 120px; */
    }

    .about-us::before,
    .testimonials::before,
    .contact-us::before {
        display: none;
    }

    .about-us .section-heading p,
    .testimonials .section-heading p,
    .contact-us .section-heading p {
        margin-top: 30px;
    }

    .about-us .section-heading .main-button {
        margin-top: 30px;
    }

    .about-us .main-button a {
        background-color: var(--color-heading);
        color: var(--color-white);
    }
}


.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 20px 0;
    line-height: 44px;
}

.section-heading h2 em {
    color: var(--color-heading);
    font-style: normal;
}

.section-heading h6 {
    color: var(--color-heading);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.main-button a {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    padding: 0px 25px;
    border-radius: 20px;
    transition: all .3s;
}

.main-button a:hover {
    background-color: var(--color-heading);
    color: var(--color-white);
}



/* why choose us ?  */
@media (max-width: 991px) {
    #why-valueverse .section-heading {
        margin-bottom: 75px;
        padding: 0px 20px;
    }

    .accordion-item .accordion-button {
        border-radius: 10px !important;
    }

    .about-us {
        margin: 0px 0px 60px 0px;
    }
}

.features__v2 {
    padding: 70px 0;
    scroll-margin-top: 60px;
}

.features__v2 .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #f0d3ae;
    color: #d97c06;
}

.features__v2 .content {
    background-color: #d97c0615;
    border-radius: 1rem;
    overflow: hidden;
}

.features__v2 .btn-play i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #fff;
    color: #d97c06;
}

.features__v2 .btn-play {
    padding: 12px 20px;
    background-color: #d97c06;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 600;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.features__v2 .btn-play:hover {
    transform: scale(1.05);
}


/* how it works  */

.howitworks__v1 .subtitle {
    background-color: #d97c0615;
    color: #d97c06;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.howitworks__v1 .step-card {
    position: relative;
}

.howitworks__v1 .step-card .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    color: #d97c06;
    background-color: #f7d09d;
    font-size: 18px;
}

.howitworks__v1 .arch-line {
    position: absolute;
    top: 15px;
    width: 150px;
    right: 0;
    left: calc(100% + 24px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 991.98px) {
    .howitworks__v1 .arch-line {
        display: none;
    }
}

.howitworks__v1 .arch-line.reverse {
    top: 20px;
}

/* founder section center part start  */
.founder-img {
    width: 100%;
    height: 100%;
}

.founder-img img {
    max-height: 400px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.message-box {
    position: relative;
    max-width: 100%;
    padding: 15px 20px;
    border-radius: 20px;
    background-color: #ffe8a1;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.message-box.left {
    background-color: #b8e4ff;
    border-top-left-radius: 0;
    align-self: flex-start;
}

.message-box.left::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 15px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #b8e4ff transparent transparent;
}

.message-box.right {
    background-color: #ffc3d4;
    border-top-left-radius: 0;
    align-self: flex-start;
}

.message-box.right::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 15px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #ffc3d4 transparent transparent;
}

.bio-full {
    transition: all 0.3s ease-in-out;
}

/* Base custom button */
.social-media-btn {
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--color-card-bg);
    /* White or soft background */
    color: var(--color-primary-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Social media hover effects */
.social-media-btn:hover {
    background: var(--color-cta);
    /* or use gradient if needed */
    color: white;
    transform: scale(1.1);
}

/* Optional: Specific platform coloring (if needed) */
.social-media-btn.facebook:hover {
    background-color: #3b5998;
}

.social-media-btn.twitter:hover {
    background-color: #1da1f2;
}

.social-media-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%,
            #fd5949 45%, #d6249f 60%, #285AEB 90%);
}


/* founder section center part end  */

/* about-us */
/* General image styling */
.about-us-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    object-position: bottom;
}

/* Desktop-specific adjustments */
@media (min-width: 991px) {
    .about-us-img {
        object-fit: contain;
        max-height: 450px;
    }
}

@media (max-width: 567.98px) {

    .team-item .team-text {
        position: absolute;
        width: 225px;
        height: 180px;
        bottom: -25%;
    }

    .team-item {
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .responsive-width {
        width: 75% !important;
    }
}


@media (min-width:567px) and (max-width: 991.98px) {
    .team-item .team-text {
        position: absolute;
        width: 225px;
        height: 180px;
        bottom: 44%;
    }

    .team-item {
        margin-bottom: 30px;
    }
}



/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F3C78;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #3DA86B;
    font-weight: 600;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
}

/* Value Boxes */
.value-box {
    min-height: 100%;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.value-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-box .value-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 auto;
    color: #404040;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primary-blue);
}

/* Color Variants */
.color1 {
    background: #ff945f;
}

/* Coral Red */
.color2 {
    background: #48C9B0;
}

/* Teal */
.color3 {
    background: #FFD93D;
}

/* Sunny Yellow */
.color4 {
    background: #A084DC;
}

/* Purple */
.color5 {
    background: #f87b9e;
}

/* Green */
.color6 {
    background: #fe7c70;
}

/* Orange */

/* Book Info */
.book-info {
    font-size: 1rem;
    font-weight: 600;
    /* color: #1F3C78;
  background-color: #FFDACC; */
    display: inline-block;
    padding: 12px 20px;
    border-radius: 30px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

/* Background Shapes */
.shape {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    /* filter: blur(60px); */
    border-radius: 50%;
}

.shape-circle.top-left {
    width: 300px;
    height: 300px;
    background: #FFD166;
    top: -60px;
    left: -100px;
}

.shape-circle.bottom-right {
    width: 300px;
    height: 300px;
    background: #70C1B3;
    bottom: -60px;
    right: -100px;
}

/* why school trust  */
/* .circle-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 530px;
  max-height: 530px;
  margin: auto;
}

.circle {
  border-radius: 50%;
  overflow: hidden;
  background: #fff7f5;
  padding: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.circle-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.circle.main {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.circle.left, .circle.right {
  width: 48%;
  aspect-ratio: 1 / 1;
  position: absolute;
  bottom: -10%;
}

.circle.left {
  left: 0;
}

.circle.right {
  right: 0;
}

@media (max-width: 576px) {
  .circle.left, .circle.right {
    width: 45%;
    bottom: -12%;
  }
} */


.circle-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding-bottom: 100px;
    /* ensures space for bottom images */
}

/* Common Circle Style */
.circle {
    border-radius: 50%;
    background: #fff7f5;
    padding: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Top Large Circle with hidden bottom */
.circle.main {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 1;
}

/* This div clips the image inside the top circle */
.clip-circle {
    width: 100%;
    height: 100%;
    /* clip-path: inset(0 0 50% 0); hides bottom 50% */
}

.clip-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle.bottom .bottom-view-img {
    object-position: center 90%;
}

/* Bottom Circles */
.circle.bottom {
    width: 48%;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: 0;
    z-index: 2;
}

.circle.bottom.left {
    left: 0;
}

.circle.bottom.right {
    right: 0;
}

.circle.bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive Tweaks */
@media (max-width: 576px) {
    .circle.bottom {
        width: 45%;
    }

    .btn {
        font-size: .5rem !important;
    }
}


/* ===== Testimonial Section ===== */
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(31, 60, 120, 0.3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

.review-text {
    line-height: 1.6;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.review-text .more-text {
    display: none;
}

.review-text.expanded .more-text {
    display: inline;
}

.review-text .toggle-link {
    color: var(--primary, #d77f09);
    cursor: pointer;
    white-space: nowrap;
    font-size: 16px;
    font-weight: bold;
    margin-left: 5px;
}

.review-text .dots {
    display: inline;
}

.review-text.expanded .dots {
    display: none;
}