:root {
    --primary-color: #BF1E2E !important;
}

li {
    list-style-type: none;
}

ol,
ul {
    padding-left: 0px;
}

a {
    text-decoration: none;
}

h5 {
    /* color: var(--primary-color); */
}

p {
    font-size: 20px;
}

body {
    /* background-color: #FEEFE9; */
    background-color: #ffffff;
    /* font-family: 'Playfair Display', serif; */
}

/* =================BUTTON STYLE========================= */

:root {
    --primary-btn-color: #BF1E2E;
    --secondary-btn-color: #000000;
    --text-btn-color: #333;
    --background-btn-color: #f5f5f7;
}

/* 
.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    background-color: var(--primary-btn-color);
    color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.button__icon {
    position: absolute;
    right: -25px;
    transition: right 0.3s ease-in-out;
    font-size: 20px;
}

.button__text {
    transition: transform 0.3s ease-in-out;
}

.button:hover .button__text {
    transform: translateX(-10px);
    color: #fff;
}

.button:hover .button__icon {
    right: 15px;
    color: #fff;
}

.button:hover {
    background-color: var(--secondary-btn-color);
    box-shadow: 0px 6px 15px rgba(253, 99, 47, 0.3);
} */


/* =================BUTTON STYLE========================= */



/********** Template CSS **********/

.back-to-top:hover {
    color: #ffff;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: var(--primary-color);
    color: #fff;
}

.fw-medium {
    font-weight: 500;
}

/*** 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;
}

/*** Button ***/

.btn-outline i {
    margin-left: 15px;
}

.btn-outline {
    position: relative;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #BF1E2E;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Space between text and icon */
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #bf1e2e;
    transition: all 0.5s;
    z-index: -1;
}

.btn-outline:hover {
    color: #ffffff;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-icon {
    display: inline-block;
    opacity: 1;
    transform: translateX(-5px);
    transition: all 0.5s ease;
}

.btn-outline:hover .btn-icon {
    opacity: 1;
    transform: translateX(10px);
}

/* Keyframe Animation for Smooth Left-to-Right Motion */
@keyframes moveRight {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }

    100% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/*** Button ***/

.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--primary-color);
}

.icon-box-light::before {
    background: var(--primary-color);
}


/*** Navbar ***/


.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--background-btn-color);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@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) {
    .sticky-top {
        /* margin-top: -34px; */
        /* background-color: rgb(239, 242, 251); */
        /* background-color: transparent !important; */
    }

    .navbar {
        /* height: 68px; */
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        padding: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-outline {
    /* background-color: #BF1E2E; */
}



/* ================= HEADER DEFAULT (TRANSPARENT) ================= */

.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: transparent;
    transition: all 0.4s ease;
}

.header-wrapper.header-fixed {
    position: fixed;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ================= FIXED HEADER AFTER SCROLL ================= */

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    /* white after scroll */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

/* LOGO */
.logo-img {
    width: 375px;
    transition: all 0.3s ease;
}

.header-fixed .logo-img {
    width: 320px;
}


.dropdown-item {
    padding: 10px 10px !important;
    border-bottom: 2px dotted var(--primary-color) !important;
}

.dropdown-menu li:last-child .dropdown-item {
    border-bottom: none !important;
}



/* Smooth slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .navbar-brand img {
        height: auto;
        width: 220px;
    }
}

@media (max-width: 991px) {
    .header-wrapper {
        position: relative;
        /* remove absolute */
        background: #ffffff;
        /* always white in mobile */
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ebebeb;
        z-index: 1040;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        color: #000;
    }

}

.navbar-toggler {
    border: 2px solid #c7c7c7;
    background: #efefef;
}

.navbar-toggler-icon {
    /* background-color: #777777; */
}

/* ================= NAVBAR TOGGLER STYLE ================= */

.navbar-toggler {
    border: 2px solid #8c8e90;
    /* Border color */
    background-color: #ffffff;
    /* Button background */
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Remove default outline */
.navbar-toggler:focus {
    box-shadow: none;
}

/* Change Hamburger Icon Color */
.navbar-toggler-icon {
    background-image: none;
    /* Remove default bootstrap icon */
    width: 24px;
    height: 2px;
    background-color: #8c8e90;
    /* Line color */
    position: relative;
}

/* Create 3 lines manually */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #8c8e90;
    transition: 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}

/* Hover Effect */
.navbar-toggler:hover {
    background-color: #8c8e90;
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
    background-color: #ffffff;
}

.banner-section {
    /* padding-top: 150px !important; adjust based on header height */
}

/*** Header ***/
/* @media (min-width: 992px) {

    .header-carousel,
    .page-header {
        margin-top: -34px;
    }
} */

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /* background: rgba(3, 27, 78, .3); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 3.5rem;
    /* background-color: var(--bs-primary); */
    /* border: 15px solid var(--bs-primary); */
}

/* @media (max-width: 767.98px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
} */

.page-header {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/testimonial.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}




/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* =====================-------------------MAIN BANNER SECTION-----------================================= */


/* .banner-section .right-side-bg .second-img {
    margin-top: -70px;
}

.banner-section .right-side-bg .first-img {
    margin-top: 70px;
} */

.banner-section .right-side-bg .right-img {
    /* border-radius: 50px; */
    /* height: auto; */
    /* width: 80%; */
    /* height: 100%;
    width: 100%; */
}

/* .banner-section .right-side-bg {
    background-image: url(../images/01.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.banner-section .banner-left-side h5 {
    color: #bf1e2e;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 400;
} */

