﻿
/*-----------override existing css----------*/
@font-face {
    font-family: 'SWZ721BC';
    src: url('/fonts/swz721bc.ttf');
}
.custom-font {
    font-family: 'SWZ721BC' !important;
}
    .btn-danger {
    background: red !important;
    border-color: red !important;
}
    @media (min-width: 1200px) {
        .container {
            max-width: 1250px !important;
        }
    }

a:hover {
    text-decoration: none !important;
}
.bg-theme-dark {
    background: #001946;
}
ul {
    margin-bottom: 0 !important;
}

h2 {
    width: fit-content !important;
}

.menu-icon {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 6px 0;
}
button.btn.btn-outline-primary {
    color: var(--theme-dark);
    border-color: var(--theme-dark);
}
.btn.btn-primary.btn-theme-primary {
    color: white;
    border: 1px solid var(--theme-dark);
    background: var(--theme-dark);
}
    button.btn.btn-outline-primary:hover {
        color: white;
        background: var(--theme-dark);
    }
/*-----------override existing css----------*/

:root {
    --theme-linear-gradient: linear-gradient(242deg, #edf9ff, transparent);
    --theme-dark: #011f57;
    --theme-border: #3f5989; /*1px solid #11294f;*/
    --theme-primary: #3096ff;
    --theme-bg: #f6f9ff;
    --theme-primary-md: #006fe1;
    --theme-primary-dark: #002261;
    --theme-primary-light: #edf2fa;
    --theme-font-size: 14px;
    --theme-whatsapp: #14c500;
    --theme-body-text-color: #3e3e3e;
    --theme-grey: #efefef;
    --theme-box-shadow: 0 10px 30px #a2b6ff94
}
/* Modal styling */
.notice-modal {
    position: fixed;
    z-index: 1020;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition:.8s ease;
}
    .notice-modal.show {
        left: 0;
    }

    .notice-modal .modal-content {
        top: 0;
        left: 0;
        border-radius: 0 10px 10px 0;
        background-color: #fff;
        margin: 0%;
        padding: 10px;
        border: 1px solid #888;
        width: 90%;
        height: fit-content;
    }
notice-modal-collapse
img.modal-logo {
    height: 70px;
}

.notice-modal .modal-header {
    display: flex;
    font-size: 20px;
    flex-direction: column;
    align-items: center;
}

.modal-header .custom-font {
    font-size: 35px;
}

.notice-modal .modal-body {
    font-weight: 600;
    color: #ff0000;
}

.notice-modal .modal-body img {
   height:50px;
}
label.modal-heading-text {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0px);
}

.notice-modal .close {
    width: fit-content;
    position: absolute;
    top: 9px;
    right: 20px;
    color: red;
    float: right;
    font-size: 28px;
    font-weight: bold;
    z-index: 999999;
}


    .notice-modal .close:hover {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

#nav-link-notice {
    position: relative;
}

    #nav-link-notice::after {
        font-weight: 800;
        content: "1";
        position: absolute;
        width: 18px;
        height: 18px;
        font-size: 12px;
        background: #ff0000;
        line-height: normal;
        border-radius: 50%;
        color: #fff;
        padding: 0;
        right: -3px;
        top: -2px;
        padding-left: 6px;
        padding-top: 0px;
    }

.notice-content {
    font-size: 15px;
    letter-spacing: -0.6px;
    padding: 20px 20px 20px 0;
    color: #142950;
}
/*.outer-box {
    overflow:hidden;
    position: relative;
    width: 35%;
}*/
#notice-box {
    transform: translate(0, -50%);
    top: 50%;
    height: fit-content;
    overflow: hidden;
    position: relative;
    width: 35%;
}
    #notice-box.visible {
        overflow: hidden;
        position: relative;
        width: 35%;
    }
    .notice-content ul {
        list-style: none;
    }
.notice-modal .modal-body {
    position: relative;
}
.notice-content b {
    font-weight: 700 !important;
    color: red;
}
.notice-modal .modal-body::before {
    top: 50%;
    opacity: 0.025;
    background-size: contain;
    background: url(/assets/images/dia.png);
    content: "";
    display: block;
    position: absolute;
    width: 80%;
    height: 80%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    transform: translate(-50%, -50%);
}
.notice-modal-collapse {
    box-shadow: 0 10px 23px #8080809e;
    border: 1px solid white;
    z-index: 10;
    top: 50%;
    height: 60px;
    width: 55px;
    position: fixed;
    background:red;
    left: 0%;
    border-radius: 0 10px 10px 0;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.5s ease;
}
    .notice-modal-collapse.hidden {
        left: -100%;
    }
    .notice-modal-collapse img{
        height:50px;
    }
    .notice-content.notice-content ul li {
        border-bottom: 1px solid #959595;
        padding-bottom: 5px;
        margin-bottom: 5px;
        position: relative;
    }
    .notice-content ul li:last-child {
        border-bottom: none;
    }

    .notice-content ul li::before {
        top: 6px;
        /* transform: translate(0px, -50%); */
        width: 15px;
        height: 15px;
        content: "";
        color: green;
        position: absolute;
        left: -1.5rem;
        font-size: 14px;
        line-height: 1;
        background: url(/assets/icons/check-blue.png);
        background-position: center;
        background-size: contain;
    }

button.btn.btn-secondary:hover {
    background: #d7d7ff;
    color: blue;
}
.btn-primary {
    color: #fff;
    background-color: #5aaaff;
    border-color: #5aaaff;
}

.btn-danger {
    background: #ff7070;
    border-color: #ff8383;
}

    .btn-danger:hover {
        background: red;
        border-color: red;
    }

h4 {
    display: block;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

h5 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.35em;
    color: #ffffff;
    text-align: left;
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: -1px;
}

p {
    margin-bottom: 0;
    font-weight: 500;
    color: var( --theme-body-text-color);
    font-size: 14px;
    line-height: 1.4;
}

.carousel-indicators .active {
    background-color: #141414;
}

.carousel-indicators li {
    background-color: #e3e3e3;
}

.bottom .service-item:hover {
    box-shadow: 0 10px 10px #6767ff45;
}

.quick-service-section.page-section a {
    padding: 0;
    width: fit-content;
}

.banner-item .col-6 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.banner-item .playstore-logo {
    padding: 10px 0 0 10px;
    height: 55px;
    cursor: pointer;
}


.banner-item img {
    width: 100%;
}
.btn.custome-btn {
    display: flex;
    border-radius: 40px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background: #002261;
    color: white;
    transition: 0.25s ease;
}

    .btn.custome-btn:hover {
        background: black;
        color:white;
    }

