/*======================== Spinner Start ==============================*/
#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;
}

/*============================= Spinner End ===================================*/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 16px;
    padding: 32px 0;
    color: var(--bs-primary) !important;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 27px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.sticky-top .navbar-light .navbar-brand .navbar_icon_text {
    font-size: 10px;
    margin: 0px;
    padding: 0px;
    margin-top: 4px;
    margin-left: 1px;
}

.navbar-light .navbar-brand .navbar_icon_text .span_tag {
    font-size: 10px;
}

.sticky-top .navbar-light .navbar-brand .navbar_icon_text .span_tag {
    font-size: 8px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    color: var(--bs-secondary);
    background-color: transparent;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-white) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.8), rgba(0, 58, 102, 0.7)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 40px;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 70vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: linear-gradient(rgba(50, 48, 48, 0.251), rgba(187, 91, 2, 0.384)); */
    background: linear-gradient(rgba(249, 115, 4, 0.397), rgba(96, 53, 3, 0.306));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}

/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}

/*** Service End ***/


/***=============== Features Start================= ***/

/* 
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item .feature-content {
    font-size: 11px;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
} */

/*** ===============Features End================= ***/



/***=============== New Features Start================= ***/
.AccessVility_Main_div .offcanvas-header {
    background-color: var(--bs-secondary);
}

.btn-close_AccessVility_Button {
    color: var(--bs-white);
    background-color: var(--bs-secondary);
    border: 0px;
}

.AccessVility_Main_div .offcanvas-body {
    background: linear-gradient(rgba(91, 90, 90, 0.518), rgba(254, 120, 3, 0.295)), url('../image/notification_bg11.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.AccessVility_Main_div .features_card .features_card-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 7px;
    background-color: var(--bs-light) !important;
    cursor: pointer;
}

.AccessVility_Main_div .features_card .features_card-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    background-color: var(--bs-secondary) !important;
}

.AccessVility_Main_div .features_card .features_card-item:hover::after {
    height: 100%;
}

.AccessVility_Main_div .features_card .features_card-item .features_card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.5s;
    background-color: #76e1f923;
}

.AccessVility_Main_div .features_card .features_card-item .features_card-icon img {
    height: 25px;
    width: 25px;
}

.AccessVility_Main_div .features_card .features_card-item .features_card-content p {
    font-size: 12px;
    color: var(--bs-primary);
    font-weight: 700;
    text-align: center;
}

.AccessVility_Main_div .features_card .features_card-item:hover .features_card-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.AccessVility_Main_div .features_card .features_card-item .features_card-icon img {
    transition: 0.5s;
}

.AccessVility_Main_div .features_card .features_card-item:hover .features_card-icon img {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

/*** ===============New Features End================= ***/

/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}

/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .testimonial-item .important_website_link {
    border: 1px dashed var(--bs-secondary) !important;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -90px;
    right: 0;
    display: flex;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 30px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    font-size: 16px;
    font-weight: 900;
    border-radius: 50%;
    padding: 3px 7px;
    transition: 0.5s;
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}

/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/

/* ================= Footer Section start ================= */
.footer {
    background: #170757;
    position: relative;
    padding: 37px 0px 0px 0px;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.footer .footer-item {
    margin-bottom: 3px;
}

.footer .footer-item h4 {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    overflow: visible;
    font-size: 17px;
    font-weight: 600;
}

.footer .footer-item h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 30%;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--bs-secondary) 50%,
            transparent 100%);
    background-size: 200% 100%;
    animation: shineMove 2.5s linear infinite;
}