/* .banner-section .banner-left-side p {
    color: #9c9c9c;
}

.banner-section .banner-left-side h2 {
    font-size: 43px;
    font-weight: 600;
    color: #000000;
}

.banner-section .banner-left-side {
    display: flex;
    justify-content: center;
    flex-direction: column;
} */

/* .banner-section { */
/* background-color: rgb(239, 242, 251); */
/* padding: 40px 0px; */
/* background-image: url('./assets/images/half-shape.png'), url('./assets/images/half-circle-img.png'); */
/* background-position: bottom left, bottom right; */
/* background-repeat: no-repeat, no-repeat; */
/* background-size: contain, contain; */
}

/* banner */

.carousel-caption {
    bottom: 20% !important;
}

.carousel-caption {
    position: absolute !important;
    right: 45% !important;
    bottom: 7.5rem !important;
    left: 10% !important;
    padding-top: 15rem;
    padding-bottom: 1.25rem;
    /* color: #fff; */
    /* text-align: center; */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
    transition: all 0.3s ease;
}

.banner-text h2 {
    font-family: 'playfai-display';
    font-size: 60px !important;
    font-weight: 700 !important;
    /* letter-spacing: 2px; */
    color: #000;
    text-transform: capitalize;
}

.banner-text p {
    /* font-size: 18px !important; */
    /* color: var(--dark-color); */
    /* font-weight: 500 !important; */
}

.banner-overlay {
    position: relative;
}

.banner-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg,
                    rgba(0, 0, 0, 0.753), rgba(238, 53, 24, 0.501)); */
    background: linear-gradient(260deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 72%));
    /* background: linear-gradient(260deg, rgb(255 255 255 / 23%), rgba(0, 0, 0, 0.95)); */
    z-index: 1;
}

.banner-overlay img {
    position: relative;
    z-index: 0;
}

.carousel-caption {
    z-index: 2;
}

@media (max-width: 767.98px) {
    .carousel-caption {
        position: absolute !important;
        right: 28% !important;
        bottom: 7.5rem !important;
        left: 10% !important;
        padding-top: 5rem;
        padding-bottom: 1.25rem;
        color: #fff;
        /* text-align: center; */
    }

    .banner-text h2 {
        font-family: 'playfair display';
        font-size: 20px !important;
        font-weight: 700 !important;
        letter-spacing: 2px;
        /* color: var(--dark-color); */
    }

}

@media (min-width: 768px) and (max-width: 996px) {
    .carousel-caption {
        position: absolute !important;
        right: 43% !important;
        bottom: 7.5rem !important;
        left: 10% !important;
        padding-top: 6rem;
        padding-bottom: 1.25rem;
        color: #fff;
        /* text-align: center; */
    }

    .banner-text h2 {
        /* font-family: var(--primary-font); */
        font-size: 40px !important;
        font-weight: 700 !important;
        letter-spacing: 2px;
        /* color: var(--dark-color); */
    }

}

@media (min-width: 997px) and (max-width: 1200px) {
    .carousel-caption {
        position: absolute !important;
        right: 43% !important;
        bottom: 7.5rem !important;
        left: 10% !important;
        padding-top: 5rem;
        padding-bottom: 1.25rem;
        color: #fff;
        /* text-align: center; */
    }
}




/* =====================-------------------MAIN BANNER SECTION-----------================================= */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */




/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */



/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ===========================3 BOX DESIGN SECTION====================== */


.three-box-design a i {
    margin-left: 10px;
}

.three-box-design a {
    color: #fff;
    font-size: 19px;
}

.three-box-design .first-box {
    background-color: var(--primary-btn-color);
}

.three-box-design .same-box P {
    color: #909090;
}

.three-box-design .same-box h3 {
    color: #fff;
    padding-top: 15px;
    padding-bottom: 2px;
}

.three-box-design .same-box {
    background-color: #07332F;
    padding: 30px;
}

.three-box-design .btn-outline::before {
    background-color: #07332F;
}

.three-box-design .btn-container {
    background-color: rgb(0, 0, 0);
}

.three-box-design .btn-outline {
    border: none;
    border-radius: 0;
}

.three-box-design .first-box h3 span {
    font-size: 50px;
    font-weight: 600;
}

.three-box-design .first-box h3 {
    font-size: 35px;
    color: #fff;
}

.three-box-design .first-box {
    padding: 40px 55px 40px 20px;
}

.three-box-design {
    padding: 50px 0px;
}

.three-box-design .second-box {
    border-right: 1px dotted rgb(176, 176, 176);
}

.three-box-design {
    padding: 50px 0px;
}

@media only screen and (max-width:768px) {
    .three-box-design {
        padding: 15px 0px;
    }
}


/* ===========================3 BOX DESIGN SECTION====================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */



/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */

/* ===================================ABOUT SECTION STYLE=================================== */

/* ----------------------ABOUT TOP STYLE---------------------------- */


/* ----------------------ABOUT TOP STYLE---------------------------- */



.about-section .about-right a i {
    margin-left: 10px;
}

.about-section .btn-container:hover .btn-icon i {
    color: #fff;
}

.about-section .btn-container:hover .btn-text {
    color: #ffffff;
}

.about-section .about-right a {
    color: #000000;
}

.about-section .about-right .list-for-all li {
    margin-top: 10px;
    font-size: 19px;
}

