/* Reset */
:root {
    --text-color: #6A6A6A;
    --blue-color: #16497B;
    --red-color: #C41F28;
    --gray-color: rgb(27 31 38 / 72%);
    --heading-font: 'Poppins', system-ui;
    --text-font: 'Inter', system-ui;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-style: normal;
    transition: all 0.1s;
    font-family: var(--text-font);
    line-height: 1.5;
}
button {
    font-size: 16px;
}
/* Common */
html {
    scroll-behavior: smooth
}
body {
    min-height: 100svh;
    overflow-x: hidden;
}
a {
    color: var(--text-color);
    text-decoration: none;

    &:hover {
        * {
            cursor: pointer;
        }
    }
}
button {
    cursor: pointer;
    border: 0;
    background: transparent;
}
.button {
    display: flex;
    margin: auto;
    padding: .75em 1.5em;
    background: var(--blue-color);
    color: white;
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
    border: 0;
    gap: .5em;
    align-items: center;
    cursor: pointer;
    width: fit-content;

    * {
        cursor: pointer;
    }

    &:hover {
        background: var(--red-color);
    }
}
.no-bg-button {
    background: transparent;
    color: var(--blue-color);
    text-transform: capitalize;

    &:hover {
        background: transparent;
        color: var(--red-color);
    }
}

.white-button {
    background: white;
    color: var(--blue-color);
    text-transform: capitalize;

    &:hover {
        background: var(--red-color);
        color: white;
    }
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    text-transform: capitalize;
}
h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.5em;
}
h3 {
    font-size: 1.25em;
}
h4 {
    font-size: 1.125em;
}
h5 {
    font-size: 1.1em;
}
h6 {
    font-size: 1em;
}
img {
    max-width: 100%
}
.text-color {
    color: var(--text-color);
}
@keyframes slideInLeft {
    from {
      transform: translate3d(-100%, 0, 0);
      visibility: visible;
    }
  
    to {
      transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
      transform: translate3d(0, -100%, 0);
      visibility: visible;
    }
  
    to {
      transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
      transform: translate3d(100%, 0, 0);
      visibility: visible;
    }
  
    to {
      transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
      transform: translate3d(0, 100%, 0);
      visibility: visible;
    }
  
    to {
      transform: translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
}

@keyframes zoomOut {
    from {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    to {
      opacity: 0;
    }
}

.zoomOut {
    animation-name: zoomOut;
}

@keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
}

@keyframes fadeOut {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
    }
}
  
.fadeOut {
    animation-name: fadeOut;
}

.floating-section {
    background: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 9;
    right: 0;
    top: calc(50% - 58px);
    border: 1px solid rgb(0 0 0 / 24%);
    border-right: 0;
    padding: 10px;
    border-radius: 16px 0 0 16px;

    a {
        svg {
            width: 32px;
            height: auto;
            path {
                fill: var(--blue-color)
            }
        }

        &:hover {
            svg {
                path {
                    fill: var(--red-color)
                }
            }
        }

        &.pdf {
            width: 32px;
            height: 32px;
            background: url(images/pdf.png) no-repeat;
            background-position: left top;
            transition: none;

            &:hover {
                background-position: left -32px;
            }
        }
    }
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.header {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    z-index: 9;
}
.wrapper {
    padding-left: 1.25em;
    padding-right: 1.25em;
    margin: auto;
    width: 100svw;
}
.logo {
    display: block;
    line-height: 1;
    height: 60px;
}
.logo img {
    height: 100%;
    width: auto;
}
.main-space {
    padding: 0 1.25em;
}
.top-section {
    align-items: center;
    background: white;
    display: flex;
    justify-content: space-between;
    gap: 1.25em;
    padding-top: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.hamburger-menu {
    border: 0;
    background: transparent;
    width: 3em;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: .5em;

    svg {
        width: 100%;
        height: 100%;
    }

    &:hover,
    &.active {
        background: var(--blue-color);
        svg {
            path {
                stroke: white;
            }
        }
    }
}
.top-navigation {
    display: none;
    flex-direction: column;
    gap: 1em;
    justify-content: space-between;
    align-items: end;
    position: absolute;
    top: 93px;
    left: 0;
    background: white;
    right: 0;
    padding: 1.5em;

    a, button {
        font-family: var(--heading-font);
        font-size: 1em;
        display: flex;
        align-items: center;
        text-transform: capitalize;
        gap: .5em;
        padding: 0.375em .5em;
        line-height: 1;
        font-weight: 600;
        color: var(--text-color);

        & > * {
            font-family: var(--heading-font);
            line-height: 1;
            font-weight: 600;
        }

        &:hover,
        &.active {
            background: var(--blue-color);
            color: white;

            svg {
                path {
                    fill: white;
                }
            }
        }

        &.red-button {
            color: white;
        }
        &.red-button:hover,
        &.red-button.active {
            background: var(--blue-color);
            color: white
        }
    }
}
.dropdown-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

    .dropdown-menu {
        display: flex;
        gap: .5em;
        justify-content: center;
        align-items: center;

        span {
            line-height: 1;
        }

        svg {
            width: 1em;
            height: 1em;
            fill: var(--text-color);
        }

        &:hover {
            svg {
                fill: white;
            } 
        }
    }

    ul {
        list-style: none;
    }

    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.swiper {
    margin-top: 0;
    width: 100%;
    height: 40svh;

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .swiper-pagination-bullet {
        width: 1em;
        height: 1em;
        background: rgb(255 255 255);
        opacity: 1;
    }
    .swiper-pagination-bullet-active {
        background: var(--red-color);
    }
}
.banner {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;

    .banner-wrapper {
        background: url(images/banner-curve.webp) no-repeat center center;
        background-size: cover;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;

        .banner-logo {
            align-self: start
        }
        
        .banner-text {
            font-family: var(--heading-font);
            color: white;
            align-self: start;
            align-items: center;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1em;
            position: relative;
            z-index: 1;

            .button {
                margin: 0;
            }
        }

        .banner-overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            background: rgb(0 0 0 / 40%);
        }

        .title {
            font-size: 1.5em;
            line-height: 1.25;
            font-weight: 400;
            text-transform: capitalize;
        }

        .button-wrapper {
            display: flex;
            gap: 1em;
            opacity: 0;

            & > * {
                font-weight: 400;
            }
        }
    }

    .banner-2 {
        background: url(images/banner-2.webp) no-repeat center center;
        background-size: cover;
    }

    .banner-3 {
        background: url(images/banner-3.webp) no-repeat center center;
        background-size: cover;
    }

    .banner-4 {
        background: url(images/banner-4.webp) no-repeat center center;
        background-size: cover;
    }

    .banner-5 {
        background: url(images/banner-5.webp) no-repeat center center;
        background-size: cover;
    }
}
.swiper-slide-active {
    .banner-1 {
        .banner-text {
            .title {
                animation: slideInRight 4s;
            }

            .button-wrapper {
                animation: slideInRight 4s;
            }
        }
    }

    .banner-2 {
        .banner-text {
            .title {
                animation: slideInLeft 4s;
            }

            .button-wrapper {
                animation: slideInRight 4s;
            }
        }
    }

    .banner-3,
    .banner-4,
    .banner-5 {
        .banner-text {
            .title {
                animation: slideInLeft 4s;
            }
        }
    }
}
.sub-heading {
    font-size: 1.25em;
    text-transform: capitalize;
    color: var(--blue-color);
    text-align: center
}
.label {
    font-size: 1.25em;
    font-weight: 400
}

@keyframes flip {
    from {
        transform: perspective(400px) rotateY(-180deg);
      }
    
      to {
        transform: perspective(400px) rotateY(0deg);
        animation-timing-function: ease-in;
      }
  }
  
  .animated.flip {
    backface-visibility: visible;
    animation-name: flip;
  }


.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;

    .cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
        gap: 1em;

        a {
            perspective: 1000px;
            display: flex;
            flex-direction: column;
            justify-items: center;
            align-items: center;
            justify-content: center;
            gap: 1.25em;
            padding: 1.25em;
            border: 1px solid #CACACA;
            color: var(--text-color);
            position: relative;
            text-transform: capitalize;

            svg {
                max-height: 64px;
                max-width: 64px;

                path {
                    fill: rgb(0 0 0 / 80%);
                }
                path.white {
                    fill: white;
                }
            }

            span {
                font-family: var(--heading-font);
                font-size: 1em;
                line-height: 1.5;
                color: var(--blue-color);
                font-weight: 700;
                text-align: center;
            }

            p {
                display: none;
                text-align: center;
            }

            &:hover {
                background: var(--blue-color);

                animation: animate__flipInY 1s;

                svg {
                    display: none;
                    path {
                        fill: white
                    }
                }

                p {
                    display: block;
                    text-transform: none;
                }

                span,
                p {
                    color: white;
                }
            }
        }
    }
}
.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
}
.cta-wrapper .cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
        gap: 1em;
}
.cta-wrapper .cta a {
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    justify-content: center;
    gap: 1.25em;
    padding: 1.25em;
    border: 1px solid #CACACA;
    color: var(--text-color);
    position: relative;
    text-transform: capitalize;

}
.cta-wrapper .cta a:hover {
    background: var(--blue-color);
    animation: animate__flipInY 1s;
}

