/*
@charset "UTF-8";
/*---------------------------
 CSS Index  
****************************
1.CSS Variable
2.banner
3.VIDEO POPUP
4.about
5.call to action
6.service section style
7.project
8.team start
9.video section
10.FAQ page design start
11.customer review
12.blog post

---------------------------- */


/* ====CSS Variable=== */

:root {
    /* ====colors======= */
    --main-color: #fd5502;
    --title-color: #102039;
    --dark-color: #222222;
    --text-color: #505050;
    --white-color: #ffffff;
    --black-color: #000;
    /* ====colors end======= */
}


/* ==========banner======== */

img.banner-img {
    width: 100%;
}

.banner-item {
    position: relative;
}

.banner-content {
    position: absolute;
    top: 0;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

p.sm-title {
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 151px;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-out;
}

h1.title {
    line-height: 78px;
    font-family: var(--title-font);
    font-size: 66px;
    color: var(--title-color);
    margin-top: 150px;
    transition: all 1.3s ease-out;
    visibility: hidden;
    opacity: 0;
}

p.banner-des {
    margin: 15px 0 30px;
}

.banner-btn-div {
    display: flex;
    align-items: center;
}

a.play-video {
    margin-left: 30px;
    color: var(--text-color);
    font-weight: 600;
    transition: .3s;
    display: flex;
    align-items: center;
}

.play-icon {
    width: 40px;
    height: 40px;
    border: 3px solid var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    /* transition: .3s; */
}

.play-video:hover span {
    border-color: var(--main-color);
}

a.play-video:hover {
    color: var(--main-color);
}

img.play-icon {
    margin-right: 12px;
}

.slider-nav {
    position: absolute;
    display: block;
    width: 162px;
    right: 0;
    bottom: 50px;
}

.slider-nav div {
    background: var(--white-color);
    width: 70px;
    height: 70px;
    color: var(--title-color);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.slider-nav div:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.swiper-slide.swiper-slide-active p.sm-title {
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.swiper-slide.swiper-slide-active h1.title {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}


/* ===========VIDEO POPUP ============= */

.video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 69%);
    opacity: 0;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    -moz-transition: all ease 500ms;
    -ms-transition: all ease 500ms;
    -o-transition: all ease 500ms;
}

.video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 35px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
}

.video-overlay-close:hover {
    color: var(--main-color);
}

.video-btn span {
    z-index: var(--z-tooltip);
}

.play-icon-larg {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 4px solid var(--white-color);
    color: var(--white-color);
    transition: .3s;
    font-size: 20px;
}

.play-icon-larg:hover {
    color: var(--main-color);
}


/* ======================about ============ */

.about-img img {
    width: 100%;
}

.about-content {
    padding-left: 40px;
}

.about-img img {
    width: 100%;
}

.about-img {
    align-items: center;
    display: flex;
    height: 100%;
}

.sec-head h4 {
    color: var(--main-color);
    font-size: var(--m-title);
    text-transform: uppercase;
    font-family: var(--title-font);
    font-weight: 600;
    margin-bottom: 10px;
}

.sec-head h2 {
    font-size: var(--l-title);
    font-family: var(--title-font);
    color: var(--title-color);
    text-transform: capitalize;
}

.about-content p {
    padding-bottom: 15px;
    font-size: 15px;
}

p.about-li {
    padding-bottom: 7px;
    font-size: var(--sm-font);
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--title-color);
    display: flex;
    align-items: center;
}

p.about-li i {
    color: var(--main-color);
    margin-right: 5px;
}

.signature {
    margin-top: 20px;
}

.signature img {
    margin-left: 25px;
}



/* ==================about end =============== */


/* ==========================call to action ================== */

.call-to-action {
    background-image: url(../img/callto/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.call-to-action-img img {
    width: 80%;
}

.action-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.action-content-inner h2 {
    color: var(--white-color);
    font-family: var(--title-font);
    font-size: 40px;
    font-weight: 600;
}

.action-content-inner p {
    color: var(--white-color);
    margin: 15px 0 20px 0;
}

.call-to-action-img {
    text-align: right;
}

.call-to-action::after {
    content: "";
    background: var(--main-color);
    height: 100%;
    display: block;
    width: 50%;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

@media screen and (max-width:992px) {
    .call-to-action {
        background-position: right;
    }
}


/* ========================call to action end ========= */


/* =============================service section style ============== */

.sec-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-card {
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0px 0px 70px 1px #d8d8d8;
    transition: .3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-content {
    margin-top: 30px;
    transition: .3s;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

h5.name {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    transition: .3s;
}

h5.name a {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    transition: .3s;
}

a.more-btn {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--main-color);
    font-family: var(--title-font);
    transition: .3s;
}

a.more-btn:hover {
    color: var(--title-color);
}

.service-card-content p {
    padding: 15px 0;
}

.hov-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
}

.hov-effect img {
    width: 61%;
    filter: brightness(40.5);
    opacity: 0.1;
}

.service-card:before {
    background: var(--main-color);
    content: "";
    position: absolute;
    transition: .6s;
    opacity: 0;
    visibility: hidden;
    top: 50%;
    left: 50%;
    right: 50%;
    bottom: 50%;
}

.service-card:hover:before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.service-card:hover .service-icon img {
    filter: brightness(11111.5);
}

.service-card:hover .service-card-content {
    color: var(--white-color);
}

.service-card:hover .service-card-content .hov-effect {
    opacity: 1;
    visibility: visible;
}

.service-card:hover .service-card-content h5 {
    color: var(--white-color);
}

.service-card:hover .service-card-content a {
    color: var(--white-color);
}


/* ========================service style end ============ */


/* =======================project=============== */

.project {
    background: #f8f8f8;
}

.work-details {
    background: #00000061;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
    padding: 30px 10px;
}

.work-img:hover .work-details {
    opacity: 1;
    visibility: visible;
}

.work-img {
    position: relative;
    height: 100%;
}

a.work-name {
    color: var(--white-color);
    font-weight: 600;
    font-size: 24px;
    transition: .3s;
}

a.work-name:hover {
    color: var(--main-color);
}

h5.work-category {
    color: var(--white-color);
    text-transform: capitalize;
    font-family: var(--title-font);
    margin-bottom: 5px;
    font-size: 24px;
}

.work-img img {
    width: 100%;
    height: 100%;
}


/* =============project end =========== */


/* =============team start================ */

img.team-img {
    width: 100%;
}

.team-member-info {
    text-align: center;
    padding: 20px;
}

.team-member-info a {
    color: var(--black-color);
    font-weight: 600;
    transition: .3s;
    font-size: 24px;
}

.team-member-info a:hover {
    color: var(--main-color);
}

.team-card {
    box-shadow: 0px 0px 33px 1px #f0f0f0;
    position: relative;
    overflow: hidden;
}

.social-link {
    width: 35px;
    height: 35px;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    color: var(--white-color);
    transition: .3s;
    font-size: 17px;
}

a.social-link:hover {
    color: var(--title-color);
}

.user-social {
    position: absolute;
    top: 15px;
    right: -20%;
    transition: .3s;
}

.team-card:hover .user-social {
    right: 15px;
}


/* =========================video section ================ */

.video-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-sec {
    position: relative;
}


/* ================FAQ page design start============= */

.faq-head h2 {
    width: 570px;
}

.faq-content {
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--first-color);
    border-right: 3px solid var(--first-color);
}

.faq-content:hover .faq-que button {
    color: var(--first-color);
}

.faq-que {
    cursor: pointer;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-que button {
    border: none;
    outline: none;
    background: none;
    text-align: left;
    color: var(--black-color);
    font-size: 20px;
    font-weight: 600;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.faq-ans p {
    line-height: 26px;
    padding: 0px 25px 17px;
    color: var(--text-color);
}

.faq-que i {
    background: var(--main-color);
    color: var(--white-color);
    padding: 5px;
}

.slider-item-img img {
    width: 100%;
}

.arrow-btn {
    background: var(--white-color);
    padding: 30px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    color: var(--title-color);
}

.swiper-button-prev.arrow-btn {
    left: 0;
}

.swiper-button-next.arrow-btn {
    right: 0;
}

.product-slider {
    position: relative;
}

.arrow-btn:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.faq-content:last-child {
    margin-bottom: 0;
}

.faq-slider {
    opacity: 0;
    visibility: hidden;
}

.product-slider:hover .faq-slider {
    opacity: 1;
    visibility: visible;
}


/*===============================================================
                    <!-- FAQ STYLE END -->
==================================================================*/


/* ===================customer review ================== */

.customer-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}

.customer-img img {
    width: 100%;
}

.customer-info {
    display: flex;
    align-items: center;
}

.customer-p-info {
    padding-left: 15px;
    font-family: var(--title-font);
}

.customer-p-info h5 {
    color: var(--title-color);
    font-weight: 600;
}

.customer-card {
    border: 1px solid #ddd;
    padding: 25px;
    transition: .3s;
}

.review {
    padding-top: 15px;
}

ul.rating-ul {
    display: flex;
}

.rating {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

ul.rating-ul li {
    padding: 0 4px;
}

ul.rating-ul li i {
    color: #facd01;
}

ul.rating-ul li i.unrate {
    color: #ddd;
}

.customer {
    background: #f8f8f8;
}

p.rating-count {
    padding-left: 10px;
    color: var(--title-color);
    font-weight: 600;
    font-size: 13px;
    line-height: initial;
}

.customer-card:hover {
    border-color: var(--white-color);
    background: var(--white-color);
    box-shadow: 0px 20px 20px 1px #f4f4f4;
}


/* ==============customer review end ========================== */


/* ========================blog post ================= */

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
}

.post-details {
    padding: 25px 25px 0px 25px;
}

a.post-link {
    font-size: 21px;
    color: var(--title-color);
    font-weight: 600;
    line-height: 27px;
    transition: .3s;
    text-transform: capitalize;
}

.post-details p {
    padding: 10px 0;
}

a.post-link:hover {
    color: var(--main-color);
}

.post-card {
    border-radius: 6px;
    transition: .3s;
    box-shadow: 1px 1px 20px 0px #f0f0f0;
}

.post-details p {
    padding: 6px 0 25px;
}

a.post-link:hover {
    color: var(--main-color);
}

.post-img img {
    width: 100%;
    transition: .3s;
}

.post-card:hover {
    box-shadow: 0px 12px 20px 1px #f2f2f2;
}

p.date {
    padding: 15px 0;
    font-size: 15px;
}

.post-card:hover .post-img img {
    transform: scale(1.1);
}

.post-img {
    overflow: hidden;
}


/* ========================blog post end ================= */

/* ========================organization chart ================= */

.org-chart {
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.org-level-1,
.org-level-2,
.org-level-3 {
    text-align: center;
    margin-bottom: 30px;
}

.org-box {
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 280px;
}

.org-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(253, 85, 2, 0.2);
}

.org-headquarters {
    background: linear-gradient(135deg, #fd5502 0%, #ff7733 100%);
    color: white;
    min-width: 350px;
}

.org-headquarters h5 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.org-headquarters p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
}

.org-subsidiary {
    background: linear-gradient(135deg, #102039 0%, #1a3a5a 100%);
    color: white;
    min-width: 350px;
}

.org-subsidiary h5 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.org-subsidiary p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
}

.org-connector {
    width: 2px;
    height: 40px;
    background: #fd5502;
    margin: 0 auto 20px;
}

.org-connector-multi {
    position: relative;
    height: 60px;
    margin-bottom: 20px;
}

.org-connector-multi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: #fd5502;
}

.org-connector-multi::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #fd5502;
}

.org-department {
    height: 100%;
}

.org-dept-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #fd5502;
    min-width: auto;
    padding: 20px 15px;
    margin-bottom: 15px;
}