.about-section .about-right .list-for-all li i {
    margin-right: 10px;
    color: var(--primary-btn-color);
    font-size: 20px;
}

.about-section .about-right h5 {
    color: var(--primary-btn-color);
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 400;
}

.about-section .about-right p {
    color: #000000;
    text-align: justify;
}

.about-section .about-right h2 {
    font-size: 43px;
    font-weight: 600;
    color: #000000;
}

.about-section .about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-section {
    padding: 80px 0px;
}

.about-section .about-bg-img-sec {
    background-image: url(../images/about-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-section .about-third-img {
    border-radius: 999px 999px 999px 999px;
    margin-top: 30px;

}

.about-section .about-first-img {
    /* border-radius: 999px 999px 999px 999px; */
    /* height: 100%; */
    /* width: 100%; */
    /* margin-top: 90px; */
}

.about-section .about-second-img {
    border-radius: 999px 999px 999px 999px;
    /* height: 100%; */
    /* width: 100%; */
    margin-top: -50px;
}

.counter-sec-for-about-top h3 {
    margin-right: 20px;
    font-size: 80px !important;
    color: var(--primary-color);
}

.counter-sec-for-about-top .counter_3::after {
    content: '+';
    font-size: 50px !important;
    color: var(--primary-color);
}

.counter-sec-for-about-top p {
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--secondary-btn-color);
}

@media only screen and (max-width:768px) {
    .about-section .about-first-img {
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
    }

    .about-section .about-second-img {
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
    }

    .about-section .about-third-img {
        padding-bottom: 15px;
        width: 100%;
    }

    .about-section {
        padding: 10px 0px;
    }

    .about-section .about-right h5 {
        font-size: 16px;

    }

    .about-section .about-right h2 {
        font-size: 27px;

    }


}




/* ---------------------------ABOUT LEFT STYLE--------------------------- */



/* ---------------------------ABOUT RIGHT STYLE--------------------------- */



/* ===================================ABOUT SECTION STYLE=================================== */



/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */



/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ==========================------------------SERVICE SECTION START----------------======================================== */







.services-box button a {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

.services-box button {
    width: 100%;
    /* background-color: #bf1e2e; */
    background: #ffffff;
    border: none;
    padding: 15px;
    color: #000 !important;
    text-align: start;
}


.services-box .content-sec h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.services-box .content-sec {
    padding: 20px 30px 0px 30px;
}

.service-section h2 {
    font-size: 48px;
    font-weight: 600;
}

.service-section .first-one-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.service-section h5 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.2em;
    color: var(--primary-btn-color);
}

.service-section {
    background-image: url('../images/half-circle-3.png'), url('../images/service-bg-img.png');
    background-position: top left, bottom right;
    background-repeat: no-repeat, no-repeat;
    padding: 40px 10px;
    margin-top: 45px;
    margin-bottom: 45px;

}

.services-box {
    margin-bottom: 15px;
    border: 1px solid black;
    position: relative;
    overflow: hidden;
    padding: 20px 0px 0px 0px;
    z-index: 1;
    background: #bf1e2e24;

}

.services-box svg {
    fill: #000;
}

.services-box:hover svg {
    fill: rgb(255, 255, 255);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.services-box:hover button a {
    /* color: #d1d1d1; */
    color: #bf1e2e;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.services-box:hover h3 {
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.services-box:hover::after {
    background: #F7A582;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.services-box:hover .content-sec p {
    color: #000000;
}

.services-box:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    border-radius: 0px;
    /* background: #bf1e2e; */
    background: #bf1e2e4b;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.services-box:hover:before {
    top: 0;
}



@media only screen and (max-width:768px) {
    .service-section .first-one-box h2 {
        font-size: 28px;
    }

    .service-section {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}



/* ==========================------------------SERVICE SECTION END----------------======================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */






/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ==========================----------------------------------APPOINTMENT SECTION START---------------------==================================== */



.staring-box .content-box {
    margin-left: 40px;
    padding-right: 30px;
}

.staring-box svg {
    fill: #fff;
}

.staring-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.appointments-btn a i {
    margin-left: 10px;
}

.appointments-btn a {
    color: #ffffff;
}

.appointments-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}

.appointments-btn .btn-outline a {
    color: #000;
}

.appointments-btn .btn-outline::before {
    background-color: #000;
}

.appointments-btn:hover .btn-outline {
    border: none;
}

.appointments-btn .btn-outline:hover a {
    color: #fff;

}

.appointments-btn .btn-outline {
    border: 1px solid #fff;
    background-color: #fff;
}

.appointments-btn1 .btn-outline {
    /* border: 1px solid #fff; */
    background-color: var(--primary-color);
}

.appointments-btn1 a {

    color: #fff;
}

.appointments-btn1 .btn-outline::before {
    /* border: 1px solid #000; */
    border: none;
    background-color: #000;
}

.appointments-sec .content-box p {
    color: #c7c7c7;
}

.appointments-sec .content-box h2 {
    font-size: 48px;
    color: #fff;
}

.appointments-sec {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--primary-btn-color);
}

@media only screen and (max-width:768px) {

    .staring-box {
        display: flex;
        flex-direction: column;
    }

    .staring-box .content-box {
        margin-left: 0px;
        padding-right: 0px;
    }

    .appointments-sec .content-box h2 {
        font-size: 29px;

    }

    .appointments-btn {
        display: flex;
        justify-content: center;
    }

}


/* ==========================----------------------------------APPOINTMENT SECTION END---------------------==================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */



/* ------------------ARROW KEY------------------ */

.logo-slider-1 {
    /* margin-left: 70px; */
}

.logo-slider-1 .owl-carousel .owl-dots.disabled,
.logo-slider-1 .owl-carousel .owl-nav.disabled {
    display: flex;
}

.logo-slider-1 .owl-nav button {
    position: absolute;
    top: -160px;
    left: -76px;
    bottom: 0;
    width: 60px;
    height: 60px;
    background: #ffffff00 !important;
    border-radius: 50%;
    margin: auto 0;
    box-shadow: 0px 0px 5px #00000069;
    border: 1px solid rgb(255, 255, 255) !important;
}

.logo-slider-1 .owl-carousel .owl-nav button.owl-next,
.logo-slider-1 .owl-carousel .owl-nav button.owl-prev {
    color: var(--primary-btn-color);
    display: flex;
    font-size: 50px;
    align-items: self-end;
    justify-content: center;
}

.logo-slider-1 .owl-nav button.owl-next {
    right: 0;
}

.logo-slider-1 .owl-nav button.owl-prev {
    left: -72px;
    top: 10px;
}


/* ------------------ARROW KEY------------------ */

/* .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
display: flow;
} */

.logo-slider-1 .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Hover Effect with Bottom Shadow */
.logo-slider-1 .image-box:hover {
    transform: translateY(-5px);
    /* Slight lift effect */
    /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); */
    /* Adds a bottom shadow */
}

