@font-face {
    font-family: 'MyCustomFont';
    src: url('../fonts/Fredoka-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Review';
    src: url('../fonts/Hollaboi\ FREE.otf');
    font-weight: normal;
    font-style: normal;
}





/* Root Variables */
:root {
    --primary-color: #0B2038;
    --secondary-color: #F25334;
    --para-color: #7E8185;
    --head-bg-color: #EFD9AA;
    --secondary-bg-color: #EFD9AA;
    --btn-bg-color: #FFAA23;
    --font-family: 'MyCustomFont', sans-serif;
    --review-font: 'Review'

}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-family);
    overflow-x: hidden !important;
}

/* Headings */
h1,
h2,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: 600;
}

h3 {
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--secondary-color);

}

a {
    font-family: var(--font-family);
    text-decoration: none;
    transition: color var(--transition-speed);

}

ul {
    padding: 0px;
}




.click-btn a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--btn-bg-color);
    padding: 10px 25px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.click-btn a:hover {
    background-color: #fff;
    color: var(--btn-bg-color);
    border: 2px solid var(--btn-bg-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.click-btn button {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--btn-bg-color);
    padding: 10px 25px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Hover Effect */
.click-btn button:hover {
    background-color: #fff;
    color: var(--btn-bg-color);
    border: 2px solid var(--btn-bg-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.error-message {
    font-size: 14px;
    color: red;
}



#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--btn-bg-color);
    color: #fff;
    border: none;
    outline: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    background-color: #333;
}

.loader-wrapper {
    transition: opacity 0.5s ease;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.simple-preloader img {
    width: 150px;
    height: auto;
}

.simple-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}





/* ====================================navigation bar============================= */

.navbar .container-fluid {
    width: 100%;
    max-width: 1600px !important;
}

.navbar {
    position: relative;
}

.navbar-nav {
    z-index: 11;
}

/* .navbar .navbar-nav {
    width: 100%;
    margin: 991px;

} */
.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}


@media (min-width: 992px) {
    .navbar .navbar-nav {
        position: absolute !important;
        top: 68% !important;
        left: 50%;
        transform: translateX(-50%);
        height: 78px;
        display: flex;
        justify-content: center;
        gap: 35px;
        align-items: center;

    }

}

.navbar-brand img {
    width: 120px;
    height: auto;
}

.navbar-toggler {
    border: none !important;
}


.navbar .navbar-nav .nav-item a {
    font-size: 20px;
}


.offcanvas {
    background-color: var(--head-bg-color);
    font-family: var(--font-family);
}

.offcanvas .nav-link {
    color: var(--primary-color);
    font-size: 18px;
}

.offcanvas .nav-link:hover {
    color: var(--secondary-color);
}

/* .offcanvas .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 8px;
    margin-bottom: 8px;
} */

.offcanvas .navbar-nav .nav-item {
    transition: all 0.3s ease-in-out;
}

.offcanvas .navbar-nav .nav-item:not(:last-child):hover {
    border-color: var(--primary-color);
}


.offcanvas-header {
    padding-bottom: 1rem;
}

.offcanvas-header::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background-color: rgb(51, 51, 51);
    transition: width 0.3s ease-in-out;
}

.nav-link.active {
    color: #ffffff !important;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #430001;
    text-decoration: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-link {
    transition: color 0.3s ease, border-bottom 0.3s ease, text-shadow 0.3s ease;
}

.navbar-nav {
    width: 100%;
    max-width: 991px;
}




/* ==============================banner section===================================== */
.inner-banner {
    width: 100%;
    background-image: url('../images/home/banner-bg.png');
    /* background-image: url('/assets/images/home/Header.png'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 150px 0px;
    position: relative;
    /* z-index: -1; */
}


/* Basic slider styles */
.inner-banner .slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.inner-banner .slides {
    display: flex;
    transition: transform 0.5s ease;
}

.inner-banner .slide {
    min-width: 100%;
    box-sizing: border-box;

}

.inner-banner .slide img {
    width: 100%;
    height: auto;
}

.inner-banner .slide p {
    font-size: 20px;
    margin-top: 10px;
    color: #fff;
}

/* Navigation buttons */
.inner-banner .prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: white;
    border: none;
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
}

.inner-banner .prev {
    left: 10px;
}

.inner-banner .next {
    right: 10px;
}

.inner-banner .prev:hover,
.next:hover {
    color: var(--secondary-color);
}

.banner-left {
    padding-left: 30px;
}

.pagination-dots {
    text-align: center;
}

.pagination-dots .dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-dots .dot.active {
    background-color: var(--btn-bg-color);
    /* or your brand color */
}


.inner-banner .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    border: 2px solid var(--btn-bg-color);
    background: transparent;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.inner-banner .owl-theme .owl-dots .owl-dot.active span,
.inner-banner .owl-theme .owl-dots .owl-dot:hover span {
    border-color: var(--btn-bg-color);
}

.inner-banner .owl-theme .owl-dots .owl-dot.active span::after,
.inner-banner .owl-theme .owl-dots .owl-dot:hover span::after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inner-banner .owl-dots {
    position: absolute;
    top: 10%;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.banner-left h3 {
    font-size: 20px;
}

.banner-left h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--primary-color);
}