.txt-black {
    color: black;
}
/* ---top-bar start--- */
.nav-item-dropdown.location-nav-dropdown {
    display: grid;
    width: auto;
    grid-template-columns: 1fr 1fr;
}
.top-bar {
    padding: 10px 0;
    background: white;
}

    .top-bar .container {
        flex-direction: row;
        display: flex;
        padding: 0;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar .svg-icon {
        height: 35px;
    }

    .top-bar label {
        font-size: 12px;
        font-weight: 600;
        margin: 0;
    }

.icon-item b {
    padding-right: 5px;
}

.left-bar span {
    display: flex;
    gap: 5px;
    color: white;
    align-items: center;
}

ul.icon-list.right-bar {
    display: flex;
    gap: 33px;
}

.top-bar li.icon-item i {
    padding-top: 0px;
    padding-right: 5px;
}

.top-bar li.icon-item {
    align-items: center;
    display: flex;
    gap: 10px;
}

.top-bar .icon-box .icon-text {
    gap: 10px;
    display: flex;
    flex-direction: row;
}

    .top-bar .icon-box .icon-text span {
        font-size: 13px;
        font-weight: 500;
        color: #ffffff;
    }

.top-bar .icon-box {
    position: relative;
    gap: 8px;
}

    .top-bar .icon-box::after {
        display: flex;
        content: "";
        position: absolute;
        height: 13px;
        width: 1px;
        background: #ababab;
        right: -8px;
    }

    .top-bar .icon-box img {
        filter: invert(1);
        height: 18px;
    }

i.fa.fa-volume-control-phone {
    transform: rotate(-37deg);
}

.top-bar-list {
    margin-bottom: 0;
    list-style: none;
    display: flex;
    font-size: 16px;
    gap: 10px;
    padding: 5px 0;
}

li.top-bar-list-item a {
    font-weight: 600;
    font-size: 11px;
    color: white;
    padding-right: 10px;
    border-right: 1px solid white;
}

li.top-bar-list-item i {
    font-size: 14px;
    margin-right: 4px;
}

.left-bar {
    align-items: center;
    display: flex;
    list-style: none;
    padding-left: 0;
    gap: 20px;
}

    .left-bar span {
        display: flex;
        gap: 5px;
        color: white;
        align-items: center;
    }

    .left-bar i {
        font-size: 13px;
    }

    .left-bar p {
        color: white;
        font-size: 12px;
        margin-bottom: 0;
        font-weight: 600;
    }

i.fa.fa-volume-control-phone {
    transform: rotate(-37deg);
}

.mid-bar .company-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ----header start------- */
.navbar.navbar-expand-lg.main-header.main-header {
    /*   border-top: 1px solid var(--theme-grey); */
    padding: 5px 0;
    width: 100%;
    background: #fffffff7;
    background:white;
    box-shadow: 0 10px 10px #8080805c;
    top: -1px;
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo-section {
    display: flex;
    gap: 10px;
}

.main-header .container {
    flex-direction: row;
    padding: 0;
    justify-content: center !important;
}

.nav-item {
    position: relative;
}

    .nav-item:hover .nav-item-dropdown {
        opacity: 1;
        transform: translateY(0px);
        pointer-events: auto;
    }

.nav-item-dropdown {
    z-index:2;
    border-top: 2px solid #005aff;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgb(0 0 0 / 17%);
    border-radius: 5px;
    width: 240px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .nav-item-dropdown .dropdown-item {
        padding: 5px 10px;
/*        padding-left: 20px;*/
        transition: 0.25s ease;
    }

        .nav-item-dropdown .dropdown-item:hover {
            font-size: 18px;
            color: #002261;
        }

.mid-bar {
    position: relative;
    background: #edf2fa;
}

.header-top {
    padding: 5px 0;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.header-right {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.playstore-logo {
    height: 35px;
    cursor: pointer;
}

#logo {
    height: 65px;
}

a.nav-link {
    text-transform: capitalize;
    font-weight: 600;
    color: #11294f;
    font-size: 17px;
}

    a.nav-link:hover {
        text-transform: capitalize;
        font-weight: 500;
        color: red;
        font-size: 17px;
    }

.navbar-nav {
    gap: 25px;
}

.body-content {
    z-index: 1;
}

ul.social-icon-list {
    list-style: none;
}

ul {
    margin-bottom: 0;
}

    ul.social-icon-list {
        list-style: none;
        display: flex;
        gap: 8px;
    }

.icon-container {
    text-align: center;
    border-radius: 20px;
    display: flex;
    width: 30px;
    background: #0747bd;
    height: 30px;
    justify-content: center;
    align-items: center;
    /* padding: 12px;
	 */
}

    /*.top-bar {
    justify-content: space-between;
    display: flex;
    background: #002261;
    color: white;
}*/

    .icon-container i {
        font-size: 14px;
    }
/*-------body---*/
.banner-section {
    background-position: center;
    background-size: cover !important;
}
/* ---health-package strat---*/
.health-package-section {
    background: var(--theme-bg);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    flex-direction:column;
}

    .health-package-section .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .health-package-section .post-img {
        position: relative;
        background-repeat: no-repeat !IMPORTANT;
        height: 60%;
        background-position: center !important;
        background-size: cover !important;
    }

    .health-package-section .recent-post-item {
        width: 275px !important;
        height: 290px;
        overflow: hidden;
        border-radius: 5px;
        background: white;
        transition: 0.25s ease;
    }

.modal-content {
    top: 30px;
}

div#package_modal .modal-content {
    border-radius: 10px;
}
.package-model .modal-body {
    padding: 25px;
    overflow: hidden;
    min-height: 50vh;
    overflow-y: auto;
    max-height: 60vh;
    position: relative;
}


    /* Package Test Modal Watermark Background */
    .package-model .modal-body::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        background-image: url('../assets/images/dia.png');
      
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.05;
        z-index: 0;
        pointer-events: none;
    }

    .package-model .modal-body > * {
        position: relative;
        z-index: 1;
    }
.package-model .modal-header {
    display: flex;
    padding: 10px;
    border: none;
    justify-content: center;
    position:relative;
}
.modal-header::after {
    display: block;
    position: absolute;
    background: linear-gradient(92deg, transparent, #c3c3c3, transparent);
    content: "";
    height: 1px;
    width: 95%;
    bottom: 0;
    background: #ededed;
}
.package-model .modal-body label {
    font-size: 22px;
    font-weight: 700;
}
    .package-model .modal-body label .offer_price {
        color: red;
        font-weight: 800;
    }
    .package-model .modal-body label del.real_price {
        font-size: 16px;
        padding-left: 5px;
        font-weight: 600;
        color: #d7d7d7;
    }
.package-model .modal-body ul {
    padding: 10px 20px;
    gap: 5px 30px;
    grid-template-columns: 1fr 1fr;
    display: grid;
    list-style: none;
}
    .package-model .modal-body ul li {
        line-height: 1.7rem;
        /* padding: 0px; */
        position: relative;
        font-size: 15px;
        font-weight: 600;
    }
.package-model .modal-footer {
    padding: 10px 20px;
    border: none;
}
.package-model .modal-body ul li::before {
    top: 6px;
    /* transform: translate(0px, -50%); */
    width: 15px;
    height: 15px;
    content: "";
    color: green;
    position: absolute;
    left: -1.25rem;
    font-size: 14px;
    line-height: 1;
    background: url(/assets/icons/check-blue.png);
    background-position: center;
    background-size: contain;
}
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: linear-gradient(0deg, transparent, #cfcfcf, transparent);
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #1eacef;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }
em {
    font-size: 14px;
    color: #1eacef;
}


.modal-footer label {
    font-size: 12px;
    left: 20px;
    position: absolute;
    font-weight: 600;
}
/* ---health-package end--*/


.content {
    min-height: 100vh;
    /* Full height of the viewport for demo */
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}
/* -------------banner -----------------*/
.banner-item {
   
    width: 100%;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: cover !important;
}

    .banner-item p span {
        /*  color: red; */
    }

    .banner-item p {
        line-height: 1.2;
        font-size: 45px;
        font-weight: 700;
        color: #1f4895;
        opacity: 0.5;
        transform-origin: top;
        transform: rotate(50deg);
        animation: fadeRotate 1500ms ease-out forwards;
    }

    .banner-item .container {
        display: flex;
        height: 100%;
        align-items: center;
    }

    .banner-item label {
        font-weight: 600;
        font-size: 25px;
        padding-left: 5px;
    }

    .banner-item button {
        margin-top: 30px;
    }

        .banner-item button i {
            font-size: 20px;
            padding-left: 8px;
        }

@keyframes fadeRotate {
    0% {
        opacity: 0.5;
        transform: rotatex(50deg);
    }

    100% {
        opacity: 1;
        transform: rotatex(0deg);
    }
}

li.icon-item {
    display: flex;
}

    li.icon-item i {
        padding-right: 10px;
    }

span.label-text {
    flex-direction: column;
    display: flex;
}

.section-title {
    padding: 0 10px;
    border-radius: 4px;
    background: #daf4ff;
    position: relative;
    letter-spacing: 1.1px;
    width: fit-content !important;
    color: #000000;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -1px;
}

.container h2 {
    line-height: 1.2;
    color: #002261;
    font-size: 40px;
    font-weight: 700;
}

.section-title.t-white h2 {
    color: white;
}

.about-section {
    height: 600px;
}

    .about-section img {
        height:300px;
        border-radius: 20px;
    }

    .about-section .btn {
        width:fit-content;
        margin-top: 30px;
        background: red;
    }

    .about-section button i {
        font-size: 20px;
        padding-left: 8px;
    }

    .about-section .conatiner {
        padding: 80px 100px;
        margin: 0;
    }

    .about-section h2 {
        line-height: 1.2;
        color: #002261;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .about-section p {
        color: #636363;
        font-size: 16px;
        font-weight: 400;
    }

    .about-section .left {
        padding-right: 80px;
        position: relative;
        display: flex;
        justify-content: end;
        align-items: end;
    }

        .about-section .left .exp-year {
            right: 10px;
            position: absolute;
            bottom: 0px;
            border: 12px solid white;
            border-radius: 30px;
            width: 145px;
            height: 145px;
            background-color: #012262;
            transform: rotate(45deg);
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .about-section .left .exp-year span {
                text-align: center;
                transform: rotate(-45deg);
                color: white;
                font-size: 16px;
                font-weight: 600;
            }

                .about-section .left .exp-year span b {
                    font-size: 35px;
                }

    .about-section .right {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.client-sections img {
    border: var(--theme-border);
    /*  border: 1px solid #dfdfdf; */
    /* background: grey; */
}

.services-section {
    background: var(--theme-bg);
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

    .services-section .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 0;
    }

.video-section::before {
    background-repeat: no-repeat !important;
    display: block;
    content: "";
    background-image: url('../assets/images/dna.png');
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.15;
}

.video-section {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background: #001946;
    width: 100%;
}

    .video-section .left {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .video-section .right {
        display: flex;
        justify-content: end;
        align-items: center;
    }

        .video-section .right i.fa.fa-play-circle {
            position: relative;
            font-size: 70px;
            color: white;
        }

.play-button-wrap {
    border-radius: 50px;
    background: #00000061;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-section h2 {
    line-height: 1.2;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

    .video-section p {
        color: white;
        font-size: 16px;
        font-weight: 400;
    }

.counter-section {
    height: 600px;
    position: relative;
    background: url("assets/images/bg-1.png");
    background-size: cover;
    background-attachment: fixed;
    background: #001946;
    width: 100%;
}

    /*  .counter-section .section-title {
        color: #4788ff;
    } */

    .counter-section .left {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .counter-section h2 {
        line-height: 1.2;
        color: white;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .counter-section p {
        color: white;
        font-size: 16px;
        font-weight: 400;
    }

    .counter-section img {
        height: 350px;
    }

    .counter-section .conatiner {
        padding: 80px 100px;
        margin: 0;
    }



.counter-num {
            font-weight: 700;
            font-size: 20px;
        }
.dynamic-number {
    font-size: 40px;
}
        .counter-section .counters .couter-item label {
            font-size: 13px;
            line-height: 1.2;
            text-align: center;
            font-weight: 500;
        }

    .counter-section::before {
        background-repeat: no-repeat !important;
        display: block;
        content: "";
        background-image: url('../assets/images/dna.png');
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        background-size: cover;
        background-attachment: fixed;
        opacity: 0.15;
    }

.location-section.page-section {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    background: #e9f3f9 b5;
    display: flex;
    justify-content: center;
}

button.btn.btn-outline-primary {
    font-size: 14px;
}

.location-section.page-section .locations {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/*.location-section.page-section .locations .location-item {
            transition: all 0.3s ease;
            padding: 15px 0;
            width: 150px;
            height: 150px;
            border: 1px solid #bbb;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .location-section.page-section .locations .location-item label {
                text-align: center;
                font-size: 15px;
                font-weight: 500;
                margin-top: 10px;
            }

            .location-section.page-section .locations .location-item img {
                height: 45px;
            }

            .location-section.page-section .locations .location-item:hover {
                cursor: pointer;
                background: #ff5656;
                border: none !important;
            }

                .location-section.page-section .locations .location-item:hover img {
                    filter: invert(1);
                }

                .location-section.page-section .locations .location-item:hover label {
                    color: #fff;
                }*/

.location-section.page-section .right .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .location-section.page-section .right .container .location-title {
        font-size: 20px;
        font-weight: 700;
        align-items: center;
        text-align: center;
        line-height: 1;
        margin-bottom: 25px;
    }

    .location-section.page-section .right .container img {
        margin-bottom: 10px;
        height: 280px;
        border-radius: 0px;
    }

    .location-section.page-section .right .container .icon-item i {
        color: var(--theme-primary-md);
        font-size: 15px;
    }

    .location-section.page-section .right .container .icon-item .label-text {
        color: black;
        font-weight: 400;
        font-size: 14px;
        display: inline-block;
        margin-bottom: 0.5rem;
    }

/*.location-item.active img {
    filter: invert(1);
}

.location-item.active label {
    color: #fff;
}

.location-item.active {
    background: #ff5656;
    border: none !important;
}

.page-section .conatiner {
    padding: 80px 100px;
    margin: 0;
}*/

.slide-fade-left {
    animation: slideFadeInLeft 1s ease-out forwards;
}

.slide-fade-right {
    animation: slideFadeInRight 1s ease-out forwards;
}

.slide-fade-up {
    animation: slideFadeInUp 1s ease-out forwards;
}

.pulse {
    animation: pulse 1500ms ease-out forwards infinite;
}

i.fa.fa-volume-control-phone {
    transform: rotate(-40deg) translate(-1px, -2px);
}

@@keyframes slideFadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@@keyframes slideFadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@@keyframes slideFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

#myBtn {
    width: 45px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #555 94;
    color: white;
    cursor: pointer;
    padding: 11px;
    border-radius: 34px;
    height: 45px;
    justify-content: center;
    align-items: center;
}

    #myBtn:hover {
        background-color: #333;
    }

.fade-in {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.5s;
}

@@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.quick-service-section.page-section.bottom {
    background: white !important;
    padding: 60px 0;
}
/*
    .quick-service-section.page-section.bottom .service-item {
        border: 1px solid grey;
    }

        .quick-service-section.page-section.bottom .service-item .svg-icon {
            filter: none !important;
        }

        .quick-service-section.page-section.bottom .service-item label {
            color: black !important;
        }
*/

.header-middle {
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.icon-box {
    display: flex;
    gap: 13px;
    align-items: center;
    justify-content: center;
}

    .icon-box img {
        height: 40px;
    }

    .icon-box .icon-text {
        gap: 11px;
        display: flex;
        flex-direction: row;
    }



@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        width: 220px;
        height: 220px;
        opacity: 0;
        /* Fully faded */
        transform: translate(-50%, -50%) scale(1);
    }
}

.play-button {
    margin: 0 30px 0 15px;
    background-image: url(../assets/images/video-section.jpg);
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    /* padding: 20px 40px; */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    /* overflow: hidden; */
    border-radius: 11px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .play-button img {
        transition: transform 0.1s ease-in-out;
        height: 70px;
    }

    .play-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: white;
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
        transition: none;
        z-index: 0;
        animation: ripple 1500ms ease-out infinite;
    }

.service-item::before {
    z-index: 0;
    transform: translate(-50%, -50%);
    top: 50%;
    border-radius: 43px;
    width: 65px;
    position: absolute;
    display: block;
    content: "";
    height: 65px;
    background: #0014ff14;
    left: 50%;
    opacity: 0;
}


/*----services ------------*/
.service-2 .bg-img {
    display: none;
}

.service-2 .name {
    height: inherit !important;
}

.service-2 .icon {
    top: 45% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.service-2 .container .services .services-item .name label {
    margin-bottom: 50px;
}

/*------recent posts-----*/
.post-section {
    background: var( --theme-bg);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

    .post-section .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

.recent-posts {
    gap: 22px;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.post-section .recent-post-item {
    box-shadow: var(--theme-box-shadow);
    width: 275px;
    height: 265px;
    transition: height 0.4s ease, background-color 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    background: white;
    transition: 0.25s ease;
}


span.publishe-date {
    text-align:center;
    font-size: 14px;
    border: 3px solid white;
    right: 15px;
    bottom: -30px;
    position: absolute;
    display: block;
    width: 55px;
    background: #001946;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.post-section .recent-post-item .post-img {
    position: relative;
    background-repeat: no-repeat !IMPORTANT;
    height: 50%;
    background-position: center !important;
    background-size: cover !important;
}

.read-more {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #0064ff;
}

label.post-desc {
}

.recent-post-item .post-details {
    display: flex;
    padding: 15px 10px;
    height: 40%;
    flex-direction: column;
}

    .recent-post-item .post-details .post-categ {
        text-transform: uppercase;
        margin: 8px 0;
        font-size: 14px;
        font-weight: 600;
        color: #c9c9c9;
    }

    .recent-post-item .post-details .post-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        width: 100%;
        line-height: 1.5;
        font-weight: 600;
        font-size: 14px;
        color: #001946;
        text-overflow: ellipsis;
        height: calc(1.5em* 2);
        background: #ffffff;
        /* overflow: hidden; */
        -webkit-box-orient: vertical;
    }

    .recent-post-item .post-details .post-desc {
        font-size: 14px;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        color: grey;
        height: 35px;
        margin: 0;
    }

.expanded-item {
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.recent-post-item:hover .expanded-item {
    opacity: 1;
    transform: translateY(10px);
}

.recent-post-item .post-details .post-data {
    background: white;
    margin: 0;
    gap: 20px;
    display: flex;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    color: #8f90a3;
}

.recent-post-item .post-details .publisher {
    position: relative;
}

    .recent-post-item .post-details .publisher::after {
        top: 3px;
        right: -8px;
        position: absolute;
        content: "";
        display: block;
        height: 16px;
        width: 2px;
        background: #d7d7d7;
    }

.post-section .recent-post-item:hover {
    height: 400px;
    cursor: pointer;
}


/*------insta section---------*/

.insta-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

    .insta-section .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9;
    }

.insta-posts {
    gap: 24px;
    padding: 40px 0;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

    .insta-posts .insta-posts-items {
        border-radius: 0px;
        height: 275px;
        overflow: hidden;
    }

        .insta-posts .insta-posts-items img {
            height: inherit;
        }

.insta-section::before {
    background-repeat: no-repeat !important;
    display: none;
    content: "";
    background-image: url('../assets/images/bg-3.jpg');
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.55;
}

.insta-posts-items:hover {
    cursor: pointer;
}

.services-section .container .services .services-item .name label {
    color: black;
    margin-bottom: 25px;
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 3px;
}

.owl-dot {
    border-radius: 10px;
    margin: 1px;
    width: 8px;
    background: #d7d7d7 !important;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    height: 8px;
}

    .owl-dot.active {
        background: black !important;
    }

.client-sections {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

    .client-sections .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9;
    }


        .client-sections .container .owl-carousel {
            margin-top: 40px;
        }


    .client-sections .owl-item img {
        width: 200px !important;
    }



/*   .icon-container {
    height:20px;
    width:20px;
    }
 */
.icon-container i {
    font-size: 12px;
}






.page-section .conatiner {
    padding: 0px;
}

.quick-service-section.page-section {
    padding: 40px 0;
}
.quick-service-section.page-section.bottom {
    padding: 0 0 40px 0;
}

.page-section {
    padding: 40px 0;
}

.about-section {
    height: auto;
}

    .about-section .left {
        padding-right: 0px;
        justify-content: start;
    }

    .about-section h2 {
        line-height: 1.2;
    }

.counter-section {
    height: auto;
}

    .counter-section .counters {
        justify-content: end;
        display: flex;
        flex-wrap: wrap;
      
    }

    .counter-section .left {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

/*.location-section.page-section .locations {
    width: inherit;
    padding-top: 32px;
    justify-content: start;
}*/

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 175px;
    transition: .25s ease;
    box-shadow: 0 4px 25px #8080802b;
    border-radius: 5px;
    border: var(--theme-border);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.location-item.active {
    background:var(--theme-primary);
}
    .location-item.active .branch-name {
        color: white;
    }
    .location-item.active .unit-name {
        color: white;
    }
.location-item:hover {
    box-shadow: none;
    cursor: pointer;
}

.location-section .left {
    justify-content: start;
    flex-direction: column;
    align-items: start;
    display: flex;
}

.location-item img {
    height: 35px;
}


.unit-name {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
}
/*  .location-icon img{
        filter: sepia(100) saturate(1000%) hue-rotate(200deg);
    } */
.branch-name {
    color: #002261;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.location-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.branch-details.row {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.branch-details-left {
    padding: 0;
    padding-right: 10px;
    width: 50%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.branch-img {
    background-size: cover;
    height: 271px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
}

.branch-details-right {
    padding: 0 !important;
    width: 50%;
    height: 152px;
    background: white;
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.iframe-wrapper{
    height:1060px;
}
.services {
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.w-20 {
    width: 20%;
    padding: 0 12px;
}

.services-item {
    box-shadow: 0 10px 30px #a2b6ff94;
    text-align: center;
    position: relative;
    padding: 30px 0px 30px 0px;
    border-radius: 5px;
    width: 100%;
    transition: 0.5s ease;
    min-height: 185px;
    margin-bottom: 30px;
    background: white;
}


    .services-item:hover {
        cursor: pointer;
    }


        .services-item:hover .service-name {
            transform: translate(0px, 10px);
            color: #000000;
        }

        .services-item:hover .services-item-img {
            transform: translate(0px, 10px);
            color: #000000;
        }

        .services-item:hover .svg-icon {
            animation: pulse 1200ms ease-out forwards infinite;
        }

    /*  .services-item:hover .service-button {
                background: white;
                color:black;
                border: 1px solid #d3d3d3;
            } */

    .services-item .icon {
        padding: 10px;
        margin: 0 auto;
        display: flex;
        border-radius: 70px;
        width: 80px;
        height: 80px;
        background: #f7f7f7;
        justify-content: center;
        align-items: center;
    }

        .services-item .icon .svg-icon {
            height: 50px;
        }



    .services-item .service-name {
        position: relative;
        transition: all 0.5s ease;
        font-size: 15px;
        margin: 0 auto;
        width: 100%;
        float: left;
        font-weight: 600;
        text-transform: uppercase;
        text-transform: capitalize;
        padding: 15px 0;
        color: #002261;
    }

        .services-item .service-name::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            margin: 0px auto;
            background-color: #d3d3d3;
            width: 60px;
            height: 1px;
            bottom: 0px;
        }

.services-item-img {
    height: 70px;
    transition: 0.5s ease;
}

.service-button {
    display: none;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    transition: all 0.5s ease;
    bottom: -15px;
    border: 1px solid #d3d3d3;
    ;
    width: 70px;
    padding: 3px;
    border-radius: 50px;
    background-color: white;
}

.view-all {
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    height: 100%;
    font-size: 18px;
    color: #1b61ff;
    justify-content: center;
    align-items: center;
    width: 150px;
}

.quick-service-section {
    display: flex;
    padding: 25px 100px;
    justify-content: center;
    padding: 40px 100px;
}

    .quick-service-section .row {
        justify-content: center;
        /*gap: 24px;*/
    }

#loading {
    width: 40px;
    height: 40px;
    border: 4px solid #d7d7d7;
    border-top: 4px solid #ff0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}
#loading_wrapper{
    display:none;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.location-section.page-section .right .container {
    display: flex;
    flex-direction: column;
    align-items: start;
}

ul.icon-list {
    padding-left: 0px;
}



.service-item::before {
    z-index: -1;
    transform: translate(-50%, -50%);
    top: 40%;
    border-radius: 43px;
    width: 65px;
    position: absolute;
    display: block;
    content: "";
    height: 65px;
    background: #9595951a;
    left: 58%;
    opacity: 0;
    transition: 0.4s ease;
}

.service-item:hover {
    cursor: pointer;
    box-shadow: none;
}

    .service-item:hover .svg-icon {
        width: 50px;
    }

    .service-item:hover::before {
        opacity: 1;
    }

.testimonial-item {
    box-shadow: var(--theme-box-shadow);
    margin: 10px;
    padding: 20px;
    background: white;
}
.notification {
    margin: 0 auto;
    width: 300px;
    height: 300px;
    background: #3368c6d1;
    color: #ffffff;
    padding: 10px;
    padding-top: 34px;
    overflow: hidden;
    font-size: 12px;
    line-height: 2;
}

.notification-section {
    position: relative;
}

img.pin {
    display: none;
    top: -15px;
    z-index: 99;
    position: absolute;
    margin: 0 auto;
    height: 35px;
    left: 50%;
    transform: translate(-50%);
}

#announcement {
    height: 100%;
}

@@media (min-width: 1200px) {
    .container {
        max-width: 1250px;
    }
}

svg#Layer_1 path {
    stroke: #243ffa;
    fill: #243ffa;
}

svg path {
    stroke: #243ffa;
    fill: #243ffa;
}

/* heath package start */
.offer-percentage {
    padding: 15px;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    border: 5px solid white;
    right: 15px;
    bottom: -30px;
    position: absolute;
    display: block;
    width: 75px;
    background: red;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.package-title {
   /* text-align: start;*/
    margin: 20px 0 10px 0;
    line-height: 1.2;
    font-weight: 600;
    font-size: 14px;
    color: #001946;
    display: flex;
    justify-content: center;
}

.price {
    justify-content: space-between;
    align-items: start;
    display: flex;
    flex-direction: row;
}

    .price h3 {
        font-size: 18px;
        font-weight: 800;
        margin: 0;
        color: #d3d3d3;
    }

.offer-price {
    color: red !important;
}
/* heath package end */

/* --------footer -----------*/
footer {
    background-color: #1e2641;
    width: 100%;
}
footer i.fa.fa-whatsapp {
    color: #00d11c;
    font-size: 16px;
}
    footer li.icon-item i {
        color: #0072ec;
    }
    footer .footer-bottom {
        padding: 17px 0;
        display: flex;
        background: #14192c;
        /* height: 50px;
         */
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        footer .footer-bottom label {
            font-weight: 600;
            font-size: 13px;
            color: white;
            display: inline-block;
            margin-bottom: 0.5rem;
            margin: 0;
        }

@@media (max-width: 780px) {
    footer {
        margin: 40px auto;
    }
}

footer .footer-about-us {
    padding: 35px 0;
    display: flex;
    height: 100%;
    width: 100%;
    background: #1f4895;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(45deg, #1a3d7e, #1f4895);
    padding-bottom: 10px;
}

    footer .footer-about-us #logo {
        height: 87px;
    }

    footer .footer-about-us label {
        font-size: 14px;
    }

    footer .footer-about-us .company-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
        position: relative;
    }

        footer .footer-about-us .company-logo::after {
            content: "";
            display: block;
            color: white;
            background: white;
            width: 79%;
            height: 1px;
            position: absolute;
            bottom: 0;
        }

    footer .footer-about-us ul {
        list-style: none;
        padding-left: 20px;
    }

        footer .footer-about-us ul li {
            padding: 5px 0px;
        }

        footer .footer-about-us ul .list-icon i {
            padding-right: 10px;
        }

    footer .footer-about-us .icon-container {
        border: 1px solid;
    }

footer .footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
}

@@media (max-width: 780px) {
    footer .footer-container {
        flex-direction: column;
    }
}

footer .footer-container .footer-section .inner-section {
    padding: 30px 0;
}

@@media (max-width: 960px) {
    footer .footer-container .footer-section {
        margin: 0 30px;
    }
}

footer .footer-container .footer-section h3 {
    color: white;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 20px;
}

footer .footer-container .footer-section ul {
    list-style: none;
    padding-left: 0px;
}

    footer .footer-container .footer-section ul li {
        color: white;
        margin-bottom: 0px;
        cursor: pointer;
        font-size: 14px;
        padding: 5px 0;
        line-height: 1.1;
    }

footer .footer-container .newsletter {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

    footer .footer-container .newsletter h3 {
        border-bottom: 1px solid white;
        color: white;
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 8px;
    }

    footer .footer-container .newsletter form {
        display: flex;
        gap: 10px;
        margin-bottom: 50px;
    }

@@media (max-width: 1150px) {
    footer .footer-container .newsletter form {
        flex-direction: column;
    }
}

footer .footer-container .newsletter form input[type="email"] {
    max-width: 224px;
    width: 100%;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 10px;
    border: 2px solid #3a456a;
    border-radius: 5px;
    background: #1e2641;
    color: #fff;
    outline: none;
    height: 51px;
}

@@media (max-width: 780px) {
    footer .footer-container .newsletter form input[type="email"] {
        max-width: unset;
    }
}

footer .footer-container .newsletter form input[type="email"]::placeholder {
    color: #fff;
}

footer .footer-container .newsletter form button {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 0 10px;
    height: 51px;
    background-color: #f1f2fc;
    color: #1e2641;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer .footer-container .newsletter h4 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}

footer .footer-container .newsletter .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

    footer .footer-container .newsletter .social-icons a, footer .footer-container .newsletter .social-icons a:visited {
        color: #fff;
        font-size: 20px;
        text-decoration: none;
    }

        footer .footer-container .newsletter .social-icons a .fa-facebook-f, footer .footer-container .newsletter .social-icons a:visited .fa-facebook-f, footer .footer-container .newsletter .social-icons a .fa-twitter, footer .footer-container .newsletter .social-icons a:visited .fa-twitter, footer .footer-container .newsletter .social-icons a .fa-instagram, footer .footer-container .newsletter .social-icons a:visited .fa-instagram {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 3px;
            height: 46px;
            width: 46px;
        }

        footer .footer-container .newsletter .social-icons a .fa-facebook-f, footer .footer-container .newsletter .social-icons a:visited .fa-facebook-f {
            background-color: #4c6ea7;
        }

        footer .footer-container .newsletter .social-icons a .fa-twitter, footer .footer-container .newsletter .social-icons a:visited .fa-twitter {
            background-color: #4297c4;
        }

        footer .footer-container .newsletter .social-icons a .fa-instagram, footer .footer-container .newsletter .social-icons a:visited .fa-instagram {
            background: linear-gradient(45deg, #ffb73d 0%, #c47067 40%, #9d23e4 100%);
        }



/* new header */
.call-text i {
    padding-right: 5px;
    font-size: 14px;
    color: #0043ff;
}

.logo-bar {
    height: 85px;
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.mid-bar {
    position: relative;
    background: white;
}

.icon-box {
    flex-direction: column;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.mid-bar .fa-whatsapp {
    color: #00c300 !important;
}

.call-text {
    margin-bottom: 0px;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
}

.header-middle .icon-text:hover {
    border: 1px solid #0043ff;
    background: #0043ff;
    color: white;
    cursor: pointer;
}

.header-middle .icon-text {
    transition: 0.3s ease;
    width: 110px;
    border: 1px solid #11294f;
    font-weight: 600;
    font-size: 14px;
    color: #0043ff;
    padding: 7px 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
}

.icon-text.box-whatsapp:hover {
    background: var(--theme-whatsapp);
    border: 1px solid var(--theme-whatsapp);
}

/* Container to hold the flip animation */

.package-item {
    background-color: transparent;
    width: 275px !important;
    height: 325px;
    perspective: 1000px;
}

.inner-wrap {
    position: relative;
    width: 100%;
  
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}


.package-item:hover .inner-wrap {
    transform: rotateY(180deg);
}


.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    top: 0;
}



.back {
    background: white;
    transform: rotateY(180deg); /* Pre-rotate back side */
}

.footer-section {
    background-color: #f5f5f5;
    color: #a0a0a0;
}

.footer-widget {
    display: flex;
    justify-content: center;
    padding: 4.15em 0 2.65em;
    flex-direction: column;
    align-items: center;
}
    .footer-widget h4 {
        font-family: "Montserrat", sans-serif;
        line-height: 1.35em;
        color: #414141;
        text-align: left;
        font-size: 1.15em;
        font-weight: 700;
        letter-spacing: -1px;
    }
.container.app-section {
    margin-top: 35px;
    width: 70%;
    border-radius: 10px;
    border: var(--theme-border);
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
}

.app-section .playstore-logo {
    height: 45px;
}

.app-section label {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    color: var(--theme-dark);
}

.footer-copywrite-section {
    color: white;
    background: var(--theme-dark);
    display: flex;
    padding: 5px 0;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--theme-dark);
    justify-content: center;
}

h5 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.35em;
    color: #414141;
    text-align: left;
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: -1px;
}

.footer-section .icon-container i {
    color: white;
    font-size: 13px;
}

.recent-post li {
    line-height: 1;
    margin-bottom: 10px;
}

.footer-section li {
    line-height: 1.3;
    font-weight: 500;
    font-size: 13px;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.footer-section li a{
    color: #4a4a4a;
}

    .footer-section li a:hover{
        color: red;
    }
.footer-section ul {
    padding-left: 0;
    list-style: none;
}


#instagram-posts {
    justify-content: space-between;
    display: flex;
}

video {
    height: 300px;
}

.post {
    width: 23%;
    height: 300px;
    overflow: hidden;
}

.back {
    background: linear-gradient(45deg, #fff2f2, #eafbff);
    transform: rotateY(180deg);
}

.package-test-details {
    height: 100%;
    width: 100%;
    padding:10px;
    border: 1px solid #1eacef;
}

    .package-test-details ul {
        list-style:none;
        padding: 0 18px;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        padding-left:30px;
    }

    .package-test-details li {
        position: relative;
        font-weight: 600;
        font-size: 14px;
        line-height:2;
    }
        .package-test-details li::before {
            top: 6px;
            /* transform: translate(0px, -50%); */
            width: 15px;
            height: 15px;
            content: "";
            color: green;
            position: absolute;
            left: -1.5rem;
            font-size: 14px;
            line-height: 1;
            background: url(/assets/icons/check-blue.png);
            background-position: center;
            background-size: contain;
        }


    .package-test-details ::marker {
        font-size: 20px;
        color: #195eff;
    }

    .package-test-details label {
        position: relative;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

        .package-test-details label::after {
            bottom: -5px;
            content: "";
            position: absolute;
            display: block;
            height: 1px;
            width: 100%;
            left: 0;
            border-bottom: 1px solid #000000;
        }

        .package-test-details .read-more{
            position:absolute;
            left:50%;
            bottom:20px;
            transform:translate(-50%, 0)
        }

.more-items {
    font-weight: 600;
}


/*-----------kolkata page---------*/
.tab {
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    /* flex-direction: row; */
    /* justify-content: center; */
}

    .tab button {
        position: relative;
        font-family: "Montserrat", sans-serif !important;
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 5px 16px;
        transition: 0.3s;
        font-size: 20px;
        font-weight: 600;
    }

.tablinks::before {
    position: absolute;
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    background: red;
    left: 50%;
    bottom: 0px;
    transition: 0.5s ease;
    transform: translate(-50%, 0px);
}

.tablinks:hover::before {
    width: 50px;
    height: 2px;
}


.tab button.active::before {
    width: 50px;
    height: 2px;
}

.tabcontent {
    display: none;
    justify-content: start;
    gap: 24px;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 35px;
}

    .tabcontent img {
        box-shadow: 0 5px 29px #cfcfcfad;
        height: 249px;
        z-index: 9;
        position: relative;
        animation: scaleUp .8s ease;
    }

    .tabcontent.show img {
        opacity: 1; /* Show images when tab is active */
        transform: scale(1); /* Scale the image to its original size */
    }

@@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}




/*--- floating buttons---*/
#floating_btns.hidden {
    right: -100%;
}


.floating-buttons {
    display: flex;
    right: 14px;
    z-index: 1016;
    position: fixed;
    bottom: 15px;
    flex-direction: column;
    gap: 7px;
}
    .floating-buttons .btn {
        box-shadow: 0 4px 5px #0000006e;
        padding: 8px 16px;
        border-radius: 8px;
        font-weight: 600;
    }
#modal_Appointment {
    z-index: 9999;
    margin-top: 1%;
}

    #modal_Appointment h5 {
        font-size: 15px;
        font-weight: 500;
        color: white;
        letter-spacing: 0.2px;
    }

    #modal_Appointment label {
        margin-bottom: 0px;
        font-size: 14px;
        font-weight: 500;
    }

    #modal_Appointment .btn {
        font-size: 14px;
        padding: 5px 10px;
        font-weight: 400;
    }

    #modal_Appointment .form-control {
        line-height: 1.2;
    }

    #modal_Appointment .form-group {
        margin-bottom: 10px;
    }

    #modal_Appointment .form-control {
        border: 1px solid #ebebeb;
    }

.phone-otp {
    display: flex;
    gap: 10px;
}

#modal_Appointment button.btn.send {
    background: #80b2ff;
}


#modal_Appointment .modal-content {
    box-shadow: 0 10px 10px #80808078;
    border: none;
    position: absolute !important;
    right: 0;
    border-radius: 13px;
    width: 330px;
}

#modal_Appointment .modal-dialog {
    position: absolute;
    right: 13px;
    top: 90px;
}

#modal_Appointment .modal-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #80b2ff;
    padding: 10px;
}

#modal_Appointment .modal-footer {
    border: none;
    padding: 5px 5px;
}

.f-check {
    margin: 0px 0 6px 6px;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.f-check label {
    font-size: 12px !important;
}

span.mandetory-flag {
    padding-left: 3px;
    color: red;
    font-weight: 500;
}

.send {
    color: white;
    background: #002261;
}

button.btn.send {
    color: white;
}


.callback-form {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 320px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 999999;
}

    .callback-form .f-check {
        display: flex;
        justify-content: space-between;
    }
.form-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.callback-form .form-header {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    color: white;
    background: #84b4ff;
}
.callback-form .form-group {
    margin-bottom: 10px;
}
.callback-form .form-body, .form-footer, .form-header {
    padding: 10px;
}
.callback-form .form-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/*---meet out team----*/

.teams {
    gap: 30px 46px;
    display: flex;
    flex-wrap: wrap;
}
.team-item {
    border: 1px solid black;
}
.team-item h3 {
    margin: 0;
    padding: 5px;
}

.location-filter {
    display: flex;
    position: relative;
    max-width: 110px;
    border-radius: 5px;
    color: #3096ff;
    background: #edf7ff;
    padding: 3px 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
    justify-content: space-between;
}
.filter {
    filter: invert(0.5) sepia(1) saturate(30) hue-rotate(200deg);
    padding-right: 5px;
    height: 12px;
}

.details .btn {
    transition: 0.5s ease;
    visibility: hidden;
}

.details:hover .btn {
    visibility: visible;
}
.social-icon-list li {
    margin: 0;
}

/*---blog -index---*/

ol.breadcrumb {
    background: #001946;
    color: white;
    justify-content: center;
    gap: 8px;
    margin: 0;
}
    ol.breadcrumb li {
        position: relative;
        padding-left: 15px;
    }
        ol.breadcrumb li:not(:first-child)::after {
            position: absolute;
            content: "››";
            display: block;
            top: 0;
            left: 0;
        }
    ol.breadcrumb a {
        font-size: 18px;
        color: white;
        font-weight: 600;
    }
        ol.breadcrumb a:hover {
            color: red;
        }

/*---single blog---*/
.container h1 {
    line-height: 1.2;
    color: #002261;
    font-size: 40px;
    font-weight: 700;
}
/*.blog-image-box {
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: space-between;
}*/

.blog-image {
    margin-right: 20px;
    float: left;
    border-radius: 10px;
    height: 300px;
}
    .blog-image.float-right {
        margin-left: 20px;
        float: right !important;
    }

.blog-paragraph p {
    font-size: 18px;
}

.blog-paragraph h2, h3 {
    margin-top: 40px;
    clear: left;
}
    .blog-paragraph p br {
        content: "";
        display: block;
        margin-bottom: 23px;
    }

    /*---14-01----*/
a{
    text-decoration:none !important;
}

/*.container.row {
    margin: 0;
    margin-left: 0;
    margin-right: 0;
}*/
/*.service-item {
    box-shadow: 0 12px 30px #b9c7d5b5;
    border: 1px solid #11294f;
    position: relative;
    display: flex;
    border-radius: 20px;
    height: 150px;
    width: 150px;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.3s ease;
}*/

/*    .service-item .svg-icon {
        width: 50px;
        margin-bottom: 5px;
        transition: 0.3s ease;
    }

    .service-item label {
        margin-bottom: 30px;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        color: black;
        transition: all 0.3s ease;
    }*/
/*.quick-service-section.page-section.bottom .service-item label {
    color: #025cff !important;
}*/
/*.service-item img {
    height: 55px;
    margin-bottom: 5px;
}*/
/*.counter-section .counters .couter-item {
    padding: 15px;*/
    /* background: linear-gradient(353deg, #00000026, #002d81);
	 */
    /*border-radius: 24px;
    color: white;
    display: flex;
    width: 150px;
    height: 150px;
    align-items: center;
    flex-direction: column;
    border: 2px solid #0747bd;*/
    /* box-shadow: 2px 2px 8px #063387;
	 */
    /*justify-content: center;
}*/

.gap-custom {
    gap: 24px;
}


.content-box {
    box-shadow: 0 12px 30px #b9c7d5b5;
    border: 1px solid;
    border-color: #11294f;
    position: relative;
    display: flex;
    border-radius: 20px;
    height: 150px;
    width: 150px;
    /*background: white;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    font-size: 12px;
    /* color: black;*/
    font-weight: 600;
    gap: 5px;
    text-align: center;
    padding: 5px;
}
.quick-service-section .content-box {
    background: white;
    color: black;
}
.services .content-box {
    background: white;
    color: black;
}
.content-box h3{
    font-size:12px;
    transition: 0.3s ease;
}
    .content-box:hover {
        box-shadow: none;
    }

    .content-box:hover h3{
       margin-bottom:10px
    }
    .content-box img{
        height:55px;
    }
ol.carousel-indicators li {
    border-radius: 35px;
    height: 4px;
    width: 38px;
    margin: 3px 4px;
    cursor:pointer;
}
.counters .content-box {
    box-shadow: none;
    border: 2px solid #0747bd;
    color: white;
    border-radius: 24px;
}

.callback-form iframe {
    height: 475px;
    border: 0;
}

.floating-buttons .download-report {
    color: white;
    background: linear-gradient(304deg, #001f6e, #297ad0, #006ab3);
    background-size: 300% 300%;
    animation: gradient-animation 3s infinite linear;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s ease;
}


#openPopup {
    color: white;
    background: linear-gradient(56deg, #ff0101, #e400aa, #ff700e);
    background-size: 300% 300% !important;
    animation: gradient-animation 5s infinite linear !important;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s ease;
}
.blog-banner{
    width:100%;
}

.two-column-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Two equal-width columns */
    gap: 10px; /* Adjust spacing between columns */
    list-style-type: none;
    margin: 0;
    padding: 10px;
    color: white;
    background: #002261a1;
    /*  background:#19adf3;*/
}

    .two-column-list li {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 14px;
        position: relative;
        margin-bottom: 0px;
        padding-left: 23px;
    }

        .two-column-list li::before {
            top: 6px;
            /* transform: translate(0px, -50%); */
            width: 15px;
            height: 15px;
            content: "";
            color: green;
            position: absolute;
            left: 0;
            font-size: 14px;
            line-height: 1;
            background: url(/assets/icons/check.png);
            background-position: center;
            background-size: contain;
        }

.img-carousel .carousel-indicators {
    bottom: -33px;
}
.img-carousel ol.carousel-indicators li {
    width:8px;
    height:8px;
}
    @keyframes gradient-animation {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .call-now {
    border-radius: 22px;
    align-items: center;
    display: flex;
    font-weight: 600;
    color: white;
    background: linear-gradient(45deg, #000a7d, #0075ff);
    border: none;
    padding: 2px;
}
    .call-now span {
        border-radius: 28px;
        text-align: center;
        margin: 0;
        width: 30px;
        height: 30px;
        background: white;
        color: #005596;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        font-size: 25px;
        margin-right: 20px;
    }
.call-now:hover {
    color: white;
}

#aboutus-slider .carousel-indicators li {
    border-radius: 35px;
    height: 10px;
    width: 10px;
    margin: 3px 4px;
    cursor: pointer;
}

#aboutus-slider .carousel-indicators {
    margin-bottom: -1.5rem;
}

.web-form ::placeholder {
    color: #0d336e !important;
    font-size: 18px;
}

.web-form .form-control {
    margin-bottom: 15px;
    border-radius: 10px;
    line-height: 2;
    border: none;
    background-color: #d3ebfa;
}

.web-form {
    padding: 10px;
    padding-top:20px;
    box-shadow: 0px 2px 10px #80808040;
    background: white;
    border-radius: 10px;
}
.bg-color {
    background: var(--theme-bg);
    background: linear-gradient(182deg, var(--theme-bg), #dee9ff);
}
.lg-heading {
    text-align: center;
    line-height: 0.8 !important;
    font-size: 112px !important;
    margin-bottom: 40px;
}
.custome-txt {

    font-weight: 400;
    font-size: 17px;
    color: #434343;

}
.page-banner {
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 350px;
}
.service-form {
    max-width: 360px;
    height: auto;
}
.recent-post li {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.director-item {
    background: white;
    transition: 0.5s ease;
    border-radius: 25px;
    box-shadow: 0 15px 30px #cdcdcd7a;
    padding: 20px;
    flex-direction: column;
    display: flex;
    width: 30%;
    align-items: center;
    justify-content: center;
}
/*-----meet our doctro------*/
.doctors-item {
    position: relative;
    background: white;
    transition: all 0.5s ease;
    border-radius: 15px;
    box-shadow: 0 15px 30px #cdcdcd7a;
    padding: 20px;
    flex-direction: column;
    display: flex;
    width: 24%;
    align-items: center;
    justify-content: center;
}
.doctors-name {
    color: #002261;
    font-weight: 700;
    font-size: 16px !important;
    text-align: center;
}
.banner-section {
    position: relative;

}
.heading-wrap {
    width: 423px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.service-bg {
    height: 100%;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;

}
.team-image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 245px;
    width: 585px;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.mission-section .row {
    gap: 80px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.footer-copywrite-section p {
    margin: 0;
    color: white;
}


.slider-container {
    position: relative;
    width: 326px;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    margin:0 auto;
}

.slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.health-package-section .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Navigation Dots */
.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

    .dot.active {
        background-color: #333;
    }
.collaspe-floatingBtns {
    font-size: 23px;
    border-radius: 20px;
    display: flex;
    background: #00000078;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -48px;
    right: 2%;
    justify-content: center;
    color: white;
    display: none;
    /* align-items: center; */
}
.show_floatingBtns {
    font-size: 25px;
    color: white;
    border-radius: 10px 0px 0px 10px;
    height: 55px;
    width: 55px;
    background: red;
    position: fixed;
    right: 0px;
    bottom: 250px;
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
    transition: .5sease;
}
    /*-------responsive------*/



@media only screen and (max-width: 1920px) {
    #logo {
        height: 55px;
    }

    .logo-bar {
        height: 70px;
    }
}


@media only screen and (max-width: 600px) {
    .about-section .btn {
        margin: 0 auto;
    }

    p {
        text-align: center;
    }

    .show_floatingBtns.show {
        display: flex;
    }

    .collaspe-floatingBtns.show {
        display: flex;
    }

    #floating_btns {
        transition: .5s ease;
        right: 2%;
    }

        #floating_btns.hidden {
            right: -100%;
        }

    .branch-img {
        background-size: cover !important;
        height: 180px;
        width: 100%;
        margin-bottom: 15px;
        border-radius: 5px;
    }

    .inner-wrap {
        width: 315px !important;
    }

    .health-package-section .recent-post-item {
        width: 315px !important;
    }

    .mid-bar .company-logo {
        gap: 30px;
    }

    .mission-section .row {
        gap: 0;
    }

    #logo {
        height: 45px;
    }

    .mission-section::before {
        display: none;
    }

    .nav-item-dropdown {
        width: 365px;
    }

    .nav-item-dropdown {
        left: -120px;
    }

    .logo-bar {
        height: 140px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-left {
        padding: 10px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .header-middle {
        gap: 10px;
        padding: 10px;
    }

    .counter-section .counters {
        justify-content: center;
    }

    .services {
        justify-content: center;
    }

    .doctors-item {
        padding: 10px;
    }

    .doctors-name {
        font-size: 14px !important;
    }

    .director-item {
        width: 100%;
    }

    .post {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .banner-section h2 {
        font-size: 30px !important;
    }

    h2.dept-name {
        font-size: 25px !important;
    }

    .floating-buttons {
        bottom: 100px;
    }

    h2 {
        font-size: 33px !important;
    }

    #notice-box {
        width: 90%;
        height: 100%;
    }

    .notice-modal .modal-content {
        height: 100%;
    }

    .footer-copywrite-section {
        font-size: 12px;
    }

    .footer-section ul {
        padding-top: 10px;
    }

    .notice-modal .modal-body img {
        height: 55px;
    }

    .banner-section {
        height: auto;
    }

    .banner-item {
        height: auto;
    }

    .gap-custom {
        gap: 10px;
    }

    .content-box {
        width: 130px;
        height: 130px;
        font-size: 11px;
    }

        .content-box img {
            height: 40px;
        }

    .dynamic-number {
        font-size: 25px;
    }

    .about-section img {
        width: 95%;
        height: auto;
        border-radius: 20px;
    }

    .about-section .left .exp-year {
        display: none;
    }

    .section-title {
        margin-top: 20px;
    }

    h2 {
        line-height: 1;
        font-size: 40px !important;
    }

    .view-all {
        width: 100px;
    }

    .play-button {
        margin: 0;
        min-height: 200px;
    }

    .location-item {
        min-width: 160px;
        width: 170px;
    }

    .playstore-logo {
        height: 28px;
        cursor: pointer;
    }

    .footer-widget {
        padding-top: 0;
    }

        .footer-widget .col {
            margin-top: 20px;
        }

    .location-section.page-section .locations {
        justify-content: center;
    }

    .location-section.page-section .right {
        margin-top: 20px;
    }

    .two-column-list {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .doctors-item {
        width: 47% !important;
    }

        .doctors-item img {
            height: 126px !important;
        }

    .service-bg {
        height: 300px;
        width: 100%;
    }

    .team-image {
        height: 150px;
        width: 94vw;
    }

    .client-sections .owl-item img {
        width: 100% !important
    }

    .container h2 {
        text-align: center;
    }

    .locations {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .location-section .location-bg {
        min-height: 210px !important;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
   
        .counter-section .counters {
        justify-content: center;
    }

    #notice-box {
        transform: translate(0, -50%);
        top: 50%;
        height: fit-content;
        overflow: hidden;
        position: relative;
        width: 55%;
    }

    .about-section img {
        height: 390px;
        border-radius: 20px;
    }

    .about-section .section-title {
        margin-top: 30px;
    }

    .play-button {
        margin: 0;
        min-height: 334px;
    }

    .location-section.page-section .locations {
        padding: 30px 0;
        justify-content: space-around;
    }

    .post {
        width: 48%;
    }

    .header-middle {
        gap: 10px;
    }
}

@media only screen and (max-width: 425px) {
    .content-box {
        width: 100px;
        height: 100px;
        font-size: 10px;
    }
   

}

/* -------new floating buttons update----------*/
@media only screen and (max-width: 425px) {


    .notice-modal-collapse {
        height: 45px;
        width: 40px;
    }

        .notice-modal-collapse img {
            height: 35px;
        }

    .show_floatingBtns {
        height: 45px;
        width: 40px;
    }
    .custom-popup p {
        margin-top: 1rem;
        font-size: 1.1rem;
        font-weight: 400;
    }
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9998;
}

.custom-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 9999;
    max-width: 90%;
    width: 400px;
    text-align: center;
    max-width: 90%;
    width: 642px;
    text-align: center;
}

    .custom-popup p {
        margin-top: 1rem;
        font-size: 1.45rem;
        font-weight: 400;
    }

    .custom-popup b{
        color:red;

    }