.service-penta {
    /* background-color: rgb(191 30 46 / 51%); */
    padding: 80px 0px;
    /* background-image: url(../images/1.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Container for the image box */
.logo-slider-1 .image-box:hover {
    clip-path: polygon(0% 0%, 0% 50%, 0% 100%, 47.137% 100%, 94.247% 99.901%, 95.43% 99.484%,
            95.912% 99.299%, 96.374% 99.091%, 96.815% 98.858%, 97.232% 98.604%,
            97.626% 98.328%, 97.994% 98.032%, 98.336% 97.717%, 98.649% 97.384%,
            98.932% 97.033%, 99.185% 96.667%, 99.185% 96.667%, 99.905% 95.536%,
            99.982% 58.036%, 99.994% 50.361%, 100% 43.642%, 99.999% 37.839%,
            99.991% 32.908%, 99.976% 28.81%, 99.952% 25.501%, 99.921% 22.942%,
            99.882% 21.091%, 99.833% 19.906%, 99.776% 19.345%, 99.776% 19.345%,
            99.489% 18.382%, 99.122% 17.533%, 98.659% 16.785%, 98.081% 16.125%,
            97.369% 15.541%, 96.505% 15.02%, 95.47% 14.549%, 94.247% 14.116%,
            92.817% 13.708%, 91.162% 13.313%, 91.162% 13.313%, 89.63% 12.951%,
            88.344% 12.593%, 87.268% 12.215%, 86.367% 11.787%, 85.607% 11.282%,
            84.952% 10.673%, 84.366% 9.933%, 83.815% 9.033%, 83.263% 7.947%,
            82.675% 6.647%, 82.675% 6.647%, 82.368% 5.954%, 82.076% 5.335%,
            81.794% 4.782%, 81.516% 4.288%, 81.239% 3.847%, 80.955% 3.45%,
            80.662% 3.09%, 80.352% 2.76%, 80.022% 2.454%, 79.667% 2.163%,
            79.667% 2.163%, 79.297% 1.907%, 78.857% 1.656%, 78.357% 1.411%,
            77.808% 1.178%, 77.221% 0.96%, 76.604% 0.76%, 75.97% 0.582%,
            75.328% 0.43%, 74.688% 0.308%, 74.061% 0.218%, 74.061% 0.218%,
            73.372% 0.178%, 71.976% 0.142%, 69.878% 0.11%, 67.087% 0.081%,
            63.611% 0.057%, 59.456% 0.037%, 54.631% 0.021%, 49.143% 0.009%,
            42.999% 0.002%, 36.207% 0%, 36.207% 0%, 0% 0%);
    transition: transform 0.3s ease-in-out;
}

.logo-slider-1 .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    cursor: pointer;
}

/* Background image */
.logo-slider-1 .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Gradient Overlay */
.logo-slider-1 .image-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* Controls gradient height */
    background: linear-gradient(to top, rgb(15, 14, 14), rgb(0 0 0 / 0%));
    transition: opacity 0.3s ease-in-out;

}

/* Content inside the image */
.logo-slider-1 .content {
    position: absolute;
    bottom: 56px;
    left: 20px;
    color: rgb(255, 255, 255);
    /* opacity: 0; */
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}

.logo-slider-1 .content h3 {
    font-size: 32px;
    margin: 5px 0;
}

.logo-slider-1 .content p {
    font-size: 20px;
    margin: 0;
}

/* Arrow Icon Box (Top Right) - HIDDEN BY DEFAULT */
.logo-slider-1 .arrow-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 0;
    /* Hides the icon initially */
}

/* FontAwesome Arrow Icon */
.logo-slider-1 .arrow-icon i {
    color: white;
    font-size: 16px;
}

/* Background Image for Icon using ::before & ::after */
.logo-slider-1 .arrow-icon::before,
.logo-slider-1 .arrow-icon::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('./assets/images/srvce-shp.png') no-repeat center;
    background-size: cover;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    /* Hide background initially */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.logo-slider-1 .arrow-icon::before {
    top: -10px;
    left: -10px;
}

