/********** Template CSS **********/
:root {
    --bs-tertiary: #797E88;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Top Bar ***/
.top-bar {
    /* height: 90px; */
    padding: 10px 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}


/*** Nav Bar ***/
.nav-bar {
    padding: 0 90px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 17px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        border-top: 2px solid #26b4dc;
        z-index: 9999 !important;
    }
}


/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url(../images/6gIoeZjE9SGA.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

/* .page-header {
    background: url(../images/8GCoYrkuHeGv.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
} */


.page-header {
    position: relative;
    background: url(../images/8GCoYrkuHeGv.jpg) center center no-repeat;
    background-size: cover;
    z-index: 1;
}

/* Overlay */
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* adjust opacity (0.3–0.7) as needed */
    z-index: 1;
}

/* Keep text/content above overlay */
.page-header .container {
    position: relative;
    z-index: 2;
}

/* Optional styling */
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: #ffffff;
}



/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

/* .section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
} */

/* .section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
} */


/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}


/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../images/6gIoeZjE9SGA.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

/* .service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
} */

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    /* border-bottom: 2px solid var(--bs-primary); */
}


/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}


/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../images/6gIoeZjE9SGA.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}


/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}


/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../images/6gIoeZjE9SGA.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}



/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}



/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../images/pgyknyWMpGA8.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: #000000;
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}



/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .95), rgba(5, 19, 17, .95)), url(../images/wZEBcmpVJnxg.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}



/* New Changes Made By BS */

.logoheader img {
    width: 20%;
}

.bgtop {
    background-color: white;
}

.bgnavnew1,
.nav-bar {
    background-color: #26b4dc;
}

.text-black {
    color: black;
}

/* Marquee */
.marquee {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* height: 200px; */
    overflow-x: hidden;
}

.track {
    /* position: absolute; */
    white-space: nowrap;
    will-change: transform;
    animation: marquee 10s linear infinite;
}

.content {
    font-size: 17px;
    font-weight: 600;
    color: #25b4dc;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.hrcol {
    color: #26b4dc;
    opacity: 1;
}

.bgtopnew1 {
    background-color: #000000;
    /* background: linear-gradient(rgb(1 10 53 / 17%), rgb(1 10 53 / 18%)), url(../NEWIMAGES/bgbjp2.jpg) center center repeat; */
    /* background-size: contain; */

}

.bgtopnew1 a {
    color: #d3d3d3;
}

.dropdown-item:first-child {
    padding: 0.70rem 1rem 0.35rem 1rem;
}

.dropdown-item:last-child {
    padding: 0.35rem 1rem 0.70rem 1rem;
}

.mail span a {
    color: #000000;
}

.mail span a:hover {
    color: #26b4dc;
}


/* Carousel Start */
/* Background image wrapper */
.slide-background {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
}

/* Dark overlay only on background */
.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Center content */
.full-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
}

/* Heading animation (slide down) */
.slide-heading {
    opacity: 0;
    transform: translateY(-90px);
    animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button animation (slide up) */
.slide-button {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
    animation-delay: 0.4s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-caption h1 {
    color: white;
}

/* Carousel End */

/* Button Animation Start */
.playbtn {
    position: relative;
    display: inline-block;
    padding: 14px 30px;
    margin: 30px 0;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    font-weight: 600;
    letter-spacing: 2px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.playbtn:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 5px #fff, 0 0 25px #fff, 0 0 50px #fff, 0 0 200px #fff;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}

.playbtn span {
    position: absolute;
    display: block;
}

.playbtn span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, #fff);
    animation: animate1 1s linear infinite;
}

@keyframes animate1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.playbtn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes animate2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

.playbtn span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(270deg, transparent, #fff);
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes animate3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

.playbtn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #fff);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes animate4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

/* Button Animation End */


.carousel-control-prev,
.carousel-control-next {
    z-index: 9999;
}


/* Core Values Section Start */
.do_section .heading_container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.do_section .do_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 10px;
}

.do_section .do_container .box {
    text-align: center;
    position: relative;
    z-index: 5;
    /* margin: 35px 25px 0 25px; */
    margin: 35px 64px 0 25px;
}

.do_section .do_container .box .img-box {
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #26b4dc80;
    border-radius: 100%;
}

.do_section .do_container .box .img-box img {
    width: 45px;
}

.do_section .do_container .box .detail-box {
    margin-top: 35px;
}

.do_section .do_container .box:hover .img-box {
    background-color: #082e4482;
}

.do_section .do_container .arrow_bg::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -17px;
    width: 262%;
    height: 95%;
    z-index: 3;
    background-size: cover;
}

.do_section .do_container .arrow-start::before {
    background-image: url(../images/rVdib0VBNgmG.png);
}

.do_section .do_container .arrow-middle::before {
    background-image: url(../images/VzhR1qPnHJKZ.png);
}

.do_section .do_container .arrow-end::before {
    background-image: url(../images/C084OkB4tgYk.png);
}

/*  */
.img-box {
    position: relative;
    display: inline-block;
}

.dotted-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 4px dotted #000;
    /* Adjust color and size as needed */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* Ensures the dotted circle doesn't interfere with hover */
}