@keyframes shineMove {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


.footer .footer-item a {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 1.6;
    text-decoration: none;
    transition: 0.3s;
}

.footer .footer-item a i {
    color: var(--bs-secondary);
}

.footer .footer-item a:hover {
    color: #00d1ff;
    padding-left: 5px;
}

.footer .left_div_cross_design {
    background-color: #10053e;
    position: absolute;
    top: -90px;
    left: 0;
    height: 398px;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    padding: 35px;
    color: #fff;
}

.footer .play_store_icon a img {
    height: 42px;
    width: 100%;
    padding: 5px;
}

.footer .left_div_cross_design h4 {
    color: #fff;
}

.footer .left_div_cross_design a {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    /* background-color: red; */
    width: 80%;
    padding: 5px;
    text-wrap: inherit;
}

.footer .left_div_cross_design a i {
    margin-right: 10px;
}

.footer .left_div_cross_design a:hover {
    color: #00d1ff;
}

.footer .footer-item p {
    font-size: 14px;
    line-height: 25px;
}

.footer .footer-item input.form-control {
    background: var(--bs-light);
    border: 5px solid #00d1ff;
    color: var(--bs-dark);
}

.footer .footer-item button.btn-primary {
    background: #00d1ff;
    border: none;
    color: #1c1240;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px !important;
    margin: 10px 10px 10px 10px;
}

.footer .footer-item button.btn-primary:hover {
    background: #0082b3;
}

.footer .d-flex.align-items-center a.btn {
    background: var(--bs-light);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 1px 10px 10px;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .d-flex.align-items-center a.btn:hover {
    background: var(--bs-light);
}

.footer p.text-white {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .footer .left_div_cross_design {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .footer .footer-item h4 {
        font-size: 16px;
    }

    .footer .footer-item a {
        font-size: 13px;
    }

    .footer .footer-item p {
        font-size: 13px;
    }
}

.footer_logo_section {
    padding: 0px 0px 9px 0px;
    margin: -15px 0px 0px 0px;
}

.left_div_cross_design .footer_logo_section img {
    height: 70px;
    width: 70px;
}

.left_div_cross_design .footer_logo_section h6 {
    font-size: 14px;
    color: var(--bs-light);
}

.left_div_cross_design .footer_Content_section {
    margin-top: 5px;
    margin-left: 3px;
}

.left_div_cross_design .footer_logo_section p {
    font-size: 11px;
    color: var(--bs-light);
}

/* ================= Footer Section end ================= */


/*** =====================copyright Start =======================***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
    color: var(--bs-light) !important;
    font-size: 13px;
    font-weight: 500;
}

.copyright a {
    color: var(--bs-light);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
}

/***======================== copyright end================= ***/
/***======================== upper header navbar start================= ***/

.Main_header_nav a {
    font-size: 11px;
    padding: 1px 4px 1px 4px !important;
    border-right: 1px solid rgb(254, 254, 254);
    margin: 6px 0px 6px 0px;
    color: white !important;
    font-weight: 600;
}

.Main_header_nav img {
    height: 21px !important;
}

.Main_header_nav_icon a img {
    height: 23px;
    width: 23px;
    line-height: -24px;
    background-color: var(--bs-primary);
    margin: 6px 5px 0px 1px;
    font-size: 0.8em;
    padding: 4px 4px;
    border-radius: 8%;
    font-weight: 200;
    text-align: center;
}

.Main_header_nav_icon span {
    border-left: 1px solid rgb(255, 255, 255);
    height: 24px;
    margin: 5px 4px 5px 1px;
}

.Main_header_nav_dateTime span {
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.navbar-brand .navbar_icon_text {
    font-size: 16px;
    margin: 0px;
    padding: 0px;
    margin-top: 8px;
    margin-left: 3px;
}

.carousel-caption .slider_button {
    font-size: 14px;
    color: var(--bs-white);
    font-weight: 600;
    border: 1.3px solid var(--bs-white);
    border-radius: 0px !important;
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: color 0.5s ease, border 0.5s ease;
    z-index: 1;
    box-shadow: none !important;
}

/* Background layer */
.carousel-caption .slider_button::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--bs-white);
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: -1;
}

/* Hover */
.carousel-caption .slider_button:hover {
    color: var(--bs-secondary);
    border: 1.3px solid var(--bs-secondary);
}

.carousel-caption .slider_button:hover::before {
    transform: scale(1.2);
}


/***======================== upper header navbar end================= ***/

/***======================== news css start ================= ***/
.news_head {
    font-size: 15px;
    padding: 10px 20px;
    background: var(--bs-primary);
    clip-path: polygon(0 0, 79% 0, 90% 50%, 80% 100%, 0 100%);
}

.news-ticker {
    position: relative;
    overflow: hidden;
    height: 35px !important;
    display: flex;
    align-items: center;
    padding-right: 90px;
}

.news_button {
    position: relative;
    align-items: center;
    padding-right: 90px;
}

/* target the actual swiper container class */
.NewsSwiper {
    height: 30px !important;
    width: 100%;
    white-space: nowrap !important;
}

.newsSwiper .swiper-wrapper {
    display: flex;
    white-space: nowrap !important;
}

.NewsSwiper .swiper-slide {
    white-space: nowrap;
    font-weight: 600;
    font-size: 13px;
    align-items: center;
    margin-right: 40px;
    white-space: nowrap !important;
    padding: 5px 0px 0px 0px;
}

.NewsSwiper .swiper-slide i {
    margin-right: 8px;
    color: var(--bs-secondary);
}

/* Buttons */
.news-controls {
    position: absolute;
    right: 21px;
    bottom: -14px;
    z-index: 10;
}

.news-controls button {
    background: var(--bs-secondary) !important;
    border: none;
    color: var(--bs-white);
    padding: 4px 6px;
    margin-left: 2px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.news-controls button:hover {
    background: #d45e00;
}

@media (max-width: 767px) {
    .NewsSwiper .swiper-slide {
        font-size: 14px;
        margin-right: 30px;
    }
}

/***======================== news css end ================= ***/


/***======================== PREMIUM PRINCIPAL CARD START================= ***/
.newCard {
    position: relative;
    width: 100%;
    min-height: 150px;
    background: #ffffff;
    border-radius: 18px;
    padding: 60px 18px 20px;
    border: 1px solid #f68e0685;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: .35s ease;
    overflow: hidden;
}

/* Decorative shape */
.newCard::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -18%;
    width: 230px;
    height: 230px;
    background: linear-gradient(135deg, #007bffed, #8b4dff97);
    transform: rotate(23deg);
    opacity: 0.15;
    border-radius: 30%;
    pointer-events: none;
}

/* Hover effect */
.newCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* IMAGE CIRCLE - now outside the card */
.newCard_img {
    position: absolute;
    top: -45px;
    left: 30%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 30% 0% 30% 0%;
    overflow: hidden;
    border: 4px solid #f9810a8a;
    background: #eaeaea;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.newCard_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10% 0% 0% 10%;
    display: block;
    transition: transform 0.35s ease;
}

.newCard:hover .newCard_img {
    transform: translateX(-50%) scale(1.1);
}

/* TEXT */
.newCard_text h5 {
    font-size: 15px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 4px;
    color: var(--bs-secondary);
}

.newCard_text p {
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    color: var(--bs-primary);
}

/***======================== PREMIUM PRINCIPAL CARD END================= ***/


/***======================== policy-section start================= ***/
.policy-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(rgba(247, 241, 237, 0.582), rgba(253, 249, 244, 0.733)), url(../image/bg16.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.policy-section .traingle_bottom_card {
    margin-top: 135px;
}

.hex {
    width: 100%;
    height: 160px;
    clip-path: polygon(25% 0%, 75% 0%,
            100% 50%, 75% 100%,
            25% 100%, 0% 50%);
    padding: 18px 12px;
    margin: 35px 0px;
    color: #fff;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none !important;
    perspective: 1000px;
    transition: all 2.1s ease;
    animation: autoZoom 2s ease-in-out infinite;
    overflow: hidden;
}

.hex_front,
.hex_back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inherit;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-weight: bold;
    padding: 0px 12px;
}

/* COLOURS EXACT traingle div */
.hex_frontbg-purple1 {
    background: #fd7e15f0;
}

.hex_frontbg-pink {
    background: #ff2d74;
}

.hex_frontbg-blue {
    background: #0059b3;
}

.hex_frontbg-green {
    background: #01c91f;
}

.hex_frontbg-yellow {
    background: #e7cc01;
}

.hex_frontbg-purple2 {
    background: #6b2da5;
}

.hex_frontbg-orange {
    background: #f78029;
}

.hex_frontbg-sky {
    background: #f406f0;
}

.hex_back {
    background: linear-gradient(rgba(1, 147, 138, 0.767), rgba(237, 112, 3, 0.815));
    transform: rotateY(180deg);
}

/* Flip effect */
.hex:hover .hex_front {
    transform: rotateY(180deg);
}

.hex:hover .hex_back {
    transform: rotateY(0deg);
}

.hex:hover {
    transform: scale(1.05);
}

/* Auto Zoom Animation hex */
@keyframes autoZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }

    100% {
        transform: scale(1);
    }
}

/* Auto Zoom Animation hex titming set*/
.hex:nth-child(1) {
    animation-delay: 0s;
}

.hex:nth-child(2) {
    animation-delay: 0.4s;
}

.hex:nth-child(3) {
    animation-delay: 0.8s;
}

.hex:nth-child(4) {
    animation-delay: 1.2s;
}

.hex:nth-child(5) {
    animation-delay: 1.8s;
}

.hex:nth-child(6) {
    animation-delay: 2s;
}

.hex:nth-child(7) {
    animation-delay: 1.4s;
}

.hex:nth-child(8) {
    animation-delay: 2.8s;
}

.hex:nth-child(9) {
    animation-delay: 3.2s;
}

.hex-icon {
    width: 42px;
    margin: 0 auto 20px;
}

.hex-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.hex h6 {
    font-size: 11px;
    line-height: 1.25;
    margin: 0px;
    color: var(--bs-white) !important;
    font-weight: 500;
}

/***======================== policy-section end================= ***/

/*==================== BUBBLES BACKGROUND ANIMATION START   ====================*/
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bubble {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /* background: rgba(0, 0, 0, 0.831); */
    backdrop-filter: blur(8px);
    border: 3px dotted rgb(255, 151, 6);
    animation: bubbleMove 3s linear infinite, bubbleRotate 2s linear infinite;
}

/* --- Different sizes & positions --- */
.bubble:nth-child(1) {
    top: 7%;
    left: 3%;
    width: 90px;
    height: 90px;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    top: 10%;
    left: 80%;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    top: 74%;
    left: 13%;
    width: 90px;
    height: 90px;
    animation-delay: 1s;
}

.bubble:nth-child(4) {
    top: 80%;
    left: 70%;
    width: 80px;
    height: 80px;
    animation-delay: 3s;
}

.bubble:nth-child(5) {
    top: 40%;
    left: 43%;
    width: 150px;
    height: 150px;
    animation-delay: 4s;
}

/* ---- Rotate Animation ---- */
@keyframes bubbleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(90deg);
    }
}