.logo-slider-1 .arrow-icon::after {
    bottom: -10px;
    right: -10px;
}

/* Hover Effect */
.logo-slider-1 .image-box:hover img {
    transform: scale(1.05);
}

.logo-slider-1 .image-box:hover .content {
    opacity: 1;
}

/* Move the gradient overlay upwards on hover */
.logo-slider-1 .image-box:hover::after {
    bottom: 0;
    /* Moves up smoothly */
    opacity: 1;
}

/* SHOW ICON & BACKGROUND IMAGE ON HOVER */
.logo-slider-1 .image-box:hover .arrow-icon {
    opacity: 1;
    transform: scale(1.1);
}

.logo-slider-1 .image-box:hover .arrow-icon::before,
.logo-slider-1 .image-box:hover .arrow-icon::after {
    opacity: 1;
    transform: scale(1.2);
}


.logo-slider-1 .image-box:hover .arrow-icon {
    top: 8.9%;
    right: 11%;
    transform: translate(50%, -50%) scale(1.3);
    opacity: 1;
}



/* Move the gradient overlay upwards on hover */
.logo-slider-1 .image-box:hover::after {
    bottom: 0;
    /* Moves up smoothly */
    opacity: 1;
    background: linear-gradient(to top, rgb(191 30 46), rgb(0 0 0 / 0%));
    transition: bottom 0.8s ease-in-out, opacity 1s ease-in-out;
}

.service-penta .for-btn-sec-penta {
    display: flex;
    justify-content: end;
    align-items: baseline;
}


.logo-slider-1 .service-penta .for-text-sec {
    flex-direction: column;
    display: flex;
    justify-content: center;
    font-size: 18px;
    color: #ffff;

}

.service-penta h2 {
    font-size: 48px;
    /* font-weight: 700; */
    text-transform: capitalize;
    /* color: #ffff; */
}

@media only screen and (max-width:767px) {
    .service-penta h2 {
        font-size: 30px;
    }

    .service-penta {
        padding: 15px !important;
    }

    .logo-slider-1 .content h3 {
        font-size: 24px;
    }

    .logo-slider-1 .content p {
        font-size: 19px;
    }

    .logo-slider-1 .content {
        position: absolute;
        bottom: 10px;
    }
}

.text-justify {
    text-align: justify;
}


.service-penta {
    position: relative;
    /* background: url('../images/1.jpg') no-repeat center center/cover; */
    padding: 50px 0;
    color: #000;
    background-color: #bf1e2e1f;
}

/* .service-penta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
} */

.service-penta .container {
    position: relative;
    z-index: 1;
}

.service-penta h2,
.service-penta p,
.service-penta .button {
    position: relative;
    z-index: 2;
}



/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ========================-------------------HOW WE WORK SECTION START-------------------------================== */



.how-we-work-sec {
    padding: 50px 0px;
}

.how-we-work-sec h2 {
    font-size: 48px;
    color: #000000;
}

.how-we-work-sec h4 {
    font-size: 25px;
    padding-top: 15px;
}

.how-we-work-sec .how-we-work-content .how-text {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.how-we-work-sec .how-we-work-content {
    padding: 30px 0px;
}

.how-we-work-sec h5 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.2em;
    color: var(--primary-btn-color);
}

@media only screen and (max-width:768px) {
    .how-we-work-sec h2 {
        font-size: 26px;
    }

    .how-we-work-sec h5 {
        font-size: 16px;
    }

    .how-we-work-sec {
        padding: 10px 0px;
    }

    .how-we-work-sec h4 {
        font-size: 19px;
    }
}


/* ========================-------------------HOW WE WORK SECTION START-------------------------================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */




/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ========================-------------------FAQS SECTION-------------------------================== */



.faq-sec .counter_3::after {
    content: '+';
}

.faq-sec .second-counter span {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
}

.faq-sec .second-counter h3 {
    color: #fff;
    font-size: 60px;
}

.faq-sec .first-counter span {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
}

.faq-sec .first-counter h3 {
    color: #fff;
    font-size: 60px;
}

.faq-sec .first-counter {
    background-color: var(--primary-btn-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    flex-direction: column;
    margin-top: -110px;
}

.faq-sec {
    padding: 50px 0px;
}

.how-we-work-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --------------accordion style---------------------- */
.faq-sec .how-we-work-right .accordion-item {
    background-color: transparent;
}

.faq-sec .how-we-work-right .accordion-button {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: transparent;
}

.faq-sec .how-we-work-right .accordion-body {
    padding: 1rem 1.5rem;
    font-size: 19px;
}

.faq-sec .how-we-work-right .accordion-item:not(:first-of-type) {
    border: none;
}

.faq-sec .how-we-work-right .accordion-item:first-of-type {
    border: 1px solid rgba(0, 0, 0, 0);
    box-shadow: none;
}

.faq-sec .how-we-work-right .accordion-button:not(.collapsed) {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: transparent;
    box-shadow: none;

}

.faq-sec .how-we-work-right .accordion-button::after {
    background-image: url(../images/minus.png);
}

.faq-sec .how-we-work-right .accordion-button:not(.collapsed)::after {
    background-image: url(../images/add.png);
}

/* --------------accordion style---------------------- */

.faq-sec .how-we-work-right h2 {
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px;
}

.faq-sec .how-we-work-right {
    padding-left: 50px;
}

.faq-sec .how-we-work-right h5 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.2em;
    color: var(--primary-color);
}