.box:hover .dotted-circle {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Core Values Section ENd */

.aboutbg {
    background: linear-gradient(346deg, #26b4dc2e, transparent);
}

.nav-bar {
    z-index: 9999;
}

/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/* Our Customer Start */
.service_box {
    margin: 40px 0;
    padding: 40px 20px;
    text-align: center;
    border-radius: 5px;
    background: rgb(0 0 0);
    transition: all 0.30s ease 0s;
}

.service_box:hover {
    background: #00BFF3;
}

.service_box .service_icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    font-size: 35px;
    /* background: #fff; */
    line-height: 70px;
    border-radius: 50px;
    transform: translateY(0);
    transition: all 0.30s ease 0s;
}

.service_box:hover .service_icon {
    transform: translateY(-100%);
}

.service_box .service_icon i {
    color: #333;
}

.service_box h3 {
    position: relative;
    top: 23px;
    margin: 0;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    transform: translateY(0%);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}

.service_box:hover h3 {
    top: -40px;
}

.service_box p {
    color: #fff;
    margin: 0;
    opacity: 0;
    transition: all 0.30s linear 0s;
}

.service_box:hover p {
    opacity: 1;
}

/* Our Customer End */


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 20px !important;
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item a.btn {
    /* color: var(--primary); */
    background-color: #26b4dc;
    border-radius: 23px;
}

.service-item a.btn {
    transition: all 1s ease;
}

.service-item a.btn:hover {
    color: #FFFFFF;
    background: black;
    border-color: white;
}

.service-item:hover {
    box-shadow: 0 10px 45px rgb(1 95 201 / 21%);
}

.service-item:hover a.btn {
    color: #FFFFFF;
    background: black;
    border-color: white;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);

}

