:root {
    --pri-color: #00397E;
    --sec-color: #0099FF;
    --text-white: #FFFFFF;
}

#app {
    position: relative;
}

/* Lenis */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.81) 0%, rgba(0, 0, 0, 0) 100%);
    
    transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 0.5);

    &.header-scroll {
        /* display: none; */
        transform: translateY(-100px);
    }

    &.header-scroll.show-header {
        /* display: block; */
        transform: translateY(0);
    }
}

.header-nav a {
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 0.5);

    &:hover {
        color: var(--sec-color);
    }

    &.active {
        color: var(--sec-color);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 45px;
    max-width: 1200px;
    margin: 0 auto;

    ul {
        display: flex;
        gap: 40px;

        li {
            list-style: none;
        }
    }
}

.header-logo,
.header-mobile {
    position: relative;
    z-index: 10;
}


#burger-menu {
    width: 28px;
    height: 28px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  
  #burger-menu span {
    display: block;
    position: absolute;
    height:  3px;
    width: 100%;
    border-radius: 20px;
    background: #ffffff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }


#burger-menu span:nth-child(1) {
    top: 0px;
}

#burger-menu span:nth-child(2),#burger-menu span:nth-child(3) {
    top: 10px;
}

#burger-menu span:nth-child(4) {
    top: 20px;
}

#burger-menu.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
    opacity: 0;
}

#burger-menu.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#burger-menu.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#burger-menu.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
    opacity: 0;
}


#gridCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

/* Body */
body {
    &.no-scroll {
        overflow: hidden;
    }
}