.faq-sec .second-counter {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    flex-direction: column;
    margin-top: -80px;
}

@media only screen and (max-width:768px) {
    .faq-sec .first-counter {
        margin-top: 0;
    }

    .faq-sec .second-counter {
        margin-top: 0;
    }

    .faq-sec .how-we-work-right {
        padding: 15px;
    }

    .faq-sec .how-we-work-right h5 {

        font-size: 16px;
    }

    .faq-sec .how-we-work-right h2 {
        font-size: 30px;
    }

    .faq-sec {
        padding: 10px 0px;
    }
}





/* ========================-------------------FAQS SECTION-------------------------================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */






/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ========================-------------------TESTI SECTION-------------------------================== */




/* < !--========================------------------TESTIMONIALS SECTION--------------------------====================================--> */
.testi-top {
    padding: 100px 0px 180px 0px;
    background-color: #07332F;
    position: absolute;
    width: 100%;
}

.testi-top h2 {
    font-size: 48px;
    color: #ffffff;

}

.testi-top h5 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.2em;
    color: var(--primary-color);
}

.testi-bottom-sec {
    padding-top: 220px;
}

.testi-bottom-sec .owl-theme .owl-dots .owl-dot span {
    background-color: #d1767f;
}

.testi-bottom-sec .owl-theme .owl-dots .owl-dot.active span {
    background-color: #BF1E2E !important;
}

@media only screen and (max-width:768px) {
    .testi-top {
        padding: 15px;
    }

    .testi-top h5 {
        font-size: 16px;
    }

    .testi-top h2 {
        font-size: 28px;
    }
}



@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 22px !important;
    }

    .testimonials .testi .item {
        background: #ffffff;
        padding: 20px;
        /* border-radius: 15px; */
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        position: relative;
        margin: 10px;
        height: 520px;
        border: 1px solid var(--primary-btn-color);
    }
}


.owl-carousel .owl-stage-outer {
    /* background-color: #ffffff; */
}

/* Styling for Testimonials Section */
.testimonials {
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 35px;
}

.testimonials .testi .item {
    background: #ffffff;
    padding: 30px;
    /* border-radius: 15px; */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 10px;
    height: 363px;
    border: 1px solid var(--primary-btn-color);
}

.testimonials .testi .item .profile img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-bottom: 10px;
    border: 5px solid var(--secondColor);

}

.testimonials .testi .item .profile {
    display: flex;
    align-items: center;
}

.testimonials .testi .item .profile .information p {
    color: var(--primary-btn-color);
}

.testimonials .testi .item .profile .information {
    padding-left: 20px;
    margin-bottom: 15px;
}

.testimonials .testi .item .icon i {
    font-size: 32px;
    color: var(--first-color);
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute;
    top: -30px;
    right: 10px;
    background-color: #f33f02;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    z-index: 10;
    font-size: 20px;
    display: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {

    .testimonials .testi .item {
        padding: 10px;
        height: 370px;
    }
}

/* Show navigation buttons only on mobile */
@media (max-width: 768px) {

    .owl-carousel .owl-prev,
    .owl-carousel .owl-next {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        display: none;
    }

    .owl-prev-btn {
        border: 1px solid rgb(0, 0, 0) !important;
    }

    .owl-next-btn {
        border: 1px solid rgb(0, 0, 0) !important;
    }
}


.owl-theme .owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot .active {
    color: red !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    /* background: var(--secondColor) !important; */
    border-radius: 50%;
    display: inline-block;
}


.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    background-color: #f33f02;
    color: #fff;
    border-radius: 50%;
    padding: 10px 15px;
    width: auto;
    height: auto;
    line-height: initial;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
    position: absolute;
    z-index: 11;
    font-size: 20px;
}

/* Previous button specific positioning */
.owl-carousel .owl-prev {
    left: 75%;
    top: -10%;
    transform: translateY(-50%);
}

/* Next button specific positioning */
.owl-carousel .owl-next {
    /* right: -70px;  */
    top: -10%;
    transform: translateY(-50%);
}

.owl-prev-btn,
.owl-next-btn {

    background-color: var(--primarycolor) !important;
    color: #ffffff !important;
    border: none;
}

.owl-next-btn,
.owl-prev-btn:hover {
    border: 1px solid #dc3545 !important;
    /* background-color: var(--secondColor) !important; */
}

.owl-theme .owl-nav [class*=owl-] {
    border: 1px solid #dc3545;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    color: #ffffff !important;
    background-color: #ffffff00 !important;

}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 16px;
    margin: 5px;
    padding: 6px 10px;
    height: 35px;
    width: 35px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

/* Hide navigation buttons by default */
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    display: none;
}

.owl-prev {
    position: absolute !important;
    left: 90% !important;
    top: -10% !important;
}

/* Show navigation buttons only on mobile screens (max-width: 768px) */
@media (max-width: 768px) {

    .owl-carousel .owl-prev,
    .owl-carousel .owl-next {
        display: block;
        top: -7%;
        /* Position them near the top */
    }

    .owl-carousel .owl-prev {
        left: 80%;
        /* Adjust position to be closer to the edges */
    }

    .owl-carousel .owl-next {
        right: -10%;
        /* Adjust position to be closer to the edges */
    }

    .testimonials .testi .item {
        /* padding: 0; */
    }
}


/* < !--========================------------------TESTIMONIALS SECTION--------------------------====================================--> */