.team-item img {
    transition: .5s;
    width: 100%;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

.bg-black {
    background-color: black;
}


/* Footer Start */
.banner {
    background: url('../images/CUrCrL9J4A1m.jpg') center/cover no-repeat;
    /* height: 100vh; */
    position: relative;
    color: white;
    text-align: center;
    padding: 50px 0px;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.banner-content {
    position: relative;
    z-index: 5;
    padding-top: 120px;
}

.toggle-btns button {
    border-radius: 0;
    padding: 10px 25px;
    font-weight: 600;
}

.active-tab {
    background: #26b4dc !important;
    color: #000000 !important;
}

.btn-send {
    background: #26b4dc !important;
    color: #000000 !important;
}

.info-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.fade-section {
    display: none;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-control,
.form-select {
    background: transparent !important;
    /* border: 0; */
    /* border-bottom: 1px solid #fff !important; */
    color: #000000 !important;
}

.form-control::placeholder {
    color: #ddd !important;
}


.banner .form-control,
.banner .form-select {
    background: transparent !important;
    /* border: 0; */
    /* border-bottom: 1px solid #fff !important; */
    color: #ffffff !important;
}

.banner .form-control::placeholder {
    color: #ddd !important;
}

.info-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: all 0.3s ease;
}

/* ✅ Hover Effect */
.info-box:hover {
    transform: scale(1.12);
    background: #26b4dc;
    /* red color like your theme */
}

.info-box:hover i {
    color: #fff !important;
}


.form-select option {
    color: black;
}

/* Footer End */


.bg1 {
    background-image: url(../images/wSX6mgldMR22.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.service-item {
    transition: all 1s ease;
}

.service-item:hover {
    background-color: #25b4dc;
}

.service-item:hover p {
    color: white;
}

.service-item:hover .service-icon {
    background-color: white !important;
}

.team-item a.btn {
    background-color: #25b4dc;
    color: black;
}

.team-item a.btn:hover {
    background-color: #000000;
    color: rgb(255, 255, 255);
}


/* About Us Button Design Start */
.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

.btn-3 {
    background: rgb(0, 172, 238);
    background: linear-gradient(0deg, rgb(38 180 220) 0%, rgb(10 55 68) 100%);
    width: 130px;
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;

}

.btn-3 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.btn-3:before,
.btn-3:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background: rgb(38 180 220);
    transition: all 0.3s ease;
}

.btn-3:before {
    height: 0%;
    width: 2px;
}

.btn-3:after {
    width: 0%;
    height: 2px;
}

.btn-3:hover {
    background: transparent;
    box-shadow: none;
}

.btn-3:hover:before {
    height: 100%;
}

.btn-3:hover:after {
    width: 100%;
}

.btn-3 span:hover {
    color: rgb(38 180 220);
}

.btn-3 span:before,
.btn-3 span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: rgb(38 180 220);
    transition: all 0.3s ease;
}

.btn-3 span:before {
    width: 2px;
    height: 0%;
}

.btn-3 span:after {
    width: 0%;
    height: 2px;
}

.btn-3 span:hover:before {
    height: 100%;
}

.btn-3 span:hover:after {
    width: 100%;
}

/* About Us Button Design End */


/* Sticky Social Media Start */

/* .sticky-social {
    position: fixed;
    top: 30%;
    right: 0px;
    padding: 0px;
    margin-left: -10px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.sticky-social ul {
    list-style: none;
    transform: translateX(260px);
}

.sticky-social ul li {
    display: block;
    padding: 8px;
    font-size: 21px;
    width: 300px;
    border-radius: 50px 0px 0px 50px;
    transition: all 1s;
    text-align: left;
}

.sticky-social ul li:hover {
    transform: translateX(-120px);
    box-shadow: 2px 5px 10px grey;
}

.sticky-social a {
    text-decoration: none;
    color: #ffffff;
}

.sticky-social ul li i {
    font-size: 21px;
    background-color: #fff;
    height: 34px;
    width: 34px;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
    transform: rotate(0deg);
}

.sticky-social ul li:hover i {
    transform: rotate(360deg);
    transition: all 1s;
}

.fb i {
    color: #3c5a98;
}

.twitter i {
    color: #1ea1f2;
}

.insta i {
    color: #dc4f42;
}

.link i {
    color: #007fd3;
}

.pin i {
    color: #cb2128;
}

.fb {
    background-color: #3c5a98;
}

.twitter {
    background-color: #1ea1f2;
}

.insta {
    background-color: #dc4f42;
}

.link {
    background-color: #007fd3;
}

.pin {
    background-color: #cb2128;
} */

/* Sticky Social Media End */

/* Whatsapp Integraion Start */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.btn-whatsapp-pulse {
    background-color: #25d366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: pulse-whatsapp 1.5s infinite;
    cursor: pointer;
}

.btn-whatsapp-pulse img {
    width: 35px;
    height: 35px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-options {
    display: none;
    position: absolute;
    bottom: 70px;
    left: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    width: 200px;
}

.whatsapp-options a {
    display: block;
    padding: 10px 20px;
    color: #25d366;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-options a:hover {
    background-color: #f2f2f2;
}


/* Whatsapp Integraion End */


/* FIX — Prevent sticky social bar from blocking other buttons */
.sticky-social {
    pointer-events: none;
}

.sticky-social ul,
.sticky-social ul li,
.sticky-social ul li a,
.sticky-social ul li i {
    pointer-events: auto;
}


/* Mission , Vision & Values Start */
.misvisval .box {
    position: relative;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to bottom, #E4E5EC, #c2e7f1);
    box-shadow: 0 15px 25px rgba(0, 0, 0, .1);
    border-radius: 15px;
    margin: 20px 0px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}

.misvisval .box:before {
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .2);
    z-index: 2;
    pointer-events: none;
    text-align: center;
}

.misvisval .box .icon {
    position: relative;
    width: 80px;
    height: 80px;
    color: #fff;
    background: #26b4dc;
    display: flex;
    justify-content: center;
    aling-items: center;
    margin: 55px auto;
    border-radius: 20%;
    font-size: 50px;
    font-weight: normal;
    transition: 2s;
    padding: 10px;
}

.misvisval .box .icon i {
    /* padding:12px; */
}

.misvisval .box .icon {
    box-shadow: 0 0 0 0 #26b4dc;
    background: #26b4dc;
}

.misvisval .box:hover .icon {
    box-shadow: 0 0 0 400px #26b4dc;
}



.misvisval .box .content {
    position: relative;
    z-index: 1;
    transition: 1.5s;
    color: #000;
    font-weight: 100
}

.misvisval .box:hover .content {
    color: #fff;
}

.misvisval .box .content h3 {
    font-size: 20px;
    margin: 10px 0;
    padding: 0;
    text-align: center;
}

.misvisval .box .content p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.misvisval .box:hover .icon {
    background-color: #000;
}

/* Mission, Vision & Values End */



/*  */
/* ================================
   FLIP CARD GLOBAL STYLES
================================ */
.card-space {
    padding: 10px;
}

.flip-card {
    width: 100%;
    perspective: 1000px;
    position: relative;
}

.flip-card .face {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    padding: 25px;
    border-radius: 12px;
    box-sizing: border-box;
    transition: transform 0.6s ease;
    border: 1px solid #ddd;
    background: #ffffff;
}

/* FRONT */
.flip-card .front {
    z-index: 2;
}

/* BACK */
.flip-card .back {
    transform: rotateY(180deg);
    background: #0d6efd;
    color: white;
}

/* HOVER FLIP */
.flip-card:hover .front {
    transform: rotateY(180deg);
}

.flip-card:hover .back {
    transform: rotateY(360deg);
}

/* ICON SIZE */
.iconsize2 {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

/* Section bg */
.gray-bg {
    background: #f8f9fa;
}

/* Card container */
.flip-card {
    width: 100%;
    perspective: 1000px;
    position: relative;
    min-height: 280px;
    /* <–– dynamic height, can increase if needed */
}

/* Faces */
.flip-card .face {
    position: absolute;
    width: 100%;
    height: 100%;
    /* <–– ensures both sides fill the card */
    top: 0;
    left: 0;
    padding: 25px;
    backface-visibility: hidden;
    border-radius: 12px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    transition: transform 0.6s ease;
    background: #24b4dc !important;
}

/* front */
.flip-card .front {
    z-index: 2;
}

/* back */
.flip-card .back {
    transform: rotateY(180deg);
    background: #26b4dc;
    color: #fff;
}

/* flip on hover */
.flip-card:hover .front {
    transform: rotateY(180deg);
}

.flip-card:hover .back {
    transform: rotateY(360deg);
}

/* profile image */
.iconsize2 {
    width: 132px;
    height: 147px;
    object-fit: cover;
    border-radius: 50%;
}

/*  */

/* Heading Design Start */
.ornament {
    width: 100%;
    text-align: center;
}

.ornament h2 {
    position: relative;
    display: inline-block;
    padding: 24px 64px;
}

.ornament h2:before,
.ornament h2:after {
    content: "";
    display: block;
    width: 27%;
    height: 4px;
    border-top: 1px solid #111;
    position: absolute;
    bottom: 0;
}

.ornament h2:before {
    left: 17%;
    ;
}

.ornament h2:after {
    right: 18%;
}

.ornament h2 span {
    display: block;
    width: 4px;
    height: 4px;
    border: 2px solid #111;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -4px;
}

/* Heading Design ENd */


/* Training Start */
.nav-tabs .nav-link {
    color: #000;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    background-color: #26b4dc;
    color: #fff;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.content-section ul li {
    color: black;
}

/* Training End */


/* License Start */
.filter-btn.active {
    background: #26b4dc !important;
    color: #fff !important;
}

.certificate-box {
    position: relative;
    cursor: pointer;
}

.certificate-box img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 5px;
}

/* Hover Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    border-radius: 5px;
}

.certificate-box:hover .overlay {
    opacity: 1;
}

.overlay i {
    font-size: 45px;
    color: white;
}

/* FULLSCREEN VIEWER */
#viewerOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Image wrapper for arrows on top */
#viewerWrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#viewerImage {
    max-width: 80vw;
    max-height: 85vh;
    border-radius: 5px;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* Close on top-right of image */
#closeViewer {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    font-size: 22px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

/* Arrows on image left & right – centered vertically */
.viewer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: black;
    background: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#prevArrow {
    left: -25px;
}

#nextArrow {
    right: -25px;
}