.cta-wrapper .cta a svg {
    max-height: 64px;
    max-width: 64px;
}
.cta-wrapper .cta a svg path {
    fill: rgb(0 0 0 / 80%);
}

.cta-wrapper .cta a svg path.white {
    fill: white;
}

.cta-wrapper .cta a span {
    font-family: var(--heading-font);
    font-size: 1em;
    line-height: 1.5;
    color: var(--blue-color);
    font-weight: 700;
    text-align: center;
}

.cta-wrapper .cta a p {
    display: none;
    text-align: center;
}
.cta-wrapper .cta a:hover {
    background: var(--blue-color);
    animation: animate__flipInY 1s;
}

.cta-wrapper .cta a:hover svg {
    display: none;
    path {
        fill: white
    }
}
.cta-wrapper .cta a:hover p {
    display: block;
    text-transform: none;
}
.cta-wrapper .cta a:hover {
    span,
    p {
        color: white;
    }
}

.number-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
}

.numbers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: .5em;

    .number {
        font-size: 1.5em
    }

    .label {
        font-size: 1em;
    }
}

.numbers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    .number {
        font-size: 1.5em;
        line-height: 1;
    }

    .label {
        font-size: 1em;
        line-height: 1.25;
    }

    svg {
        width: auto;
        height: 2.5em;
    }
}
.numbers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.numbers .number {
    font-size: 1.5em;
    line-height: 1;
}

.numbers .label {
    font-size: 1em;
    line-height: 1.25;
}

.numbers .label {
    font-size: 1em;
    line-height: 1.25;
}

.numbers svg {
    width: auto;
    height: 2.5em;
}

.image-wrapper {
    position: relative;
}

.tringle {
    position: absolute;
    right: 0;
    top: calc(50% - 22.5px);

    svg {
        path {
            fill: white;
        }
    }

    svg.white-background {
        path {
            fill: white;
        }
    }

    &.right-side {
        transform: rotate(-180deg);
        left: 0;
        right: unset;
    }
}

.homepage-content {
    display: grid;
    gap: 2em;

    .row {
        display: flex;
        align-items: stretch
    }

    .two-columns {
        display: grid;
        grid-template-columns: 1fr;

        .text {
            display: flex;
            flex-direction: column;
            background: var(--blue-color);
            color: white;
            justify-content: center;
            align-items: start;
            padding: 2svh;
            gap: 1em;
        }
    }

    .image-100 {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .numbers {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;

        .text-wrapper {
            display: flex;
            flex-direction: column;
            gap: .25em;
        }

        .number {
            font-size: 1.5em;
            line-height: 1;
        }

        .label {
            font-size: 1em;
            line-height: 1.25;
        }
    }
}
.homepage-content .row {
    display: flex;
    align-items: stretch
}

.homepage-content .two-columns {
    display: grid;
    grid-template-columns: 1fr;
}

.homepage-content .two-columns .text {
    display: flex;
    flex-direction: column;
    background: var(--blue-color);
    color: white;
    justify-content: center;
    align-items: start;
    padding: 2svh;
    gap: 1em;
}

.homepage-content .numbers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.homepage-content .numbers .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: .25em;
}
.homepage-content .numbers .number {
    font-size: 1.5em;
    line-height: 1;
}

.homepage-content .numbers .label {
    font-size: 1em;
    line-height: 1.25;
}

.link,
.red-button {
    display: flex;
    padding: 8px 16px;
    line-height: 1;
    color: white;
    background: #C41F28;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    text-transform: capitalize;
    font-weight: 600;
    align-items: center;
    width: fit-content;

    &:hover {
        background: white;
        color: var(--blue-color);

        svg {
            path {
                stroke: var(--blue-color);
            }
        }
    }
}