/* ========================-------------------TESTI SECTION-------------------------================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */



/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* =========================--------------------HOME PAGE CONTACT SECTION------------------------================================== */



/* ==========FORM======================== */
.form_left {
    /* padding: 80px; */
    /* background-color: #bf1e2e; */
    /* background-color: #E7ECFC; */
    height: 100%;

}

.form_left .btn-outline:hover {
    border: 1px solid rgba(255, 255, 255, 0);
}

.form_left .btn-outline::before {
    background-color: #000;

}

.form_left .btn-outline {
    color: #fff;
    border: 1px solid #fff
}

.form_left p {
    color: #000;
}

.form_left h3 {
    /* margin: 20px 0px; */
    font-size: 30px;
    color: #000;
    /* font-family: lato; */

}


.form_left .form-control {
    background-color: #ffffff99 !important;
    color: #000 !important;
    border: 2px solid rgb(188 0 0);
}

.form_left {
    padding-bottom: 25px;
}

.form_left .form-control::placeholder {
    color: var(--secondary-btn-color) !important;
}




.for-first-cont {
    background-color: #ffffff;
    padding: 20px !important;
}

.for-first-cont_1 {
    background-color: #ededed;
    padding: 20px !important;
}

@media (max-width: 767px) {
    .home-sec-contact {
        padding: 10px !important;
    }

    .form_left {
        padding: 9px;
    }
}


.form-control {
    color: #000000 !important;
    /* White text */
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.form-control:focus {
    color: #000000 !important;
    /* Ensures text remains white when focused */
    outline: none;
}

.timing-list {
    position: relative;
}

.timing-list {
    position: relative;
    display: block;
    max-width: 500px;
    margin-bottom: 30px;
}

.timing-list li {
    position: relative;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    line-height: 28px;
    color: #777777;
    font-weight: 400;
    padding: 16px 0;
    padding-left: 30px;
    border-bottom: 1px solid #dddddd;
}

.timing-list li:before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f017";
    color: #c90f40;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    padding: 15px 0;
}

.bor-left {
    border-left: 3px solid var(--primary-color);
}

.map-section {
    padding: 0;
    margin: 0;
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Mobile height */
@media (max-width: 576px) {
    .map-iframe {
        height: 300px;
    }
}

.home-contact-sec {
    position: relative;
    padding: 100px 0px;
    background-image: url(../images/home-contact-form-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    background-attachment: fixed;
}

.home-contact-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity as needed */
    z-index: -1;
}

.home-contact-sec h2 {
    font-size: 48px;
    color: #fff;
    /* padding-bottom: 30px; */
}

.home-contact-sec .contact-left h3 span {
    font-size: 40px;
    font-weight: 700;
}

.home-contact-sec .contact-left h3 {
    font-size: 33px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.home-contact-sec .contact-left {
    background-color: #bf1e2e;
    padding: 80px 25px 80px 25px;
}

.home-contact-sec h5 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 0.2em;
    color: #fff;
    /* color: var(--primary-color); */
}

@media only screen and (max-width:768px) {
    .home-contact-sec {
        padding-top: 30px;
        padding-bottom: 20px;
    }
}


/* ================---------------------HOME PAGE CONTACT SECTION-----------===================== */





/* =========================--------------------HOME PAGE CONTACT SECTION------------------------================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */










/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ============================FOOTER SECTION============================= */




/*** Footer ***/
.footer-section-top .foot-top-text a {
    color: #000000;
    text-decoration: none;
}

.footer-section-top h4 {
    font-size: 23px;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.footer-section-top .text-para-1 p i {
    margin-top: 6px;
    color: #ffffff;
}

.footer-section-top .text-para-1 p {
    color: #ffffff;
    display: flex;
    margin-bottom: 0px;
}

.footer-section-top .btn-sm-square {
    color: #ffffff;
    font-size: 18px;
}

.footer-section-top .text-para {
    color: #000000;
    font-size: 18px;
}


/* .footer {
    background: linear-gradient(rgb(0 66 116), rgb(0 66 116)), url(../img/footer.png) center no-repeat;
    background-size: contain;
} */

.footer-bottom-section {
    background-color: var(--primary-color);
}

.footer-bottom-section p {
    color: #fff;
}

.footer-bottom-section a {
    text-decoration: none;
    color: #fff;
}

@media (min-width: 992px) {
    /* .footer::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    } */
}

.footer p i {
    color: var(--primary);
}

.footer .btn.btn-link i {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgb(255, 255, 255);
    font-weight: normal;
    /* text-transform: capitalize; */
    transition: .3s;
    text-decoration: none;
    font-size: 18px
}

.footer .btn-1.btn-link-1 {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgb(255, 255, 255);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    /* position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px; */
}


.footer .btn.btn-link:hover {
    color: var(--primary-color);
    letter-spacing: 1px;
    box-shadow: none;
    font-weight: 500;
}

.footer .btn-1.btn-link-1:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.contact .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
    font-weight: 500;
}

.contact .btn-1.btn-link-1:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    border-top: 1px dashed rgba(255, 255, 255, .2);
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--primary);
}



.nav-icons a:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.nav-icons a {
    background-color: #ffffff;
    color: var(--secondary-color);
}







.footer-section-top {
    /* top: -80px; */
    /* position: relative; */
    /* bottom: -100px !important; */

}

.footer_bottom_bar {
    /* padding-top: 100px; */
    background-color: #000000;
}

/* ============================FOOTER SECTION============================= */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */

/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */
/* ======================================================================================================================================== */


/* ============================ about page ============================ */

.about-banner {
    background-image: url('../images/about-banner-01.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner .overlay {
    /* background-color: rgba(0, 0, 0, 65%); */
    background: linear-gradient(123deg, #0000008c, #bf1e2ec2);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 20px 20px;
}

/* Card Container */
.doctor-card {
    background: #dce5fea3;
    /* border-radius: 20px; */
    padding-top: 50px;
    box-shadow: 0 15px 40px rgba(0, 72, 144, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    height: 100%;
    border-top: 4px solid var(--primary-color) !important;
}

/* Hover Effect */
.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 72, 144, 0.15);
}

/* Image Wrapper */
.doctor-img-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

/* Doctor Image */
.doctor-img {
    width: 115px;
    height: 115px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Card Body */
.card-body {
    padding: 20px 20px 25px;
}

/* Name */
.card-title {
    font-weight: 600;
    font-size: 25px;
}

/* Degree */
.doctor-degree {
    font-size: 18px;
}

/* Speciality */
.doctor-speciality {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .doctor-img {
        width: 100px;
        height: 100px;
    }

    .doctor-card {
        padding-top: 30px;
    }

    .contact-banner {
        height: 25vh !important;
    }

    .about-banner {
        height: 25vh !important;
    }
}

/* ============================ contact page ============================ */

.contact-banner {
    background-image: url('../images/contact-banner-01.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay h1 {
    font-family: 'playfair display';
    /* padding-top: 130px !important; */
}

.contact-banner .overlay {
    /* background-color: rgba(0, 0, 0, 65%); */
    background: linear-gradient(137deg, #000000c2, #bf1e2e5c);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 20px 20px;
}

/*  ============================  department page  ============================  */

.department-banner {
    background-image: url('../images/department-baner-01.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.department-banner .overlay {
    /* background-color: rgba(0, 0, 0, 65%); */
    background: linear-gradient(137deg, #000000c2, #bf1e2e5c);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 20px 20px;
}

.about-first-img1 {
    border-radius: 25px;
}

/*  ============================  service page  ============================  */

.service-banner {
    background-image: url('../images/service-baner-01.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 40vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-banner .overlay {
    /* background-color: rgba(0, 0, 0, 65%); */
    background: linear-gradient(137deg, #000000c2, #bf1e2e5c);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px 20px 20px;
}


/* Card Layout */

.hospital-card {
    background: #feefe97d;
    padding: 50px 30px;
    /* border-radius: 30px; */
    border: 2px solid #0000003b;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

/* Accent Left Border */
.hospital-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52px;
    height: 60px;
    width: 4px;
    background: #BF1E2E;
    /* your primary color */
    border-radius: 3px;
}

/* Icon */
.card-icon {
    min-width: 65px;
    height: 65px;
    border-radius: 10px;
    background: #BF1E2E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
}

/* Heading */
.card-content h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Paragraph */
.card-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Hover */
.hospital-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}


/* floating icons */


.floating-icons {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual Icon Style */
.float-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

/* WhatsApp Icon */
.whatsapp-icon {
    background: #25D366;
}

/* Phone Icon */
.phone-icon {
    background: #007bff;
    animation-delay: 0.5s;

}

.phone-icon:hover {
    background: var(--primary-btn-color);
    color: #fff;
    animation-delay: 0.5s;
}

.whatsapp-icon:hover {
    background: var(--primary-btn-color);
    color: #fff;
    animation-delay: 0.5s;
}

.phone-icon i {
    transform: rotate(90deg) !important;
}

/* .phone-icon i:hover {
    color: #fff;
} */

/* Hover Effect */
.float-icon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation (Alternative) */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
}

/* Bounce Animation (Alternative) */
.bounce {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-icons {
        bottom: 100px;
        right: 20px;
    }

    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Tooltip on hover */
.float-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.float-icon:hover::before {
    opacity: 1;
}

/* Arrow for tooltip */
.float-icon::after {
    content: '';
    position: absolute;
    right: 60px;
    border: 6px solid transparent;
    border-left-color: #333;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.float-icon:hover::after {
    opacity: 1;
}

/* Responsive styles */

@media only screen and (max-width:768px) {
    .second_call_to_action .for_img_cont {
        /* top: 0px !important; */
        padding: 20px !important;
        position: inherit;
        margin-bottom: 10px;
    }

    .footer-section-top {
        top: 0px !important;
        /* margin-bottom: 53px; */
    }

    .footer_bottom_bar img {
        /* padding-top: 25px; */
    }

    .second_call_to_action .for_img_cont h2 {
        font-size: 24px;
    }

    .footer_bottom_bar {
        padding-top: 0px !important;
    }

    .about-banner {
        height: 25vh !important;
    }

    .department-banner {
        height: 25vh !important;
    }

    .service-banner {
        height: 25vh !important;
    }

    .contact-banner {
        height: 25vh !important;
    }

    .contact-banner .overlay {
        padding: 10px 20px !important;
    }

    .about-banner .overlay {
        padding: 10px 20px !important;
    }

    .department-banner .overlay {
        padding: 10px 20px !important;
    }

    .service-banner .overlay {
        padding: 10px 20px !important;
    }

    .hospital-card {
        display: flex;
        flex-direction: column;
    }

    .hospital-card {
        background: #feefe97d;
        padding: 30px 15px;
    }

    .hospital-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 33px;
    }

}