.org-dept-header h6 {
    color: var(--title-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.org-dept-header i {
    margin-right: 8px;
    color: #fd5502;
    font-size: 20px;
}

.org-sub-items {
    background: white;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.org-sub-item {
    padding: 12px 15px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.org-sub-item:last-child {
    margin-bottom: 0;
}

.org-sub-item i {
    color: #fd5502;
    margin-right: 10px;
    font-size: 16px;
}

.org-sub-item:hover {
    background: #fd5502;
    color: white;
    transform: translateX(5px);
}

.org-sub-item:hover i {
    color: white;
}

@media (max-width: 768px) {
    .org-box {
        min-width: 240px;
    }

    .org-headquarters,
    .org-subsidiary {
        min-width: 280px;
    }

    .org-dept-header h6 {
        font-size: 14px;
    }

    .org-sub-item {
        font-size: 13px;
        padding: 10px 12px;
    }

    .org-connector-multi::after {
        left: 5%;
        right: 5%;
    }
}

/* ========================organization chart end ================= */

/* ========================company timeline ================= */

.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 60px 0 40px;
    overflow-x: auto;
    overflow-y: visible;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fd5502 0%, #ff7733 50%, #fd5502 100%);
    z-index: 0;
}

.timeline-h-item {
    position: relative;
    flex: 1;
    min-width: 140px;
    text-align: center;
    z-index: 1;
}

.timeline-h-year {
    background: linear-gradient(135deg, #fd5502 0%, #ff7733 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(253, 85, 2, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-h-dot {
    width: 16px;
    height: 16px;
    background: white;
    border: 4px solid #fd5502;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(253, 85, 2, 0.1);
    transition: all 0.3s ease;
}

.timeline-h-item:hover .timeline-h-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(253, 85, 2, 0.2);
}

.timeline-h-content {
    height: 130px;
    background: white;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #fd5502;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-h-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(253, 85, 2, 0.2);
}

.timeline-h-content h6 {
    color: var(--title-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-h-content p {
    color: var(--text-color);
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

/* Animation */
.timeline-h-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-h-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-h-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-h-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-h-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-h-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-h-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-h-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .timeline-horizontal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .timeline-horizontal::before {
        display: none;
    }

    .timeline-h-item {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 200px;
    }

    .timeline-h-dot {
        display: none;
    }

    .timeline-h-content {
        min-height: 140px;
    }
}

@media (max-width: 768px) {
    .timeline-h-item {
        flex: 0 0 calc(50% - 15px);
        min-width: 150px;
    }

    .timeline-h-year {
        font-size: 13px;
        padding: 6px 12px;
    }

    .timeline-h-content {
        padding: 15px 12px;
        min-height: 130px;
    }

    .timeline-h-content h6 {
        font-size: 15px;
    }

    .timeline-h-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .timeline-h-item {
        flex: 0 0 100%;
        max-width: 300px;
    }
}

/* ========================company timeline end ================= */

/* ========================clients showcase ================= */

.clients-showcase {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.clients-showcase:hover {
    box-shadow: 0 12px 40px rgba(253, 85, 2, 0.15);
    transform: translateY(-5px);
}

.clients-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .clients-showcase {
        padding: 25px;
    }
}

/* ========================clients showcase end ================= */



/* ============section divider========== */
.section-divider {
    padding: 60px 0;
    position: relative;
}

.divider-line {
    position: relative;
    height: 2px;
    background: linear-gradient(to right, transparent, #ddd 20%, #ddd 80%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line::before,
.divider-line::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, var(--main-color), transparent);
    top: 50%;
}

.divider-line::before {
    left: 0;
}

.divider-line::after {
    right: 0;
    background: linear-gradient(to left, var(--main-color), transparent);
}

.divider-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white-color);
    border: 2px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.divider-icon i {
    font-size: 28px;
    color: var(--main-color);
}

/* ============section divider end========== */