/*** Spinner Start ***/
/*** 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;
}

/*** 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: 20px;
    padding: 35px 0;
    color: #FFF !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #ffffff !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: 112px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 68px;
}

.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 {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !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: #000 !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;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}

/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0), rgba(0, 58, 102, 0)), url(../newimages/aboutzad.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
    height: 600px;
}

.bg-breadcrumbesg {
    background: linear-gradient(rgba(0, 58, 102, 0), rgba(0, 58, 102, 0)), url(../newimages/aboutesg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
    height: 325px;
}

.bg-breadcrumg {
    background: linear-gradient(rgba(0, 58, 102, 0), rgba(0, 58, 102, 0)), url(../newimages/aboutzadg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
    height: 600px;
}

.bg-breadcrumba {
    background: linear-gradient(rgba(0, 58, 102, 0), rgba(0, 58, 102, 0)), url(../newimages/aboutzada.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
    height: 600px;
}

.bg-breadcrumbb {
    background: linear-gradient(rgba(0, 58, 102, 0), rgba(0, 58, 102, 0)), url(../newimages/photo3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
    height: 600px;
}

.bg-breadcrumbc {
    background: linear-gradient(rgba(0, 58, 102, 0), rgba(0, 58, 102, 0)), url(../newimages/photo4.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
    height: 600px;
}

.bg-breadcrumbport {
    background: linear-gradient(rgba(0, 58, 102, 0), rgba(0, 58, 102, 0)), url(../newimages/aboutportfolio.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
    height: 600px;
}

.bg-breadcrumbbanking {
    background: linear-gradient(rgba(0, 58, 102, 0), rgba(0, 58, 102, 0)), url(../newimages/video.mp4);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
    height: 600px;
}

.bg-breadcrumbd {
    background: linear-gradient(rgba(0, 58, 102, 0), rgba(0, 58, 102, 0)), url(../newimages/photo5.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
    height: 600px;
}

.bg-breadcrumb1 {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../newimages/header2.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

.bg-breadcrumb3 {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../newimages/header3.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

.bg-breadcrumb4 {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../newimages/header5.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

.bg-breadcrumb6 {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../newimages/header6.jpg);
    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: 4rem;
    height: 4rem;
    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: 0;
    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: 30px;
    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: 100vh
}

.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(0, 0, 0, .6), rgba(0, 0, 0, 0.6)); */
    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(../NEWIMAGES/bg2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);

}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}

.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}

/*** Counter Facts End ***/


/*** 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: 120px;
    height: 120px;
    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: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 ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
    /* overflow: hidden; */
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    background: rgba(0, 58, 102, 0.75);
    border-radius: 10px;
    transition: 0.5s ease;
    z-index: 1;
}

.country .country-item:hover::after {
    bottom: 0;
}

/* Overlay content container */
.country .country-item .country-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.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: 3;
}

.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 img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
    color: white;
}

.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 .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    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-secondary);
} */
/*** 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;
    height: 450px;
}

.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 Start ***/
.footerimg {
    max-width: 64%;
}

.footer {
    background: #090909;
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 25px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #030830 !important;
}

/*** copyright end ***/

/* servicesnew */
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}

/* testimonial new */

.testimonial_section {
    display: block;
    overflow: hidden;
}

.testimonial_section:after {
    display: block;
    clear: both;
    content: "";
}

.testimonial_section .about_content {
    background-color: #020d26;
    padding-top: 77px;
    padding-right: 210px;
    padding-bottom: 62px;
    position: relative;
}

.testimonial_section .about_content .background_layer {
    background-color: #020d26;
    width: auto;
    margin-left: -200px;
    right: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.testimonial_section .about_content .layer_content {
    position: relative;
    z-index: 9;
    height: 100%;
}

.testimonial_section .about_content .layer_content .section_title {
    margin-bottom: 24px;
    position: relative;
}

.testimonial_section .about_content .layer_content .section_title:after {
    display: block;
    clear: both;
    content: "";
}

.testimonial_section .about_content .layer_content .section_title h5 {
    color: #fff;
    font-family: "Open Sans";
    font-weight: 400;
    font-size: 15px;
    line-height: 28px;
    color: #818a8f;
    margin-top: -5px;
    margin-bottom: 6px;
}

.testimonial_section .about_content .layer_content .section_title h2 {
    font-family: "Titillium Web";
    font-weight: 300;
    font-size: 45px;
    line-height: 50px;
    padding-bottom: 51px;
    margin-bottom: 0px;
    color: #fff;
}

.testimonial_section .about_content .layer_content .section_title h2 strong {
    font-weight: 600 !important;
    width: 100%;
    display: block;
}

.testimonial_section .about_content .layer_content .section_title .heading_line {
    position: relative;
}

.testimonial_section .about_content .layer_content .section_title .heading_line span {
    transition: all 0.3s ease-in-out 0s;
    position: relative;
}

.testimonial_section .about_content .layer_content .section_title .heading_line span:after {
    content: "";
    right: auto;
    left: 69px;
    position: absolute;
    bottom: 28px;
    width: 17px;
    margin-left: 0;
    border-bottom-width: 3px;
    border-bottom-color: #cacaca;
    border-bottom-style: solid;
}

.testimonial_section .about_content .layer_content .section_title .heading_line:after {
    content: "";
    left: 1%;
    margin-left: 0;
    position: absolute;
    bottom: 28px;
    width: 59px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: #ff5e14;
}

.testimonial_section .about_content .layer_content .section_title p {
    color: #fff;
    margin: 0 0 15px;
}

.testimonial_section .about_content .layer_content a {
    color: #fff;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.testimonial_section .about_content .layer_content a i {
    font-size: 18px;
    vertical-align: middle;
}

.testimonial_section .about_content .layer_content a:hover {
    color: #ff5e14;
}

.testimonial_section .testimonial_box {
    margin-top: 60px !important;
    position: relative;
}

.testimonial_section .testimonial_box .testimonial_container {
    background-color: #ff5e14;
    margin-left: -170px !important;
    position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .background_layer {
    background-color: #ff5e14;
    width: auto;
    margin-right: -200px;
    right: 0;
    background-image: url(../images/map.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content {
    position: relative;
    z-index: 9;
    height: 100%;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
    display: block;
    position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
    margin: 10px 0 10px 0;
    padding: 62px 0px 72px 50px;
    position: relative;
    text-align: center;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
    margin-left: 150px;
    margin-top: 69px;
    padding: 45px 40px 45px 40px;
    z-index: 1;
    position: relative;
    background-color: #fff;
    transition: all 0.5s ease-in-out 0s;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
    margin-bottom: 15px;
    position: relative;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
    content: "";
    width: 30px;
    display: block;
    height: 2px;
    text-align: center;
    left: 46%;
    margin-top: 6px;
    background-color: #ff5e14;
    position: absolute;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
    padding-top: 0;
    margin-bottom: -5px;
    font-size: 19px;
    font-weight: 600;
    line-height: 24px;
    color: #020d26;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
    font-size: 12px;
    color: #9f9f9f;
    margin: 0;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
    padding: 0;
    margin: 0;
    padding-top: 10px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #5d6576;
    font-style: italic;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
    border: none;
    position: absolute;
    top: 0;
    left: 55px;
    top: 80px;
}

.testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
    border: 5px solid #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    width: 35%;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
    position: absolute;
    top: 165px;
    right: 42px;
    border-radius: 0;
    background: #ff5e14;
    display: block;
    outline: 0;
    width: 34px;
    line-height: 34px;
    height: 34px;
    color: #fff;
    font-size: 23px;
    margin-top: -20px;
    transition: all 0.3s ease-in-out;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
    background: #020d26;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
    position: absolute;
    top: 165px;
    right: 5px;
    border-radius: 0;
    display: block;
    background: #ff5e14;
    outline: 0;
    width: 34px;
    text-align: center;
    line-height: 34px;
    height: 34px;
    color: #fff;
    font-size: 23px;
    margin-top: -20px;
    transition: all 0.3s ease-in-out;
}

.testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
    background: #020d26;
}

@media all and (max-width: 991px) {
    .testimonial_section .about_content {
        padding-right: 15px !important;
    }

    .testimonial_section .about_content .background_layer {
        width: 200% !important;
    }

    .testimonial_section .testimonial_box {
        margin-top: 0 !important;
    }

    .testimonial_section .testimonial_box .background_layer {
        width: 200% !important;
        margin-left: -200px;
    }

    .testimonial_section .testimonial_box .about_content {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-top: 28% !important;
    }

    .testimonial_section .testimonial_box .testimonial_container {
        margin-left: -15px !important;
    }

    .testimonial_section .testimonial_box .testimonial_container .testimonials {
        margin: 0px 0 20px 0;
    }

    .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
        margin-left: -36px !important;
    }

    .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
        /* display: none; */
    }
}

