@import url('https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');

body {
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
    font-family: 'Muli', sans-serif !important;
}
.close-ami {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 25px;
    height: 25px;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.bar {
    height: 5px;
    width: 90px;
    background: #02adee40;
    margin: 0px auto 14px;
    position: relative;
    border-radius: 30px;
}

    .bar::before {
        content: '';
        position: absolute;
        left: 0;
        top: -2.7px;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        background: #0f7aa4;
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-name: MOVE-BG;
        animation-name: MOVE-BG;
    }

@keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}

.ugfutf_tri {
    background: #0095da;
    color: #fff;
    font-size: 13px;
    padding: 5px;
    background: linear-gradient(to right, #00a6e8, #0f7aa4);
}

a.efed_tri {
    color: #fff;
}

.ffgyu_tri {
    text-align: right;
}

span.wfohu_tri {
    font-weight: 500;
    margin-right: 4px;
    font-size: 13px;
}

* {
    margin: 0;
    box-sizing: border-box;
}

:before, :after {
    box-sizing: border-box;
}

/*.container {
    max-width: 1200px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}*/
ul.menu-main {
    display: flex;
    justify-content: end;
    position: relative;
}

.v-center {
    display:flex;
    align-items: center;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}
/* header */
.header {
    display: block;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99;
    /*padding: 15px;*/
    transition: ease all .4s;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 19%);
    backdrop-filter: blur(10px);
    background: #fffffff0;
}

    .header .item-left {
        flex: 0 0 27%;
        margin: 6px 0;
        padding: 0px;
    }

    .header .logo a {
        font-size: 30px;
        color: #000000;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        padding: 0 22px 0px 0px;
    }

    .header .item-center {
        flex: 0 0 73%;
        height: 100%;
        padding: 0px;
        margin-bottom: 0;
    }

    /*.header .item-right {
        flex: 0 0 17%;
        display: flex;
        justify-content: flex-end;
    }*/

    .header .item-right a {
        text-decoration: none;
        font-size: 16px;
        color: #555555;
        display: inline-block;
        margin-left: 10px;
        transition: color 0.3s ease;
    }

    .header .menu > ul > li {
        display: inline-block;
        /*line-height: 50px;*/
        margin: 0 0px;
        position: static;
    }

        .header .menu > ul > li > a {
            font-size: 15px;
            font-weight: 600;
            color: #000000;
            position: relative;
            text-transform: capitalize;
            transition: color 0.3s ease;
            /* border-radius: 8px 5px 0 0; */
            padding: 0px 0px 0px 20px;
            height: 100%;
            display: block;
            margin-top: 6px;
        }

        .header .menu > ul > li .sub-menu {
            position: absolute;
            z-index: 500;
            background-color: #ffffff;
            /*box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3);*/
            padding: 8px 12px;
            transition: all 0.5s ease;
            margin-top: 25px;
            opacity: 0;
            visibility: hidden;
            right: 0;
            box-shadow: 0 9px 8px 0 #0000002e;
            border-top: 2px solid #049cd8;
            border-radius: 0.25rem;
            top: 53px;
            max-width: 700px;
            width: 700px;
        }

@media(min-width: 992px) {
    .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }
}

.header .menu > ul > li .sub-menu > ul > li {
    line-height: 1;
}

.header .menu > ul > li:hover > a i {
    transform: rotate(180deg);
}

.header .menu > ul > li .sub-menu > ul > li > a {
    display: inline-block;
    padding: 10px 0;
    font-size: 14px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.25s ease-in-out;
}

.header .menu > ul > li .single-column-menu {
    min-width: 230px;
    max-width: 230px;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
    line-height: 1;
    display: block;
    font-weight: 500;
    border-bottom: 1px solid #8080801c;
}

    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li:last-child {
        border-bottom: 0px solid #8080801c;
    }

    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
        padding: 10px 0;
        display: inline-block;
        font-size: 14px;
        color: #555555;
        transition: color 0.3s ease;
        transition: all 0.25s ease-in-out;
    }

.header .menu > ul > li .sub-menu.mega-menu {
    left: 63%;
    transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 {
    /*max-width: 1100px;*/
    /* width: 100%; */
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
}

    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
        flex: 0 0 50%;
        padding: 0 15px;
    }

        .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
            font-size: 16px;
            color: #ea4636;
            font-weight: 500;
            line-height: 1;
            padding: 10px 0;
        }

        .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
            text-align: center;
        }

        .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
            max-width: 100%;
            width: 100%;
            vertical-align: middle;
            margin-top: 10px;
            height: 225px;
            object-fit: cover;
        }

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover, .header .menu > ul > li .sub-menu > ul > li > a:hover {
    color: #0f7aa4;
    font-size: 15px;
}

.header .item-right a:hover,
.header .menu > ul > li:hover > a {
    /* background: #039cd9; */
    /* color: #fff; */
    /* height: 100%; */
}
/* banner section */
.banner-section {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    width: 100%;
    display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}



header.header.header_tri.fixed-header {
    top: -31px;
}

img.iuryi_tri {
    width: 100%;
}

.row.v-center.frhtjhyt_tri {
    margin: 0 auto 0;
}




/*=== banner ===*/
img.oiryhu_tri {
    width: 100%;
}

.ifojpij_tri .owl-carousel .owl-nav button.owl-prev {
    background: #000000a1;
    color: white;
    box-shadow: 2px 2px 10px 2px #8080807a;
    border: none;
    font-size: 37px;
    height: 50px;
    display: flex;
    width: 50px;
    min-width: 50px;
    position: absolute;
    left: 1%;
    top: 40%;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
}

.ifojpij_tri .owl-carousel .owl-nav button.owl-next {
    background: #000000a1;
    color: white;
    box-shadow: 2px 2px 10px 2px #8080807a;
    border: none;
    font-size: 37px;
    height: 50px;
    display: flex;
    width: 50px;
    min-width: 50px;
    position: absolute;
    right: 1%;
    top: 40%;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
}

.ifojpij_tri .owl-dots {
    position: absolute;
    bottom: 15%;
    width: 100%;
}

section.ifojpij_tri {
    position: relative;
    /*margin-top: 24px;*/
}

.ifojpij_tri .owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 3px;
    background: #fff;
    opacity: 1;
}

.ifojpij_tri .owl-theme .owl-dots .owl-dot.active span {
    width: 35px;
    background: #049cd8;
}

.ifojpij_tri .owl-theme .owl-nav {
    margin-top: 0;
}
/*====== product =========*/

img.uietf_tri {
    height: 220px;
    object-fit: contain;
}

.yufgu_tri {
    /* margin-bottom: 12px; */
    background: #ebebeb;
    padding: 10px;
}

a.hyfght_tri {
    display: inline-block;
    background: #007dc517;
    border: 1px solid #0f7aa4;
    color: #0f7aa4;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 2px;
}

.iuwdgk_tri img.uietf_tri {
    height: 150px;
    object-fit: contain;
}

.iuwdgk_tri {
    text-align: center;
    box-shadow: 0 9px 8px 0 #0000002e;
    border: 1px solid #d3d3d3;
    padding: 4px;
    background: #fff;
}

.iytfgyi_tri {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    color: #696969;
    min-height: 39px;
    margin-bottom: 10px;
}

.iuftgu_tri {
    font-size: 14px;
    color: #222121;
    font-weight: 600;
    margin-bottom: 4px;
}

.iufefgyui_tri {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0f7aa4;
}

section.productsection_tri {
    padding: 35px 0;
    background: #ffffff;
}

span.efuihi_tri {
    color: #000;
    margin-right: 10px;
}