.banner-right img {
    width: 500px !important;
    height: auto;
    animation: floatLeftRight 4s ease-in-out infinite;
    z-index: 999;
}

@keyframes floatLeftRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-15px);
        /* move left */
    }

    100% {
        transform: translateX(0);
    }
}


.banner-overlay-1 img {
    width: 80%;
}

.banner-overlay-1 {
    position: absolute;
    left: 34%;
    top: 8%;
    animation: abc 3s ease-in-out 0s infinite normal none;
}

@keyframes abc {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}


.banner-overlay-2 img {
    width: 80%;
}

.banner-overlay-2 {
    position: absolute;
    right: 10%;
    bottom: 35%;
    animation: rocket 2s ease-in-out 0s infinite normal none;
}

@keyframes rocket {

    0%,
    100% {
        transform: translateX(0%);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateX(-30px) rotate(-6deg);
    }

    30% {
        transform: translateX(15px) rotate(6deg);
    }

    45% {
        transform: translateX(-15px) rotate(-3.6deg);
    }

    60% {
        transform: translateX(9px) rotate(2.4deg);
    }

    75% {
        transform: translateX(-6px) rotate(-1.2deg);
    }
}



.banner-overlay-3 img {
    width: 60%;
}

.banner-overlay-3 {
    position: absolute;
    right: 12%;
    bottom: 60%;
    animation: pin 2s ease-in-out 0s infinite normal none;
}

@keyframes pin {
    0% {
        animation-timing-function: ease-in;
        opacity: 1;
        transform: translateY(-45px);
    }

    24% {
        opacity: 1;
    }

    40% {
        animation-timing-function: ease-in;
        transform: translateY(-24px);
    }

    65% {
        animation-timing-function: ease-in;
        transform: translateY(-12px);
    }

    82% {
        animation-timing-function: ease-in;
        transform: translateY(-6px);
    }

    93% {
        animation-timing-function: ease-in;
        transform: translateY(-4px);
    }

    25%,
    55%,
    75%,
    87% {
        animation-timing-function: ease-out;
        transform: translateY(0px);
    }

    100% {
        animation-timing-function: ease-out;
        opacity: 1;
        transform: translateY(0px);
    }
}


.banner-overlay-4 img {
    width: 50%;
}

.banner-overlay-4 {
    position: absolute;
    right: 18%;
    bottom: 78%;
    animation: scale 2s ease-in-out 0s infinite normal none;
}

@keyframes scale {
    0% {
        transform: translate(0);
    }

    10% {
        transform: translate(-2px, -2px);
    }

    20% {
        transform: translate(2px, -2px);
    }

    30% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, 2px);
    }

    50% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, -2px);
    }

    70% {
        transform: translate(-2px, 2px);
    }

    80% {
        transform: translate(-2px, -2px);
    }

    90% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}