.bgc {
    background-color: #a2c5d7;
    border-radius: 15px;
}

/* team */
/* Heading underline */

.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

/* whatsapp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 50px;
    border-radius: 10px;
    cursor: pointer;
}

/* Hidden options initially */
.whatsapp-options {
    display: none;
    flex-direction: column;
    position: absolute;
    bottom: 60px;
    left: 0;
    gap: 10px;
}

.wp-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.wp-option img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.wp-option span {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.wp-option:hover {
    background: #1ebc59;
    transform: scale(1.05);
}



.fp {
    text-align: justify;
    hyphens: auto;
}

/* miss & vis */

.advertisers-service-sec1 {
    background-color: #f5f5f5;
}

.advertisers-service-sec1 span {
    color: rgb(245 108 15);
}

.advertisers-service-sec1 .col-md-4 {
    padding: 0 1em 1em 1em;
    text-align: center;
}

.advertisers-service-sec1 .service-card1 {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #fff;
}

.advertisers-service-sec1 .service-card1::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(#309ae0, rgb(145, 156, 205));
    position: absolute;
    left: 0%;
    top: -98%;
    z-index: -2;
    transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec1 h3 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
    z-index: 3;
}

.advertisers-service-sec1 p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    z-index: 3;
}

.advertisers-service-sec1 .icon-wrapper1 {
    background-color: #2c7bfe;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
    z-index: 3;
}

.advertisers-service-sec1 .service-card1:hover:after {
    top: 0%;
}

.service-card1 .icon-wrapper1 {
    background-color: #000000;
    color: rgb(245 108 15);
}

.advertisers-service-sec1 .service-card1:hover .icon-wrapper1 {
    color: #0dcaf0;
}

.advertisers-service-sec1 .service-card1:hover h3 {
    color: #ffffff;
}

.advertisers-service-sec1 .service-card1:hover p {
    color: #f0f0f0;
}

.advertisers-service-sec1 .service-card1:hover li {
    color: #f0f0f0;
}


.missionp {
    text-align: left;
}

/* why choose */
.img-hover-zoom {
    overflow: hidden;
    border-radius: 0.5rem;
    /* optional rounded edges */
    font-size: large;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}



/* certificate */
.certificate-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.certificate-card:hover {
    transform: scale(1.03);
}

.certificate-pdf {
    height: 250px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
}

.certificate-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* blogs */
.blogpage-container {
    padding: 20px;
}

.blogpage-sidebar {
    max-height: 90vh;
    overflow-y: auto;
    border-right: 1px solid #ddd;
}

.blogpage-card {
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    gap: 10px;
}

.blogpage-card:hover {
    background-color: #f8f9fa;
}

.blogpage-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.blogpage-detail img {
    max-width: 30%;
    height: auto;
    border-radius: 10px;
}