.link {
    box-shadow: 0 4px 4px rgb(0 0 0 / 25%);

    &:hover {
        background: white;
        color: var(--red-color)
    }
}
.center {
    display: flex;
    justify-content: center
}
.features {
    display: flex;
    flex-direction: column;
    gap: 1em;

    .features-wrapper {
        display: grid;
        justify-content: space-between;
        padding: 0 8svw;
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }

    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75em;

        svg {
            height: 2.5em;
            width: auto;

            path {
                fill: var(--gray-color)
            }
        }

        .label {
            font-size: 1em;
        }

        &:hover {
            svg {
    
                path {
                    fill: var(--blue-color)
                }
            }
    
            .label {
                color: var(--blue-color);
            }
        }
    }

    &.blue-theme {
        padding: 2em;

        svg {
            path {
                fill: white
            }
        }

        .label {
            color: white;
        }

        &:hover {
            svg {
                path {
                    fill: white
                }
            }
    
            .label {
                color: white;
            }
        }
    }
}
.features {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.features .features-wrapper {
    display: grid;
    justify-content: space-between;
    padding: 0 8svw;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
}
.features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75em;
}

.features .feature svg {
    height: 2.5em;
    width: auto;
}

.features .feature svg path {
    fill: var(--gray-color)
}

.features .feature .label {
    font-size: 1em;
}

.features .feature:hover svg path {
    fill: var(--blue-color)
}

.features .feature:hover .label {
    color: var(--blue-color);
}

.features.blue-theme {
    padding: 2em;
}

.features.blue-theme svg path {
    fill: white
}
.features.blue-theme .label {
    color: white;
}
.features.blue-theme:hover svg path {
    fill: white
}
.features.blue-theme:hover .label {
    color: white;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1em;
    overflow: hidden;

    .testimonials-wrapper {
        display: grid;
        grid-template-columns: 100%;

        .text {
            color: var(--text-color);
            font-size: 1em;
            font-weight: 700;
            line-height: 1.5;
        }

        .card {
            border: 1px solid #d9d9d9;
            display: flex;
            flex-direction: column;
            padding: 1.25em;
            justify-content: center;
            align-items: center;
            gap: 1em;

            .feedback,
            strong {
                font-size: .75em;
                text-align: center;
                color: var(--text-color)
            }
        }
    }

    .owl-stage-outer {
        max-width: 100%;
    }
}
.no-js .owl-carousel, .owl-carousel.owl-loaded {
    position: relative
}
.owl-carousel {
    .owl-prev,
    .owl-next {
        position: absolute;
        width: 10px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 37%;   
        
        
        span {
            font-size: 2em;
            color: var(--text-color);
        }

        &:hover {
            span {
                color: var(--blue-color)
            }
        }
    }

    .owl-prev{
        left: 0
    }

    .owl-next {
        right: 0
    }

    .owl-dots {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 0.625em;
        margin-top: 1.5em;

        .owl-dot {
            width: 1em;
            height: 1em;
            background: #D9D9D9;
            border-radius: 50%;

            &:hover,
            &.active {
                background: var(--red-color)
            }
        }
    }

    .owl-nav.disabled {
        display: block;
    }
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute;
    width: 10px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 37%;
}
.owl-carousel .owl-prev span,
.owl-carousel .owl-next span {
    font-size: 2em;
    color: var(--text-color);
}
.owl-carousel .owl-prev:hover span,
.owl-carousel .owl-next:hover span {
    color: var(--blue-color)
}

.owl-carousel .owl-prev {
    left: 0
}
.owl-carousel .owl-next {
    right: 0
}
.owl-carousel .owl-dots {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.625em;
    margin-top: 1.5em;
}
.owl-carousel .owl-dots .owl-dot {
    width: 1em;
    height: 1em;
    background: #D9D9D9;
    border-radius: 50%;
}
.owl-carousel .owl-dots .owl-dot:hover,
.owl-carousel .owl-dots .owl-dot.active {
    background: var(--red-color)
}
.owl-carousel .owl-nav.disabled {
    display: block;
}

.features-wrapper.owl-carousel {
    .owl-prev, .owl-next {
        top: 1em;
        span {
            color: var(--text-color);
        }

        &:hover {
            span {
                color: var(--blue-color);
            }
        }
        
    }

    .owl-prev {
        left: 1em;
    }

    .owl-next {
        right: 1em;
    }
}

.features-wrapper.owl-carousel .owl-prev,
.features-wrapper.owl-carousel .owl-next {
    top: 1em;
}
.features-wrapper.owl-carousel .owl-prev span,
.features-wrapper.owl-carousel .owl-next span {
    color: var(--text-color);
}
.features-wrapper.owl-carousel .owl-prev:hover span,
.features-wrapper.owl-carousel .owl-next:hover span {
    color: var(--blue-color);
}
.features-wrapper.owl-carousel .owl-prev {
    left: 1em;
}
.features-wrapper.owl-carousel .owl-next {
    right: 1em;
}

footer {
    padding: 2em;
    display: grid;
    gap: 2em;
    grid-template-columns: 1fr;
    background: rgb(0 0 0 / 8%);
    font-size: .9em;
    justify-items: center;

    .column {
        display: flex;
        flex-direction: column;
        gap: 1em;
        text-align: center;
    }

    a {
        line-height: 1;
        color: var(--blue-color);

        &:hover {
            color: var(--red-color);
        }
    }

    .footer-heading {
        line-height: 1;
        margin: 0;
        text-transform: capitalize;
    }

    .footer-logo {
        img {
            max-height: 5em;
            width: auto;
        }
    }

    .label {
        font-size: 1em;
        font-weight: 700;
        line-height: 1.5;
    }

    .link-wrapper {
        display: flex;
        gap: .5em;
        align-items: center;

        .icon-wrapper {
            font-size: 16px;

            svg {
                width: 1.5em;
                height: 1.5em;
            }

            &:hover {
                svg {
                    path {
                        fill: var(--red-color);
                    }
                }
            }
        }
    }

    .contactus {
        display: flex;
        flex-direction: column;
    }
}