.license .btnnew1 {
    color: #26b4dc;
    border-color: #26b4dc;
}

.license .btnnew1:focus {
    box-shadow: 0 0 0 .25rem rgb(38 180 220 / 49%) !important;
}

/* License End */

/* Services Start */
.snip1369 {
    font-family: "Raleway", Arial, sans-serif;
    position: relative;
    overflow: hidden;
    /* margin: 10px; */
    min-width: 230px;
    max-width: 100%;
    width: 100%;
    background: #11b3e1;
    text-align: left;
    color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    font-size: 16px;
}

.snip1369 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.snip1369>img,
.snip1369 .image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    max-width: 100%;
}

.snip1369>img {
    vertical-align: top;
    position: relative;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0.6;
    height: 476px;
}

.snip1369 figcaption,
.snip1369 .image {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.snip1369 .image {
    position: absolute;
    top: 0;
    bottom: 25%;
    right: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1), 0px 1px 0 rgba(255, 255, 255, 0.2);
}

.snip1369 .image img {
    position: absolute;
    top: 0;
}

.snip1369 figcaption {
    position: absolute;
    top: 75%;
    bottom: 46px;
    left: 20px;
    right: 20px;
    border-bottom: 2px solid #ffffff;
    padding-top: 20px;
    z-index: 1;
}