.fygu_tri {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.iuwdfdgk_tri {
    width: 20%;
    padding: 6px;
}

.iuftgjk_tri {
    padding: 10px 8px;
}


/*====== about us ========*/

section.wdoiwyu_tri {
    background-image: url(/images/mission-vision.jpeg);
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    /* background-color: #0081c8; */
}

    section.wdoiwyu_tri:before {
        content: "";
        /* background: linear-gradient(to right, #00a6e8, #0f7aa4); */
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        /* opacity: .1; */
        background: #020202b5;
    }

.eiuftgyu_tri {
    position: relative;
}

.efygyi_tri {
    position: relative;
    /* color: #fff; */
    font-size: 13px;
    line-height: 24px;
    font-weight: 600;
}

section.wdoiwyu_tri .iufefgyui_tri {
    color: #bee7f8;
}

section.wdoiwyu_tri span.efuihi_tri {
    color: #fff;
}

.uiwfgu_tri {
    display: flex;
    flex-wrap: wrap;
}

.efygyi_tri {
    /* width: 29%; */
    padding: 15px;
    border-bottom: 1px dotted #ffffff57;
    /* border-right: 1px dotted #ffffff57; */
    box-shadow: 0 9px 8px 0 #0000002e;
    background: #ffffff;
    /* margin: 12px; */
    border-bottom: 4px solid #0aaaea;
    height: 100%;
    border-top-left-radius: 35px;
    /* border-top-right-radius: 11px; */
}

    .efygyi_tri:nth-child(3), .efygyi_tri:nth-child(6) {
        border-right: 0;
    }

    .efygyi_tri:nth-child(7), .efygyi_tri:nth-child(8), .efygyi_tri:nth-child(9) {
        border-bottom: 0;
    }

span.eefduhuj_tri {
    width: 100%;
    display: block;
}

span.eeuhuj_tri {
    background: #0f7aa42e;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #0f7aa4;
    margin-bottom: 10px;
}

.effedfygyi_tri {
    width: 25%;
    padding: 10px;
}




/*============Mission Vision Values Sections css start===============*/
.section-whyus {
    background: #f0f9ff;
    background-image: url(/images/mission-vision.jpeg);
    /* background-size: cover; */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

    .section-whyus:before {
        content: '';
        position: absolute;
        background: #000000ad;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.heading {
    font-weight: 600;
    font-size: 35px;
}

    .heading h3, .heading h2 {
        font-weight: 700;
        font-size: 35px;
    }

.section-whyus h3, .clearfix-why p {
    color: #fff;
}

.column_attr.mfn-inline-editor.clearfix {
    height: 100%;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 12px 14px rgb(0 0 0 / 10%);
    box-shadow: 0 12px 14px rgb(0 0 0 / 10%);
    background-color: #fff;
    /* text-align: center; */
    padding: 14px 14px 0px 14px;
    border-radius: 10px;
    -webkit-transition: .4s;
    transition: .4s;
}

    .column_attr.mfn-inline-editor.clearfix h4 {
        font-size: 14px;
        font-weight: 800;
    }

ul.lists {
    margin: 0 !important;
}

.lists li {
    display: inline-block;
    width: 48%;
    margin-bottom: 24px;
    padding: 12px 0px;
    margin-right: 1%;
    text-align: center;
    text-transform: capitalize;
    background: linear-gradient(to right, #00a6e8, #0f7aa4);
    color: #ffffff;
    font-weight: 600;
    border-radius: 43px;
    font-size: 14px;
    box-shadow: 1px 3px 5px #000000c9;
}
/*============Mission Vision Values Sections css end===============*/

/*============Believe Us css start===============*/
.counter-section {
    background: #edf2f8;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 34px 0;
}

.subheading {
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    padding: 0 10px;
    /*font-family: Mulish, sans-serif;*/
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 2px;
    color: #0f7aa4;
    text-transform: uppercase;
    font-style: normal;
}

    .subheading:before {
        content: "";
        position: absolute;
        bottom: 5px;
        left: 0px;
        width: 7px;
        height: 1px;
        background-color: #0f7aa4;
    }

    .subheading:after {
        content: "";
        position: absolute;
        bottom: 5px;
        right: 0px;
        width: 7px;
        height: 1px;
        background-color: #0f7aa4;
    }

.counter-section h3 {
    text-align: center;
    /*margin-bottom: 33px;*/
}

.process-flowarea {
    background: transparent url(/images/value_bg_line.png) center top / auto no-repeat scroll;
    margin-bottom: 40px;
    margin-left: -15px;
    margin-right: -15px;
    clear: both;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

ul.processlisti {
    width: 100%;
    list-style: none;
    padding-left: 0px;
}

.processlisti li {
    min-height: 1px;
    position: relative;
    padding-right: 11px;
    padding-left: 11px;
    float: left;
    width: 18%;
}

.iconbox1 {
    width: 100%;
}

.iconbox1iconimage {
    position: relative;
    z-index: 9;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 33px;
    line-height: 58px;
    height: 80px;
    width: 80px;
    border-radius: 49px;
    background: #0f7aa4;
}

    .iconbox1iconimage img {
        max-width: 53px !important;
        height: 53px !important;
        margin-top: calc((70px - 46px) / 2) !important;
    }

.contenttitle {
    color: #302c2c;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 16px;
}

.iconbox {
    text-align: left;
    background: transparent url(/images/one.png) 80% top / auto no-repeat scroll;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 30px;
}

.iconbox12 {
    text-align: left;
    background: transparent url(/images/two.png) 80% top / auto no-repeat scroll;
    width: 100%;
    margin-top: 84px;
    padding-top: 18px;
}

.iconbox13 {
    text-align: left;
    background: transparent url(/images/three.png) 80% top / auto no-repeat scroll;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 30px;
}

.iconbox14 {
    text-align: left;
    background: transparent url(/images/four.png) 80% top / auto no-repeat scroll;
    width: 100%;
    margin-top: 84px;
    padding-top: 18px;
}

.iconbox15 {
    text-align: left;
    background: transparent url(/images/five.png) 80% top / auto no-repeat scroll;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 30px;
}
/*============Believe Us css end===============*/


/*===========Media section css start================*/
.media-section-ami {
    padding: 50px 0px;
}

.djsgsjs-ami {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

h1.efhuig_tri {
    margin: 0px;
    font-weight: 400;
    text-align: left;
    color: #000;
    position: relative;
    font-size: 30px;
}

span.iw_tri {
    color: #0f7aa4;
}

/*h1.efhuig_tri:after {
    content: "";
    position: absolute;
    width: 56px;
    height: 3px;
    background: #0f7aa4;
    top: 18px;
    margin-left: 7px;
}
*/
.view-gallery {
    background: #0f7aa4;
    color: white;
    /* border-radius: 6px; */
    line-height: 23px;
    font-size: 12px;
    padding: 5px 8px 4px 10px;
}

.gallery-section {
    margin: 0px 3px;
}

.gallery-section-box {
    border: 0px solid #cdcdcd;
    position: relative;
    overflow: hidden;
    border-radius: 7px;
}

    .gallery-section-box:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9;
        background: #000;
        opacity: .1;
        transition: all .3s ease-out;
    }

    .gallery-section-box img {
        height: 324px;
        width: 100%;
        object-fit: cover;
        transition: .6s ease-in-out;
        transform: scale(1);
        border-radius: 7px;
    }

.gallery-section-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 21px 14px;
    width: 100%;
    z-index: 99;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent);
    transition: .6s ease-in-out;
    text-align: left;
}

.feijio_tri {
    display: inline-flex;
    margin: auto;
    text-align: left;
    justify-content: flex-start;
    background: #0f7aa4;
    box-shadow: 0 3px 17px 0 #fffcfc5c;
    width: auto;
    color: white;
    padding: 7px 12px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 14px;
}

.gallery-section h1 {
    color: #fff;
    text-shadow: 1px 1px #000;
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    text-align: left;
    margin-top: 14px;
}

    .gallery-section h1:before {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 3px;
        width: 100%;
        height: 1px;
    }

    .gallery-section h1:after {
        content: "";
        position: absolute;
        top: -4px;
        left: 3px;
        width: 100%;
        height: 1px;
    }

.gallery-section-box-content .explore-video-link.mt-2 {
    font-size: 13px;
    font-weight: 600;
    color: #abe7ff;
    margin-top: 11px;
}

    .gallery-section-box-content .explore-video-link.mt-2 i {
        margin-left: 3px;
        position: relative;
        top: 1px;
    }

.gallery-section:hover .gallery-section-box:before {
    background: #00000082;
    opacity: 1;
}

.gallery-section:hover .gallery-section-box img {
    transform: scale(1.2);
}

.gallery-section:hover .gallery-section-box-content {
    padding: 36px 14px;
}

.news-div {
    box-shadow: 0px 0px 20px 7px rgba(0, 0, 0, .12);
    height: 100%;
}

    .news-div h3 {
        /* background: #0d2749; */
        /*padding: 13px 10px;*/
        color: black;
        margin-bottom: 0px;
        font-size: 16px;
        margin-top: 0px;
        /* text-align: center; */
    }

.marquee-container {
    padding: 2em 1em;
    width: 100%;
    height: 335px;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    list-style-type: none;
    margin: 0;
    padding: 0;
    animation: scrollUp 10s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0%); /* Start below the container */
    }

    100% {
        transform: translateY(-100%); /* Move up above the container */
    }
}