.blogpage-detail .date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.blogpage-keypoints h5 {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .blogpage-sidebar {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .blogpage-card {
        flex-direction: column;
    }

    .blogpage-thumb {
        width: 100%;
        height: auto;
    }
}

/* Move dropdown toward the left */
.dropdown-left {
    left: auto;
    right: 0;
    transform: translateX(-100%);
}

/* text alinement for text of why choose us*/
.text1 {
    text-align: justify;
}

/* about image height */
.img-fluid1 {
    max-width: 100%;
    height: 654px;
}

/*get in touch */

.new {
    height: 600px;
}

/*  */
:root {
    --primary-color: #007bff;
    --secondary-color: #6f42c1;
    --accent-color: #fd7e14;
    --dark-overlay: rgba(0, 0, 0, 0.4);
    --light-overlay: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.video-slider-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.video-slide.active {
    opacity: 1;
    z-index: 2;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-overlay), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.slide-content {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    z-index: 2;
    color: white;
}


.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.slide-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-content .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.6s both;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 2px solid transparent;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.btn-outline-custom {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Dots */
.slider-navigation {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:not(:last-child) {
    margin-bottom: 20px;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.nav-dot.active {
    background: white;
    transform: scale(1.3);
}

.nav-dot.active::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    position: relative;
}

.mouse-indicator::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0.5;
    }

    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    z-index: 10;
}

.slide-counter .current {
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-color);
}

/* Arrow Navigation */
/* .arrow-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .arrow-nav:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .arrow-prev {
            left: 30px;
        }

        .arrow-next {
            right: 30px;
        } */

/* Progress Bar */
.progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content h2 {
        font-size: 1.4rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-navigation {
        right: 20px;
    }

    .arrow-nav {
        width: 50px;
        height: 50px;
    }

    .arrow-prev {
        left: 20px;
    }

    .arrow-next {
        right: 20px;
    }
}

@media (max-width: 576px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content h2 {
        font-size: 1.2rem;
    }

    .slide-content .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.arrow-nav {
    display: none;
}

.aboutup {
    padding: 3rem;
    align-items: justify;
}




/*span padding */

.spanp {
    padding: 2rem;
    color: black;
}

/*our team css style  */
/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

/* .team-item:hover img {
    top: -30px;
} */

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

/* .team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
} */

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

/* .team-item:hover .team-text .team-social {
    opacity: 1;
} */

.team-item .team-social .btn {
    display: inline-flex;
    color: #0e3b24;
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: rgb(59, 194, 59);
}


.font1 {
    font-size: 2.667em;
}

.font2 {
    text-align: justify;
    font-size: 1.5rem;
}

.font3 {
    font-size: 4.5rem;
}

.font4 {
    font-size: 13.5rem;
}

/* for video */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.video-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    /* Optional: dark overlay for readability */
    z-index: 1;
}

.container3 {
    display: flex;
    width: 100%;
    height: 300px;
    /* You can adjust the height */
    border: 1px solid #ccc;

    margin-right: 2rem;
    margin-left: 2rem;
}

.left-div {
    width: 80%;
    background-color: #f0f0f0;
    padding: 20px;
}

.right-div {
    width: 20%;
    background-color: #d0d0d0;
    padding: 20px;
}

.mar {
    margin-top: -47px;
}

.mar1 {
    margin: 2rem;
}

.color1 {
    color: #cc653d;
}

.color2 {
    color: white;
}

.color3 {
    color: #1c447a;
}

.color4 {
    background-color: #65668a82 !important;
}

.size {
    font-size: 1.2rem;
}

.size2 {
    font-size: 2rem;
}

.container2 {
    margin: 5rem;
    padding: 3ram;
    font-size: 2rem;
    color: #ff8c00;
}


/* graph*/
.icd-graph-section {
    background-color: #fff;

}

.icd-graph-title {
    color: #e76c51;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.icd-chart-wrapper {
    position: relative;
    width: 280px;
    max-width: 100%;
}

.icd-chart-wrapper canvas {
    display: block;
    max-width: 100%;
}

.icd-chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: #eacbb7;
    pointer-events: none;
}

.dis {
    display: flex;
    align-self: center;
    justify-content: space-between;
}

.dis1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* image*/
.custom-img-grid img {
    width: auto;

    display: block;
    border-radius: 8px;
    object-fit: cover;
    max-height: 100px;

}