.snip1369 h3,
.snip1369 p {
    margin: 0;
}

.snip1369 h3 {
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: white;
    font-size: 22px;
}

.snip1369 p {
    font-size: 0.9em;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 0;
}

.snip1369 .read-more {
    display: block;
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 20px;
    color: #ffffff;
    right: 0;
    bottom: 0;
    font-weight: 500;
    position: absolute;
}

.snip1369 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

.snip1369:hover .read-more,
.snip1369.hover .read-more,
.snip1369:hover figcaption,
.snip1369.hover figcaption {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.snip1369:hover figcaption,
.snip1369.hover figcaption,
.snip1369:hover .image,
.snip1369.hover .image {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.snip1369:hover figcaption,
.snip1369.hover figcaption {
    top: 30%;
}

.snip1369:hover .image,
.snip1369.hover .image {
    /* bottom: 50%; */
    bottom: 100%;
}

.snip1369:hover p,
.snip1369.hover p {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}




/* Services End */

/* Appreciation Start */
.cert-box {
    padding: 18px;
    border-radius: 8px;
    transition: 0.3s;
    background: #fff;
}

.cert-box:hover {
    background: #e8f7fb;
    box-shadow: 1px 1px 2px 0px #000000c9;
    transform: translateY(-3px);
}

.cert-icon {
    font-size: 36px;
    color: #26b4dc;
}

.cert-title a {
    font-size: 18px;
    font-weight: 600;
    color: #26b4dc;
    text-decoration: none;
}

.cert-title a:hover {
    text-decoration: underline;
}

.cert-desc {
    color: #555;
    font-size: 14px;
}

/* Appreciation End */

/* Customers Start */
.customers .filter-btn1 {
    background: #26b4dc;
    color: #fff;
    border-radius: 4px;
    padding: 10px 25px;
    margin-right: 10px;
    cursor: pointer;
    border: none;
}

.customers .filter-btn1.active {
    background: black;
}

.customers .filter-btn1:hover {
    background: black;
}

.customers .client-box {
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    transition: 0.4s ease-in-out;
    text-align: center;
}

.customers .client-box img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.customers .client-box:hover img {
    transform: scale(1.08);
}

/* Customers End */

/* Operations Start */
.icon-box {
    width: 271px;
    height: 65px;
    background: #f1f1f1;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 31px;
    margin-bottom: 10px;
}

.mobile-frame {
    width: 280px;
    /* height: 500px; */
    border-radius: 20px;
    /* background: #000; */
    padding: 18px 12px;
    margin: auto;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}

.mobile-screen img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/*  */
.timeline-wrapper {
    position: relative;
    padding-left: 20px;
}

/* Vertical Red Line */
.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #26b4dc;
}

/* Round Icon Points */
.timeline-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid #26b4dc;
    border-radius: 50%;
}