/* footer section */
.inner-footer {
    position: absolute;
    z-index: 999 !important;
    width: 100%;
    background-image: url(../images/home/footer-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 40px;
}

.inner-footer-row {
    margin-top: 75px;
}

.footer-content-1 {
    padding-top: 80px;
}

.footer-logo img {
    width: 140px;
    margin-bottom: 20px;
}

.footer-location ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-location ul li {
    margin: 12px 0;
}

.footer-location ul li a {
    text-decoration: none;
    color: #3b4a5a;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-location ul li a i {
    font-size: 18px;
    margin-right: 12px;
    color: var(--primary-color);
}

.footer-location ul li a:hover {
    color: var(--primary-color);
    font-weight: 700;
}

.footer-location ul li a:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.social-link ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin-top: 20px;
    gap: 12px;
}

.social-link ul li i {
    color: #fff;
}

.social-link ul li a {
    display: inline-block;
    background-color: #85A0B5;
    color: #4c5b6b;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link ul li a:hover {
    background-color: #195b94;
    color: #fff;
    transform: scale(1.1);
}

.social-link ul li a {
    padding: 9px 0px;
}

.footer-content-2 h4 {
    color: white;
    font-size: 22px;
    font-weight: 700;
}

/* .footer-content-2 {
    position: relative;
}

.inner-foot-content {
    position: absolute;
    top: 200px;
    left: 12%;
    z-index: 999;
} */


.footer-content-2 .inner-foot-content ul {
    list-style: none;
    padding-left: 10px;
    margin: 0;
}

.footer-content-2 .inner-foot-content ul li a {
    color: #5F7999;
    font-size: 16px;
    font-weight: 800;
    padding: 5px 0px;
}

.inner-foot-content ul li {
    margin: 6px 0px;
}

.inner-foot-content ul li a {
    text-decoration: none;
    color: #333;
    position: relative;
    transition: color 0.3s ease;
}

.inner-foot-content ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: white;
    left: 0;
    bottom: -3px;
    transition: width 0.3s ease;
}

.inner-foot-content ul li a:hover {
    color: white;
}

.inner-foot-content ul li a:hover::after {
    width: 100%;
}

.inner-footer {
    position: relative;
}

.footer-overlay img {
    width: 85%;
}

.footer-overlay {
    position: absolute;
    right: 45px;
    top: 47%;
    animation: foot1 2s ease 0s infinite normal none;
}

/* Copy this code after the above code */
@keyframes foot1 {

    0%,
    100% {
        transform: translateX(0%);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateX(-30px) rotate(6deg);
    }

    30% {
        transform: translateX(15px) rotate(-6deg);
    }

    45% {
        transform: translateX(-15px) rotate(3.6deg);
    }

    60% {
        transform: translateX(9px) rotate(-2.4deg);
    }

    75% {
        transform: translateX(-6px) rotate(1.2deg);
    }
}




.footer-overlay-1 img {
    width: 70%;
}

.footer-overlay-1 {
    position: absolute;
    top: 38%;
    right: 46%;
    animation: 10s linear infinite;
    z-index: 1;
}






.footer-overlay-2 img {
    width: 70%;
}

.footer-overlay-2 {
    position: absolute;
    top: 73%;
    right: 42%;
    animation: shakeEffect 0.6s ease-in-out infinite;
    z-index: 1;
}

/* Keyframes for a classic shake */
@keyframes shakeEffect {
    0% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(-4px);
    }

    30% {
        transform: translateX(4px);
    }

    45% {
        transform: translateX(-4px);
    }

    60% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-2px);
    }

    90% {
        transform: translateX(2px);
    }

    100% {
        transform: translateX(0);
    }
}


.footer-overlay-3 img {
    width: 70%;
}

.footer-overlay-3 {
    position: absolute;
    top: 40%;
    left: 5%;
    animation: baby 2s ease 0s infinite normal none;
    z-index: 1;
}