.custom-img-grid1 {

    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.height2 {
    height: 120px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
}

.vc_column_container>.vc_column-inner {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.no {

    float: left;
    line-height: 40px;
    font-size: 4em;

}


.hero-section {
    position: relative;
    height: 70vh;
    /* background-image: url') no-repeat center center/cover; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


/* Medium screens (tablets) */
@media (max-width: 992px) {
    .hero-section {
        height: 60vh;
        justify-content: center;
        /* center content on smaller screens */
        text-align: center;
        padding: 0 3%;
    }
}

/* Small screens (phones) */
@media (max-width: 576px) {
    .hero-section {
        height: auto;
        /* let it adjust to content height */
        flex-direction: column;
        /* stack elements vertically */
        padding: 75px 15px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

.hero-overlay {
    background-color: #0033a0;
    /* Boeing Blue */
    color: white;
    padding: 40px 60px;
    font-size: 2.5rem;
    font-weight: bold;
    z-index: 2;
    margin-left: 60px;
}


@media (max-width: 768px) {
    .hero-overlay {
        padding: 30px 40px;
        font-size: 2rem;
        margin-right: 312px;
    }
}

/* Small screens (phones) */
@media (max-width: 576px) {
    .hero-overlay {
        padding: 20px 20px;
        font-size: 1.5rem;
        margin-left: 0;
        text-align: center;
    }
}


/* Navbar Section */
.nav-section {
    background-color: #002f87;
    position: sticky !important;
    top: 66px;
    z-index: 1000;
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
    .nav-section {
        top: 0px;
        /* slightly smaller offset */
        padding: 10px 20px;
    }
}

/* Small screens (phones) */
@media (max-width: 576px) {
    .nav-section {
        top: 0px;
        padding: 0px 15px;
        text-align: center;
    }

    .nav-section .nav-link {
        font-size: 14px;
        padding: 8px 10px;
        display: block;
        /* stack nav links if needed */
    }
}

.nav-section .nav-link {
    color: #ffffff;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

/* .nav-section .nav-link:hover,
    .nav-section .nav-link.active {
      color: #00b2ff;
      border-bottom: 2px solid #00b2ff;
    } */

@media (max-width: 767.98px) {
    .hero-overlay {
        margin: 0 auto;
        padding: 0px;
        text-align: center;
        font-size: 1rem;
        margin-left: 25px;
    }

    .nav-section .nav-link {
        padding: 0.75rem 1rem;
    }
}

.product-card {
    background-color: #fff;
    border-radius: 15px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    /* text-align: center; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: grid;
    flex-direction: column;
    /* justify-content: space-between; */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 10px 10px;
}

.learn-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 15px auto;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.learn-btn:hover {
    background-color: #0056b3;
}


.headline {
    font-weight: 700;
    font-size: 2.5rem;
    margin-right: 280px;
}

@media (max-width: 992px) {
    .headline {
        font-size: 2rem;
        margin-right: 150px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .headline {
        font-size: 1.75rem;
        margin-right: 80px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .headline {
        font-size: 1.5rem;
        margin-right: 0;
        text-align: center;
        /* center text for better mobile UX */
    }
}

.description {
    font-size: 1.1rem;
    color: #333;
    /* max-width: 900px; */
    text-align: justify;
}

.market-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.service-card4 {
    text-align: center;
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 10px;
}

.service-title {
    font-weight: 600;
    margin-top: 10px;
    font-size: 1.1rem;
}

.learn-btn {
    margin-top: 10px;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    background-color: transparent;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s;
    margin-left: 0;
}

.learn-btn:hover {
    background-color: #0d6efd;
    color: white;
}

.market-section {
    position: relative;
    background-image: url('.');
    /* Update with correct path */
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.market-overlay {
    position: absolute;
    top: 44%;
    left: 5%;
    transform: translateY(-50%);
    background-color: rgba(0, 61, 165, 0.95);
    color: white;
    padding: 11px 40px;
    border-radius: 5px;
    max-width: 381px;
}

.market-overlay h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.market-overlay p {
    margin-bottom: 15px;
}

.market-overlay .btn {
    background-color: #00a1e0;
    color: white;
    border: none;
    padding: 8px 16px;
}

.market-overlay .btn:hover {
    background-color: #007bb8;
}

@media (max-width: 576px) {
    .market-overlay {
        padding: 20px;
        max-width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
}


.story-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.story-date {
    font-size: 0.95rem;
    color: #333;
}

.story-desc {
    font-size: 0.95rem;
    color: #555;
}

.read-more {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.story-img {
    width: 100px;
    height: 60px;
    object-fit: cover;
}

.story-item {
    margin-bottom: 30px;
}

.pagination-text {
    font-size: 0.9rem;
    color: #444;
}


.qatar-banner {
    background-color: #002147;
    /* Dark Blue */
    color: white;
    padding: 117px 23px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.qatar-banner h2 {
    font-weight: 700;
    font-size: 1.75rem;
    color: #FFFFFF;
}

.qatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 767px) {
    .qatar-banner {
        border-radius: 8px 8px 0 0;
    }

    .qatar-image {
        border-radius: 0 0 8px 8px;
    }
}


/* section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: #1c1f23;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  section h2 {
    font-size: 2rem;
    padding: 0 2rem;
  }
}

@media (min-width: 992px) {
  section h2 {
    font-size: 2.25rem;
  }
} */

.object-fit-cover {
    object-fit: cover;
    height: 100%;
}

.market-overlay1 {
    position: absolute;
    top: 52%;
    left: 64%;
    transform: translateY(-50%);
    background-color: rgba(0, 61, 165, 0.95);
    color: white;
    padding: 23px 40px;
    border-radius: 5px;
    max-width: 403px;
}

@media (max-width: 991.98px) {
    .market-overlay1 {
        left: 65%;
        padding: 20px 30px;
        max-width: 360px;
        transform: translate(-50%, -50%);
    }
}


.market-overlay1 .btn {
    background-color: #00a1e0;
    color: white;
    border: none;
    padding: 8px 16px;
}

/* Government Services Container Styling */
.government-services {
    /* background-color: #f8f9fa; Bootstrap's light background */
    padding: 2rem;
    border-radius: 0.5rem;
    /* Rounded corners */
    /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05); Soft shadow */
}


.LookForThisCoolWebsite {
    font-size: 2em;
    text-align: center;
    background-color: #000;
}

.LookForThisCoolWebsite a {
    color: #ff0000;
}

/* <!-- first slider start-->  */

.slider {
    /* блок */
    background: rgba(240, 240, 240, 0.5);
    text-align: center;
}

/* резиновый iframe: чтобы видео занимало всё доступное пространство и пропорционально уменьшалось/увеличивалось при изменении экрана монитора */
.slider div {
    position: relative;
    padding-top: 56.25%;
}

.slider iframe {
    position: absolute;
    top: 0.5%;
    left: 0.5%;
    width: 99%;
    height: 99%;
}

/* стиль CSS для кнопок-переключателей (я немного побаловалась), который можно изменять или вовсе не использовать */
.slider a {
    /* вид кнопок */
    display: inline-block;
    padding: 0 0.5em;
    text-decoration: none;
    color: blue;
}

.slider a:visited {
    /* вид кнопок просмотренных видео */
    color: rgb(204, 204, 203);
}

.slider a:hover {
    /* вид кнопок при наведении */
    transform: scale(1.5);
}

.slider a:not(:active):focus {
    /* блокировка второго клика, но не третьего */
    pointer-events: none;
}

.slider a::before {
    /* из-за Mozilla Firefox приходится использовать псевдоэлемент */
    content: "\25cf";
    position: absolute;
    color: rgba(0, 0, 1, 0.1);
    transition: color 0s 9999999s;
    /* нужен, чтобы запомнился цвет после нажатия кнопки, подробнее про transition */
}

.slider a:nth-of-type(1)::before {
    /* вид первой кнопки при загрузки страницы */
    color: rgb(0, 129, 0);
}

.slider span:active a::before {
    /* для неактивных кнопок псевдоэлемент не нужен */
    color: rgba(0, 0, 0, 0);
    transition: color 0s;
}

.slider span:active a:nth-of-type(1)::before {
    /* вид неактивной первой кнопки, чтобы она выглядела как посещённая */
    color: #ccc;
    transition: color 0s;
}

.slider span:active a:active::before {
    /* вид нажатой кнопки [в Internet Explorer отсутствует всплытие :active] */
    color: green;
    transition: color 0s;
}

/* <!-- second slider -->  */
.carousel {
    padding: 0.3em 0.3em 0;
    /* background: rgb(240, 240, 240); */
    text-align: center;
}

.carousel div {
    position: relative;
    margin-bottom: 0.3em;
    padding-top: 56.25%;
}

.carousel iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel span {
    display: inline-block;
    word-spacing: 1em;
    /* расстояние между картинками */

    /* прокрутка миниатюр при необходимости */
    overflow: auto;
    white-space: nowrap;
    word-wrap: normal;
}

.carousel a {
    position: relative;
    display: inline-block;
    max-width: 120px;
    /* максимальная ширина миниатюр */
    width: 25%;
    /* ширина миниатюр */
    border: 1px solid blue;
    /* рамка вокруг миниатюр */
    opacity: 0.7;
    text-decoration: none;
}

.carousel a:visited,
.carousel a:nth-of-type(1) {
    border-color: #555;
    /* рамка вокруг миниатюр просмотренных видео */
}

.carousel a:hover {
    opacity: 1;
}

.carousel a:not(:active):focus {
    pointer-events: none;
}

.carousel a::before {
    content: "";
    position: absolute;
    top: 0em;
    right: 0em;
    bottom: 0em;
    left: 0em;
    background: rgba(0, 0, 1, 0.1);
    transition: background 0s 9999999s;
}

.carousel a:nth-of-type(1)::before {
    background: rgba(255, 255, 254, 0.7);
}

.carousel span:active a::before {
    background: rgba(0, 0, 0, 0);
    transition: background 0s;
}

.carousel span:active a:active::before {
    background: rgba(255, 255, 255, 0.7);
    transition: background 0s;
}

.carousel img {
    max-width: 100%;
    vertical-align: middle;
    /* убрать нижний отступ до рамки под картинкой */
}

/* <!-- third slider -->   */

.gallery {
    display: flex;
    flex-flow: wrap;
    border: solid rgb(240, 240, 240);
}

.gallery div {
    /* блоки видео + списков */
    flex: 150px;
    position: relative;
    text-align: center;
}

.gallery div:nth-of-type(1) {
    flex: 10000 1 300px;
    /* если ширина менее 300 + 150 = 450px , то списки миниатюр смещаются на нижний ряд, подробнее про свойство flex */
}

.gallery div::before {
    content: "";
    display: block;
    padding-top: 100px;
}

.gallery div:nth-of-type(1)::before {
    padding-top: 56.25%;
}

.gallery iframe,
.gallery span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.gallery a {
    /* для разнообразия, иконки не затемнены, так проще оценить код галереи видео */
    display: inline-block;
    margin-top: 5px;
}

.gallery a:last-child {
    margin-bottom: 5px;
}

.gallery iframe,
.gallery img {
    max-width: 100%;
    vertical-align: middle;
}


.mission-image {
    width: 56%;
    height: auto;
    border-radius: 5px;
    margin-left: 80px;
}

.mission-section {
    padding: 50px 0;
}

.mission-section h2 {
    font-weight: 700;
}

.mission-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.govt-services-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.govt-services-section h2 {
    font-weight: 700;
}

.govt-services-section h4 {
    font-weight: 600;
}

.govt-services-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.govt-services-section a {
    font-size: 1.05rem;
    color: #007bff;
    text-decoration: underline;
}

.market-overlay5 {
    background-color: #163db8a1;
    color: white;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: left;
    box-shadow: 0 0 15px rgb(0 0 0 / 38%);
    margin-top: 55px;
}

.market-overlay5 h2 {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.market-overlay5 p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.market-overlay5 .btn {
    background-color: white;
    color: #003399;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.market-overlay5 .btn:hover {
    background-color: #ffffffcc;
    color: #001f66;
    border-color: #ffffffcc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .market-overlay5 {
        padding: 20px;
        text-align: center;
    }

    .market-overlay5 h2 {
        font-size: 1.5rem;
    }

    .market-overlay5 p {
        font-size: 1rem;
    }
}


.info-section {
    padding: 60px 0;
}

.info-icon {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.info-box {
    text-align: center;
    margin-bottom: 40px;
}

.info-box h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.info-box .btn-outline-primary {
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 5px;
}



.safety-section {
    background-image: url('../image/saf.jpg');
    /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
}

.safety-overlay {
    background-color: rgba(0, 51, 153, 0.9);
    /* Boeing blue */
    color: white;
    padding: 40px;
    margin-left: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.safety-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.safety-overlay p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .safety-section {
        height: auto;
        padding: 40px 20px;
        justify-content: center;
    }

    .safety-overlay {
        margin: 0;
        text-align: center;
    }

    .safety-overlay h2 {
        font-size: 2rem;
    }
}


.report-section {
    padding: 60px 15px;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
}

.report-text h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.report-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.report-btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 6px;
}

.report-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .report-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .report-text p {
        text-align: center;
    }

    .text-md-start {
        text-align: center !important;
    }
}



.highlight-section {
    padding: 60px 15px;
    background: #f9f9f9;
}

.highlight-tabs {
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px;
    justify-content: center;
}

.highlight-tabs .nav-link {
    font-weight: 600;
    color: #6c757d;
}

.highlight-tabs .nav-link.active {
    color: #007bff;
    border-bottom: 3px solid #007bff;
}

.highlight-heading {
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.highlight-icon {
    height: 100px;
    margin-bottom: 20px;
}

.highlight-box {
    text-align: center;
    padding: 15px;
}

.highlight-box p {
    font-size: 1rem;
    line-height: 1.5;
}


.sms-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.sms-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.sms-section h5 {
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.sms-section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 576px) {
    .sms-section h2 {
        font-size: 2rem;
    }
}

.policy-btn {
    margin-top: 20px;
    padding: 10px 25px;
    border: 2px solid #0033a0;
    color: #0033a0;
    background-color: transparent;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
}

.policy-img {
    max-width: 50%;
    height: auto;
}

@media (max-width: 768px) {
    .policy-btn {
        width: 100%;
        text-align: center;
    }
}

.icon-box {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.feature-icon {
    width: 100%;
    height: auto;
}



#employee-safety {
    background-color: #f8f9fa;
    /* Light gray background */
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Title styling */
#employee-safety h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

/* Paragraph styling */
#employee-safety p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
}

/* Image tweaks */
#employee-safety img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

/* Responsive spacing for smaller screens */
@media (max-width: 768px) {
    #employee-safety h2 {
        font-size: 2rem;
        text-align: center;
    }

    #employee-safety p {
        text-align: center;
    }

    #employee-safety .text-center {
        margin-top: 2rem;
    }
}


/* Custom image adjustments */
.sustainability-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}


.main-section {
    padding: 100px 20px;
    text-align: center;
}

.main-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: justify;
}

.main-section p {
    font-size: 1.125rem;
    color: #2e3b4e;
    text-align: justify;
}

.market-sectionr {
    background-image: url('../image/ino_zad.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    /* You can adjust this or set a fixed height if needed */
    min-height: 460px;
    /* Example: ensures it's visible */
}



.feature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.feature-card h5 {
    font-weight: 600;
    color: #1a2e3b;
}

.feature-card p {
    color: #2e3b4e;
}

.feature-card .btn-outline-primary {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.feature-section {
    background-color: #f3f5f7;
    padding: 60px 0;
}

.market-sectionrm {
    background-image: url('../image/ino6.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    /* You can adjust this or set a fixed height if needed */
    min-height: 460px;
    /* Example: ensures it's visible */
}

/* Autonomy card styling */
.autonomy-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    height: 100%;
}

/* Image styling */
.autonomy-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* Title styling */
.autonomy-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a2e3b;
    margin-top: 15px;
}

/* Text styling */
.autonomy-card p {
    color: #2e3b4e;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Button styling */
.autonomy-card .btn-outline-primary {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    border-width: 2px;
}


.market-sectiont {
    background-image: url('../image/digi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    /* You can adjust this or set a fixed height if needed */
    min-height: 460px;
    /* Example: ensures it's visible */
}

.market-sections {
    background-image: url('../image/produceablity.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    /* You can adjust this or set a fixed height if needed */
    min-height: 460px;
    /* Example: ensures it's visible */
}


.market-sectionsts {
    background-image: url('../image/sustain.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    /* You can adjust this or set a fixed height if needed */
    min-height: 460px;
    /* Example: ensures it's visible */
}


.stat-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    text-align: center;
    height: 100%;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
}

.magenta {
    color: #e4007f;
}

.green {
    color: #8bc53f;
}

.blue {
    color: #007cc3;
}

.icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.text-justify {
    text-align: justify;
}


.map-container {
    background: url('../image/mapp.jpg') no-repeat center center;
    background-size: contain;
    height: 400px;
    width: 100%;
}

.report-btn {
    border: 2px solid #0d2d82;
    color: #0d2d82;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
}

.report-btn:hover {
    background-color: #0d2d82;
    color: #fff;
}

.report-image {
    max-width: 65%;
    height: auto;
    border-radius: 5px;
    margin-left: 200px;
}

@media (max-width: 991.98px) {
    .report-image {
        max-width: 80%;
        margin-left: 80px;
    }
}

/* Small screens (mobile) */
@media (max-width: 575.98px) {
    .report-image {
        max-width: 100%;
        margin-left: 0;
    }
}

.gradient-box {
    background: linear-gradient(to bottom, #ccf6e4, #addcfb);
    /* Light green to blue */
    min-height: 270px;
    /* Adjust height as per design */
}

h2 {
    font-size: 1.8rem;
}

@media (min-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
}

.btn-outline-primary {
    border: 2px solid #0033a0;
    color: #0033a0;
}

.btn-outline-primary:hover {
    background-color: #0033a0;
    color: #fff;
}

.btn-primary {
    background-color: #0033a0;
    border: 2px solid #0033a0;
}



.feature-icon {
    font-size: 48px;
    color: teal;
    margin-bottom: 15px;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-desc {
    color: #333;
    font-size: 15px;
}


.cascade-section {
    padding: 60px 0;
    background-color: #f9fbfc;
}

.cascade-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.cascade-desc {
    font-size: 1rem;
    margin: 15px 0;
    color: #333;
}

.btn-cascade {
    border: 2px solid #0033a0;
    color: #0033a0;
    font-weight: 600;
    padding: 10px 20px;
    text-transform: uppercase;
}

.btn-cascade:hover {
    background-color: #0033a0;
    color: #fff;
}

.info-icon2 {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.btn-outline-custom {
    border: 2px solid #0033a0;
    color: #0033a0;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 18px;
    margin-right: 10px;
    margin-top: 10px;
}

.btn-outline-custom:hover {
    background-color: #0033a0;
    color: white;
}

.icon {
    width: 40px;
    height: auto;
    margin-right: 15px;
}

.row-item {
    padding: 20px 0;
    align-items: center;
}

.bg-alt {
    background-color: #f6f8f9;
}

.bg-light-grey {
    background-color: #f6f8f9;
}


.accordion-button::after {
    display: none;
}

.custom-arrow::before {
    content: '›';
    color: #002244;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.accordion-button {
    background-color: transparent;
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #ccc;
}

.resource-link {
    display: block;
    padding: 10px 0;
    color: #005dab;
    text-decoration: underline;
}

.resource-row:nth-child(even) {
    background-color: #f6f8f9;
}

.main-sectionpro {
    padding: 80px 15px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2a3a;
}

.sub-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    color: #1a2a3a;
}

.content-text {
    font-size: 1.1rem;
    margin-top: 20px;
    color: #1a2a3a;
    max-width: 1262px;
}

.content-text a {
    color: #007bff;
    text-decoration: underline;
}


.specs-section {
    padding: 60px 15px;
}

.table-heading {
    font-weight: 700;
    color: #1a2a3a;
}

.table th,
.table td {
    vertical-align: middle;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f5f7f8;
}

/* c sliddr */
.custom-slider-section {
    background: linear-gradient(to bottom, #f8f9fa, #f1f2f3);
    padding: 60px 20px;
}

.custom-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.custom-slide-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.custom-indicators [data-bs-target] {
    background-color: #000000;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.6;
}

.custom-indicators .active {
    opacity: 1;
}

.custom-prev-icon,
.custom-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 10px;
}

@media (max-width: 768px) {
    .custom-slider-wrapper {
        margin: 0 10px;
    }
}


.aircraft-section1 {
    position: relative;
    background: url('../image/air2.jpg') no-repeat center center/cover;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
}

.aircraft-section {
    position: relative;
    background: url('../image/373.jpg') no-repeat center center/cover;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
}

.aircraft-label {
    background-color: #0033a0;
    padding: 3rem 3rem;
    font-size: 2rem;
    font-weight: 700;
    max-width: 393px;
    width: 125%;
    /* text-align: center; */
    color: #fff;
    margin: auto;
    margin-right: 266px;
}

@media (max-width: 768px) {
    .aircraft-section {
        height: 50vh;
        justify-content: center;
    }

    .aircraft-label {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }
}

.aircraft-specs-section {
    background-color: #fff;
    padding: 40px 0;
}

.aircraft-table-heading {
    font-weight: 700;
    font-size: 2rem;
}

.aircraft-specs-table thead .aircraft-table-header {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.aircraft-specs-table tbody .aircraft-feature {
    text-align: left;
    font-weight: 600;
    background-color: #fff;
}

.aircraft-specs-table tbody tr:nth-child(even) {
    background-color: #f6f7f8;
}

.aircraft-specs-table td,
.aircraft-specs-table th {
    vertical-align: middle;
    padding: 1rem;
}

@media (max-width: 767px) {
    .aircraft-table-heading {
        font-size: 1.5rem;
    }

    .aircraft-specs-table thead .aircraft-table-header,
    .aircraft-specs-table td {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}


.boeing747-section {
    padding: 90px 0;
}

.boeing747-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.boeing747-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.boeing747-img-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.boeing747-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 576px) {
    .boeing747-title {
        font-size: 2rem;
    }

    .boeing747-text {
        font-size: 1rem;
    }
}


.highlight-number {
    font-size: 100px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.caption-text {
    font-size: 1.5rem;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

/* ============ CUSTOM CAROUSEL STYLES ============ */
.custom-carousel {
    position: relative;
    overflow: hidden;
}

.custom-carousel-inner {
    position: relative;
    width: 100%;
}

.custom-carousel-item {
    display: none;
    animation: fade 1s ease-in-out;
    text-align: center;
}

.custom-carousel-item.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Highlight number background */
.highlight-number {
    font-size: 100px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

/* Caption */
.caption-text {
    font-size: 1.5rem;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

/* Image */
.carousel-img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

/* Indicators */
.custom-indicators {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 8px;
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #888;
    opacity: 0.5;
}

.custom-indicators button.active {
    background-color: #333;
    opacity: 1;
}

/* Custom controls */
.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
}

.custom-prev {
    left: 10px;
}

.custom-next {
    right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .highlight-number {
        font-size: 40px;
        top: 10%;
    }

    .caption-text {
        font-size: 1.1rem;
    }

    .carousel-img {
        max-width: 100%;
    }
}

.image-caption-wrapper {
    background-image: url('../image/FRE.png');
    background-size: cover;
    background-position: center;
    height: 470px;
    /* adjust as needed */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.caption-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Global Fleet Section Styling */
.global-fleet-section {
    background: linear-gradient(to bottom, #f8f9fa, #f1f3f5);
    /* subtle gray gradient */
}

.global-fleet-section h2 {
    font-size: 2rem;
    color: #102336;
}

.global-fleet-section p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #343a40;
}

.global-fleet-section a {
    font-size: 1rem;
    display: inline-block;
    margin-top: 1rem;
}

.global-fleet-section img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive text adjustments */
@media (max-width: 768px) {
    .global-fleet-section h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .global-fleet-section p {
        font-size: 1rem;
        text-align: center;
    }

    .global-fleet-section a {
        text-align: center;
        display: block;
    }
}

.battle-management-section {
    background: linear-gradient(to bottom, #f8f9fa, #eef1f4);
    /* light gradient background */
}

.battle-management-section h2 {
    font-size: 2rem;
    color: #1c2b39;
}

.battle-management-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2e3a48;
}

.battle-management-section img {
    border-radius: 0.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    max-width: 80%;
    height: auto;
}

@media (max-width: 768px) {
    .battle-management-section h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .battle-management-section p {
        text-align: center;
    }
}

.peer-fight-section {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.peer-fight-section p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.flag-stack {
    background-image: url(../image/flag.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* min-height: 97%; */
    max-width: 265px;
    margin-top: 40px;
}


.presidential-airplane-section ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.image-wrapper2 {
    margin-top: 2rem;
    /* Adds extra top space */
}

@media (min-width: 992px) {
    .image-wrapper {
        margin-top: 0rem;
        /* Reset margin on large screens if needed */
    }
}



.market-sectionrmo {
    background-image: url('../image/zad-img-3.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 460px;
}


.market-sectionrmop {
    background-image: url('../image/zad-img-2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 460px;
}


.zad-services-section {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 4rem 1rem;
}

.zad-services-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d2d3c;
}

.zad-services-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.zad-services-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
}

.zad-services-link:hover {
    text-decoration: underline;
}

.zad-services-image {
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .zad-services-heading {
        font-size: 2rem;
    }

    .zad-services-description {
        font-size: 1.05rem;
    }
}


.org-section {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    padding: 4rem 1rem;
}

.org-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d2d3c;
}

.org-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.org-list a {
    color: #007bff;
    text-decoration: none;
}

.org-list a:hover {
    text-decoration: underline;
}

.org-img {
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .org-heading {
        font-size: 2rem;
    }

    .org-description {
        font-size: 1.05rem;
    }
}

.custom-bg {
    background-color: black
        /* Example: Deep Navy Blue */
}

/* Full-width dropdown */
.fullwidth-dropdown {
    width: 100vw;
    left: 0 !important;
    right: 0;
    top: 100%;
    padding: 20px 0;
    border-radius: 0;
    border: none;
    background: var(--bs-light);
}

/* Dropdown transition and appearance */
@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease-in-out;
    }

    .navbar .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect */
.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* Force full width and position from left */
.fullwidth-dropdown.start-from-left {
    position: absolute;
    left: 0 !important;
    right: 0;
    top: 100%;
    width: 100vw;
    margin: 0;
    padding: 20px 0;
    border: none;
    border-radius: 0;
    background: var(--bs-light);
    z-index: 1000;
}

/* Animate appearance */
@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease-in-out;
    }

    .navbar .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect */
.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}


.nav-item.dropdown {
    position: static !important;
}

.dropdown-item {
    padding: 1.4rem 1rem;
}

.dropdown .dropdown-menu a:hover {
    background: linear-gradient(45deg, #7366eb8a, #8f86ef7a);
}


.glory-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glory-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .glory-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
} */

.kpi-section {
    padding: 60px 20px;
}

.kpi-section h2 {
    font-weight: 700;
}

.kpi-section ul {
    margin-top: 20px;
    padding-left: 1rem;
}

.kpi-section li {
    margin-bottom: 10px;
}

.kpi-section b {
    font-weight: 600;
}

.acsaa-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c2b39;
}

.acsaa-description {
    font-size: 1.125rem;
    color: #1a1a1a;
}

.acsaa-section {
    border-top: 1px solid #dee2e6;
}

.acsaa-section:first-of-type {
    border-top: none;
}

.acsaa-trigger {
    font-weight: 600;
    font-size: 1.1rem;
    padding-left: 0;
    background-color: transparent;
}

.acsaa-trigger::before {
    content: "› ";
    color: #003087;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.acsaa-content {
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
}

.acsaa-button:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 576px) {
    .acsaa-heading {
        font-size: 1.8rem;
    }

    .acsaa-description {
        font-size: 1rem;
    }
}

.progress-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c2b39;
}

.progress-card {
    border: none;
    background-color: transparent;
}

.progress-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1c2b39;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.progress-link {
    font-weight: 600;
    color: #1c2b39;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 992px) {
    .qatar-banner {
        padding: 80px 20px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .qatar-banner {
        padding: 60px 15px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    .qatar-banner {
        padding: 40px 10px;
    }
}

.progress-link:hover {
    text-decoration: underline;
}

.progress-separator {
    margin-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.collapse-content {
    margin-top: 1rem;
    color: #444;
}

.root {
    background-color: #f8f9fa;
}

.market-sectionrg {
    background-image: url('../image/join.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    /* You can adjust this or set a fixed height if needed */
    min-height: 460px;
    /* Example: ensures it's visible */
}

.brg-logos {
    margin-top: 40px;
}

.brg-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.brg-card img {
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brg-card p {
    font-size: 1.1rem;
    color: #212529;
}

.brg-card small {
    color: #6c757d;
}


.aircraft-img {
    max-width: 40%;
    height: auto;
}

/* Emergency section base padding */
.zt-emergency-section {
    background-color: #f9f9f9;
}

/* Section titles */
.zt-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #003366;
    text-align: start;
    margin-bottom: 1rem;
}

/* Contact number styling */
.zt-contact-number {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* Paragraph styling */
.zt-description,
.zt-note {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Cyber list styling */
.zt-cyber-list {
    list-style-type: disc;
    padding-left: 20px;
}

.zt-cyber-list li {
    margin-bottom: 0.5rem;
}

.zt-cyber-list li a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.zt-cyber-list li a:hover {
    color: #003366;
    text-decoration: underline;
}

.retiree-resources-section {
    background-color: #f9f9f9;
}

.section-title {
    font-weight: 700;
    font-size: 1.75rem;
}

.section-intro {
    font-size: 1rem;
    color: #333;
}

.benefit-block {
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.benefit-title {
    font-weight: 600;
    color: #1a1a1a;
}

.benefit-subtitle {
    font-size: 1rem;
}

.benefit-contact {
    color: #555;
}

.benefit-description,
.benefit-note {
    font-size: 0.95rem;
    color: #444;
}

.benefit-link a {
    color: #007bff;
    text-decoration: underline;
    word-break: break-word;
}

.attention-text {
    font-weight: 600;
    color: #212529;
}

.worklife-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1f23;
    margin-top: 40px;
}

.worklife-desc {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.worklife-link a {
    color: #007bff;
    text-decoration: underline;
}

ul.worklife-list {
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.poa-section h2 {
    font-weight: 700;
    font-size: 2.25rem;
    color: #1c1e21;
    margin-bottom: 1.5rem;
}

.poa-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.poa-section ul {
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.poa-section ul li {
    margin-bottom: 0.5rem;
}

.poa-section strong {
    display: block;
    margin-top: 1.5rem;
    font-weight: 600;
}

.legacy-section {
    background-color: #f8f9fa;
}

.legacy-card img {
    width: 100%;
    height: auto;
}

.legacy-card h5 {
    font-weight: 700;
    margin-top: 1rem;
}

.legacy-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.learn-btn {
    border: 2px solid #0033a0;
    color: #0033a0;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    transition: 0.3s ease;
    background-color: transparent;
}

.learn-btn:hover {
    background-color: #0033a0;
    color: white;
}



.flying-taxi-principles {
    background-color: #f0f4f9;
}

/* .flying-taxi-principles .principles-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease-in-out;
} */

.flying-taxi-principles .principles-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.flying-taxi-principles .section-title {
    font-weight: 700;
    font-size: 1.8rem;
    color: #123c63;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flying-taxi-principles .principle-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
}

.flying-taxi-principles .principle-list ol {
    margin-top: 10px;
    padding-left: 1.2rem;
}

.flying-taxi-principles .tier {
    background-color: #e6f0ff;
    border-left: 5px solid #0d6efd;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.flying-taxi-principles .tier:hover {
    transform: scale(1.02);
}

@media (max-width: 576px) {
    .flying-taxi-principles .principles-card {
        padding: 20px;
    }

    .flying-taxi-principles .section-title {
        font-size: 1.5rem;
    }
}


.flying-taxi-grading {
    background-color: #f5faff;
}

/* .flying-taxi-grading .grading-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

.flying-taxi-grading .grading-title {
    font-weight: 700;
    font-size: 1.8rem;
    color: #004b6e;
    /* text-align: center; */
    margin-bottom: 40px;
}

.flying-taxi-grading .grade-block {
    background-color: #eef5ff;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;
    padding: 15px 20px;
    transition: transform 0.2s;
}

.flying-taxi-grading .grade-block:hover {
    transform: scale(1.01);
}

.flying-taxi-grading .grade-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .flying-taxi-grading .grading-card {
        padding: 20px;
    }

    .flying-taxi-grading .grading-title {
        font-size: 1.5rem;
    }

    .flying-taxi-grading .grade-icon {
        margin-bottom: 10px;
    }
}

.flying-taxi-implementation {
    background: linear-gradient(to right, #e6f0ff, #f5f9ff);
}

/* .flying-taxi-implementation .implementation-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px;
    
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
} */

.flying-taxi-implementation .implementation-card {
    border-radius: 15px;
    padding: 35px;

}

.flying-taxi-implementation .implementation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.flying-taxi-implementation .section-heading {
    font-size: 1.8rem;
    color: #014f86;
    /* text-align: center; */
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flying-taxi-implementation .tips-list {
    font-size: 1rem;
    color: #333;
}

.flying-taxi-implementation .tips-list li {
    margin-bottom: 12px;
}

.flying-taxi-implementation .tips-list em {
    font-weight: bold;
    color: #0d6efd;
}

.flying-taxi-implementation .inspiration-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 20px;
}

.flying-taxi-implementation .inspiration-list {
    list-style: none;
    padding-left: 0;
}

.flying-taxi-implementation .inspiration-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: start;
}

.flying-taxi-implementation .inspiration-list i {
    font-size: 1.2rem;
    margin-right: 8px;
}

@media (max-width: 576px) {
    .flying-taxi-implementation .implementation-card {
        padding: 20px;
    }

    .flying-taxi-implementation .section-heading {
        font-size: 1.5rem;
    }
}


.contact-parent {
    display: flex;
    margin: 80px 0;
}

.contact-child {
    display: flex;
    flex: 1;
    box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
}

.child1 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://cdn.pixabay.com/photo/2019/06/28/00/17/architecture-4303279_1280.jpg");
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    color: #fff;
    padding: 100px 0;
}

.child1 p {
    padding-left: 20%;
    font-size: 20px;
    text-shadow: 0px 0px 2px #000;
}

.child1 p span {
    font-size: 16px;
    color: #9df2fd;
}

.child2 {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.inside-contact {
    width: 90%;
    margin: 0 auto;
}

.inside-contact h2 {
    text-transform: uppercase;
    text-align: center;
    margin-top: 50px;
}

.inside-contact h3 {
    text-align: center;
    font-size: 16px;
    color: #0085e2;
}

.inside-contact input,
.inside-contact textarea {
    width: 100%;
    background-color: #eee;
    border: 1px solid rgba(0, 0, 0, 0.48);
    padding: 5px 10px;
    margin-bottom: 20px;
}

.inside-contact input[type="submit"] {
    background-color: #000;
    color: #fff;
    transition: 0.2s;
    border: 2px solid #000;
    margin: 30px 0;
}

.inside-contact input[type="submit"]:hover {
    background-color: #fff;
    color: #000;
    transition: 0.2s;
}

@media screen and (max-width: 991px) {
    .contact-parent {
        display: block;
        width: 100%;
    }

    .child1 {
        display: none;
    }

    .child2 {
        background-image: linear-gradient(rgba(255, 255, 255, 0.7),
                rgba(255, 255, 255, 0.7)),
            url("https://cdn.pixabay.com/photo/2019/06/28/00/17/architecture-4303279_1280.jpg");
        background-size: cover;
    }

    .inside-contact input,
    .inside-contact textarea {
        background-color: #fff;
    }
}