.timeline-item {
    position: relative;
    background: #f3f6f7;
    padding: 15px 18px;
    margin-bottom: 10px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    cursor: default;
    text-align: left;
    color: black;
}


.operation h5 {
    color: #26b4dc;
}

/* Operations End */

/* CSR Start */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1f1f1f;
}

.section-para {
    font-size: 1.05rem;
    color: #555;
    /* max-width: 750px; */
    margin: auto;
}

.csr .img-box {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    width: 100%;
}

.csr .img-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.csr .img-box:hover img {
    transform: scale(1.08);
}

.csr .img-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

/* CSR End */

/* Career Start */
.career-card {
    border-radius: 15px;
    transition: 0.3s;
    padding: 25px;
    background: #fff;
    box-shadow: 0 6px 20px rgb(0 0 0 / 37%);
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    color: #6a6262;
}

.job-details p {
    margin-bottom: 6px;
}

.btn-apply {
    background: #26b4dc;
    color: #fff;
    border-radius: 30px;
    padding: 8px 25px;
}

.btn-apply:hover {
    background: #000000;
    color: white;
}

#applicationForm input,
#applicationForm textarea {
    border: 1px solid rgba(0, 0, 0, 0.397) !important;
    color: black !important;
}

#applicationForm .form-label {
    color: #000;
}

.careernew .modal-content {
    background: linear-gradient(45deg, #c6f2ff, #46b4cd);
}

#applicationForm .btn-primary {
    background-color: #000;
    color: white;
}

/* Career End */

/* Client Start  */
/* Custom UL image bullets */
.custom-list {
    list-style: none;
    /* remove default dots */
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 35px;
    /* space for image */
    margin-bottom: 10px;
    font-size: 18px;
    color: black;
}

.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    /* adjust bullet size */
    height: 24px;
    background-image: url("../images/R34qVBTz8BFr.gif");
    /* <-- YOUR BULLET IMAGE */
    background-size: cover;
    background-repeat: no-repeat;
}

/*  Client End  */

/* Photo Gallery Start */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.zoom-icon {
    color: white;
    font-size: 40px;
    transition: transform 0.2s ease;
}