main {
    position: relative;
    margin-bottom: 380px;
    z-index: 1;
    box-shadow: -1px 26px 41px 7px rgba(0,0,0,0.59);
    -webkit-box-shadow: -1px 26px 41px 7px rgba(0,0,0,0.59);
    -moz-box-shadow: -1px 26px 41px 7px rgba(0,0,0,0.59);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

.main-container {
    margin: 0 auto;
    background: linear-gradient(270deg, #F0F9FF 0%, #FAFDFF 19.71%, #FAFDFF 80%, #F0F9FF 100%);
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh + 30px);
    overflow: hidden;
    box-shadow: 0px 4px 25px 0px #00196C6E;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    max-width: 100%;

    h1 {
        color: var(--text-white);
        margin-bottom: 100px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;

    h1 {
        text-align: center;
    }
}

.btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    display: block;
    backdrop-filter: blur(20px);
    border: 2px solid #FFFFFF45;
    border-radius: 100px;
    padding: 10px 30px;
    color: var(--text-white);
    font-size: 16px;
    box-shadow: 0px 20px 80px 0px #0199ff;
    transition: all 0.3s ease;
    font-weight: 400;

    &:hover {
        background: var(--sec-color);
        color: var(--text-white);
        box-shadow: 0px 5px 50px 0px #0199ff;
    }
}

.two-col {
    display: flex;
    align-items: flex-start;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    &.reverse {
        flex-direction: row-reverse;
    }
}

.col {
    width: 50%;
}

section .wrapper {
    height: 100vh;
    padding: 100px 45px; 
    max-width: 1200px;
    margin: 0 auto;
}
 
.title {
    margin-bottom: 20px;
} 


.about-section {
    position: relative;
    background-image: url('../img/web_bg1.webp');
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-content {
    position: relative;
}

.typewriter {
    display: inline-block;
    padding-right: 5px;
    border-right: solid var(--sec-color) 6px; 
    animation: cursor 0.5s ease-in-out infinite;
    height: clamp(40px, 4vw + 1rem, 70px);
    margin-bottom: 40px;
}

@keyframes cursor {
    from { border-color: var(--sec-color); }
    to { border-color: transparent; }
}

.projects-section {
    position: relative;
    background-image: url('../img/web_bg2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -100px;
    margin-bottom: -50px;
}

.team-content {
    .title-center {
        max-width: 60%;
        margin: 0 auto;
        text-align: center;
    }

    h2 {
        margin-bottom: 20px;
    }
}

.career-content {
    .title-center {
        max-width: 60%;
        margin: 0 auto;
        text-align: center;
    }

    h2 {
        margin-bottom: 20px;
    }
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    background-image: url('../img/footer_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 420px;

    * {
        color: var(--text-white);
    }
}

.footer-logo.first {
    display: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 45px 50px;

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.f-header {
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(1.25rem, -0.25rem + 3.125vw, 1.75rem);
}

.footer-col {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.f-item {
    margin-bottom: 20px;

    b {
        font-weight: 600;
    }

    p, a {
        margin-bottom: 0;
        line-height: 1.5;
    }

    a {
        display: block;
        transition: all 0.3s ease;

        &:hover {
            color: var(--sec-color);
        }
    }
}

.thin {
    font-weight: 300;
}
 
.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-social,
.footer-logo,
.f-copyright {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-align: right;
}

.f-copyright {
    margin-bottom: 0;
    
    p {
        font-size: 14px;
        margin-bottom: 0;
    }
}

/* Swiper */

.vertical-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.swiper-container-vertical {
    position: relative;
    width: 50%;
}

.swiper-container-vertical:nth-child(1) {
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 75px;
        background: linear-gradient(to bottom, #fbfdff, transparent);
        z-index: 5;
    }

    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 75px;
        background: linear-gradient(to top, #f9fdff, transparent);
        z-index: 5;
    }
}

.swiper-1 {
    height: 100%;
    max-height: 500px;

    .img-container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

.swiper-1-desc {
    max-height: 300px;
    height: 100%;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: -25px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--pri-color);
    border: 0;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid var(--sec-color);
    opacity: 1;
}

.vertical-slider-cards {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: -50px;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(to bottom, #f9fdffc2, #f9fdffc2, transparent);
        z-index: 5;
    }

    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(to top, #f9fdffc2, #f9fdffc2, transparent);
        z-index: 5;
    }
}

.swiper-3 {
    padding: 20px;
    height: 650px;
    width: 100%;
}

.swiper-3 .swiper-slide {
    display: flex;
    justify-content: center;    
    align-items: center;
    background: #fff;
    border-radius: 25px; 
    padding: 20px;
    width: 100%;
    filter: drop-shadow(0 0 0.75rem var(--sec-color));
}

/* Cards */

.card {
    display: flex;
    justify-content: center;
}

.card-content {
    /* min-height: 100px; */
}

.card h3 {
    color: var(--sec-color);
    font-weight: 600;
    margin-bottom: 10px;
}

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

.card-img,
.card-content p {
    margin-bottom: 0;
    opacity: 0;
    transform: scale(0);
    height: 0;
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.projects-section {
    .swiper-slide-active {
        .card-img,
        .card-content p {
            transform:  scale(1);
            opacity: 1;
            height: auto;
        }
    }
}

/* .projects-section {
    .swiper-slide-active {
        .card-img,
        .card-content p {
            transform:  scale(1);
            opacity: 1;
        }
    }

    .swiper-slide {
        opacity: 0;
        transform: scale(0.5);
        transition: transform opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 0.5);
    }

    .swiper-backface-hidden .swiper-slide.swiper-slide-prev,
    .swiper-backface-hidden .swiper-slide.swiper-slide-next {
        transform: translate(50px, 0) scale(1);
        opacity: 1;
    }

    .swiper-backface-hidden .swiper-slide {
        transform: translate(100px, 0) scale(1);
        opacity: 1;
    }

    .swiper-slide.swiper-slide-active {
        transform: translate(0, 0);
    }
} */

.career-section {
    position: relative;
    background-image: url('../img/web_bg3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-slider {
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 120px;
        height: 100%;
        background: linear-gradient(to right, #f1faff, #f0f9ff, transparent);
        z-index: 5; 
    }

    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 120px;
        height: 100%;
        background: linear-gradient(to left, #f1faff, #f0f9ff, transparent);
        z-index: 5;
    }
}
 
.team-section .wrapper {
    height: auto;
    padding-bottom: 40px;
}

.swiper-4 {
    /* &.swiper-3d {
        perspective: none !important;
    } */
    
    .swiper-slide {
        box-shadow: 0px 12px 15px 0px rgb(0, 123, 255 , 0.35);
        /* clip-path: inset(5% 30% 5% 30% round 12px); */
        clip-path: inset(0% 23% 0% 15% round 12px);
        transition: clip-path 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    .swiper-wrapper {
        padding: 20px;
    /* 
        img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        } */
    }

    .swiper-slide-active {
        clip-path: inset(7% 0% 7% 0% round 12px);
        transform: scale(1.3) translate(-18px, 0) !important;
        /* clip-path: inset(3% 0% 3% 0% round 12px);
        transform: scale(1.35) translateZ(100px) !important; */
        
    }

    .swiper-slide-prev {
        clip-path: inset(10% 30% 10% 36% round 12px);
        transform: scale(1) translate(20px, 0) !important;
        /* clip-path: inset(5% 30% 5% 20% round 12px); */
        /* transform: scale(0.8); */
    }

    .swiper-slide-next {
        clip-path: inset(10% 36% 10% 30% round 12px);
        transform: scale(1) translate(-70px, 0) !important;
        /* clip-path: inset(5% 20% 5% 32% round 12px); */
        /* transform: scale(0.8); */
    }
}

.career-animated-container {
    box-shadow: 0px 1px 30px 0px #3EA6FF40 inset;
    border: 1px solid #00397E1F;
    background: #DCE8FF03;
    height: 100%;
    width: 100%;
    max-width: 900px;
    max-height: 300px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
}

.bouncing-balls-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 300px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #00397E1F;
}

.bouncing-ball {
    position: absolute;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 1px solid #00397E1F;
    border-radius: 20px;
    box-shadow: 
        0 4px 15px rgba(0, 57, 126, 0.2),
        0 0 0 3px rgba(0, 153, 255, 0.1);
    filter: drop-shadow(0 0 0.5rem var(--sec-color));
    padding: 10px 20px;
    overflow: hidden;
    transition: padding 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    gap: 10px;

    &:hover {
        .ball-icon-wrapper {
            width: auto;
            opacity: 1;
            transform: translate(4px, 10px) scale(1);
        }

        small {
            height: auto;
            opacity: 1;
            transform:translateY(0);
        }
    }
}

.ball-icon-wrapper {
   position: relative;
   width: 0;
   opacity: 0;
   transform: translate(4px, 10px) scale(0);
   transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.ball-icon {
    width: 100%;
    height: 100%;
    max-width: 35px;
    max-height: 35px;
}

.ball-text {
    display: flex;
    flex-direction: column;
    width: auto;
    position: relative;

    span {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(20px, 2vw + 0.3rem, 28px);
        font-weight: 500;
        letter-spacing: -2px;
        text-transform: uppercase;
        white-space: nowrap;
        color: var(--sec-color);
    }

    small {
        display: block;
        height: 0;
        font-weight: 500;
        color: var(--pri-color);
        text-transform: none;
        font-size: 14px;
        letter-spacing: -1px;
        line-height: 1.2;
        width: 200px;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
}

.application-wrapper {
    margin-top: 50px;
    margin-bottom: 10px;
    a {
        background: var(--sec-color);
    }
}


/* .ball-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: left 0.5s;
} */
/* .bouncing-ball:hover .ball-text {
    transform: scale(1.05);
    box-shadow: 
        0 6px 25px rgba(0, 57, 126, 0.3),
        0 0 0 5px rgba(0, 153, 255, 0.2);
    background: linear-gradient(135deg, #fff 0%, #e6f3ff 100%);
} */
/* .bouncing-ball:hover .ball-text::before {
    left: 100%;
}

.ball-description {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 57, 126, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 20;
}

.ball-description::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 57, 126, 0.95);
}

.bouncing-ball:hover .ball-description {
    opacity: 1;
    top: -50px;
}

/* Active state for when clicked */
/* .bouncing-ball.clicked .ball-text {
    background: var(--sec-color);
    color: white;
    transform: scale(0.95);
} */

/* .typewriter {
    &.desktop {
        display: block;
    }

    &.mobile {
        display: none;
    }
} */

.career-button-wrapper {
    display: none;
}

/* Mobile */

@media (min-width: 769px) {
    .header-mobile {
        display: none;
    }
    .typewriter.mobile {
        display: none;
    }

    .swiper-3 { 

        .swiper-slide {
            transform: translate(300px, 0) scale(0.8) !important;
        }

        .swiper-slide.swiper-slide-visible {
            transform: translate(90px, 20px) scale(0.8) !important;
        }

        .swiper-slide.swiper-slide-active {
            transform: translate(0, 0) scale(1) !important;
        }

        .swiper-slide.swiper-slide-next {
            transform: translate(0px, 0) scale(0.8) !important;
        }

        .swiper-slide.swiper-slide-next + .swiper-slide.swiper-slide-visible {
            transform: translate(90px, -20px) scale(0.8) !important;
        }

        .swiper-slide.swiper-slide-prev {
            transform: translate(0px, 0) scale(0.8) !important;
        } 

    }
}

@media (max-width: 1024px) {

    .team-slider {
        &:before {
            width: 80px;
        }

        &:after {
            width: 80px;
        }
    }

    .swiper-4 {
        .swiper-slide-next {
            clip-path: inset(10% 30% 10% 35% round 12px);
        }

        .swiper-slide-prev {
            clip-path: inset(10% 35% 10% 30% round 12px);
        }
    }
}

@media (max-width: 768px) {
    .typewriter.mobile {
        display: inline-block;
    }
    
    .header-container {
        padding: 0 15px;
        height: 70px;
        overflow: hidden;
    }

    #logo img {
        transform: scale(.85);
        margin-left: -10px;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1C232CB2;
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
        overflow: hidden;
        z-index: -100;

        ul {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0;
            width: 100%;
            gap: 0;
            height: 0;
            opacity: 0;
            max-height: 0;
        }

        li {
            position: relative;
            width: 100%;
            text-align: center;
        }

        li:not(:last-child):after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
            margin: 0 0.3rem;
            width: 100%;
        }

        a {
            display: block;
            width: 100%;
            padding: 2rem 0;
            font-size: 16px;
            font-weight: 400;
            z-index: -100;
        }
    }

    .hero-section,
    #gridCanvas {
         border-bottom-left-radius: 20px;
         border-bottom-right-radius: 20px;
    }

    .hero-content {
        h1 {
            margin-bottom: 50px;
            line-height: 1.5;
        }
    }

    .typewriter {
        margin-top: 20px;
        margin-bottom: 0;
    }

    section .wrapper {
        padding: 30px 15px;
        height: auto;
    }

    .vertical-slider {
        flex-direction: column;
        gap: 0;
        height: auto;
    }
    .vertical-slider-cards {
        &::before,
        &::after {
            height: 100px;
        }
    }
    .swiper-container-vertical {
        width: 100%;
    }

    .swiper-horizontal>.swiper-pagination-bullets, 
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: -20px;
    }   

    .projects-section {
        margin-bottom: 0;
        margin-top: 0;
    }

    .two-col {
        flex-direction: column;
    }

     .col {
        width: 100%;
        &:first-child {
            margin-bottom: 2rem;
        }
    }

    .swiper-3 {
        height: 400px;
    }
    .swiper-3 .swiper-slide {
        border-radius: 10px;
        background: none;
        border-radius: 0;
        padding: 0;
        width: auto;
        filter: none;
    }

    .swiper-3 .swiper-slide-next .card {
        transition: all 0.3s ease;
        transform: translate(0px, 20px);
    }

    .swiper-3 .swiper-slide-prev .card {
        transform: translate(0px, -20px);
    }

    .card {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        width: 100%;
        filter: drop-shadow(0 0 0.75rem var(--sec-color));

        h3 {
            font-size: clamp(25px, 2.5vw + 0.5rem, 45px);
        }
    }

    .team-slider {
        &::before,
        &::after {
           width: 15px;
        }

        &::before {
            background: linear-gradient(to right, #f0f9ff, transparent);
        }

        &::after {
            background: linear-gradient(to left, #f0f9ff, transparent);
        }
 
    }

    .team-section .wrapper {
        padding-bottom: 0;
    }

    .team-content {
        .title-center {
            text-align: left;
            max-width: 100%;
        }
    }

    .swiper-4 .swiper-slide {
        /* width: 100% !important;s */
        /* clip-path:none; */
    }

    .swiper-4 .swiper-slide-prev {  
        clip-path: inset(10% 6% 10% 0% round 6px);
        transform: translate(-14px, 0px) !important
    }

    .swiper-4 .swiper-slide-next {
        clip-path: inset(10% 0% 10% 0% round 6px);
        transform: translate(-2px, 0px) !important;
    }

    .swiper-4 .swiper-slide-active {
        transform: translate(-5%, 0px) !important;
        clip-path: inset(0% 0% 0% 0% round 0px);

        .img-container {
            transform: translate(0%, 0px);
        }
    }


    .career-content {
        .title-center {
            max-width: 100%;
            margin: 0 auto;
            text-align: left;
        }
    } 
    .career-container .container {
        display: none;
    }

    .btn-link {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 30px;
        box-shadow: 0 4px 15px rgba(0, 57, 126, 0.2), 0 0 0 3px rgba(0, 153, 255, 0.1);
        background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
        border-radius: 15.77px;
        padding: 20px;
        filter: drop-shadow(0 0 0.5rem var(--sec-color));

        span {
            display: inline-block;
            font-size: clamp(24px, 2vw + 0.3rem, 28px);
            font-family: 'Oswald', sans-serif;
            border: 0;
            border-radius: 20px;
            color: var(--sec-color);
            font-weight: 500;
            white-space: nowrap;
            letter-spacing: -1px;
            text-transform: uppercase;
            transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            position: relative;
        }

        small {
            display: block;
            line-height: normal;
            color: var(--pri-color);
            margin-top: 10px;
            margin-right: 20px;
            font-size: clamp(13px, 1vw + 0.3rem, 16px);
        }

        img {
            margin-top: 10px;
        }
    }

    .btn-link-wrapper {
        width: 100%;
    }

    .application-wrapper {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .career-button-wrapper {
        display: block;
    }

    main {
        overflow: hidden;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        margin-bottom: 480px;
    }

    footer {
        height: 500px;
    }
    .footer-col {
        align-items: center;
        width: 100%;
    }
    .footer-container {
        padding: 50px 25px 25px;
    }
    .footer-content {
        flex-direction: column;
    }
    .f-item {
        text-align: center;
    }
    .footer-logo {
        display: none;
    }

    .footer-logo.first {
        display: block;
    }

    .f-header {
        margin-top: 20px;
    }

    .f-copyright {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 20px;
    }
}


/* // Added animation and preloader */
.text-animate {
    height: auto;
    overflow: hidden;
}

.btn-scale-animate {
    transform: scale(0.5);
    opacity: 0;
}
  
  svg {
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
  }

  svg path {
    fill: transparent;
    stroke: #fff;
    stroke-width: 1.25;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease forwards, fillIn 0.8s ease forwards 1s;
  }
  
  @keyframes draw {
    to {
      stroke-dashoffset: 0;
    }
  }
  
  @keyframes fillIn {
    to {
      fill: #fff;
      stroke: #fff;
    }
  }
  
  @keyframes fillInBlue {
    to {
      fill: #1B4B9D;
      stroke: #1B4B9D;
    }
  }
  
  .fill-blue {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    fill: transparent;
    stroke-width: 1.25;
    animation: draw 3s ease forwards, fillInBlue 0.8s ease forwards 1s;
  }

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0E1624;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }