/*Custom Property*/
:root {
    /*colors*/
    --international-orange-engineering: hsl(1, 91%, 37%);
    --cadet-blue-creyola: hsl(222, 14%, 69%);
    --oxford-blue-1: hsl(222, 47%, 15%);
    --oxford-blue-2: hsl(222, 44%, 14%);
    --oxford-blue-3: hsl(223, 50%, 11%);
    --sonic-silver: hsl(0, 0%, 44%);
    --space-cadet: hsl(222, 44%, 18%);
    --pastel-pink: hsl(1, 53%, 75%);
    --eerie-black: hsl(0, 0%, 15%);
    --light-grey: hsl(0, 0%, 80%);
    --white: hsl(0, 0%, 100%);
    --green: hsl(140, 52%, 55%);



    /*typography*/
    --ff-chakra-petch: 'Chakra Petch', sans-serif;
    --ff-mulish: 'Mulish', sans-serif;

    --fs-1: 3.5rem;
    --fs-2: 3rem;
    --fs-3: 2.4rem;
    --fs-4: 1.8rem;
    --fs-5: 1.4rem;
    --fs-6: 1.2rem;

    --fw-400: 400;
    --fw-600: 600;
    --fw-700: 700;

    /*spacing*/

    --section-padding: 60px;

    /*box shadow*/
    --shadow: 0px 0px 100px 0px hsl(216, 9%, 90%);

    /*border radius*/
    --radius-pill: 100px;
    --radius-circle: 50%;

    /*transition*/
    --transition: 0.25s ease;
    --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}

/*reset*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a,
img,
button {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    height: auto;
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

address {
    font-style: normal;
}

html {
    font-family: var(--ff-mulish);
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--sonic-silver);
    font-size: 1.6rem;
    line-height: 1.5;
    /* height: 300vh; */
    /* background-color: var(--eerie-black); */
}

:focus-visible {
    outline-offset: 4px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(0, 0%, 70%);
}

/*REUSED STYLE*/
.container {
    padding-inline: 16px;
}

.material-symbols-rounded {
    --fs: 1em;
    font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 40;
    font-size: var(--fs);
    width: 1em;
    overflow: hidden;
}

.has-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}

.section-subtitle {
    max-width: max-content;
    font-family: var(--ff-chakra-petch);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    text-transform: uppercase;
    margin-block-end: 12px;
    margin-inline: auto;
}

.section-subtitle::before {
    content: "";
    display: inline-block;
    height: 15px;
    width: 30px;
    margin-block-end: -2px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.section-subtitle.\:dark {
    color: var(--white);
}

.section-subtitle.\:dark::before {
    background-image: url('../images/text-bars-light.png');
}

.section-subtitle.\:light {
    color: var(--international-orange-engineering);
}

.section-subtitle.\:light::before {
    background-image: url('../images/text-bars-dark.png');
}

.section.title {
    text-align: center;
}

.h1,
.h2,
.h3,
.display-1 {
    font-family: var(--ff-chakra-petch);
    font-weight: var(--fw-700);
    text-transform: uppercase;
}

.display-1 {
    font-size: var(--fs-1);
}

.h1 {
    color: var(--white);
    font-size: var(--fs-2);
    line-height: 1.1;
    letter-spacing: 1px;
}

.h2,
.h3 {
    color: var(--eerie-black);
    font-weight: var(--fw-600);
    line-height: 1.2;
}

.h2 {
    font-size: var(--fs-3);
}

.h3 {
    font-size: var(--fs-4);
}

.btn {
    background-color: var(--international-orange-engineering);
    color: var(--white);
    max-width: max-content;
    font-family: var(--ff-chakra-petch);
    font-size: var(--fw-600);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    grid-area: 8px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    will-change: transform;
}

.btn:is(:hover, :focus-visible) {
    transform: translateY(-5px);
    background-color: var(--oxford-blue-3);
    border-color: var(--white);
}

.move-anim {
    animation: moving 2s ease-in-out infinite alternate;
}

@keyframes moving {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}

.section {
    padding-block: var(--section-padding);
}

.btn-link {
    font-family: var(--ff-chakra-petch);
    text-transform: uppercase;
    color: var(--international-orange-engineering);
    font-weight: var(--fw-700);
}

.w-100 {
    width: 100%;
}

.img-holder {
    aspect-ratio: var(--width) / var(--height);
    background-color: var(--light-grey);
    overflow: hidden;
}

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

.has-scrollbar {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    padding-block-end: 20px;
}

.scrollbar-item {
    min-width: 100%;
    scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar {
    height: 16px;
}

.has-scrollbar::-webkit-scrollbar-track {
    background-color: var(--pastel-pink);
    border-radius: 20px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--international-orange-engineering);
    border-radius: 20px;
    border: 3px solid var(--pastel-pink);
}

.has-scrollbar::-webkit-scrollbar-button {
    width: 15%;
}




/*HEADER*/
/* Custom CSS to show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}


.navbar {
    background-color: #fff;
    height: 80px;
    margin: 20px;
    border-radius: 16px;
    padding: 0.5rem;
}


.navbar-brand {
    font-weight: 500;
    color: #009970;
    font-size: 24px;
    transition: 0.3s color;
}

.login-button {
    background-color: #009970;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}

.login-button:hover {
    background-color: #009970;
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    color: #666777;
    font-weight: 500;
}

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

@media (min-width: 991px) {
    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 2px;
        background-color: #009970;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
        visibility: visible;
    }
}

.hero-section::before {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

}



/*HERO*/

.hero {
    position: relative;
    padding-block-start: calc(var(--section-padding) + 70px);
    text-align: center;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    background-size: cover !important; /* Use !important to override any other conflicting styles */
    background-position: center !important; /* Use !important to override any other conflicting styles */
}


.hero .container {
    display: grid;
    gap: 30px;
}

.hero .section-subtitle {
    text-transform: unset;
}

.hero .section-text {
    color: var(--white);
    margin-block: 14px 18px;
}

.hero .btn {
    margin-inline: auto;
}


.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-width: 100%; /* Ensure the video covers the entire section width */
    min-height: 100%; /* Ensure the video covers the entire section height */
    z-index: -1;
    object-fit: cover; /* Ensure the video covers the entire section */
}


.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden; /* Ensure the video doesn't overflow outside the section */
}

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



/*SERVICES*/

.service-banner {
    display: none;
}

.service {
    text-align: center;
}

/* .service-list {
    gap: 0;
    margin-block-end: 40px;
} */

.service-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card {
    text-align: center;
    margin-bottom: 20px;
}


.centered-service {
    text-align: center;
}

.service-image {
    order: 1;
}

/* .card-icon img {
    border-radius: 50%;
    border: 2px solid #333;
} */

.card-text {
    margin-bottom: 10px;
}


.service-card .card-icon {
    max-width: max-content;
    margin-inline: auto;
    margin-block-end: 24px;
    margin: 0 auto;
    /* Center the card icon */
}

/* 
.service-card {
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
} */

.service-card .card-text {
    line-height: 1.2;
    margin-block: 8px;
}

.service .btn {
    margin-inline: auto;
}

.service-card h3,
.service-card p,
.service-card .btn-link {
    text-align: center;
    /* Center align headings, paragraphs, and links */
}



/*ABOUT*/

.about {
    background-color: var(--space-cadet);
    color: var(--white);
    text-align: center;
    padding-top: 50px; /* Adjust the top padding */
    padding-bottom: 50px;
}

.about .container {
    display: grid;
    gap: 50px;
}

.about .section-title {
    color: var(--white);
}

.about .section-text:nth-child(3) {
    margin-block: 12px 8px;
}

.about-list {
    display: grid;
    gap: 25px;
    margin-block-start: 25px;
}

.about-item {
    background-color: var(--oxford-blue-2);
    padding: 40px 20px;
    transition: var(--transition);
}

.about-item:hover {
    background-color: var(--international-orange-engineering);
    transform: translateY(-8px);
}

.about-item .strong {
    display: block;
    /* font-family: var(--ff-chakra-petch);
    font-size: var(--fs-1); */
    line-height: 1.1;
}

.about-content {
    margin-left: 20px; /* Adjust this value to increase or decrease the space */
}


/*FOOTER*/

footer {
    width: 100%;
    position: absolute;
    /* bottom: 0; */
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.footer-row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2),
col:nth-child(3) {
    flex-basis: 15%;
}

.logo {
    width: 100px;
    margin-bottom: 30px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    font-size: 20px;
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

li {
    list-style: none;
    margin-bottom: 12px;
    font-size: medium;
}

li a {
    text-decoration: none;
    color: #fff;
}

.social-icons .fa-brands {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, text-shadow 0.3s ease;
    /* Add transition for smooth effect */
}

.social-icons .fa-brands:hover {
    color: #14ff10;
    /* Change color of the brand icon on hover */
    box-shadow: 0 0 15px #14ff10;
    /* Increase the blur radius to create a stronger glow effect */
    text-shadow: 0 0 15px #14ff10;
    /* Increase the blur radius to create a stronger glow effect */
}


hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 700px) {
    footer {
        bottom: unset;
    }

    .col {
        flex-basis: 100%;
    }

    .col:nth-child(2),
    col:nth-child(3) {
        flex-basis: 100%;
    }
}



@media (min-width: 571px) {
    /* Your CSS styles for this media query */
/*HERO*/
.hero .container {
    max-width: unset;
}

.hero-content {
    max-width: 520px;
    margin-inline: auto;
}

.hero .section-text {
    font-size: 1.8rem;
}

.hero-banner img {
    width: 55%;
    z-index: 1;
    /* Ensure the image appears above the video */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

  }

  
  @media (min-width: 59px) {
    /* Your CSS styles for this media query */
/*HERO*/
.hero .container {
    max-width: unset;
}

.hero-content {
    max-width: 520px;
    margin-inline: auto;
}

.hero .section-text {
    font-size: 1.8rem;
}

.hero-banner img {
    width: 55%;
    z-index: 1;
    /* Ensure the image appears above the video */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

  }

/***RESPONSIVE FOR LARGE THEN 575PX SCREEN***/

/*MEDIA QUERIES*/
@media (min-width: 575px) {

    /*CUSTOM PROPERTY*/
    :root {
        /*TYPOGRAPHY*/
        --fs-2: 4rem;
        --fs-3: 2.8rem;
        --fs-4: 2rem;
    }

    /*REUSED STYLE*/
    .container {
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }

    .section-subtitle {
        --fs-5: 1.6rem;
    }

    .h2 {
        font-weight: var(--fw-700);
    }


    /*HERO*/
    .hero .container {
        max-width: unset;
    }

    .hero-content {
        max-width: 520px;
        margin-inline: auto;
    }

    .hero .section-text {
        font-size: 1.8rem;
    }

    .hero-banner img {
        width: 55%;
        z-index: 1;
        /* Ensure the image appears above the video */
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

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

    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        object-fit: cover;
    }



    /*SERVICE*/

    .service .section-title {
        margin-block-end: 30px;
    }

    .service-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-inline-end: 40px;
    }


    /*ABOUT*/

    .about-list {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-item {
        padding-block: 20px;
    }

    /*FOOTER*/
    .footer-top {
        position: relative;
        overflow: hidden;
    }

    .footer-top .container {
        grid-template-columns: 1fr 1fr;
    }

    .footer .shape-3 {
        display: block;
        position: absolute;
        bottom: -30px;
        right: 0;
    }

}




/***RESPONSIVE FOR LARGE THEN 768px SCREEN***/

/*MEDIA QUERIES*/
@media (min-width: 768px) {

    /*CUSTOM PROPERTY*/
    :root {
        /*TYPOGRAPHY*/
        --fs-2: 4rem;
        --fs-3: 5rem;
        --fs-4: 3.4rem;
    }

    /*REUSED STYLE*/
    .container,
    .hero-content {
        max-width: 720px;
    }

    .btn {
        padding: 16px 32px;
    }

    .section-subtitle {
        --fs-5: 1.8rem;
    }

    .section-title:not(.h1) {
        max-width: 500px;
        margin-inline: auto;
    }

    /*HERO*/

    .hero {
        --section-padding: 120px;
    }

    .hero .section-text {
        margin-block-end: 30px;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

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

    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        object-fit: cover;
    }


    /*SERVICE*/
    .service-banner {
        display: block;
        position: relative;
    }

    .service-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-banner .img {
        position: absolute;
        top: 0;
        left: -25%;
        margin-block-start: 15%;
        width: 150%;
        transform-origin: top;
    }

    /*ABOUT*/
    .about-banner {
        max-width: max-content;
        margin-right: 20px; /* Adjust this value to shift the image towards the left */

    }

    .about-banner,
    .about .section-text {
        margin-inline: auto;
    }

    .about .section-text {
        max-width: 520px;
    }

    /*FOOTER*/

    .footer-top .container {
        grid-template-columns: 1fr 0.9fr 0.9fr;
    }

    .copyright {
        --fs-6: 1.4rem;
    }

}

/**responsive for large than 992px screen **/
@media (min-width: 992px) {

    /*CUSTOM PROPERTY*/
    :root {
        /*typography*/
        --fs-2: 4.4rem;
        --fs-3: 3.8rem;
        --fs-4: 2.2rem;

        /*spacing*/
        --section-padding: 100px;

    }

    /*REUSED STYLE*/
    .container {
        max-width: 960px;
    }

    .section-text,
    .card-text {
        font-size: 1.8rem;
    }

    /*HEADER*/
    .nav-toggle-btn {
        display: none;
    }

    .header .container {
        gap: 30px
    }



    /*HERO*/
    .hero {
        text-align: left;
        padding-block-end: 80px;
        position: relative;
        overflow: hidden;
        /* Ensure the video doesn't overflow outside the section */

    }

    .hero .container {
        max-width: 960px;
        grid-template-columns: 1fr 1fr;
    }

    .hero :is(.section-subtitle, .btn) {
        margin-inline: 0;
    }

    .hero .section-title {
        text-align: left;
    }


    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

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

    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        object-fit: cover;
    }


    /**SERVICE**/
    .service-card .card-text {
        padding-inline: 25px;
        line-height: 1.45;
        margin-block-end: 15px;
    }

    .service-list li:nth-child(-2n+3) {
        margin-block-start: 90px;
    }

    .service-list li:nth-child(4) {
        margin-inline-end: 60px;
    }

    .service-list li:nth-child(6) {
        margin-inline-start: 60px;
    }

    .service-banner img {
        left: -55%;
        margin-block-start: -30%;
        width: 210%;
    }


    /**ABOUT**/
    .about {
        position: relative;
        z-index: 1;
    }

    .about,
    .about .section-title {
        text-align: left;
    }

    .about .container {
        grid-template-columns: 1fr 0.75fr;
        gap: 30px;
    }

    .about .section-subtitle {
        margin-inline: 0;
    }

    .about-banner,
    .about-banner .w-100 {
        margin-inline: auto 0;
    }

    .about-banner .w-100 {
        width: 40%;
    }

    .about-item {
        text-align: center;
    }

    .about::before {
        content: "";
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background-image: url('./assets/about-abs-banner.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right;
        z-index: 1;
    }

    /**WORK**/

    .has-scrollbar {
        overflow-x: visible;
    }

    .scrollbar-item {
        min-width: calc(33.33% - 20px);
    }

}

/**Responsive for larger than 1200px screen**/

@media (min-width: 1200px) {

    /*CUSTOM PROPERTY*/
    :root {
        /*typography*/
        --fs-2: 5rem;
        --fs-3: 4.6rem;
        /* --fs-4: 2.2rem; */
    }

    /**REUSED STYLE**/

    .conatiner,
    .hero .container {
        max-width: 1140px;
    }

    .btn {
        padding: 18px 36px;
    }

    .btn .material-symbols-rounded {
        --fs: 1.3em;
    }


    /**HEADER**/

    /**HERO**/

    .hero {
        padding-block: 250px 180px;
    }

    .hero .conatiner {
        grid-template-columns: 1fr 0.9fr;
    }

    .hero .section-text {
        font-size: 2rem;
        padding-inline-end: 120px;
    }

    .hero-banner img {
        width: 70%;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

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

    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        object-fit: cover;
    }



    /**SERVICE**/
    .service .section-title {
        max-width: 700px;
    }

    .service-list {
        margin-block-end: 70px;
    }

    .service-list li:nth-child(2) .card-text {
        padding-inline: 50px;
    }

    .service-list li:nth-child(-2n+3) {
        margin-block-start: 110px;
    }

    .service-list li:is(:nth-child(1), :nth-child(6)) {
        margin-inline-start: 75px;
    }

    .service-list li:is(:nth-child(3), :nth-child(4)) {
        margin-inline-end: 75px;
    }

    .service-banner img {
        width: max-content;
        left: -41%;
    }

    .service .container {
        padding-inline: 0;
        /* Remove any default padding */
        margin-inline: auto;
        /* Center the container */
        max-width: 1140px;
        /* Set a maximum width for the container */
    }





    /**WORK**/
    .work-card .card-btn {
        font-size: 2.4rem;
        width: 55px;
        height: 55px;
    }

    /**FOOTER**/
    .footer-top {
        padding-block: 150px;
    }

    .footer-top .conatiner {
        padding-inline-start: 25%;
    }

    .footer-bottom {
        position: relative;
        padding-block: 30px;
        z-index: 1;
    }

    .footer :is(.shape-1, .shape-2) {
        display: block;
        position: absolute;
        bottom: 0;
        width: 35%;
        pointer-events: none;
        z-index: -1;
    }

    .footer .shape-1 {
        left: -100px;
    }

    .footer .shape-2 {
        left: -50px;
    }
}


/**Responsive for larger than 1400px screen**/

@media (min-width: 1400px) {

    /*CUSTOM PROPERTY*/
    :root {
        /*typography*/
        --fs-2: 6rem;
        /* --fs-3: 4.6rem; */
        /* --fs-4: 2.2rem; */
    }

    /*spacing*/
    /* --section-padding: 140px; */

    /**reused style**/
    /* :is(.header, .hero) .conatiner {
        max-width: 1280px;
    } */

    .section-subtitle::before {
        height: 20px;
        margin-inline-end: 5px;
    }

    /**hero**/

    .hero {
        padding-block: 280px;
    }

    .hero .section-text {
        padding-inline-end: 90px;
    }

    .hero-banner img {
        width: 65%;
    }



    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

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

    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        object-fit: cover;
    }





    /**ABOUT**/
    .about::before {
        width: 55%;
    }

    .about-banner .w-100 {
        width: 50%;
    }

    /**FOOTER**/
    .footer-top .conatiner {
        padding-inline-start: 20%;
    }
}


/*SWIPER*/

#service-carousel {
    position: relative;
    /* Ensure the container is positioned relatively */
}

#swiper-prev {
    position: absolute;
    left: 10px;
    /* Adjust this value as needed */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    /* Ensure icons appear above the carousel */
    font-weight: bolder;
    font-size: 24px;
}

#swiper-next {
    position: absolute;
    right: 10px;
    /* Adjust this value as needed */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    /* Ensure icons appear above the carousel */
    font-weight: bolder;
    font-size: 24px;
}


/**Technologies**/

.content {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    inset: 80px;
    border: 4px solid transparent;
    border-left: 4px solid #2196f3;
    border-right: 4px solid #49db75;
    border-radius: 50%;
    animation: animate_01 5s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes animate_01 {
    0% {
        rotate: 0deg;
    }
    100% {
        rotate: 360deg;
    }
}

.content::after {
    content: '';
    position: absolute;
    inset: 120px;
    border: 4px solid transparent;
    border-left: 4px solid #f3214f;
    border-right: 4px solid #49db75;
    border-radius: 50%;
    animation: animate_02 2.5s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes animate_02 {
    0% {
        rotate: 360deg;
    }
    100% {
        rotate: 0deg;
    }
}

.circleMap {
    width: 500px;
    height: 500px;
    min-height: 500px;
    min-width: 500px;
    border-radius: 50%;
    border: 1px dashed #888888;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 80px;
    
}

.circleMap__items {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    position: absolute;
    text-align: center;
    z-index: 1; /* Ensure the circle is behind the buttons */
}

.circleMap img {
    height: 100px;
    width: 100px;
    border-radius: 50px;
    border: 2px solid #642577;
    object-fit: cover;  
}

.circleMap--text {
    background-color: #F5F5F5;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    text-align: center;
}

.top {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.left {
    top: 50%;
    left: 0;
    transform: translateX(-50%) translateY(-50%);
}

.right {
    top: 50%;
    right: 0;
    transform: translateX(50%) translateY(-50%);
}

.bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
}

.center {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.yl {
    color: #968D1F;
}

.vl {
    color: #8E0AE0;
}

.rd {
    color: #FF0000;
}

.cb {
    color: #388E8B;
}

.circleMap__items button {
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    color: #ffffff;
    border: none;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.circleMap__items button:hover {
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    filter: brightness(1.1);
}


.heading {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
}


.sub-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}


@media (max-width: 768px) {
    .base {
        padding-left: 10%;
        padding-right: 10%;
    }

    .circleMap {
        width: 300px;
        height: 300px;
        min-height: 300px;
        min-width: 300px;
        margin: 40px;
    }

    .circleMap__items img {
        height: 60px;
        width: 60px;
    }

    .circleMap__items {
        font-size: 12px;
    }

    .heading,
    .sub-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .circleMap {
        width: 200px;
        height: 200px;
        min-height: 200px;
        min-width: 200px;
        margin: 20px;
    }

    .circleMap__items img {
        height: 40px;
        width: 40px;
    }

    .circleMap__items {
        font-size: 10px;
    }

    .base {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 768px) {
    .content::before {
        inset: 50px;
    }
    .content::after {
        inset: 80px;
    }
}

@media (max-width: 576px) {
    .content::before {
        inset: 30px;
    }
    .content::after {
        inset: 50px;
    }
}

@media (max-width: 589px) {
    .content::before {
        display: none;
    }
    .content::after {
        margin-left: 1px;
        padding: 30px; /* Add inner space */
    }
}




/* Logo slider */

.partners_section {
    padding: 64px 0;
}

.section_title {
    text-align: center;
    margin-bottom: 0;
}

.section_title h3 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--oxford-blue-3);
}

.section_title p {
    font-size: 2rem;
    font-weight: 00;
    color: var(--oxford-blue-3);
}

.logos__marquee {
    display: flex;
    overflow-x: hidden;
    user-select: none;
    mask-image: linear-gradient(to right,
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

.marquee__logos {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    min-width: 100%;
    animation: loop 20s linear infinite;
}

.marquee__logos img {
    display: block;
    margin-inline: 2rem;
}

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

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

/**What we do**/

.we-do {
    background-color: var(--oxford-blue-3);
    padding-bottom: 5%;
}

.we-do h1 {
    color: #fff;
    text-align: center;
    margin: 50px auto 120px !important;
}

.main {
    width: 100%;
    min-height: 280px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.serving {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    box-shadow: 0 0 20px -15px #030380;
    transition: transform .8s;
}

.serving-logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: -90px auto 0;
    background: #fff;
    border: 18px solid var(--oxford-blue-3);
}

.serving-logo img {
    width: 50px;
    margin-top: 20px;
    margin-left: 20%;
    transition: transform 1s;
}

.serving h4 {
    height: 35px;
    width: 80%;
    background: #fff;
    margin: 50px auto;
    position: relative;
}

.serving h4::after {
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, #fff, var(--oxford-blue-3));
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: -1;
}

.serving h4::before {
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, var(--oxford-blue-3), #fff);
    position: absolute;
    left: -5px;
    bottom: -5px;
    z-index: -1;
}

.shadowOne {
    height: 200px;
    width: 80%;
    background: #fff;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 10%;
    z-index: -1;
    box-shadow: 0 0 20px -15px #030380;
    transition: transform .8s;
}

.shadowTwo {
    height: 200px;
    width: 64%;
    background: #fff;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 18%;
    z-index: -2;
}

.main:hover .serving {
    transform: translateY(-50px);
}


.main:hover .shadowOne {
    transform: translateY(-25px);
}

.main:hover img {
    transform: rotate(360deg);
}

@media (max-width: 576px) {
    .serving {
        padding: 10px;
        /* Adjust the padding as needed */
        margin: 10px 0;
        /* Adjust the margin as needed */
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 768px) {
    .serving {
        padding: 10px;
        /* Adjust the padding as needed */
        margin: 10px 0;
        /* Adjust the margin as needed */
    }
}

/**OUR VALUES**/

.container-value {
    /* position: relative; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px;
}

.container-value .value-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 450px;
    height: 300px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.container-value .value-card:hover {
    height: 500px;
}

.container-value .value-card .value-image {
    top: 20px;
    position: absolute;
    width: 300px;
    height: 220px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}

.container-value .value-card:hover .value-image {
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container-value .value-card .value-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-value .value-card .value-content {
    position: absolute;
    width: 100%;
    top: 252px;
    height: 35px;
    overflow: hidden;
    padding: 0 30px;
    text-align: center;
    transition: 0.5s;
}

.container-value .value-card:hover .value-content {
    height: 350px;
    top: 130px;
}

.container-value .value-card .value-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--oxford-blue-3);
}

.container-value .value-card .value-content p {
    color: var(--oxford-blue-3);
}


.carousel-control-prev,
.carousel-control-next {
    visibility: visible;
    opacity: 1;
}