.homepage-content {
    .hide {
        display: none;
    }
}
.heading-wrapper {
    display: flex;
    padding: 1.25em 1.25em;
    background: var(--text-color);

    h1 {
        color: white;
    }
}
.element-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 1.25em;
    gap: 1em;
}
.blue-color {
    color: var(--blue-color);
}
.blue-theme {
    background: var(--blue-color);
    color: white;

    svg {
        path {
            fill: white;
        }
    }

    h2 {
        color: white;
    }
}
.italic {
    font-style: italic;
}
.middle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.second-highlighted {
    font-size: 1.1em;
}
.aboutus {
    .header,
    .page-wrapper {
        gap: 0;
    }
    .heading-wrapper {
        background: var(--text-color) url(images/aboutus-banner.webp) center center no-repeat;
    }

    .text-wrapper {
        display: flex;
        flex-direction: column;
        gap: .5em;
    }

    .vision-mission {
        .text-wrapper {
            align-items: center;
        }
        p {
            text-align: center;
            padding: 0 10%;
        }
        h3 {
            color: var(--red-color);
        }
        svg {
            height: 3em;
            width: auto;

            path {
                fill: var(--red-color);
            }
        }
    }

    .our-core-values {
        display: flex;
        flex-direction: column;
        align-items: center;

        h3 {
            color: var(--blue-color);
        }

        .owl-stage {
            display: flex;
            align-items: stretch;
        }

        .values {
            display: grid;
            gap: 2em;
        }

        .values-wrapper {
            display: grid;
            gap: 1em;
            text-align: center;

            section {
                background: var(--blue-color);
                display: flex;
                flex-direction: column;
                align-items: center;
                color: white;
                gap: .5em;
                padding: .65em .65em 1em;
                margin-top: 2em;

                h4, h5 {
                    font-size: 1em;
                    font-weight: 600;
                    text-transform: capitalize;
                    color: white;
                }

                svg {
                    width: 32px;
                    height: 32px;

                    path {
                        fill: var(--blue-color);
                    }
                }

                p {
                    font-size: .8em;
                }

                .icon-wrapper {
                    width: 62px;
                    height: 62px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: white;
                    border-radius: 50%;
                    margin-top: -3em;
                    border: 1px solid var(--blue-color);
                }

                &:nth-child(even) {
                    background: white;
                    color: var(--blue-color);
                    border: 1px solid var(--blue-color);

                    .icon-wrapper {
                        background: var(--blue-color);

                        svg path {
                            fill: white;
                        }
                    }

                    h4, h5 {
                        color: var(--blue-color);
                    }
                }
            }
        }

        .owl-carousel .owl-nav {
            .owl-prev {
                left: 0;
            }

            .owl-next {
                right: 0;
            }

        }
    }

    .secure-logistics {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;

        .text-wrapper {
            padding: 2em;
        }

        .image-wrapper {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }

    .holder {
        position: relative;
        min-width: 25svw;
        
        .card {
            padding: 1em;
            outline: 1px solid transparent;
            cursor: pointer;

            .contact {
                display: flex;
                flex-direction: column;
                gap: .5em;
                justify-content: center;
                align-items: center;
                padding: .5em 0;
                font-size: small;

                a {
                    display: flex;
                    align-items: center;
                    gap: .25em;
                    color: var(--blue-color);
                }

                svg {
                    width: 1em;
                    height: 1em;

                    path {
                        stroke: var(--blue-color);
                    }
                }
            }

            p, .contact {
                display: none;
            }

            &:hover,
            &.active {
                position: absolute;
                outline: 1px solid rgb(0 0 0 / 10%);
                z-index: 2;
                background: white;
                box-shadow: 0 4px 4px rgb(0 0 0 / 16%);
                left: 0;
                right: 0;
                top: 0;

                p {
                    display: block;
                }
                .contact {
                    display: flex;
                }

                a:hover {
                    color: var(--red-color);
                    cursor: pointer;
                    
                    svg {
                        path {
                            stroke: var(--red-color);
                        }
                    }
                }
            }
        }
    }
}

.aboutus .four-column .holder {
    min-width: auto;
}

.services {
    .header,
    .page-wrapper {
        gap: 0;
    }
    .heading-wrapper {
        background: var(--text-color) url(images/services-banner.webp) center center no-repeat;
    }

    h1 {
        color: white;
    }

    .text-wrapper {
        display: flex;
        flex-direction: column;
        gap: .5em;
    }

    .image-wrapper {
        .big-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .service {
        h2 {
            text-transform: capitalize;
            color: var(--blue-color);
        }
        &>.text-wrapper{
            min-height: 200px;
            padding: 2em;
            text-align: center;
            font-size: 14px;
            line-height: 1.5;
        }
        &.left-image {
            .image-wrapper {
                position: relative;
                overflow: hidden;
                .tringle {
                    position: absolute;
                    right: unset;
                    top: unset;
                    bottom: -11px;
                    transform: rotate(90deg);
                    left: calc(50% - 24.5px);
                }
            }

            .text-wrapper {
                border: 1px solid #CACACA;
                border-top: 0;
                display: flex;
                flex-direction: column;
                gap: 1em;
            }
        }

        &.right-image {
            .image-wrapper {
                position: relative;
                overflow: hidden;
                .tringle {
                    position: absolute;
                    right: unset;
                    top: -11px;
                    bottom: unset;
                    transform: rotate(270deg);
                    left: calc(50% - 24.5px);
                }
            }

            .text-wrapper {
                border: 1px solid #CACACA;
                border-bottom: 0;
            }
        }
        
        &:hover {
            color: white;
            h2 {
                color: white;
            }
            .text-wrapper {
                background: var(--blue-color);
            }

            .tringle {
                svg,
                & svg.white-background {
                    path {
                        fill: var(--blue-color);
                    }
                }
            }

            .button {
                background: white;
                color: var(--red-color);

                &:hover {
                    background: var(--blue-color);
                    color: white;
                }
            }
        }
    
    }
}

.border-top {
    border-top: 1px solid #CACACA;
}

.border-right {
    border-right: 1px solid #CACACA;
}

.border-bottom {
    border-bottom: 1px solid #CACACA;
}

.border-left {
    border-left: 1px solid #CACACA;
}

.one-column,
.four-column {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 2em;
    width: fit-content;
}
.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    margin: auto;    
}
.our-leadership,
.three-column,
.center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.our-leadership {
    display: flex;
    flex-direction: column;
    gap: 2em;

    h3 {
        color: var(--blue-color);
    }
    
    h4 {
        text-transform: capitalize;
        font-weight: 600;
    }

    .card {
        display: flex;
        flex-direction: column;
        gap: .5em;
    }

    .label {
        font-size: .7em;
        color: var(--text-color);
    }

    .three-column {
        gap: 0;
        align-items: stretch;
    }

    .picture {
        aspect-ratio: 1 / 1;
        height: auto;
    }
}
.our-clients {
    h3 {
        color: var(--blue-color);
    }

    .owl-carousel {
        .owl-item {
            width: 140px;
            img {
                width: auto;
                height: auto;
            }
        }
    }

    .image-wrapper {
        position: relative;
        max-width: 100%;
        overflow: hidden;

        img {
            filter: grayscale(100%);

            &:hover {
                filter: grayscale(0%); 
            }
        }

        .owl-stage-outer {
            margin: 0 2em;
            overflow: hidden;
        }

        .owl-stage {
            display: flex;
            gap: 1em;

            .owl-item {
                img {
                    aspect-ratio: 1 / 1;
                }
            } 
        }

        button {
            border: 0;
            background: transparent;
        }

        .owl-prev,
        .owl-next {
            position: absolute;
            top: calc(50% - 20px);
        }

        .owl-prev {
            left: 0;
        }

        .owl-next {
            right: 0;
        }

    }
    
}

.zero-gap {
    gap: 0;
}

.addon {
    margin-bottom: 2em;

    h3 {
        color: var(--blue-color);
        text-align: center;
    }

    h4 {
        text-transform: capitalize;
    }

    .card-body {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 1em;
        padding: 1em;
        text-align: left;

        p {
            visibility: hidden;
            height: 0;
        }

        svg {
            width: 2em;
            height: 2em;

            path {
                fill: var(--gray-color)
            }
        }
    }

    .addon-wrapper {
        position: relative;
        grid-template-columns: 1fr 1fr;

        &:hover .card:not(:hover) {
            opacity: .5;
        }
    }

    .card {
        h4 {
            color: gray;
        }
        position: relative;

        &:hover {
            width: 120%;
            h4 {
                color: white;
            }

            .card-body {
                transition: all .1s;
                color: white;
                z-index: 1;
                position: absolute;
                background: var(--red-color);
                box-shadow: 0 4px 4px rgb(0 0 0 / 20%);

                svg {
                    path {
                        fill: white;
                    }
                }

                p {
                    display: block;
                    visibility: visible;
                    height: auto;
                }

                &.no-absolute {
                    position: relative;
                }
            }

        }
    }
}

.career {
    .header,
    .page-wrapper {
        gap: 0;
    }

    p {
        a {
            color: var(--blue-color);
            font-weight: 600;
    
            &:hover {
                color: var(--red-color);
            }
        }
    }

    h4 {
        text-transform: capitalize;
        color: var(--red-color);
        font-weight: 400;
    }

    .heading-wrapper {
        background: var(--text-color) url(images/career-banner.webp) center center no-repeat;
        color: white;
    }

    .department {
        display: inline-flex;
        background: var(--text-color);
        color: white;
        text-transform: capitalize;
        font-size: 0.625em;
        padding: 4px 8px;
        width: fit-content;
    }

    .card {
        display: flex;
        border: 1px solid rgb(0 0 0 / 16%);
        padding: 2em;
        flex-direction: column;
        gap: 1em;

        .card-header {
            display: flex;
            flex-direction: column;
            gap: .5em;
            justify-content: start;
            text-align: left;
        }
    }

    .tags {
        display: flex;
        gap: 1em;
    }

    .tag  {
        gap: .25em;
        padding: .25em 0;
        .label {
            font-size: 0.625em;
            font-weight: 700;
        }
    }

    .button-wrapper {
        display: flex;
        gap: .5em;
    }

    .button {
        box-shadow: none;
        text-transform: capitalize;
        padding: 0.375em 1em;
    }

    .description {
        display: none;

        &.show {
            display: block;
        }
        h6 {
            text-transform: capitalize;
        }
    }

    .jobs-wrapper {
        display: grid;
        gap: 1em;
    }
}

.list {
    list-style-position: inside;
}

.branches {
    .header,
    .page-wrapper {
        gap: 0;
    }
    .heading-wrapper {
        background: var(--text-color) url(images/branches-banner.webp) center center no-repeat;
    }

    main > .page-wrapper {
        margin-top: 2.5em;
    }

    .middle-gap {
        gap: 0;
    }

    .image-wrapper {
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .map {
        position: relative;
        img {
            height: auto;
        }
    }

    .pointer {
        border: 0;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: .25em;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 8;

        .icon-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        .point {
            width: 1.5em;
            height: auto;
        }

        label {
            color: black;
        }

        .circle {
            width: 4px;
            height: 4px;
        }

        &:hover {
            z-index: 10;

            .point {
                width: 2.5em;

                g:first-child {
                    path {
                        fill: var(--blue-color);
                    }
                }
            }

            label {
                color: var(--blue-color);
                font-weight: 700;
            }
        }
    }
    .pune {
        top: 45%;
        left: 6%;
    }

    .mumbai {
        top: 25%;
        left: -4%;
    }

    .satara {
        top: 50%;
        left: 13%;
    }

    .sangli {
        top: 58%;
        left: 22%;
    }

    .kolhapur {
        top: 70%;
        left: 7%;
    }

    .ahmedabad {
        top: 24%;
        right: 24%;
    }

    .rajkot {
        top: 45%;
        left: 35%;
    }

    .bhavnagar {
        top: 55%;
        left: 49%;
    }

    .surat {
        top: 66%;
        right: 15%;
    }

    .vapi {
        top: 85%;
        right: 22%;
    }

    .ankleshwer {
        top: 47%;
        right: 9%;
    }

    .baroda {
        right: 10%;
        top: 30%;
    }

    .alert {
        padding-left: 2em;
        padding-right: 2em;
    }

    .address-grid {
        display: flex;
        gap: .5em;
    }

    

    .branch {
        h4 {
            color: var(--red-color);
        }

        .flex {
            flex-wrap: wrap;
        }
    }

    .branch-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3em 2em;
    }

    .address-wrapper {
        display: none;
        flex-direction: column;
        gap: 2em;
        justify-content: center;
        align-items: center;
        padding-top: 10em;

        h2 {
            color: var(--blue-color);
        }

        &.show {
            display: flex;
        }

        address {
            display: flex;
            flex-direction: column;
            gap: 1em;
    
            span, a {
                color: black;
            }
    
            svg {
                width: 1.5em;
                height: 1.5em;
            }
    
            a {
                display: flex;
                cursor: pointer;
                align-items: center;
    
                &:hover {
                    color: var(--red-color);
    
                    * {
                        color: var(--red-color);
                    }
                    
    
                    svg {
                        path {
                            fill: var(--red-color);
                        }
                    }
                }
            }
        }
    }
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.contactus {
    .header,
    .page-wrapper {
        gap: 0;
    }

    .heading-wrapper {
        background: var(--text-color) url(images/branches-banner.webp) center center no-repeat;
    }

    .form-map-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2em;

        h2 {
            color: var(--blue-color);
        }

        form,
        .text-wrapper,
        .input-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1em;
        }
    }

    .form {
        display: flex;
        gap: 1em;
        justify-content: start;
        flex-direction: column;

        .button {
            margin: 0;
            width: fit-content;
        }
    }

    iframe {
        max-width: 100%;
    }

    .contact-wrapper {
        footer {
            grid-template-columns: 1fr;
            padding-top: 0;
            padding-bottom: 0;
            background: transparent;
        }

        & > * {
            padding-left: 1.25em;
            padding-right: 1.25em;
        }
    }
}
.lrtracking {
    .header,
    .page-wrapper {
        gap: 0;
    }

    .heading-wrapper {
        background: var(--text-color) url(images/career-banner.webp) center center no-repeat;
    }

    .form-wrapper {
        max-width: 50%;

        .button {
            margin: 0;
            width: fit-content;
        }
    }
}
input, textarea {
    border: 0;
    border-bottom: 1px solid #CACACA;
    padding: 10px 10px 16px;

    &:focus {
        border-bottom-color: var(--red-color);
        outline: 0;
    }
}
.flex {
    display: flex;
    gap: .5em;
    align-items: center;
}