/* ---- Smooth Floating Movement ---- */
@keyframes bubbleMove {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.05);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

/*====================  NOTIFICATION SECTION CSS START ====================*/

/* .Notification-Section {
    background: linear-gradient(rgba(247, 244, 244, 0.829), rgba(254, 120, 3, 0.422)), url('../image/Notificationbg1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
} */

/* .Notification-Section .Notification_About_Section {
    background-color: red;
    padding: 10px 10px;
    margin: 10px 10px;
} */

.Notification_main_card {
    /* background-color: rgb(203, 190, 190); */
    padding: 10px;
}

.Notification_main_card .Notification_header {
    background-color: var(--bs-light);
    padding: 45px 0px;
    position: relative;
}

.Notification_main_card .Notification_content {
    background: linear-gradient(rgba(247, 246, 246, 0.758), rgba(247, 249, 249, 0.47)), url('../image/notification_bg11.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 10px 20px 20px;
    height: 320px;
}

.Notification_main_card .Notification_content a {
    font-size: 13px;
    color: var(--bs-primary);
    font-weight: 500;
}

.Notification_main_card .Notification_content img {
    height: 17px;
    width: 25px;
    margin-left: 5px;
}

.Notification_main_card .notification_Language span {
    font-size: 12px;
    color: var(--bs-dark);
    font-weight: 700;
}

.Notification_main_card .notification_date span {
    font-size: 12px;
    color: var(--bs-secondary);
    font-weight: 500;
}

.Notification_main_card .Notification_content .NotificationSwiper {
    height: 320px;
    overflow: hidden;
    padding: 0px;
    margin: -19px -3px 0px -13px;
}

.Notification_main_card .Notification_content .NotificationSwiper .swiper-slide {
    position: relative;
    align-items: center;
    padding: 0px 0px 0px 17px;
    margin: 2px 0px 0px 2px;
    border-bottom: 1px dashed var(--bs-dark);
    border-left: 4px solid var(--bs-secondary);
}

.Notification_main_card .Notification_content .NotificationSwiper .swiper-slide::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 20px;
    background: var(--bs-secondary);
    clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
}

.Notification_main_card .Notification_footer {
    padding: 12px 18px;
    background: var(--bs-light);
    border-radius: 0px 0px 5px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--bs-secondary);
}

.Notification_main_card .Notification_footer_btn .btn {
    background: var(--bs-secondary);
    color: var(--bs-white);
    padding: 5px 9px;
    margin-right: 6px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s ease;
    box-shadow: none !important;
}

.Notification_main_card .Notification_footer_btn .btn:hover {
    background: #2d9089;
    box-shadow: none !important;
}

.Notification_main_card .Notification_footer_btn_link a {
    background: var(--bs-secondary);
    color: var(--bs-white);
    padding: 5px 9px;
    font-size: 12px;
    border-radius: 4px;
    transition: 0.3s ease;
    box-shadow: none !important;
}

.Notification_footer_btn_link a:hover {
    background: #2d9089;
    box-shadow: none !important;
}


.Notification_main_card .Notification_Ribbon {
    padding: 0px 25px;
}

.Notification_main_card .Notification_Ribbon span {
    font-size: 20px;
    font-weight: 700;
    color: var(--bs-white);
}

.Notification_main_card .Notification_Ribbon i {
    font-size: 20px;
    font-weight: bold;
    color: var(--bs-white);
}

.Notification_main_card .Notification_Ribbon {
    --d: .8em;
    /* the depth */

    position: absolute;
    top: 65%;
    translate: 0 -40%;
    inset-inline: calc(-1*var(--d));
    padding-block: var(--d);
    line-height: 1.8;
    clip-path: polygon(0 var(--d), calc(100% - var(--d)) var(--d), calc(100% - var(--d)) 0, 100% var(--d), 100% calc(100% - var(--d)), var(--d) calc(100% - var(--d)), var(--d) 100%, 0 calc(100% - var(--d)));
    border-image: conic-gradient(#0008 0 0) 50%/var(--d);
    background-color: var(--bs-secondary);
}


/*====================  NOTIFICATION SECTION CSS END ====================*/


/*====================  GALLERY SECTION CSS START ====================*/

.Gallery_section_div {
    background: linear-gradient(rgba(244, 244, 242, 0.749), rgba(207, 118, 10, 0.384)), url('../image/bg26.jpg');
    height: 100%;
    position: relative;
    background-size: cover;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px;
}

.GallerySwiper {
    width: 100%;
}

.Gallery_section_div .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Gallery_section_div .card {
    background-color: var(--bs-white);
    border-radius: 10px;
}

.Gallery_section_div .card-img-top {
    width: 100%;
    height: 180px !important;
    height: auto;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.Gallery_section_div .card-body {
    padding: 10px;
}

.Gallery_section_div .card-text {
    font-size: 12px;
    color: #333;
}

/* Control Buttons */
.Gallery_control_button {
    height: 55px;
    width: 100%;
    background-color: var(--bs-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: absolute;
    bottom: 0;
    border-top: 1px dashed var(--bs-secondary);
    left: 0;
    z-index: 99;
    border-radius: 0 0 10px 10px;
}

.Gallery_control_button .btn {
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: none;
    padding: 7px 10px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 12px;
    font-weight: 700;
    box-shadow: none !important;
}


.Gallery_control_button .view_all_btn {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .Gallery_section_div .card {
        max-width: 100%;
    }
}

/*====================  GALLERY SECTION CSS END ====================*/




/*====================  About Section Tabing Css Start ====================*/
.About-Section {
    background: linear-gradient(rgba(247, 244, 244, 0.769), rgba(254, 120, 3, 0.454)), url('../image/Notificationbg1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.About-Section .About_Tabing .nav {
    background: var(--bs-light);
    border-radius: 5px 5px 0 0;
    padding: 8px;
    border-bottom: 1px dashed var(--bs-secondary);
}

.About-Section .About_Tabing .nav .nav-link {
    background: var(--bs-secondary);
    margin: 15px 5px 8px 0px;
    width: 120px;
    font-size: 14px;
    padding: 7px 2px 7px 2px;
    text-align: center;
    color: var(--bs-white);
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px 10px 0px 0px;
    transition: .3s ease;
}

.About-Section .About_Tabing .nav .nav-link.active {
    background: var(--bs-primary);
    color: #fff;
}

/* HEADER */
.About-Section .About_Tabing_header {
    position: relative;
    height: 70px;
    background: var(--bs-light);
}

.About-Section .About_Tabingribbon {
    font-size: 19px;
    font-weight: 700;
    top: 5px;
    padding: 5px 5px 5px 20px;
    color: var(--bs-white);
}

.About_Tabingribbon {
    --d: .8em;
    position: absolute;
    inset-inline: calc(-1*var(--d));
    border-top: var(--d) solid #0008;
    line-height: 1.8;
    clip-path: polygon(0 100%, 100% 100%, 100% var(--d), calc(100% - var(--d)) 0%, calc(100% - var(--d)) var(--d), var(--d) var(--d), var(--d) 0%, 0 var(--d));
    background-color: var(--bs-secondary);
}

/* CONTENT AREA */
.About-Section .About_Tabing_content {
    background: linear-gradient(rgba(247, 246, 246, 0.758), rgba(247, 249, 249, 0.47)), url('../image/notification_bg11.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.About-Section .tab-content-box .swiper-wrapper {
    height: 350px;
}

.About-Section .tab-content-box .swiper-wrapper .swiper-slide {
    /* background-color: #cddae7; */
    padding: 8px 15px;
    border-bottom: 1px dashed var(--bs-primary);
    border-left: 4px solid var(--bs-secondary);
    position: relative;
}

.About-Section .tab-content-box .swiper-wrapper .swiper-slide .About_Tabing_Content a {
    color: var(--bs-dark);
    font-size: 12px;
    font-weight: 700;
}

/* Top triangle */
.About-Section .tab-content-box .swiper-wrapper .swiper-slide::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 15%;
    width: 15px;
    height: 20px;
    background: var(--bs-secondary);
    clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
}

/* Bottom triangle */
.About-Section .tab-content-box .swiper-wrapper .swiper-slide::after {
    content: '';
    position: absolute;
    left: -5px;
    bottom: 15%;
    width: 15px;
    height: 20px;
    background: var(--bs-secondary);
    clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
}

/* FOOTER */
.About-Section .About_Tabing_footer {
    padding: 12px 18px;
    background: var(--bs-light);
    border-top: 1px dashed var(--bs-secondary);
    display: flex;
    justify-content: space-between;
    border-radius: 0px 0px 7px 7px;
}

.About-Section .About_Tabing_footer_btn .btn {
    background: var(--bs-secondary);
    color: #fff;
    padding: 5px 8px;
    margin-right: 6px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
}

.About-Section .About_Tabing_footer_btn_link a {
    background: var(--bs-secondary);
    padding: 5px 8px;
    font-size: 13px;
    color: #fff;
    border-radius: 4px;
    box-shadow: none !important;
}

.About-Section .About_Tabing_footer_btn .btn i {
    font-size: 12px;
}

/*====================  About Section Tabing Css End ====================*/

/*====================  AccessVility Button Css Start ====================*/

.AccessVility_Button_btn {
    position: fixed;
    right: 0px;
    top: 150px;
    z-index: 22;
    padding: 9px 6px 9px 8px;
    color: var(--bs-white) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px 0px 0px 2px;
    border: 2px solid transparent;
    border-right: 0px;
    background: linear-gradient(var(--bs-primary), var(--bs-primary)) padding-box, linear-gradient(180deg, #ff370a, #24dcb7, #ff5005, #00ff2f) border-box;
    background-size: 100% 100%, 100% 300%;
    background-position: 0 0, 0 0;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 0, 0 300%;
    }
}

.AccessVility_Button_btn i {
    font-size: 30px;
    font-weight: 600;
    margin-right: 4px;
}

.AccessVility_Button_btn span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    display: none;
}

.AccessVility_Button_btn:hover span {
    display: block;
}

.Accessbility_card {
    text-align: center;
    background: #fff;
    border-radius: 10px;
}

/* Icon */
.Accessbility_card .Accessbility_heading {
    font-size: 24px;
    background-color: #6dabe8;
    color: #fff;
    border-radius: 50%;
    min-width: 48px;
    height: 48px;
    align-items: center;
}

/* Text */
.Accessbility_card .Accessbility_text {
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    color: #000;
}


/*====================  AccessVility Button Css End ====================*/

/*====================  Customer Button Button Css Start ====================*/

.Customer_Button_btn {
    position: fixed;
    right: 0px;
    top: 215px;
    z-index: 22;
    padding: 9px 6px 9px 8px;
    color: var(--bs-white) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px 0px 0px 2px;
    border: 2px solid transparent;
    border-right: 0px;
    background: linear-gradient(var(--bs-primary), var(--bs-primary)) padding-box, linear-gradient(180deg, #ff370a, #24dcb7, #ff5005, #00ff2f) border-box;
    background-size: 100% 100%, 100% 300%;
    background-position: 0 0, 0 0;
    animation: Customer_Button_btn_borderFlow 3s linear infinite;
}

@keyframes Customer_Button_btn_borderFlow {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 0 0, 0 300%;
    }
}

.Customer_Button_btn i {
    font-size: 26px;
    margin-right: 7px;
    font-weight: 600;
}

.Customer_Button_btn span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    display: none;
}

.Customer_Button_btn:hover span {
    display: block;
}

/*====================  Customer Button Button Css End ====================*/


/*====================  Pages Top Header Css Saert ====================*/

.Pages_Header_bg {
    background-image: linear-gradient(rgba(156, 153, 153, 0.559), rgba(244, 106, 7, 0.893)), url('../image/Pages_header_bg_image.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.Pages_Header_Heading {
    text-align: center;
    color: white;
    font-weight: 900;
}

.Pages_Header_Text a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* about wave start */
.waveMain_Div {
    margin: 0;
}

.ocean {
    height: 80px;
    width: 100%;
    position: absolute;
    top: 362px;
    left: 0;
    right: 0;
    overflow-x: hidden;
}

@media (max-width: 480px) {
    .ocean {
        height: 80px;
        width: 100%;
        position: absolute;
        top: 405px;
        left: 0;
        right: 0;
        overflow-x: hidden;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .ocean {
        height: 80px;
        width: 100%;
        position: absolute;
        top: 405px;
        left: 0;
        right: 0;
        overflow-x: hidden;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ocean {
        height: 80px;
        width: 100%;
        position: absolute;
        top: 390px;
        left: 0;
        right: 0;
        overflow-x: hidden;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .ocean {
        height: 80px;
        width: 100%;
        position: absolute;
        top: 382px;
        left: 0;
        right: 0;
        overflow-x: hidden;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .ocean {
        height: 80px;
        width: 100%;
        position: absolute;
        top: 362px;
        left: 0;
        right: 0;
        overflow-x: hidden;
    }
}

@media (min-width: 1600px) {
    .ocean {
        height: 80px;
        width: 100%;
        position: absolute;
        top: 362px;
        left: 0;
        right: 0;
        overflow-x: hidden;
    }
}

.wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23FFFFFF' fill-opacity='0.9'/%3E%3C/svg%3E");
    position: absolute;
    width: 200%;
    height: 100%;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
}

.wave:nth-of-type(2) {
    bottom: 0;
    animation: wave 18s linear reverse infinite;
    opacity: 0.5;
}

.wave:nth-of-type(3) {
    bottom: 0;
    animation: wave 20s -1s linear infinite;
    opacity: 0.5;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*====================  Pages Top Header Css End ====================*/

/*====================  Pages Nav Header Flow Css Start ====================*/
.Menu_Flow_web {
    display: flex;
    align-items: center;
    border-radius: 1px 23px 1px 1px;
    border: 1px inset var(--bs-secondary);
}

.Menu_Flow_web .Menu_Flow_web_icon {
    color: var(--bs-secondary);
    background-color: var(--bs-light);
    font-size: 15px;
    height: 35px;
    margin: 0px;
    border-radius: 5px 20px 5px 5px;
    padding: 5px 9px;
}

.Menu_Flow_web:hover .Menu_Flow_web_icon {
    border-radius: 0px;
}

.Menu_Flow_web p {
    color: var(--bs-primary);
    font-size: 13px;
    font-weight: 600;
    height: 35px;
    margin: 0;
    padding: 6px 7px 7px 3px;
    flex: 1;
    border-radius: 1px 23px 1px 1px;
    cursor: pointer;
    background: linear-gradient(to right, #f67f1e46 0%, #3393f911 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease;
}

.Menu_Flow_web:hover p {
    background-size: 100% 100%;
}

.Menu_Flow_web p i {
    font-size: 10px;
    font-weight: 600;
}

.Menu_Flow_web_icon_arrow {
    color: var(--bs-secondary);
    background-color: #000;
    font-size: 12px;
    height: 35px;
    margin: 0px;
    padding: 9px 10px 0px 2px;
    pointer-events: none;
}

/*====================  Pages Nav Header Flow Css End ====================*/


/* ---------------------===========Conatct Css Start=============---------------------*/
.Contact_Section {
    background-image: linear-gradient(rgba(255, 253, 253, 0.977), rgba(255, 255, 255, 0.753)), url('../image/bg26.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.heading_Contact {
    color: var(--bs-secondary);
    padding: 30px 0px;
    text-align: center;
}

.Contact_Adress_icon1 {
    padding: 21px 37px 19px 23px;
    color: var(--bs-secondary);
    border: 2px dotted var(--bs-secondary);
    font-size: 20px;
}

.Contact_Adress_icon {
    padding: 20px 40px 20px 21px;
    color: var(--bs-secondary);
    border: 2px dotted var(--bs-secondary);
    font-size: 20px;
}

.Contact_Content h5 {
    color: var(--bs-primary);
}


/* ---------------------===========Conatct Css End=============---------------------*/


/* ========== Accessibility Base css Start ========== */
:root {
    --a11y-font-size: 14px;
    --a11y-letter-spacing: 0px;
    --a11y-line-height: 1.6;
}

/* Apply globally but safely */
html body {
    font-size: var(--a11y-font-size);
    letter-spacing: var(--a11y-letter-spacing);
    line-height: var(--a11y-line-height);
}

/* ========== Theme Contrast ========== */
body.light-contrast {
    background-color: #ffffff !important;
    color: #000000 !important;
}

body.dark-contrast {
    background-color: #000000 !important;
    color: #ffffff !important;
}

body.low-contrast {
    background-color: #f1f1f1 !important;
    color: #555555 !important;
}

/* Fix text inside elements */
body.light-contrast *,
body.dark-contrast *,
body.low-contrast * {
    color: inherit !important;
}

/* ========== Image Controls ========== */
body.hide-images img {
    visibility: hidden !important;
}

body.grayscale-images img {
    filter: grayscale(100%) !important;
}

/* ========== Link Underline ========== */
body.underline-links a {
    text-decoration: underline !important;
}

/* Smooth transition */
body,
body * {
    transition: all 0.25s ease;
}

/* ========== Accessibility Base css End ========== */