@keyframes baby {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}


.footer-overlay-4 {
    position: absolute;
    bottom: 0%;
    right: 28%;
    opacity: 0.8;
}

.footer-overlay-5 img {
    width: 70%;
}

.footer-overlay-5 {
    position: absolute;
    bottom: 0%;
    right: 28%;
    opacity: 0.8;
    animation: fadeSlideUp 1s ease-out forwards;
}


@keyframes fadeSlideUp {
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.footer-overlay-6 img {
    width: 70%;
}

.footer-overlay-6 {
    position: absolute;
    bottom: 12%;
    right: 58%;
    opacity: 0.8;
}



.footer-copy {
    position: relative;
    z-index: 999;
    margin-top: 35px;
    font-size: 14px;
    color: #555;
    border-top: 1px solid #5F7999;
}

.footer-copy .designer a {
    color: #ffae3b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.accordion-button .accordion-body {
    background-color: #FFF6E4;
}

.accordion-button::after {
    display: none;
}

























/* acccordian section */
.accordion-body {
    background-color: rgba(255, 246, 228, 1);
}

.accordion-button {
    font-size: 24px;
    font-weight: 800;
    background-color: #EFD9AA !important;
}


.section-header img {
    width: 240px;
    height: auto;
}

.section-header {
    animation: head 4s ease 0s infinite normal none;
}

/* Copy this code after the above code */
@keyframes head {

    0%,
    100% {
        transform: translateX(0%);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateX(-30px) rotate(6deg);
    }

    30% {
        transform: translateX(15px) rotate(-6deg);
    }

    45% {
        transform: translateX(-15px) rotate(3.6deg);
    }

    60% {
        transform: translateX(9px) rotate(-2.4deg);
    }

    75% {
        transform: translateX(-6px) rotate(1.2deg);
    }
}


.inner-faq {
    position: relative;
    z-index: 1;
}

.inner-faq::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background-color: #B3DAE1;
    border-radius: 50%;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.10;
    animation: floatCircle 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.accordion-button::after {
    font-weight: 900 !important;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

.faq-section {
    background-color: rgb(255, 255, 255);
}

.accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-body {
    padding: 1.5rem;
}




/* ==================================review section============================== */
.inner-review {
    padding: 50px 0px;
}

.review-card {
    background-color: var(--secondary-bg-color);
    margin: 20px 0px;
    padding: 20px 8px;
    padding-bottom: 0px !important;
    padding-left: 0px;
    border-radius: 0px 100px 0px 85px;
    position: relative;
}

.review-carousel .item .revice-inner {
    display: flex !important;
}

.review-carousel .review-card {
    flex: 1 !important;
}

.review-overlay {
    position: absolute;
    right: 15px;
    bottom: 25px;

}

.review-overlay img {
    width: 95px !important;
    height: auto;
}

.review-card {
    min-height: 200px;
}

.review-card p {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 40px;
}

.accordion .accordion-item img {
    width: 25px;
    margin-right: 5px;
}



.review-content h4 {
    font-size: 42px;
    color: #fff;
    position: relative;
    /* padding: 1rem 1.5rem; */
    padding: 10px 40px;
    font-weight: 400 !important;
    z-index: 1;
    display: inline-block;
    font-family: var(--review-font) !important;
}

/* .review-content h4::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(179, 218, 225, 1);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: -1;
    border-radius: 8px;
    transition: clip-path 0.4s ease;
} */

.review-text {
    display: block;
    background-color: #B3DAE1;
    border-bottom-left-radius: 130px;
    width: 100%;
    max-width: 290px;
}

.review-content .item {
    display: flex !important;
}

.review-card p {
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
}

.review-content .item .review-content {
    flex: 1 !important;
}

.review-content .item {
    margin: 0px 30px;
}

.inner-review {
    position: relative;
}

.revire-overlay img {
    width: 70%;
}

.revire-overlay {
    position: absolute;
    top: 33%;
    left: 12%;
    animation: floatCloud 6s ease-in-out infinite;
}

@keyframes floatCloud {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-10px) translateX(5px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

.revire-overlay-1 img {
    width: 70%;
}

.revire-overlay-1 {
    position: absolute;
    top: 30%;
    right: 22%;
    animation: floatCloud1 8s ease-in-out infinite;
}

@keyframes floatCloud1 {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) translateX(6px) rotate(1deg);
    }

    50% {
        transform: translateY(-4px) translateX(12px) rotate(-1deg);
    }

    75% {
        transform: translateY(-10px) translateX(6px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

.revire-overlay-3 {
    position: absolute;
    top: 30%;
    left: 35%;
    animation: milkBottleSway 3s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes milkBottleSway {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    25% {
        transform: rotate(3deg) translateY(-2px);
    }

    50% {
        transform: rotate(0deg) translateY(0);
    }

    75% {
        transform: rotate(-3deg) translateY(-2px);
    }

    100% {
        transform: rotate(0deg) translateY(0);
    }
}

.inner-review .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    /* Ensures full width for alignment */
}

.inner-review .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
    background: rgba(253, 218, 162, 1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.inner-review .owl-dot.active {
    background: rgba(255, 170, 35, 1);
    transform: scale(1);
}


.inner-review .owl-dots button span {
    visibility: hidden;
}


.inner-review .owl-dots button:not(.active) span {
    visibility: visible;
}



.review-content .revice-inner {
    display: flex;
    flex-direction: column;
}

.review-content .item .review-card {
    flex: 1;
}

.inner-review .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0px 7px !important;
}

.inner-review .owl-dot.active {
    margin-left: auto;
    margin-right: auto;
}

.inner-review .owl-theme .owl-dots .owl-dot span {
    background-color: rgba(253, 218, 162, 1);
}


/* =================================gallery section==================================== */
.inner-gallery {
    padding: 260px 0px;
    width: 100%;
    background-image: url('../images/home/gallery-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(0.9);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #000;
    cursor: pointer;
    z-index: 1000;
}

/* Buttons Style */
.modal-footer .btn-warning {

    border: none;
    padding: 10px 20px;
    font-weight: 600;
    color: #fff;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-footer .btn-warning:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

/* Image Counter Style */
#imageCounter {
    background-color: #f1f1f1;
    color: #333;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Close Button Hover */
.close-btn {
    color: #000;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-color);
}

/* Optional: Modal Zoom-In Animation */
.modal.fade .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.modal.fade.show .modal-dialog {
    transform: scale(1);
}


/* ===============================location section======================= */

.inner-location {
    background-color: #fff;
    padding: 50px 0px 0px 0px;
    position: relative;
}

.location-overlay img {
    width: 60%;
}

.location-overlay-1 {
    animation: floatCloud 3s linear infinite;
}

@keyframes floatCloud {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);

    }

    50% {
        transform: scale(1.05);

    }

    100% {
        transform: scale(1);

    }
}

.location-overlay {
    position: absolute;
    bottom: 10%;
    right: 60px;
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.location-overlay img {
    width: 70%;
}

.location-overlay-1 img {
    width: 60%;
}

.location-overlay-1 img {
    width: 80%;
}

.location-overlay-1 {
    position: absolute;
    top: 32%;
    right: -3%;
    opacity: 0.8;
}

.location-overlay-2 img {
    width: 80%;
}

@keyframes rocketSway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.location-overlay-2 {
    position: absolute;
    top: 62%;
    left: 5%;
    animation: rocketSway 2s ease-in-out infinite;
}

.location-overlay-4 img {
    width: 70%;
}

@keyframes cloudDrift {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0);
    }
}

.location-overlay-4 {
    position: absolute;
    top: 42%;
    left: 5%;
    animation: cloudDrift 6s ease-in-out infinite;
}

.location-overlay-5 img {
    width: 70%;
}

.location-overlay-5 {
    position: absolute;
    top: 18%;
    left: 25%;
    animation: cloudDrift 6s ease-in-out infinite;
}

.location-overlay-6 img {
    width: 70%;
}

.location-overlay-6 {
    position: absolute;
    top: 93%;
    left: 10%;
    animation: cloudDrift 6s ease-in-out infinite;
}





.map-container {
    border: 6px solid #fff;
    position: absolute;
    top: 30%;
    left: 17%;
    z-index: 999;
    width: 585px;
    height: 585px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.location-inner {
    width: 100%;
    background-image: url('../images/home/location-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 140px 0px 110px 0px
}

.contact-map-section {
    padding: 60px 2px 0px 2px;
}


.contact-form-wrapper {
    padding-right: 60px;
}

.contact-form-wrapper h5 {
    color: #fff;
    font-weight: 500;
}

.contact-form-wrapper h2 {
    font-weight: 900;
    font-size: 38px;
    color: #fff;
}

.contact-form input {
    width: 100%;
    max-width: 340px;
    padding: 16px 25px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.3s ease;
    font-size: 15px;
}

.contact-form textarea {
    width: 100% !important;

    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.3s ease;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffa500;
    outline: none;
}

.btn-submit {
    background-color: #ffa500;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-wrapper h2 {
    margin-bottom: 0px !important;
}

.btn-submit:hover {
    background-color: #e69500;
}

/* Responsive Styling */
@media (max-width: 991px) {
    .map-container {
        width: 260px;
        height: 260px;
    }

    .contact-form-wrapper h2 {
        font-size: 24px;
    }
}



/* ===================================about us=============================== */
.inner-about {
    padding: 100px 0px;
    width: 100%;
    background-image: url('../images/home/about-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.about-left {
    display: flex;
    justify-content: center;
    align-items: center;
}


.about-right {
    width: 100%;
    max-width: 650px;
}

.about-right h3 {
    font-size: 22px;

}

.about-right h2 {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-right p {
    font-size: 18px;
    color: rgba(126, 129, 133, 1);
    padding: 10px 0px;
}

.about-right {
    display: flex;
    flex-direction: column;
    align-content: center;
    margin-top: 30px;
}

.about-left img {
    animation: floatLoop 4s ease-in-out infinite;
}

@keyframes floatLoop {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


.about-section {
    position: relative;
}

.about-overlay img {
    width: 60%;
    opacity: 0.5;
}

.about-overlay {
    position: absolute;
    top: 74%;
    left: 55%;
    animation: bounceBall 3s infinite ease-in-out;
}

@keyframes bounceBall {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-10px);
    }
}


.about-overlay-1 img {
    width: 80%;
    opacity: 0.5;
}

.about-overlay-1 {
    position: absolute;
    top: 64%;
    left: 72%;
    animation: car 4s ease 0s infinite normal none;
}

@keyframes car {
    0% {
        transform: translate(0);
    }

    10% {
        transform: translate(-2px, -2px);
    }

    20% {
        transform: translate(2px, -2px);
    }

    30% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, 2px);
    }

    50% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, -2px);
    }

    70% {
        transform: translate(-2px, 2px);
    }

    80% {
        transform: translate(-2px, -2px);
    }

    90% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}




.about-overlay-2 {
    position: absolute;
    top: 3%;
    left: 59%;
    animation: gift 5s ease-in-out 0s infinite normal none;
}


@keyframes gift {

    0%,
    100% {
        transform: translateX(0%);
        transform-origin: 50% 50%;
    }

    15% {
        transform: translateX(-30px) rotate(-6deg);
    }

    30% {
        transform: translateX(15px) rotate(6deg);
    }

    45% {
        transform: translateX(-15px) rotate(-3.6deg);
    }

    60% {
        transform: translateX(9px) rotate(2.4deg);
    }

    75% {
        transform: translateX(-6px) rotate(-1.2deg);
    }
}


.about-overlay-3 img {
    width: 60%;
}

.about-overlay-3 {
    position: absolute;
    top: 76%;
    left: 90%;
    animation: blink 4s ease 0s infinite normal none;
}


@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}



.about-overlay-4 {
    position: absolute;
    top: 26%;
    left: 90%;
    animation: blink1 4s ease 0s infinite normal none;
}

@keyframes blink1 {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 0.3;
    }

    60% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}



.about-overlay-5 img {
    width: 70%;
}

.about-overlay-5 {
    position: absolute;
    top: 1%;
    left: 7%;
    animation: tro 3s ease 0s infinite normal none;
}


@keyframes tro {
    0% {
        transform: translate(0);
    }

    10% {
        transform: translate(-2px, -2px);
    }

    20% {
        transform: translate(2px, -2px);
    }

    30% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, 2px);
    }

    50% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, -2px);
    }

    70% {
        transform: translate(-2px, 2px);
    }

    80% {
        transform: translate(-2px, -2px);
    }

    90% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}














/* =================program section============================= */
.program-inner {
    padding: 5px 0px;
}

.inner-program .container {
    width: 100%;
    max-width: 1200px !important;
}

.program-left {
    width: 100%;
    background-image: url('../images/home/program-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px;
    width: 650px;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.program-right {
    width: 100%;
    background-image: url('../images/home/program-2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px;
    width: 650px;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.program-left .program-content h4 {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.program-left .program-content h4 span {
    font-size: 16px !important;
}

.program-right .program-content h4 span {
    font-size: 16px !important;
}

.program-right .program-content {
    width: 100%;
    max-width: 350px;
}

.program-right .program-content h4 {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.program-left .program-content {
    width: 100%;
    max-width: 350px;
}

.program-left {
    position: relative;
}

.program-left .program-overlay img {
    width: 75%;
}

.program-left .program-overlay {
    position: absolute;

    left: -26%;
    top: 20%;
    z-index: -1;
}










.program-right {
    position: relative;
}



.program-right .program-overlay-1 {
    position: absolute;
    right: -45%;
    top: 11%;
    z-index: -1;
}

.program-right .program-overlay-1 img {
    width: 75%;
}

.inner-program {
    position: relative;
}









.program-overlay-3 img {
    width: 70%;
}

.program-overlay-3 {
    position: absolute;
    right: 10%;
    top: 10%;
    animation: heartbeat 3.2s ease-in-out infinite;
    transform-origin: center;
}



@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.2);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.2);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}





.program-overlay-2 img {
    width: 70%;
}

.program-overlay-2 {
    position: absolute;
    left: 43%;
    top: 25%;
    animation: floatBall 3s ease-in-out infinite;
}

@keyframes floatBall {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}


.program-overlay-4 img {
    width: 70%;
}

.program-overlay-4 {
    position: absolute;
    left: 42%;
    top: 78%;
    animation: floatBall 3s ease-in-out infinite;
}


.inner-faq {
    position: relative;
}

.test-overlay img {
    width: 70%;
    animation: baby1 2s ease 0s infinite normal none;
}

@keyframes baby1 {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}


.test-overlay {
    position: absolute;
    top: 20%;
    left: 10%;
}

/* ========================================================== */

/* .program-overlay {
    animation: slideInOut 3s ease-in-out infinite;
}

@keyframes slideInOut {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.95);
    }

    20% {
        opacity: 1;
        transform: translateX(0%) scale(1);
    }

    80% {
        opacity: 1;
        transform: translateX(0%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateX(-100%) scale(0.95);
    }
} */



.program-overlay {
    animation: slideBounceInOut 4s ease-in-out infinite;
}

@keyframes slideBounceInOut {
    0% {
        opacity: 0;
        transform: translateX(70%) scale(0.8) rotate(5deg);
    }

    20% {
        opacity: 1;
        transform: translateX(-4%) scale(1.05) rotate(-2deg);
    }

    40% {
        transform: translateX(0%) scale(1) rotate(0deg);
    }

    60% {
        transform: translateX(0%) scale(1) rotate(0deg);
    }

    80% {
        transform: translateX(-4%) scale(0.98) rotate(2deg);
    }

    100% {
        transform: translateX(70%) scale(0.8) rotate(5deg);
        /* Restart from the right again */
    }
}


.program-overlay-1 {
    animation: slideBounceInOut1 4s ease-in-out infinite;
}

@keyframes slideBounceInOut1 {
    0% {
        opacity: 0;
        transform: translateX(-80%) scale(0.8) rotate(-5deg);
        /* Start from left */
    }

    20% {
        opacity: 1;
        transform: translateX(4%) scale(1.05) rotate(2deg);
    }

    40% {
        transform: translateX(0%) scale(1) rotate(0deg);
    }

    60% {
        transform: translateX(0%) scale(1) rotate(0deg);
    }

    80% {
        transform: translateX(4%) scale(0.98) rotate(-2deg);
    }

    100% {
        transform: translateX(-80%) scale(0.3) rotate(-5deg);
        /* Move back to the left and scale to 0.3 */
    }
}



.loader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    /* Light background for visibility */
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 200px;
    height: 200px;
}

.loader-image {
    width: 60px;
    height: 60px;
    z-index: 10;
    border-radius: 50%;
}

.loader-ring {
    width: 190px;
    height: 190px;
    border: 1px solid transparent;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.ring1 {
    border-bottom: 8px solid #f02ae6;
    animation: rotate1 2s linear infinite;
}

.ring2 {
    border-bottom: 8px solid #f01343;
    animation: rotate2 2s linear infinite;
}

.ring3 {
    border-bottom: 8px solid #03aaaa;
    animation: rotate3 2s linear infinite;
}

.ring4 {
    border-bottom: 8px solid #cf8701;
    animation: rotate4 2s linear infinite;
}

@keyframes rotate1 {
    from {
        transform: rotateX(50deg) rotateZ(110deg);
    }

    to {
        transform: rotateX(50deg) rotateZ(470deg);
    }
}

@keyframes rotate2 {
    from {
        transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
    }

    to {
        transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
    }
}

@keyframes rotate3 {
    from {
        transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
    }

    to {
        transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
    }
}

@keyframes rotate4 {
    from {
        transform: rotateX(70deg) rotateZ(270deg);
    }

    to {
        transform: rotateX(70deg) rotateZ(630deg);
    }
}



.head-social a img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.head-social a img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}


#contact {

    position: relative;
}

.right-women-footer {
    position: absolute;
    right: 6%;
    top: 44%;

    img {
        width: 150px;
    }
}

.left-men-footer {
    position: absolute;
    left: 14%;
    top: 13.5%;

    img {
        width: 150px;
    }
}




/* ===========================footer 2================================ */

.footer-warp {
    background-color: #A6C6DD;
    padding: 0px 0px 20px 0px;
    position: relative;
}

.foot-top img {
    width: 100% !important;
}

.footer-left .foot-logo {
    width: 164px;
    height: auto;
    margin-bottom: 20px;
}

.footer-left {
    padding-left: 65px;
}


.foot-right-1 {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.inner-foot-1 {
    position: relative;
    z-index: 999;
}

.inner-foot-1 h4 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;

}

.inner-foot-1 ul li {
    list-style: none;
    padding-left: 5px;
    padding: 6px 0px;
}

.inner-foot-1 ul li a {
    font-size: 16px;
    color: #5F7999;
    font-weight: 400;
}

.foot-right-1 .foot2 {
    padding-left: 40px;
}

.foot-right-1 {
    padding-top: 90px;
    padding-left: 110px;
}

.footer-location {
    width: 100%;
    max-width: 400px;
}

.inner-foot-1 ul li a:hover {
    font-weight: 700;
    transform: scale(1.08);
    color: var(--primary-color)
}

.inner-review .modal-content {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.review-btn{
    display: flex;
    justify-content: end;
}
.inner-review .modal-header{
    background-color: var(--btn-bg-color);
}

.review-para p{
    font-weight: 600;

}