.middle-gap {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
    padding-top: 2.5em;
    padding-bottom: 2.5em;
}

.overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100svh;
    background: rgb(0 0 0 / 16%);
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: hidden;

    &.show {
        display: flex;
        animation: 'zoomIn' 1s;
    }
}

.popup {
    position: relative;
    background: white;
    padding: 1em;
    display: flex;
    gap: 2em;
    outline: .5em solid rgb(255 255 255 / 16%);
    max-width: 70svw;
    max-height: 84svh;
    margin: auto;

    overflow: hidden;

    .close-button {
        background: transparent;
        border: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 1em;

        svg {
            width: 1.5em;
            height: 1.5em;
        }

        &:hover {
            svg {
                path {
                    fill: var(--blue-color);
                }
            }
        }
    }

    .card {
        display: grid;
        gap: 1em;
        padding: 1em;
        grid-template-columns: 1fr;

        .card-header {
            display: flex;
            flex-direction: column;
            gap: .5em;
            justify-content: center;
            align-items: center;
        }

        .label {
            font-size: 1em;
        }

        .information {
            max-height: 90svh;
            overflow-x: hidden;
            overflow-y: auto;
        }
    }

    .about {
        text-transform: capitalize;
        color: var(--gray-color);
    }

    .email,
    .tel {
        display: flex;
        align-items: center;
        gap: .5em;
        color: var(--blue-color);;

        svg {
            width: 2em;
            height: 2em;

            path {
                fill: var(--blue-color);
            }
        }

        &:hover {
            color: var(--blue-color);
            svg {
    
                path {
                    fill: var(--red-color);
                }
            }
        }
    }
}

.get-quote {
    .form {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }
}

.latest-news {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 1.5em;

    .news-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5em;
    }

    .card,
    .card-header,
    .card-body {
        display: flex;
        flex-direction: column;
        gap: .5em;
    }

    .card-header {
        .picture {
            width: 100%;
            object-fit: cover;
        }
    }

    .title {
        text-transform: capitalize;
        color: black;

        &:hover {
            color: var(--blue-color);
        }
    }
}

.width-100 {
    width: 100%;
}
.text-center {
    text-align: center;
}
.opacity-40 {
    opacity: .4;
}

.blogs-section {
    display: flex;
    flex-direction: column;
    gap: 1.5em;

    .blogs-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .card {
        border: 1px solid rgb(0 0 0 / 10%);
        padding: 1em;
    }

    .card,
    .card-header,
    .card-body {
        display: flex;
        flex-direction: column;
        gap: .5em;
    }

    .card-header {
        .picture {
            width: 100%;
            object-fit: cover;
        }
    }

    .title {
        text-transform: capitalize;
        color: black;

        &:hover {
            color: var(--blue-color);
        }
    }
}

.news,
.blogs {
    .heading-wrapper {
        background: url(images/blog-banner.webp) center center no-repeat;
        background-size: cover;
    }

    & > .page-wrapper {
        gap: 0;
    }

    .news-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5em;
        padding: 0 1.5em;
    }

    .card,
    .card-header,
    .card-body {
        display: flex;
        flex-direction: column;
        gap: .5em;
    }

    .card-header {
        .picture {
            width: 100%;
            height: 5em;
            object-fit: cover;
        }
    }

    .title {
        font-size: 1em;
        text-transform: capitalize;
        color: black;

        &:hover {
            color: var(--blue-color);
        }
    }
}

time {
    color: #555555;
}
.text-link {
    color: var(--blue-color);
    width: fit-content;

    &:hover {
        color: var(--red-color);
    }
}

.pagination {
    display: flex;
    gap: .5em;

    a {
        min-width: 2em;
        min-height: 2em;
        padding: .5em 0.75em;
        display: flex;
        justify-content: center;
        align-items: center;

        &:hover,
        &.active {
            background: var(--blue-color);
            color: white;
        }
    }
}

.post {
    .heading-wrapper {
        background: url(images/post-banner.webp) center center no-repeat;
        background-size: cover;
    }

    .post-wrapper {
        display: flex;
        flex-direction: column;
        gap: .5em;
    }
}

.overflow-y-hidden {
    overflow-y: hidden
}

.number-wrapper {
    padding: 2em;
    background: var(--red-color);
    color: white;
}
.number-wrapper svg circle, .number-wrapper svg path {
    fill: white;
}

.branches-space {
    height: 3em;
}

.go-top {
    position: fixed;
    right: 1em;
    bottom: 15svh;
    z-index: 11;
    box-shadow: 0 4px 4px rgb(0 0 0 / 16%);
    border-radius: 50%;
    display: none;
    width: 32px;
    height: 32px;

    svg {
        width: 100%;
        height: 100%;

        path {
            fill: var(--blue-color);
        }
    }

    &:hover {
        transform: scale(1.2);
        svg {
            path {
                fill: var(--red-color);
            }
        }
    }

    &.hide {
        display: none;
    }

    &.show {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.first-screen {
    background: white;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10;

    .slide-logo {
        max-width: 240px;

        img {
            width: 100%;
            height: auto;
        }
    }

    .slide-wrapper {
        background: url(images/bannerCurve.webp) no-repeat bottom left;
        padding: 10svh 10svw 0 10svw;
        width: 100svw;
        height: 100svh;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        background-size: 150%;
        gap: 2em;
    }

    .slide-text {
        max-width: 200px;
    }

    &.show {
        display: flex;
        .slide-logo {
            animation: slideInLeft 2s;
        }
        .slide-wrapper {
            animation: fadeIn 1s;
        }
        .slide-text {
            animation: slideInRight 2s;
        }
    }
}

.brand-promise {
    display: grid;

    .label {
        font-size: 1.5em;
        font-weight: 700;
        background: var(--blue-color);
        color: white;
        padding: .25em;
    }

    .slogan {
        font-size: xx-large;
        text-transform: uppercase;
        font-weight: 700;
        background: var(--red-color);
        padding: .75em 1em;
        line-height: 1;
        color: white;
        box-shadow: 0 16px 32px rgb(0 0 0 / 25%);
    }
}

@media screen and (min-width: 760px) {
    .swiper {
        margin-top: -2em;
    }
    .first-screen {
        align-items: center;
        justify-content: center;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 10;
    
        .slide-logo {
            max-width: 280px;
            align-self: start;
        }
    
        .slide-wrapper {
            padding: 8em;
            align-items: end;
            justify-content: space-between;
            background-size: cover;
        }
    
        .slide-text {
            max-width: none;
        }
    }
}

.slider-wrapper {
    position: absolute;
    right: unset;
    left: 20px;
    top: 65%;
    z-index: 2;
    display: flex;
    gap: 1em;
    animation: sliderWrapperMobile 4s forwards;

    & > * {
        font-weight: 400;
    }
}

.margin-auto {
    margin: auto;
}
.map-link:hover {
    path {
        fill: var(--red-color);
    }
}
.india-map {
    max-width: 100%;
    height: auto;
}
.testimonials-wrapper .owl-carousel .owl-stage {
    display: flex;
    justify-content: stretch;
}
.testimonials-wrapper .card {
    height: 100%;
}
.copyright-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px 2em 20px;
    background: #ebebeb;
    font-size: .75em;
    gap: .5em;
}
.copyright-wrapper .seperator {
    display: none;
}
@media screen and (max-height: 760px) {
    .first-screen {
        .slide-logo {
            padding-top: 5svh;
            max-width: 200px;
        }
    
        .slide-wrapper {
            padding: 0 10svw;
            align-items: end;
            background-size: 100% auto;
            justify-content: space-between;
        }
    
        .slide-text {
            max-width: none;
            margin-bottom: 10svh;
        }
    }
}

@media screen and (min-width: 834px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2em;
    }
    h3 {
        font-size: 1.5em;
    }
    h4 {
        font-size: 1.20em;
    }
    h5 {
        font-size: 1.125em;
    }

    .wrapper {
        padding-left: 5em;
        padding-right: 5em;
    }

    .hamburger-menu {
        display: none;
    }

    .banner {
        .banner-wrapper {
            .banner-text {
                grid-template-columns: 60% 1fr;
            }
            .title {
                font-size: 2.5em;
            }
        }
        
        .banner-1 {
            margin-top: 2em;
        }
    }

    .main-space {
        padding: 0 5em;
    }

    .top-section {
        padding-top: 1.25em;
        padding-bottom: 1.25em;
    }

    .top-navigation {
        display: flex;
        flex-direction: row;
        position: relative;
        left: unset;
        right: unset;
        top: unset;
        padding: 0;
        align-items: center;
    }

    .dropdown-wrapper .dropdown {
        display: none;
    }

    .dropdown-wrapper.show .dropdown {
        z-index: 1;
        display: flex;
        align-items: start;
        top: 32px;
        background: white;
        position: absolute;
        box-shadow: 0 4px 8px rgb(0 0 0 / 16%);
    }

    .dropdown-wrapper.show .dropdown li {
        width: 100%;
    }

    .dropdown-wrapper.show .dropdown li a {
        padding: .5em 1em;
        border-top: 1px solid rgb(0 0 0 / 16%);
    }

    .dropdown-wrapper.show .dropdown li:first-child a {
        border-top: 0
    }

    .page-wrapper {
        gap: 2em;
    }

    .swiper {
        height: 70svh;
    }

    .cta-wrapper {
        gap: 1.75em;
    
        .cta {
            gap: 2em;
            grid-template-columns: 1fr 1fr 1fr 1fr;
    
            a {
                padding: 1.25em;
                min-height: 270px;
    
                svg {
                    max-height: 70px;
                    /* max-width: 99px; */
                    max-width: unset;
                    width: auto;
                }
    
                span {
                    font-size: 1.25em;
                    line-height: 1.25;
                }
            }
        }
    }

    .homepage {

        & > .page-wrapper {
            margin-top: -3em;
            gap: 5em;
        }
    }

    .homepage-content {
        gap: 4em;

        .two-columns {
            grid-template-columns: 1fr 1fr;
            .text {
                padding: 8svh;
                gap: 2.9em;
            }
        }
    }

    .numbers {
        gap: 1em;

        .text-wrapper {
            gap: .35em;
        }
    }

    .homepage-content {
        .numbers {    
            .text-wrapper {
                gap: .35em;
            }
        }
    }

    .features {
        gap: 1.75em;

        .features-wrapper {
            display: flex;
        }

        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: fit-content;
        }
    }

    .testimonials {
        gap: 1.25em;
    
        .testimonials-wrapper {
    
            .card {
                padding: 1.75em;
                gap: 1.75em;
            }
        }
    }

    .heading-wrapper {
        padding: 1.25em 5em;
    }

    .element-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 0 5em;
        gap: 1.25em;
    }

    .second-highlighted {
        font-size: 1.125em;
    }

    .aboutus {
        .text-wrapper {
            gap: 1em;
        }

        .our-core-values {
            .values {
                gap: 3em;
            }

            .values-wrapper {
                display: grid;
                gap: 1.5em;
                grid-template-columns: repeat(5, 1fr);
            }

            .owl-carousel .owl-nav {
                .owl-prev {
                    left: -32px;
                }
    
                .owl-next {
                    right: -32px;
                }
    
            }
        }

        .secure-logistics {
            flex-direction: row;
    
            .text-wrapper {
                padding: 2em 2em 2em 5em;
                display: flex;
                flex-direction: column;
                gap: 1em;
                justify-content: center;
            }
    
            .image-wrapper {
                width: auto;
                max-width: 50%;
                height: 100%;
                object-fit: cover;
            }
        }

        .number-wrapper {
            .text-wrapper {
                gap: .35em;
            }
        }
    }

    footer {
        grid-template-columns: 263px 230px 1fr 1fr 1fr;

        .column {
            text-align: left;
        }

        .contactus {
            display: grid;
        }

        .link-wrapper {
    
            .icon-wrapper {
                svg {
                    width: 2em;
                    height: 2em;
                }
            }
        }
    }

    .number-wrapper {
        grid-template-columns: repeat(6, 1fr);
    }

    .who-are-we {
        grid-template-columns: 1fr;
        /* margin-left: 5em;
        margin-right: 5em; */

        .text-wrapper {
            text-align: center;
        }
    }

    .vision-mission {
        margin-left: 5em;
        margin-right: 5em;
    }

    .one-column {
        grid-template-columns: 1fr;
    }

    .three-column {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3em;
    }

    .four-column {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2em;
    }

    .zero-gap {
        gap: 0;
    }

    .services {
        .service {
            p {
                max-width: 80%;
            }
            &>.text-wrapper{
                min-height: unset;
    
            }
            &.left-image {
                .image-wrapper {
    
                    .tringle {
                        right: 0;
                        top: calc(50% - 22.5px);
                        bottom: unset;
                        transform: rotate(0);
                        left: unset;
                    }
                }
    
                .text-wrapper {
                    border: 1px solid #CACACA;
                    border-top-width: 1;
                    border-left-width: 0;
                }
            }

            &.right-image {
                .image-wrapper {
                    position: relative;
                    overflow: hidden;
                    .tringle {
                        right: unset;
                        top: calc(50% - 22.5px);
                        bottom: unset;
                        transform: rotate(180deg);
                        left: 0;
                    }
                }
    
                .text-wrapper {
                    border: 1px solid #CACACA;
                    border-bottom-width: 1;
                    border-left-width: 1;
                    border-right: 0;
                }
            }
        }
    }

    .addon {
        .card-body {
            svg {
                width: 2.5em;
                height: 2.5em;
            }
        }

        .addon-wrapper {
            grid-template-columns: 1fr 1fr 1fr 1fr;

            &.five-columns {
                grid-template-columns: 1fr 1fr 1fr 1fr 1fr
            }
        }
    }

    .career {
        .one-column {
            width: 100%;
        }
        .card {
            padding: 2em;
            flex-direction: row;
            gap: 2em;
            width: 100%;

            .card-header {
                gap: 1em;
                width: 100%;
            }

            .button-wrapper {
                flex-direction: column;
            }
        }
    }

    .map {
        position: relative;
        max-width: 70%;
        margin: auto;
    }

    .branches {
        .heading-wrapper {
            padding: 1.25em 5em;
        }
        .middle-gap {
            gap: 0;
            padding-top: 2em;
        }
        main > .page-wrapper {
            margin-top: 5em;
        }
        .pune {
            top: 43%;
            left: 7%;
        }
        .mumbai {
            top: 30%;
            left: -2%;
        }
        .satara {
            top: 46%;
            left: 14%;
        }
        .sangli {
            top: 64%;
            left: 21%;
        }
        .kolhapur {
            top: 70%;
            left: 10%;
        }

        .ahmedabad {
            top: 30.8%;
            right: 31.5%;
        }

        .rajkot {
            top: 52%;
            left: 39%;
        }

        .bhavnagar {
            top: 57%;
            left: 53%;
        }

        .surat {
            top: 70%;
            right: 15%;
        }

        .vapi {
            top: 85%;
            right: 20%;
        }

        .ankleshwer {
            top: 51%;
            right: 10%;
        }

        .baroda {
            right: 13%;
            top: 32%;
        }

        .branch-list {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .contactus {
        form, .input-wrapper {
            flex-direction: row;
            gap: 2em;
        }

        .form-map-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 50%);
            gap: 2.5em;
            align-items: stretch;

            form {
                gap: 2em;
            }

            .input-wrapper {
                flex-direction: row;
                gap: 2em;

                input {
                    width: 100%;
                }
            }
        }
        .contact-wrapper {
            footer {
                grid-template-columns: 1fr 1fr 1fr;
                justify-items: start;
            }
        }

        .contact-wrapper {
            & > * {
                padding-left: 5em;
                padding-right: 5em;
            }
        }
    }

    .our-leadership {
        .three-column {
            gap: 0  ;
        }
    }

    .middle-gap {
        gap: 5em;
        padding-top: 5em;
        padding-bottom: 5em;
    }

    .popup {
        gap: 2em;
    
        .card {
            gap: 2em;
            padding: 2em;
            grid-template-columns: 30% 70%;

            .card-header {
                justify-content: start;
                align-items: start;
            }

            .information {
                max-height: 90svh;
            }
        }
    }

    .latest-news {
        background: #f5f5f5;
        gap: 2em;
        padding: 1.5em 5em;

        .news-wrapper {
            flex-direction: row;
            gap: 2em;
        }

    }

    .blogs-section {
        gap: 2em;

        .blogs-wrapper {
            grid-template-columns: repeat(3, 1fr);
            gap: 2em;
        }

    }

    .news,
    .blogs {
        .news-wrapper {
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2em;
            padding: 0 5em;
        }
    
        .card,
        .card-header,
        .card-body {
            display: flex;
            flex-direction: column;
            gap: .5em;
        }
    
        .card-header {
            .picture {
                height: 10em;
            }
        }
    
        .title {
            font-family: var(--heading-font);
            font-size: 1em;
        }

    }

    .post {
        .post-wrapper {
            gap: 1em;
        }
    }

    .branches-space {
        height: 5em;
    }

    .slider-wrapper {
        left: unset;
        right: 23%;
        top: 43%;
        animation: sliderWrapperDesktop 4s forwards;
    }

    .india-map {
        max-width: 40svw;
        height: auto;
    }

    .copyright-wrapper {
        flex-direction: row;
        justify-content: left;
        gap: 1em;
        padding-left: 80px;
        padding-right: 80px;
    }
    .copyright-wrapper .seperator {
        display: block;
        font-size: 8px;
    }
}

@keyframes hideFirstScreen {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 0;
      display: none;
    }
}
.hideFirstScreen {
    animation: hideFirstScreen 2s forwards;
}

@keyframes sliderWrapperMobile {
    from {
      left: 200px;
    }
  
    to {
      left: 20px;
    }
}

@keyframes sliderWrapperDesktop {
    from {
      right: 1%;
    }
  
    to {
      right: 23%;
    }
}