.zoom-icon:hover {
    transform: scale(1.2);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-btn {
    position: absolute;
    background: rgb(0 0 0 / 55%);
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 15px 20px;
    transition: background 0.3s ease;
    border-radius: 4px;
}

.lightbox-btn:hover {
    background: rgb(30 161 242 / 38%);
}

.close-btn {
    top: 20px;
    right: 20px;
}

.prev-btn {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.next-btn {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Photo Gallery End */

/* .bgtopnew1 .fontcol1 a {
    color: rgb(0, 0, 0) !important;
    background-color: white;
    padding: 10px;
} */

.license {
    background: linear-gradient(45deg, #c5f2ff, #93777714);
}

.custpara1 {
    font-size: 20px;
    font-weight: 700;
    color: black;
}

.service-item:hover .service-icon {
    background-color: black !important;
}

.card-space .btn-primary {
    background-color: black;
    color: white;
}


/* FAQ Page Start */
.faq-q {
    border-top: 1px dashed;
    border-color: #017b9f !important;
    margin: 0;
    padding: 15px;
    counter-increment: section;
    position: relative;
}

.faq-q:nth-child(odd) {
    border-right: 2px dashed;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-left: 30px;
    padding-left: 0;
}

.faq-q:first-child {
    border-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.faq-q:nth-child(odd):before {
    content: counter(section);
    left: 100%;
    margin-left: -12px;
    position: absolute;
    border-radius: 50%;
    padding: 0px;
    height: 25px;
    width: 25px;
    background-color: #017b9f;
    text-align: center;
    color: white;
    font-size: 107%;
    background-image: -webkit-linear-gradient(0deg, #007cb6 0%, #5fbbdd 100%);
    font-weight: 700;
}

.faq-q span {
    font-size: 22px;
}

.faq-q:nth-child(even) {
    border-left: 1px dashed;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-right: 30px;
    padding-right: 0;
}

.faq-q:nth-child(even):before {
    content: counter(section);
    right: 100%;
    margin-right: -9px;
    position: absolute;
    border-radius: 50%;
    padding: 0px;
    height: 25px;
    width: 25px;
    background-color: #017b9f;
    text-align: center;
    color: white;
    font-size: 105%;
    font-weight: 700;
    background-image: -webkit-linear-gradient(0deg, #007cb6 0%, #5fbbdd 100%);
}


/* FAQ Page End */

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: black !important;
}

.teambg1{
  background: linear-gradient(180deg, #ffffff 0%, #b3efff 100%);
}

.bgtmnew1{
    background-color: #ffffff;
}

.faq-q span{
    color: #444444;
}

#emagazineModal i{
 color: #23b4dd !important;
}
#emagazineModal a{
    color: black;
}
.btnemagheading{
    color: #23b4dd;
}
.btnemag1{
 background-color: #23b4dd !important;
 border: 1PX solid #23b4dd !important;
}
.hiringimg img{
        width: 93px;
    height: 63px;
}

/*  */
.hiringimg {
            width: 70px;
            height: 70px;
            overflow: hidden;
            border-radius: 10px;
        }

        .hiringimg img {
            width: 100%;
            height: 100%;
            object-fit: cover;

            /* Continuous Zoom Animation */
            animation: zoomInOut 2.5s infinite ease-in-out;
        }

        /* Keyframes for continuous zoom */
        @keyframes zoomInOut {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }
/*  */



@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        max-width: 1200px;
    }

    .logoheadernav img {
        opacity: 0;
        /* hidden */
        display: none;
        transition: 0.3s ease;
    }

    .fixed-top .logoheadernav img {
        opacity: 1;
        display: block;
        /* visible when sticky */
        width: 40%;
    }

    .fixed-top .bgnavnew1,
    .fixed-top.nav-bar {
        /* background-color: #ffffff; */
        background: linear-gradient(180deg, #ffffff 0%, #bcf1ff 100%);

    }

    .fixed-top .navbar .navbar-nav .nav-link:hover,
    .fixed-top .navbar .navbar-nav .nav-link.active {
        color: #26b4dc;
    }
}


@media(max-width:768px) {

    .bgnavnew1,
    .nav-bar {
        background-color: #f3f3f3;
    }

    .logoheader img {
        width: 74%;
    }

    .top-bar {
        /* height: 90px; */
        padding: 0px;
    }

    .nav-bar {
        padding: 0px 10px !important;
        transition: .5s;
    }

    .navbar-dark .navbar-toggler {
        color: #000000;
        border-color: hsl(0deg 0% 0%);
    }


    .navbar-toggler {
        padding: .25rem .75rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: rgb(0 0 0);
        border: 1px solid rgba(0, 0, 0, 0);
        border-radius: 0px;
        transition: box-shadow .15s ease-in-out;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #000000;
    }

    .card {
        border-radius: 10px;
        height: 100%;
        min-height: 380px;
    }

    .nav-bar {
        z-index: 999;
    }

    .modal-body {
        position: relative;
        flex: 1 1 auto;
        padding: 1rem;
        height: 500px;
        overflow: scroll;
    }

    .modal-body h3 {
        margin-top: 15px;
    }

    .custpara1 {
        font-size: 14px;
        font-weight: 700;
        color: black;
    }
    .info-box {
    width: 70px;
    height: 70px;
    }
}




