.navbar-nav li {
    position: relative;
}

.hoverUnderline {
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.hoverUnderline::after {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 1px solid;
  margin-top: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0, 1);
  transform: scaleX(0);
}
.hoverUnderline:hover {
  color: #fb0108;
}
.hoverUnderline:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.searchBoxOuter {
    position: relative;
    width: 100%;
    display: flex;
    max-width: 300px;
    justify-content: flex-end;
}
.searchGroup {
    position: relative;
}
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
}
.suggestions li {
    padding: 8px 12px;
    cursor: pointer;
    list-style: none;
}
.suggestions li:hover {
    background: #f5f5f5;
}

.desktopNav {
    display: block;
}
.navbar-nav .nav-link.active{
background-color: var(--clr2);
color:white;
border-radius:10px;
    padding-left: 10px;
}

.mobileNav {
    display: none;
}

.navbar-nav {
    gap: 20px;
}

.w50{width:50%;}

.navbar-nav li::before {
    content: '';
    position: absolute;
    width: 1.2px;
    background-color: gray;
    height: 55%;
    right: -9.5%;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-nav li:last-child::before {
    display: none;
}

.searchGroup {
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    max-width: 282px;
}

.searchGroup input {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    height: 49px;
    padding-right: 2.5rem;
    padding-left: 1.5rem;
    /* box-shadow: 0 0 0 1.5px #2b2c37, 0 0 25px -17px #000; */
    border: 1px solid var(--clr9);

    border-radius: 30px;
    background-color: var(--clr8);
    outline: none;
    color: var(--clr9);
    transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: text;
    z-index: 0;
}

.searchGroup input::placeholder {
    color: #bdbecb;
}

.searchGroup input:hover {
    box-shadow: 0 0 0 1.5px var(--clr9), 0px 0px 25px -15px var(--clr9);
}

.searchGroup input:active {
    transform: scale(0.95);
}

.searchGroup input:focus {
    box-shadow: 0 0 0 1.5px var(--clr9);
}

.search-icon {
    position: absolute;
    right: 1rem;
    fill: var(--clr9);
    width: 2rem;
    height: 1.3rem;
    pointer-events: none;
    z-index: 1;
}


.banner {
    padding: 262px 0;
    background-image: url('../images/banner/homeBanner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.bannerInner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.contentSectionImg {
    position: relative;
}
.contentSection{width:100%}
.contentSection .row{width:100%}

.contentSecImg2 {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 50%;
    height: 50%;
    z-index: 1;
    transform: translateY(-50%);
    border: 2px solid var(--clr6);
}

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

.contentSectionImg img{
    width: 100%;
}

.contentSectionText {
    margin-left: 12%;
    /* margin-right: 12%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.contentSectionReverse .contentSectionText {
     /* margin-left: 12%; */
    margin-right: 12%;
}

.sliderInner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.sliderSectionHeading {
    display: flex;
    align-items: center;

}

.sliderItem img {
    height: 410px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.sliderItemHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 20px;
    background-color: var(--clr7);
    height: 90px;
}

.sliderItemHead .arrowBtn {
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.sliderItem {
    max-width: 370px;
    min-width: 370px;
    transition: all 0.4s ease-in-out;
}

.sliderItem:hover {
    max-width: 100%;
    flex: 1;
}

.sliderItem:hover .arrowBtn {
    display: flex;
    opacity: 1;

}



.parallexSlider {
    background-image: url('https://dev4.sidat.digital/images/slider/technologyAdvancement.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 600px;
    background-attachment: fixed;
}

.parallexSlider .container {
    height: 100%;
}

.parallexSlider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.parallexSliderInner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.parallexSliderInner p {
    width: 70%;
}


.statsRow {
    display: flex;
    justify-content: space-between;
}

.statsCard {
    display: flex;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 32px 30px;
    min-width: 495px;
    margin: 20px 0;
    transform: scale(.9);
}

/* .statsCard i {
    font-size: 60px;
    border-radius: 50%;
    background-color: var(--clr2);
    color: var(--clr6);
} */
.statsIcon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--clr7);
    color: var(--clr3);
    font-size: 40px;
    margin-right: 40px;
}

.statsIcon svg {
    fill: var(--clr3);
}

.statsCard:hover .statsIcon {
    background-color: var(--clr2);
    color: var(--clr8);
    transition: all 0.4s ease-in-out;
}

.statsCard:hover .statsIcon svg {
    background-color: var(--clr2);
    fill: var(--clr8);
    transition: all 0.4s ease-in-out;
}

.parallexSwiper {
    /* position: relative; */
}

.parallex-swiper-pagination {
    /* position: absolute; */
    /* bottom: -10px; */
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    background-color: var(--clr6);
    opacity: .7;
}

.swiper-pagination-bullet-active.swiper-pagination-bullet {
    background-color: var(--clr2);
    opacity: 1;
}

.blogSection {
    background-color: var(--clr2);
}
.blogCard{
    height: 100%;
    text-decoration: none;
}
.blogCard:hover {
    background-color: var(--clr4);
    color: var(--clr6);
    cursor: pointer;
}





.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 356px 356px;
    gap: 10px;
    grid-auto-flow: row;
    grid-template-areas:
        "g-item1 g-item2 g-item4 g-item5"
        "g-item3 g-item3 g-item4 g-item6";
}

.g-item1 {
    grid-area: g-item1;
}

.g-item2 {
    grid-area: g-item2;
}

.g-item3 {
    grid-area: g-item3;
}

.g-item4 {
    grid-area: g-item4;
}

.g-item5 {
    grid-area: g-item5;
}

.g-item6 {
    grid-area: g-item6;
}

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


.footerSlider {
    background-image: url('https://dev4.sidat.digital/images/slider/slider1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 164px 0;
    background-attachment: fixed;
}

.slideCol1 {
    border-right: 4px solid var(--clr6);
}

.footerSliderInner {
    display: flex;
    gap: 60px;

}

.footerSliderInner>div {
    width: 50%;
}

.swiperBtn {
    background-color: var(--clr6);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.swiperBtnOut {
    display: flex;
    gap: 15px;
}

.footerSliderOuter {
    width: 80%;
}

.swiper-button-disabled {
    color: rgb(179, 179, 179);
}

footer ul {
    list-style: none;

}

footer {
    background-color: var(--clr4);
    color: var(--clr6);
}

footer ul li a {
    color: var(--clr6);
    text-decoration: none;
}

.socialIcons {
    display: flex;
    gap: 10px;
}

.socialIcons a {
    border: 1px solid var(--clr6);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    padding: 10px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.dropNavigationInner {
    display: flex;
   
    gap: 100px;
}

.dropNavigationInner ul {
    list-style: none;
}

.headerImg img {
    max-width: 383px;
    width: 100%;
}

.dropNavigationInner .arrow {
    color: var(--clr2);
    transform: rotate(-35deg);
}

.headerHeading li a {
    text-decoration: none;
    color: black;
}

.headerHeadingMain {
    border-bottom: 2px solid var(--clr1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.headerHeadingMain a {
    padding: 14px;

}

.navbar {
    position: relative;
}

.dropNavigation {
    display: none;
    position: absolute;
    z-index: 5;
    width: 100%;
    top: 74px;
    background-color: white;
}

.statsSection .swiperBtn {
    background-color: #D2D2D2;
}

.statsSection .swiper-button-disabled {
    color: rgb(179, 179, 179);
    background-color: rgb(177, 177, 177)2D2;
}

.productSlider {
    display: none;
}

.innerBanner {
    padding: 110px 0;
}

.contentSectionReverse .contentSecImg2 {
    position: absolute;
    top: 50%;
    right: auto;
    width: 50%;
    height: 50%;
    z-index: 1;
    transform: translateY(-50%);
    border: 2px solid var(--clr6);
    left: -10%;
}

.contentBg {
    background-color: var(--clr7);
}

.breadcrumb-item::before {
    display: none;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--clr2);
}

.breadcrumb {
    margin: 15px 0;
}

.breadcrumb i {
    color: rgba(33, 37, 41, 0.75);
    margin-right: 8px;
}

.ceoSection {
    background-color: var(--clr1);
}

.ceoImg {
    width: 100%;
    height: 644px;
    object-fit: cover;
}

.ceoSectionContent .quote {
    opacity: .2;
    position: relative;
    z-index: 1;
}

.ceoCard {
    background-color: var(--clr6);
    padding: 51px;
    width: 100%;
    transform: translateY(-50%);

}

.ceoSectionContent {
    position: relative;
    height: 100%;
}

.ceoCard {
    position: absolute;
    left: 20%;
    top: 50%;
}

.sellerCard {
    /* max-width: 432px; */
    width: 100%;
    padding: 24px;
    background-color: var(--clr8);
    display: block;

    text-decoration: none;
}
.sellerCard a{
    text-decoration: none;
}

.sellerCard img {
    width: 100%;
    height: 354px;
    object-fit: cover;
}

.sellerCard p {
    padding-top: 24px;
}

.newsLetter {
    background-color: var(--clr1);
    /* color: var(--clr6); */
}

.newsletterInner {
    display: flex;
    color: var(--clr6);
    justify-content: space-between;
    align-items: center;

}

.newsletter2 {
    background-color: var(--clr2);
}

.newsletter2 .newsletterInner {
    display: flex;
    padding: 126px 0;
    color: var(--clr6);
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 30px;
}

.didYouKnowCard {
    border: 1px solid var(--clr7);
    border-radius: 20px;
    padding: 90px;
}

.didYouKnowCard {
    position: relative;
    text-align: center;
}

.didUKnwImg {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
}

.didUKnwImg2 {
    position: absolute;
    bottom: -60px;
    right: 20%;
    transform: translateX(-50%);
}







.btn-player {
    width: 90%;
    height: 60px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    font-size: 20px;
    color: #fff;
    background: -webkit-linear-gradient(left, #fe4344 40%, #f15737 70%, #f1743c 100%);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #fe4344 40%, #f15737 70%, #f1743c 100%);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #fe4344 40%, #f15737 70%, #f1743c 100%);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #fe4344 40%, #f15737 70%, #f1743c 100%);
    /* 标准的语法 */
    cursor: pointer;
}

.player-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.player-wrapper:nth-child(2) {
    left: 50%;
}

.player-wrapper .player {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 100;
}

.player-wrapper .player .playImg {
    margin: 29px 0 0 31px;
}

.player-wrapper .player .pauseImg {
    margin: 29px 0 0 28px;
}

.player-wrapper .player-circles {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.player-circles .circle {
    background: rgba(242, 104, 58, 0.1);
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
}

.player-circles .c-1 {
    -webkit-animation: 2000ms scaleToggleOne infinite;
    animation: 2000ms scaleToggleOne infinite;
}

.player-circles .c-2 {
    -webkit-animation: 2000ms scaleToggleOne infinite;
    -webkit-animation-delay: 300ms;
    animation: 2000ms scaleToggleOne infinite;
    animation-delay: 300ms;
}

.player-circles .c-3 {
    -webkit-animation: 2000ms scaleToggleOne infinite;
    -webkit-animation-delay: 600ms;
    animation: 2000ms scaleToggleOne infinite;
    animation-delay: 600ms;
}

@-webkit-keyframes scaleToggleOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleToggleOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.player .controler {
    position: absolute;
}

.player .paused {
    width: 0;
    height: 0;
    top: 24px;
    left: 30px;
    border: 16px solid transparent;
    border-left: 26px solid #f9fbfb;
    border-right: 0;
}

.videoPlayer {
    position: relative;
    width: 100%;
    height: 100%;
}

.videoPlayer img {
    width: 100%;
    height: 741px;
    object-fit: cover;
}

.videoPlayer video {
    width: 100%;
    height: 741px;
    object-fit: cover;
}

.behindTheBoxCard {
    width: 100%;
    height: 335px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.behindBoxSection {
    background-color: var(--clr1);
}

.careerTable table tr td {
    vertical-align: middle;
}

.careerApply {
    padding: 38px 64px;
    background-color: var(--clr8);
}

.careerApply input::placeholder {
    font-weight: 600;
    font-family: var(--verdanaRegular);
    color: black;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    /* width: 380px; */
    /* font-family: Arial, sans-serif; */
}

.resumeUploadLabel {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.file-upload-input {
    flex: 1;
    padding: 18px 10px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #000000;
}

.file-upload-button {
    background-color: #3949ab;
    /* Blue button */
    color: white;
    padding: 18px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.file-upload-button:hover {
    background-color: #303f9f;
}

/* Hide the actual file input */
#realFileInput {
    display: none;
}

.contactFormDetails {
    list-style: none;
}

.contactFormDetails li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contactFormDetails i {
    color: var(--clr2);
}

.timelineSection {
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.timelineSection>div {
    /* flex: 1; */
    min-width: 200px;
}

.timeline {
    padding: 1.5rem clamp(1rem, 2vw, 2.5rem);
    background-position: center;
    background-size: cover;
    height: 100%;
}


@media (max-width: 1400px) {
    .mobileNav {
        display: block;
    }

    .desktopNav {
        display: none;
    }

    .productSliderDesktop {
        display: none;
    }

    .sliderItem {
        max-width: 100%;
    }

    .sliderItemHead .arrowBtn {
        display: flex;
    }
}

@media (max-width: 1200px) {
    .ceoSectionContent .quote {
        width: 30%;
    }

    .ceoCard {
        position: static;
        transform: translate(0);
    }

    .ceoSectionContent .quote {
        position: absolute;
        left: -10%;
    }

    .timelineSection {
        overflow-x: scroll;
    }
}

@media (max-width: 991px) {
.didUKnwImg{width:100%;}

.newsletterInner {
    align-items: start;
    flex-direction: column;
    gap: 20px;
}

.contentSecImg2 {
        right: 0;
        transform: translate(-50%, -50%);
        top: 50%;
    }
    
.w50{width:100%;}
    .ceoSectionContent .quote {
        width: 20%;
        left: 0;
    }

    .ceoImg {
        margin-bottom: 30px;
    }

    .contentSectionReverse .contentSecImg2 {
        left: 0;
    }

    .productSlider {
        display: block;
    }

    .productSliderDesktop {
        display: none;
    }

    .contentSection .contentSecImg2 {
        right: 50%;
        transform: translateX(50%);
    }

    .contentSectionText {
        margin-top: 80px;
        text-align: center;
    }

    .sliderSectionHeading>div {
        margin-bottom: 20px;
    }

    .sliderSection {
        background-color: #eeeeee;
        margin-bottom: 0;
    }

    .sliderItemHead {
        background-color: white;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 356px);
        grid-template-areas:
            "g-item1 g-item2"
            "g-item3 g-item3"
            "g-item4 g-item5"
            "g-item6 g-item6";
    }

    .footerSliderInner {
        flex-direction: column;
    }

    .footerSliderInner .slideCol1 {
        border-right: none;
        width: 100%;
    }

    .footerSliderInner .slideCol1 br {
        display: none;
    }

    .footerSliderInner .slideCol2 {
        width: 100%;
    }

    .swiperBtnOut {
        margin-top: 20px;
    }

    footer .col-12 {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .contentSectionReverse .row {
        flex-direction: column-reverse;
    }
}