/* Stop animation when mouse hovers */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.events li {
    border-bottom: 1px dotted #bfbfbf;
    padding-bottom: 10px;
    list-style: none;
    /*display: flex;*/
    margin-bottom: 0px;
    margin-top: 0px;
}

.marquee-content li {
    padding: 9px 0px;
    font-size: 18px;
}

.news-img img {
    border-radius: 20px;
    width: 100%;
    height: 75px;
    object-fit: cover;
}

.video_details h2 {
    font-size: 13px;
    color: #0d2749;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 2px;
}

.video_details h6 {
    margin-bottom: 3px;
    color: #e94e25;
    font-size: 12px;
    font-weight: 400;
}

.video_details p {
    font-size: 11px;
    color: #3c3636;
    font-weight: 400;
    font-style: italic;
}

.jd-content {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.dkndkdk-ami {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 11px;
}

.view-news {
    background: #0f7aa4;
    color: white;
    /* border-radius: 6px; */
    line-height: 23px;
    font-size: 10px;
    padding: 0px 6px 0px 6px;
}
/*===========Media section css end================*/


/*===========lates Activuty css start================*/
.text_section-left {
    height: 100%;
    /*align-items: center;*/
    display: flex;
}

.section_002 {
    padding: 0px 10px;
}

.img-text {
    font-size: 14px;
    color: #404040;
    margin-bottom: 0px;
}

.img-title {
    font-size: 18px;
}

section.section_02 {
    padding: 31px 0px;
}

.card {
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    padding: 12px 12px 0px 12px;
}

.body-heading-01 {
    display: flex;
    align-items: flex-start;
}

img.heading-side-img001 {
    width: 30px !important;
    margin-right: 14px;
    opacity: .2;
}

.side-green-link {
    color: #0f7aa4;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    /* margin: 49px 0px; */
}

.side-text-para {
    color: #777;
    font-size: 13px;
    margin-bottom: 10px;
}

.side-image-03 {
    transition: transform 0.3s ease;
    margin: 10px auto;
}

    .side-image-03:hover {
        transform: translateY(-5px);
    }

/*.side-green-link:hover {
    color: yellow;
}*/

.latest-activity-sec .owl-carousel .owl-nav {
    top: 50%;
    right: 0px;
}

    .latest-activity-sec .owl-carousel .owl-nav button.owl-next {
        background: linear-gradient(to right, #00a6e8, #0f7aa4) !important;
        /*border: 1px solid #ccc !important;*/
        width: 37px !important;
        height: 37px;
        font-size: 22px !important;
        font-size: 22px !important;
        color: #fff !important;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        position: relative;
        height: 37px !important;
        /* left: 24px; */
        /* margin: -6px; */
    }

        .latest-activity-sec .owl-carousel .owl-nav button.owl-next:hover {
            background: #060c0ca8 !important;
            color: #eed126 !important;
        }

    .latest-activity-sec .owl-carousel .owl-nav .owl-prev {
        background: linear-gradient(to right, #00a6e8, #0f7aa4) !important;
        /*border: 1px solid #ccc !important;*/
        height: 37px !important;
        width: 37px !important;
        font-size: 22px !important;
        color: #fff !important;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        /* right: 24px; */
        position: relative;
        /* margin: -6px; */
    }

    .latest-activity-sec .owl-carousel .owl-nav button.owl-prev:hover {
        background: #060c0ca8 !important;
        color: #eed126 !important;
    }

.image-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: flex;
}

    .image-popup card-img-top {
        max-width: 90%;
        max-height: 90%;
        align-items: center;
    }

@media (max-width: 991px) {
    .text-heading {
        font-size: 24px;
    }

    .text_section-left {
        padding: 20px 10px;
        margin: 10px;
    }
}

.margin-auto-none {
    margin: 0px 0px 14px !important;
}

.white-bar {
    background: #f7f7f78c;
}

.btn-success {
    background: linear-gradient(to right, #00a6e8, #0f7aa4);
    font-size: 15px;
    font-weight: 700;
    border: none;
    box-shadow: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 19px;
    color: white;
    font-weight: 500;
    border-radius: 25px;
}

    .btn-success:hover {
        background: linear-gradient(to right, #00a6e8, #0f7aa4);
        color: white;
    }

    .btn-success img {
        margin-left: .5rem;
        width: 22px;
        height: 22px;
        -webkit-transition: .3s ease-out;
        -moz-transition: .3s ease-out;
        transition: .3s ease-out;
    }

    .btn-success:hover img {
        -webkit-transform: rotateZ(45deg);
        -moz-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
    }

.dddka-ami-new {
    font-size: 14px;
    font-weight: 700;
}

.alaoaa-ami {
    font-size: 14px;
}

.djdbjdbbda-ami-mew {
    height: 219px;
    overflow-y: scroll;
}

    .djdbjdbbda-ami-mew::-webkit-scrollbar {
        width: 4px;
    }

    .djdbjdbbda-ami-mew::-webkit-scrollbar-thumb {
        background: linear-gradient(to right, #00a6e8, #0f7aa4);
        border-radius: 10px;
    }

.dhdaaa-ami-new {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* margin-bottom: 0px; */
    text-overflow: ellipsis;
    margin-bottom: 0px;
}

.side-image-03 .card-body {
    padding: 12px 14px 10px 14px;
}

/*===========lates Activuty css end================*/

/*===========popup css start================*/
.modalcontent_tri {
    width: 44%;
    padding: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
}

.popup_closebutton_tri {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: #0f7aa4;
    text-transform: uppercase;
    padding: 6px 17px;
    border-radius: 2px;
    color: white;
    transition: all 0.4s ease;
    border: 1px solid #0f7aa4;
}

.pageload_popup_tri {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000ad;
    z-index: 999;
    backdrop-filter: blur(4px);
}

h4.modaltitle_tri {
    font-size: 18px;
    padding: 10px;
    background: #e8f3fa;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin: 0;
    line-height: 25px;
}

.modalbody_tri {
    padding: 20px 20px;
}
.dbjdjdbaa-ami {
    position: relative;
}

.dkbdb-ami {
    position: absolute;
    cursor:pointer;
    right: 9px;
    top: 4px;
}
.djbdjbda-ami {
    height: 437px;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    object-fit: cover;
}
.pera_tri {
    line-height: 26px;
    font-size: 13px;
    margin-bottom: 12px;
}

.bold_prea_tri {
    font-weight: 600;
}

span.fdfyguy_tri {
    display: block;
}

.yguy_tri {
    color: #b10000;
    line-height: 22px;
    font-weight: 600;
}

.modalfooter_tri {
    padding: 10px;
    border-top: 1px solid #ddd;
    display: none;
}

button.popup_closebutton_tri:hover {
    background: #007dc517;
    color: #0f7aa4;
}
/*===========popup css end================*/

/*===========Contact us Saperation css start================*/

.contact-page {
    background-color: #0f7aa4;
    background-image: url('../images/contact_us_png.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 55px 0;
}

.contact-page-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-heading {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.contact-para-section {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    border-bottom: 2px solid #ffffff87;
    padding-bottom: 15px;
}

.contact-button {
    background: linear-gradient(to right, #68ff5fba, #5cd1ff, #5f6d74);
    background-size: 200% auto;
    color: #fff;
    border-radius: 6px;
    border: 1px solid white;
    font-size: 17px;
    box-shadow: 0px 0px 1px #ffffff;
    font-weight: 500;
    padding: 12px 35px;
    cursor: pointer;
    transition: background-position 0.6s ease, transform 0.3s ease;
}

    .contact-button:hover {
        background-position: right center;
        transform: scale(1.05);
    }

.contact-hover {
    position: relative;
    padding-right: 10px;
    transition: padding 0.3s ease;
}

.contact-button:hover .contact-hover {
    padding-right: 25px;
}

.contact-hover:after {
    content: '\00bb';
    position: relative;
    opacity: 0;
    right: -20px;
    transition: opacity 0.4s ease, right 0.4s ease;
}

.contact-button:hover .contact-hover:after {
    opacity: 1;
    right: 0;
}

.arrow-icon {
    margin-right: 8px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 28px;
    }

    .contact-para-section {
        font-size: 15px;
        padding: 0 15px 15px;
    }

    .contact-button {
        font-size: 15px;
        padding: 10px 28px;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 24px;
    }

    .contact-para-section {
        font-size: 14px;
    }

    .contact-button {
        font-size: 14px;
        padding: 8px 25px;
    }
}
/*===========Contact us Saperation css end================*/


/*===========Footer css Start================*/


footer {
    padding-top: 47px;
    margin: 0;
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/black-scales.png");
    /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* 🌊 Curved Top Shape */
.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #012b2f;
    border-bottom-left-radius: 100% 50%;
    border-bottom-right-radius: 100% 50%;
    z-index: 1;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.list_sec {
    padding-left: 13px;
    margin: 0;
}

.lkahs-asd-2 {
    font-size: 14px;
    padding-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    right: 18px;
    z-index: 2;
}

.lkahs-asd {
    position: relative;
}

    .lkahs-asd:after {
        font: normal normal normal 14px / 1 FontAwesome;
        content: "\f105 ";
        margin-right: 12px;
        opacity: .9;
        position: absolute;
        left: 11px;
        top: 10px;
    }

    .lkahs-asd:hover:after {
        color: #5fc9f3;
    }

    .lkahs-asd > a {
        line-height: 33px;
        display: inline-block;
        transition: color 0.2s ease;
        text-decoration: none;
        color: #fff;
        font-size: 13px;
        padding: 0 24px 4px;
    }

        .lkahs-asd > a:hover {
            color: #5fc9f3;
            transition: 0.15s;
        }

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-bottom {
    background-image: url('../images/footer_background_img.png');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.icon_img {
    width: 90px;
}

.logo_section {
    display: grid;
    grid-template-columns: 1fr 3fr 2fr auto;
    margin-bottom: 18px;
    align-items: center;
    padding-left: 42px;
}

.akjdf {
    padding-top: 24px;
}

.side_para {
    font-size: 11px;
    text-align: justify;
    color: white;
}

    .side_para .para {
        font-size: 13px;
    }

.links {
    display: flex;
    justify-content: flex-end;
    padding-right: 42px;
    flex-wrap: wrap;
}

    .links > a {
        color: white;
        padding-left: 14px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
    }

.copyright_sec {
    /* font-size: 11px; */
    line-height: 11px;
    padding: 5px 0px 10px 0px;
    text-align: right;
    background-color: #000000;
}

.copy_right {
    margin: 0 !important;
    text-align: end;
    margin-right: 34px;
    padding-bottom: 20px;
    padding-right: 35px;
}

.svg_img {
    width: 33px;
    height: 20px;
    filter: brightness(1.5);
    opacity: .2;
    margin: -7px 10px 0 0;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
    .footer-container .row {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-container .col-md-2,
    .footer-container .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }

    .akjdf {
        padding-top: 0px;
    }

    .footer-column {
        padding-left: 20px;
    }

    .logo_section {
        grid-template-columns: 1fr auto;
        text-align: left;
        padding: 0 25px;
        display: grid;
        align-items: start;
        padding-top: 20px;
    }

    .side_para {
        padding: 10px 10px 0px 0px;
        font-size: 11px;
        text-align: justify;
        width: 232px;
    }



    .links > a {
        display: inline;
        padding: 5px 10px;
    }
}

.copy_right {
    text-align: center;
    padding: 0px 0 10px;
    font-size: 13px;
    color: white;
    margin: 0;
}

}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (max-width: 576px) {
    .links > a {
        display: none;
        padding: 5px 10px;
    }
}


@media (max-width: 576px) {
    .footer-container .col-md-2,
    .footer-container .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .link {
        display: none;
    }

    .footer-container,
    .footer-column,
    .lkahs-asd-2,
    .list_sec,
    .links {
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .akjdf {
        padding-top: 0px;
    }

    .lkahs-asd > a {
        font-size: 12px;
    }

    .para {
        margin-left: 47px;
        text-align: left;
        /* padding-right: 54px; */
    }

    .lkahs-asd-2 {
        font-size: 13px;
        right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon_img {
        width: 70px;
        padding-top: 15px;
    }

    .para {
        margin-left: 47px;
        text-align: left;
        /* padding-right: 54px; */
        width: 250px;
        padding-right: 54px;
    }

    .links {
        flex-direction: row;
        gap: -3px;
        padding-left: 20px;
    }

    .copy_right {
        text-align: right;
        padding-right: 23px;
    }
}

.dudkaaop-ami {
    border-bottom: 1px solid #ffffff52;
    padding-bottom: 7px;
    padding-right: 41px;
}

.company {
    color: #5fc9f3 !important;
    font-weight: bold;
}

.credits {
    color: white;
    text-align: center;
    font-size: 13px;
}

.lkahs-asd-new > a {
    line-height: 20px;
    display: inline-block;
    transition: color 0.2s ease;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    padding: 0 10px 13px;
}

.lkahs-asd-new {
    display: flex;
    align-items: baseline;
}

    .lkahs-asd-new i {
        font-size: 12px;
    }

    .lkahs-asd-new > a:hover, .lkahs-asd-new:hover i {
        color: #5fc9f3;
        transition: 0.15s;
    }

.djugsauaa-ami {
    font-size: 14px;
}
/*===========Footer css End================*/

/*=============banner, about us , product section css start==========*/
.About_us_section {
    padding: 55px 0 75px 0;
    background-color: #fff;
    /*font-family: "Poppins", sans-serif;*/
    overflow: hidden;
}

.img_backgroung {
    /* background-image: url('../images/about_1_3.png'); */
    /* background-repeat: no-repeat; */
    /* background-position: center center; */
    /* background-size: cover; */
}

/* FLEX LAYOUT */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* LEFT SIDE IMAGE SECTION */
.about-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-container {
    display: flex;
    align-items: center;
    position: relative;
}

.main-img-box {
    position: relative;
    left: 30px;
    width: 65%;
    /* top: 80px; */
}

.side-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* LOWER ROW: SMALL IMAGE + EXPERIENCE BOX */
.lower-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    /* gap: 25px; */
    position: relative;
    top: 80px; /* slight overlap effect */
    width: 41%;
    right: 24px;
}

.small-img-box {
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
}

.side-img2 {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.experience-box {
    left: -25px;
    background: #fff;
    color: #007e2f;
    border-radius: 15px;
    text-align: center;
    padding: 30px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 65px;
}

.experience-heading {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    text-align: left;
}

.experience-para {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: black;
    text-align: left;
}

/* RIGHT SIDE CONTENT */
.about-text {
    padding-top: 25px;
}

.about-tag {
    display: flex;
    align-items: center;
    color: #0b8a47;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

    .about-tag img {
        width: 33px;
    }

.about-heading {
    font-size: 13px;
    font-weight: 800;
    color: #0f7aa4;
    text-transform: uppercase;
}

.about_heading {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    /* line-height: 34px; */
}

.about_para {
    font-size: 14px;
    /*color: #54595f;*/
    margin-bottom: 16px;
    line-height: 1.75;
}

.quote_about {
    font-size: 14px;
    color: #000;
    font-weight: 700;
    font-style: italic;
    margin: 15px 0;
    padding-left: 0;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    background: #0f7aa4;
    border: none;
    text-transform: uppercase;
    padding: 8px 17px;
    border-radius: 2px;
    color: white;
    transition: all 0.4s ease;
    border: 1px solid #0f7aa4;
}

    .btn-discover:hover {
        background: #007dc517;
        color: #0f7aa4;
    }

/* ✅ RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .main-img-box {
        position: relative;
        z-index: 2;
        left: 0;
        margin-top: 40px;
    }

    .about_heading {
        font-size: 30px;
    }

    .about_para {
        text-align: justify;
    }

    .lower-row {
        left: -17px;
        top: 40px;
        justify-content: center;
    }

    .experience-box {
        top: 20px;
        padding: 25px 35px;
    }

    .small-img-box {
        top: -106px;
        left: -1px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {

    .About_us_section {
        padding: 50px 0;
    }

    .small-img-box {
        top: 0;
        left: -14px;
        z-index: 2;
    }

    .lower-row {
        align-items: center;
        top: 0;
        gap: 0;
        left: 0;
    }

    .experience-box {
        left: -117px;
        background: #fff;
        color: #007e2f;
        border-radius: 15px;
        text-align: center;
        padding: 30px 40px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        position: relative;
        top: -40px;
    }

    .about_heading {
        font-size: 26px;
    }

    .quote_about {
        text-align: left;
    }

    .btn-discover {
        font-size: 13px;
        padding: 12px 18px;
    }
}

@media (max-width: 600px) {
    .experience-box {
        left: 0px;
        top: -40px;
    }
}
/* Small Screens */
@media (max-width: 480px) {
    .about_heading {
        font-size: 22px;
    }

    .about_para {
        font-size: 13px;
    }

    .side-img2 {
        width: 100%;
    }

    .experience-box {
        left: -23px;
        top: -10px;
    }
}

.img-container:before {
    content: "";
    position: absolute;
    right: 75px;
    top: 55px;
    width: 72%;
    height: 92%;
    border: 3px solid #c0eafb;
    border-radius: 20px;
}

/*===========banner, about us , product section css end=============*/


/*===========Why Choose Us Page css Start=============*/
.mian-banner-new {
    position: relative;
    display: flex;
    width: 100%;
    /*margin-top: 42px;*/
}

.img-wrapper {
    position: relative;
    width: 100%;
    /*height: 397px;*/
    overflow: hidden;
}

    .img-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, rgb(0 0 0 / 75%), #00000000);
    }

    .img-wrapper img {
        width: 100%;
        height: 100%;
        /*object-fit: cover;*/
    }

.dhdgddgd-ami {
    position: absolute;
    bottom: 94px;
    color: white;
    /* backdrop-filter: blur(10px); */
    /*box-shadow: 0 4px 10px #082b6129;*/
    border-radius: 5px;
    margin-left: 93px;
    /* background: #00000099; */
    padding: 25px;
    width: 440px;
}

h1.jdgjddg-ami {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 14px;
    color: #fff;
}

.djdsss-ami {
    border-left: 2px solid #ecae06;
    color: white;
    padding-left: 12px;
}

.djidgdd-ami {
    padding: 10px 15px !important;
    width: 100%;
    color: #555555;
    box-shadow: 4px 2px 3px 0 rgb(1 1 1 / 12%);
    position: absolute;
    bottom: 0px;
    /* background: #082b61; */
    backdrop-filter: blur(10px);
}

.ddddid-ani {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

    .ddddid-ani i {
        margin: 0px 5px;
    }

.ajbjbj-ami-new {
    font-size: 28px;
}

.why-choose-us-sec {
    position: relative;
    background: #edf2; /* your background color stays */
    overflow: hidden;
}

    .why-choose-us-sec::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(/images/benefits_element.png) right bottom no-repeat;
        opacity: 0.4; /* change opacity as needed */
        pointer-events: none; /* so it doesn't block clicks */
    }

.z-index-99 {
    z-index: 9;
}

.why-choose-us-sec .box {
    /*width: 48.5%;*/
    height: 261px;
    background: #fff;
    /* margin: .8rem 0; */
    border-radius: 20px;
    margin-bottom: 16px;
    padding: 16px 25px 0px 25px;
    box-shadow: 2px 11px 13px #eee;
}

    .why-choose-us-sec .box h3 {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        color: #0f7aa4;
    }

.djbdjdjd-kam {
    height: 157px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.why-choose-us-sec .box p {
    margin-bottom: 0;
    font-size: 14px;
    margin-top: 7px;
}

.djbdjdjd-kam::-webkit-scrollbar {
    width: 4px;
}

.djbdjdjd-kam::-webkit-scrollbar-thumb {
    background: #0f7aa4;
    border-radius: 10px;
}
/*===========Why Choose Us Page css End=============*/


/*==========Product css Start=======*/
.radial-bg-all {
    background-image: url(/images/texture_background.png);
    padding: 30px 0px 50px 0px;
}

.doctorInfoContainer {
    border: 1px solid #0e7ba6;
    border-radius: 15px;
    background: #fff;
    transition: .3s;
}

.flexset {
    display: flex;
    align-items: center;
}

.doctorInfoContainer .left {
    width: 35%;
    position: relative;
}

    .doctorInfoContainer .left .dcPlace {
        border-radius: 15px 0 0;
    }

    .doctorInfoContainer .left img {
        border-radius: 0 0 0 15px;
        height: 183px;
        object-fit: contain;
        width: 100%;
    }

.clinical-form.fancybox-content, .doctorInfoContainer .right {
    width: 65%;
}

.doctorInfoContainer:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 100%;
    right: 0;
    background-image: linear-gradient(to right, #00a6e8, #0f7aa4);
    border-radius: 0 15px 15px 0;
}

.right {
    position: relative;
}

.doctorInfoContainer .right h3 {
    font-weight: 600;
    font-size: 21px;
}

.doctorInfoContainer .right p {
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 0px;
}

.doctorInfoContainer .right p {
    font-size: 14px;
    margin-right: 5px;
    line-height: 26px;
    margin-bottom: 0px;
}

.border-bottom-1 {
    border-bottom: 1px solid #dbd1d1;
    font-style: italic;
    margin-bottom: 10px !important;
}

.L-Gradient:hover, .R-Gradient, .R-Gradient-notHover, .btn:hover, .homeTabs .tab-content .secondTab .btn:hover {
    background-image: linear-gradient(to right, #00a6e8, #0f7aa4);
}

.doctorInfoContainer:hover .dcPlace {
    background-image: linear-gradient(to right, #68ff5fba, #5cd1ff, #5f6d74);
}

.djdjaka-ami-anew {
    padding: 10px 0px;
    background: #ebebeb;
    border-bottom-left-radius: 15px;
}
.mt-15 {
    margin-top: 15px;
}
.scroll-div-new-ami {
    height: 159px;
    overflow-y: scroll;
    margin-right: 8px;
}
    .scroll-div-new-ami::-webkit-scrollbar {
        width: 4px;
    }

    .scroll-div-new-ami::-webkit-scrollbar-thumb {
        background: black;
        border-radius: 10px;
    }
/*==========Product css End=======*/


/*==========Business Packages css Start=======*/
.bg-white-all {
    background: white;
    padding: 2.2vw 0vw;
    border-radius: 0.63vw;
    box-shadow: 0 0.26vw 0.52vw 0 rgb(1 1 1 / 17%);
}
.dbalao-ami-new {
    background: linear-gradient(to right, #00a6e8, #0f7aa4);
    color: white;
}
    .dbalao-ami-new h3 {
        font-size: 19px;
        margin-bottom: 0px;
        color: white;
        font-weight: 700;
    }
    .jdbjda-ami {
    width: 65px;
}
em.djddaamie-ami {
    font-size: 14px;
}
.why-choose-new .box {
    height: 170px;
}
    .why-choose-new .box h3 {
        font-size: 14px;
    }
/*==========Business Packages css End=======*/

/*==========Incentive css Start=======*/
.tr-head {
    background-color: #2d57df !important;color: white !important;
}
.td-1 {
    background-color: #d5effc !important;
}
.td-2 {
    background-color: #b9e5fb !important;
}
.td-3 {
    background-color: #9eddf9 !important;
}
.td-4 {
    background-color: #9b95c9 !important;
}
.td-5 {
    background-color: #8ed8f8 !important;
}
.td-6 {
    background-color: #6dcff6 !important;
}
.td-7 {
    background-color: #d1d3d4 !important;
}
.td-8 {
    background-color: #8ed8f8 !important;
}
.td-9 {
    background-color: #6dcff6 !important;
}
.td-10 {
    background-color: #be974c !important;
}
.td-11 {
    background-color: #b9e5fb !important;
}
.td-12 {
    background-color: #9eddf9 !important;
}
.td-13 {
    background-color: #7ed3f7 !important;
}
.td-14 {
    background-color: #aba000 !important;
}
.td-15 {
    background-color: #9eddf9 !important;
}
.td-16 {
    background-color: #7ed3f7 !important;
}
.td-17 {
    background-color: #6dcff6 !important;
}
.under-cont {
    position: fixed;
    right: 17px;
    bottom: -31px;
    z-index: 9;
}

.under-cont {
}

img.img-fluid.kgjaaa-ami {
    width: 195px;
    border-radius: 20px;
    box-shadow: 0 17px 31px 0 #0000007d;
}

/*==========Incentive css end=======*/

/*==========photo gallery css Start=======*/
.gallery-image-card {
    position: relative;
    border: 7px solid #fff;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

    .gallery-image-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

.gallery-image-date {
    position: absolute;
    top: -29px;
    left: 50%;
    background: #0090d5;
    border: 2px solid #f9b703;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 14px;
    border-radius: 3px;
}



.gallery-image-col-row {
    padding: 10px 0;
}

.gallery-top-padding {
    padding-top: 40px !important;
}

gallery-image-date {
    position: absolute;
    top: -29px;
    left: 50%;
    transform: translateX(-3%);
    background: #0090d5;
    border: 3px solid #f9b703;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 14px;
    border-radius: 3px;
    white-space: nowrap;
}

.gallery-images-012 {
    object-position:top;
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 4px 4px 0px 0px;
}

.gallery-image-content {
    background: #0090d5;
    color: #fff;
    padding: 12px 5px;
}

.gallery-heading-image {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #f9b703;
}

.View-more {
    color: #d7e4ff;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    filter: brightness(1.5);
}
.zoom-icon {
    position: absolute;
    top: 50%;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 23px;
    color: white;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    transition: opacity 0.3s, background-color 0.3s;
}
.box-shadow {
    box-shadow: 4px 4px 13px 0 rgb(1 1 1 / 20%);
}

.bg-sky-blue {
    background: #bfe9fa;
}
.card-image {
    position: relative;
}
.card-image:hover .zoom-icon {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}
/*==========photo gallery css end=======*/


/*==========News media css start=======*/
.news-card {
    box-shadow: 0px 0px 20px #00000030;
    margin-bottom: 18px;
    background: white;
}

.padding-news-section-media {
    padding: 15px 0px;
}

.news-media_section-main {
   padding:0 !important;
}

.button-news-section {
    color: white;
    line-height: 23px;
    border: 1px solid rgb(12 121 163 );
    font-size: 14px;
    background: rgb(15, 122, 164);
    padding: 2px 7px;
}



.icon-span-class-img {
    color: #FFC107;
    font-size: 22px;
}

p.news-meadia-para {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}



.news-media-secion {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border: 1px solid #7ab6e5a8;
    padding: 10px;
}

.news_section-img {
    width: 100%;
    object-position: top;
    height: 153px;
    object-fit: cover;
}

.section-news-1 {
    width: 100%;
}

.section-news-2 {
    padding-left: 14px;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.icon-span-class-img {
    color: #FFC107;
    font-size: 22px;
}

.news_heading_media {
    font-size: 16px;
    font-weight: 700;
    color: rgb(12 121 163);
}

.news-meadia-para {
    font-size: 12px;
}

.button-news-section:hover {
    background: #007dc517;
    color: #0f7aa4;
    border: 1px solid rgb(12 121 163);
}

.side-image-04-detail-sec {
    padding: 10px;
    border: 1px solid #a7a7a7bd;
    margin: 10px;
}

span.icon-span-class-img {
    color: #FF9800;
}

.news-icon-detail-sec {
    font-size: 14px;
    padding-top: 10px;
}

h4.news_heading_media-detail-sec {
    font-size: 19px;
    padding-top: 10px;
    color: #0f7aa4;
}

p.news-meadia-para-detail-sec {
    font-size: 13px;
}

.main-card-new {
    position: relative;
    width: 100%;
    background: white;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    padding: 13px;
    margin-top: 10px;
}

.img_scrollsec {
    position: relative;
}

.card-img-top-detail-sec {
    height: 235px;
    object-position: top;
    object-fit: cover;
}


.img_scrollsec > .owl-nav button {
    background: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px !important;
    transition: all 0.3s ease;
}

    .img_scrollsec > .owl-nav button:hover {
        background: rgba(0, 0, 0, 0.8) !important;
    }



.img_scrollsec > .owl-next {
    position: absolute !important;
    top: 50% !important;
    left: 99% !important;
}

/*==========News media css end=======*/


/*==========Latest Activity css start=======*/
.news-media-secion-ami{display:block;height:100%;}
.dhfhdhaa-ami-new {
    padding: 14px 14px 0px 14px;
}

/*==========Latest Activity css end=======*/


/*==========Latest Scheme css start=======*/
.date_wrapper {
    text-align: center;
    line-height: 100%;
}

.date_top {
    background: #0095da !important;
    padding: 12px;
    color: #FFFFFF;
    font-size: 15px;
}

.date_bottom {
    border: 1px solid #7ab6e5a8;
    border-top: none;
    color: #000;
    font-size: 20px;
    padding: 8px;
    font-weight: 300;
    padding-bottom: 12px;
    background-color: #fff;
}

.contentAboutSchool p {
    font-size: 13px;
    text-align: justify;
}

.date_text_wrap p a {
    color: #000;
    margin-left: 20px;
    font-size: 15PX;
    font-weight: bold;
    text-decoration: none;
}

.date_text_wrap {
    display: flex;
    align-items: baseline;
    box-shadow: 0px 0px 20px #00000030;
    background: white;
    border: 1px solid #7ab6e5a8;
}
/*==========Latest Scheme css end=======*/


/*=========Education css start=======*/
.djjd-ami-new {
    color: #0f7aa4;
}
.djdjakaa-ami-new {
    color: #f11296;
}
.dhdhha-ami-aj {
    color: #1d21bd;
}
.djbdjjj-ami-new {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0px;
}
.kddkkaa-ami-new{font-size:12px;}
    .kddkkaa-ami-new .icon-span-class-img i{font-size:12px;}
.fjbfjbs-ami {
    height: 270px;
    object-fit: cover;
    width:100%;
}
/*=========Education css end=======*/

/*=========Contact Us css Start=======*/
/*.contact_us {
    background-image: url(../images/contact-bg.jpg);
    padding: 45px 0;
}*/

.text-section {
    padding-right: 0;
}

.conttact-section {
    border-radius: 6px 0 0 6px;
    height: 100%;
}

.contact-card {
    background: #fff;
    border-radius: 6px 0 0 6px;
    padding: 40px 0px 24px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.icon {
    background: #0499d4;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-icon-heading {
    margin: 0;
    font-size: 15px;
    color: #0695cd;
}

.contact-icon-para {
    margin: 3px 0 0;
    font-size: 14px;
    color: #555;
    word-break: break-word;
}

.map-section {
    height: 100%;
    padding-left: 0;
    background-color: white;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 0 6px 6px 0;
}
.contact-card {
    background: #fff;
    border-radius: 6px 0 0 6px;
    padding: 31px 0px 24px 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.icon {
    background: #0499d4;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-icon-heading {
    margin: 0;
    font-size: 15px;
    color: #0695cd;
}

.dkndkndk-ami {
    color: #555;
}

.map-section {
    height: 100%;
    padding-left: 0;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 0 6px 6px 0;
}


@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 20px;
        border-radius: 6px;
    }

    .map iframe {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon {
        margin: 0 0 10px 0;
    }
}




@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 20px;
        border-radius: 6px;
    }

    .map iframe {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon {
        margin: 0 0 10px 0;
    }
}
/*=========Contact Us css End=======*/

/*=========Environmental Responsibility css Start=======*/
.skldhf {
    padding-top: 90px;
}

.hcaiai-ami-new {
    font-size: 24px;
    line-height: 1.1;
    color: #049ad6;
}

.accounting-intro-sec {
    padding: 50px 0px;
}

.quote-box .inner-box {
    position: relative;
    padding: 18px 50px 23px 125px;
    background: #fff;
    margin-top: 28px;
}

.first-heading.font-secondary.member-prof {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1.1;
}


.quote-box .inner-box .icon-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 65px;
    height: 60px;
    line-height: 80px;
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

h6.contact-info-title.customPseudoElBg.font-secondary {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-style: italic;
    color: #096108;
    font-weight: 900;
    position: relative;
    padding-top: 13px;
}

.quote-box .inner-box p {
    font-size: 19px;
    color: #272727;
    font-style: italic;
    font-weight: 800;
    margin: 0px;
}

.quote-box .inner-box {
    border: 2px solid #00a5e8;
}

    .quote-box .inner-box .icon-box {
        background: #00608c;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.accountra-icon-ami img {
    width: 180px;
    opacity: 1;
}

.side-icon-head {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.account-book-sec-3 {
    background: linear-gradient(#2361a31a, #ffffff, #2361a31a);
    padding: 50px 0px;
}

h4.box-heading {
    font-size: 18px;
    font-weight: 600;
}

.djja-ami {
    width: 100%;
    font-size: 20px;
}

.bxbjxjj-ami {
    box-shadow: 4px 13px 51px 7px rgb(10 51 80 / 16%);
    background: white;
    padding: 12px 20px 7px 20px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #fff;
    height: 100%;
    transition: all .3s ease-in-out;
}

    .bxbjxjj-ami:hover {
        box-shadow: 0 9px 31px rgba(0, 0, 0, .5);
        background: #ecae06;
    }

.dkdn-asmi {
    font-weight: 700;
    margin: 7px 0px 0px 0px;
}

.duiap-ami {
    margin-bottom: 0px;
}

.djaio-ami {
    width: 43px;
}


.video_h {
    width: 35%;
    display: flex;
    background-attachment: fixed;
    align-items: center;
    background-image: url('../images/contact-left-bg.png') !important;
    background-position: center;
    color: #fff;
    text-align: center;
    position: relative;
}

    .video_h:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to right, rgb(0 0 0), #000000a8);
    }

.content_h {
    width: 65%;
    padding: 27px 15px;
    min-height: 629px;
    max-height: 629px;
}

.jjdliai-ami {
    position: relative;
    text-align: start;
    padding: 0px 40px;
}

.dioap-ami {
    color: white;
    margin-bottom: 0px;
    font-size: 14px;
}

.dbdidhi-ami {
    font-weight: 800;
    font-size: 31px;
    font-style: italic;
    margin-bottom: 25px;
}

.dbbdja-pwn {
    color: white;
    font-size: 26px;
    font-style: italic;
    font-weight: 700;
}

.inner-dtails-feature {
    background: #ffffff45;
    backdrop-filter: blur(10px);
    padding: 18px;
    width: 30.33%;
    margin: 0px 10px;
    border-radius: 20px;
    margin-top: 17px;
}

.core-details-para {
    text-align: justify;
    height: 113px;
    overflow-y: scroll;
}

    .core-details-para::-webkit-scrollbar {
        width: 2px;
    }

    .core-details-para p {
        line-height: 22px;
        font-size: 13px;
        margin-bottom: 0px;
        margin-right: 5px;
    }

    .core-details-para::-webkit-scrollbar-thumb {
        background: #ecae06;
        border-radius: 10px;
    }

.core-feature-head {
    color: #ecae06;
    font-weight: 800;
    font-size: 14px;
}

.core-feature-details {
    display: flex;
    flex-wrap: wrap;
}

.video_Section {
    display: flex;
}

.what-we-do {
    padding: 50px 0px;
}

.hcaiai-ami-nj {
    font-size: 29px;
}

.boxes {
    position: relative;
    margin: 0;
    letter-spacing: 0px;
    padding: 16px 20px 7px;
    width: 46%;
    border-radius: 15px;
    float: left;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all ease 1s;
    margin: 2%;
    text-align: center;
    box-shadow: 2px 11px 13px #eee;
    color: #727272;
    height: 198px;
}

    .boxes span {
        font-size: 50px;
        color: #ecae06;
    }

    .boxes h3 {
        font-weight: 700;
        margin: 5px 0px 7px 0px;
        color: #302c2c;
    }

    .boxes p {
        font-size: 14px !important;
        margin-bottom: 0px;
    }

    .boxes:hover {
        background: #ecae06;
    }

.right_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .right_img img {
        width: 100% !important;
        border-radius: 13px;
        object-fit: cover;
        height: 445px;
    }

.djbdua-ami-new {
    width: 42px;
}

.accountbookkeeping-tab {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 4px;
    padding: 0px;
}

    .accountbookkeeping-tab li {
        background: transparent;
        border: 1px solid #ecae06;
        text-align: center;
        font-size: 12px;
        margin: 0px 2px;
        padding: 6px 1px;
        width: 162px;
        margin-bottom: 6px;
        border-radius: 26px;
        color: white;
    }

    .accountbookkeeping-tab .active {
        background: #ecae06 !important;
    }

.djjdo-am-ami {
    color: white;
    font-weight: 800;
}

.b-member-info.mb-4 {
    display: flex;
}

.theme-color {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.09);
    padding: 15px;
    background: white;
    transition: transform 0.3s ease;
}

.green {
    background-color: #d4ead4;
    border-radius: 1rem;
}

.red {
    background-color: #c81c2f1f;
}

.yellow {
    background-color: #ffff002b;
}

.theme-para {
    font-size: 14px;
    margin-bottom: 0px;
    text-align: start;
    line-height: 20px;
    color: #444444;
}

.theme-icon-section {
    margin-top: 30px;
}

/*=========Environmental Responsibility css End=======*/

/*=========Mission vision css start=======*/

.check-list001 {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 0 40px;
    padding-left: 0;
    list-style: none;
}

.checklist-icon-svg-img {
    margin-right: 13px;
    width: 20px;
}

.vision-list {
    margin-bottom: 15px;
}

.para-vision-para02 {
    margin: 0 0 18px 0;
    color: #54595f;
    line-height: 1.75;
}

.para-vision-para01 {
    font-weight: bold;
    color: #54595f;
    line-height: 1.75;
    margin: 0px 0px 18px;
}

.main-vision-heading {
    font-size: 44px;
    margin-bottom: 15px;
    margin-top: -0.2em;
}

.vision-sub-heading {
    display: flex;
    align-items: flex-start;
}

.vision-heading {
    color: #ff9c00;
    font-size: 18px;
    font-weight: 500;
    margin-left: 10px;
    margin-bottom: 16px;
}

.vision-para {
    text-align: justify;
}

.vision-section01 {
    margin-top: 20px;
}

vision-section01 {
    background-image: url('../images/mision-vision/background-img-vision.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-image-mission {
    width: 100%;
    height: 413px;
    object-fit: contain;
}
/*=========Mission vision css end=======*/


/*=========Change Passkey Pagse css start=======*/
.bg-bg-section {
    background-image: url('../images/cubes.png');
}

.heading-page-banner {
    padding-top: 23px !important;
}

.reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reset-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    background-color: white;
    margin: 19px;
    padding: 29px 0px 20px 26px;
    box-shadow: 0px 0px 13px 0px #d3d3d3b3;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.label-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #333;
    width: 180px;
}

.passkey-section-input {
    padding: 6px 5px;
    margin: 0px 0;
    border-radius: 2px;
    text-align: center;
    color: #000000;
    border: 1px solid #eaeaea;
    background: #f3fafd;
}

    .passkey-section-input:focus {
        border-color: #0f7aa4;
    }

    .passkey-section-input:hover {
        box-shadow: 0px 0px 13px 0px #d3d3d3b3;
        border: none;
        background-color: white;
    }

.passkey-section-reset {
    background: #ffc107;
    color: #fff;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 500;
    transition: background 0.3s;
    width: 100px;
    margin-left: 180px; /* aligns with input boxes */
}

    .passkey-section-reset:hover {
        background: #e0a800;
    }

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .label-btn {
        width: auto;
        margin-bottom: 5px;
    }

    .passkey-section-reset {
        margin-left: 0;
        width: 100%;
    }
}

.error-text {
    color: red;
    font-size: 13px;
    display: none;
    margin-top: 4px;
}
/*=========Change Passkey Pagse css end=======*/


/*=========Terms Conditions Page css start=======*/
section.term_condition {
    background-color: #e8f3fa;
}

.bg-term_condition {
    padding: 30px;
    background-color: white;
    box-shadow: 0px 0px 6px 0px #00000099;
}

li.bold-term-sec {
    font-weight: 550;
    padding-bottom: 5px;
    line-height: 25px;
    padding-top: 12px;
    font-size: 14px;
}

ul.term-list-thick\&bold {
    text-align: justify;
}

.term_section {
    padding: 48px 0px;
}

li.bold-term-num-thick {
    word-spacing: 3px;
    display: flex;
    padding: 9px 0px;
    align-items: baseline;
    font-size: 14px;
}

.term-icon {
    color: #007dc5;
    font-weight: 700;
    margin-right: 10px;
}

h4.para-term-cond {
    color: #0c81b6;
    font-weight: 600;
}

.last_term_para {
    text-align: center;
    padding: 25px 0px 10px 0px;
}

/*=========Terms Conditions Page css end=======*/


/*=========Legal Documents Page css start=======*/
.document-section-001 {
    /*padding-bottom: 30px;*/
    padding-top: 10px;
}

/*.legal-deocument-sdf {
    background-color: #e8f3fa;
}*/

.img-section-document {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0px 0px 10px #00000017;
}

.documents-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.section-legal {
    padding-top: 26px;
}*/


.image-card {
    position: relative;
    display: inline-block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    .image-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }

/*=========Legal Documents Page css end=======*/

/*=========Diretor Page css start=======*/

.Director-msg {
    padding: 50px 0;
    background-color: #f4efec;
    color: #333;
    text-align: justify;
}


.red-para-section {
    background: linear-gradient(to right, #00a6e8, #0f7aa4);
    color: #fff;
    padding: 30px 15px;
    border-radius: 3px;
    font-size: 15px;
    padding: 25px 45px 32px;
}

.section-box-1 {
    padding: 25px 45px;
}

.section-box-3 {
    padding: 25px 45px;
}

.content-box {
    background-color: #fff;
    margin: 0 auto 0 auto;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    max-width: 90%;
}

.bold-text {
    font-weight: bold;
}

.msg-heading {
    color: #b5121b;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 18px;
}

.msg-para {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 28px;
}

.msg-heading-red {
    color: #ffffff;
    font-weight: 500;
    font-size: 22px;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    display: inline-block;
}

.msg-para-red {
    margin-top: 0;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
}

.director-name {
    font-size: 16px;
    font-weight: 600;
    padding: 0 0px;
    margin: 0;
}

.name-section {
    padding-bottom: 15px;
}

/*.card {
    margin: 10px 100px;
}*/

.name-section-director:hover {
    transform: translate3d(0, -2px, 0);
}

.name-section-director {
    padding: 10px 8px;
    margin: 8px 0;
    border-radius: 2px;
    text-align: center;
    color: #000000;
    border: 1px solid #eaeaea;
    background: #f3fafd;
}

@media (max-width: 768px) {
    .section-box-3 {
        padding: 30px 25px;
        margin-top: -25px;
    }

    .section-box-1 {
        padding: 30px 25px;
        margin-top: -25px;
    }

    .msg-heading {
        font-size: 22px;
    }

    .msg-para {
        font-size: 15px;
    }

    .red-para-section {
        font-size: 14px;
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .red-bar {
        height: 40px;
    }

    .section-box-1 {
        padding: 25px 20px;
    }

    .section-box-3 {
        padding: 25px 20px;
    }

    .red-para-section {
        padding: 25px 20px;
    }
}

/*=========Diretor Page css end=======*/


/*=========Seminar Page css start=======*/
/*.seminar {
    padding: 30px 0px;
}*/

.lower-img-seminar {
    padding-bottom: 41px;
}

.Seminar-details-section-btn {
    background-color: #039dda;
    padding: 10px 0px;
}

.lower-img-seminar {
    padding: 20px;
    text-align: center;
}

.sem-img-0 {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.view_more_seminar {
    color: #ffffff;
    font-size: 13px;
}

.short-para-semi {
    font-weight: 700;
    color: #FF9800;
    margin-bottom: 0;
    font-size: 16px;
    text-transform: capitalize;
}

.seminar-card {
    width: 100%;
    cursor: pointer;
    position: relative;
    border: 10px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 5px 3px #6e6e6e3d;
    z-index: 10;
}

.Seminar-details-section-btn {
    background-color: #000000d1;
    padding: 10px 0px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.view_more_seminar:hover {
    color: white;
}

@media (max-width: 769px) {
    .padding-btm {
        padding-bottom: 28px;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
    }

    to {
        transform: scale(1);
    }
}
/*=========Seminar Page css end=======*/