/*====================================
Hero Section
====================================*/

.hero-section {
    padding: 35px 0 20px;

}

.hero-wrapper {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;

}


/*====================================
Left
====================================*/

.hero-left {

    width: 46%;

}

.hero-left h1 {
    font-family: "Arimo", sans-serif;
    font-size: 62px;
    font-weight: 400;
    line-height: 1.08;
    color: #111;

}

.hero-left h1 span {

    display: block;

}

.hero-left p {
    font-family: "Arimo", sans-serif;
    margin-top: 24px;
    width: 470px;
    color: #666;
    font-size: 20px;
    line-height: 1.6;
}


/*====================================
Buttons
====================================*/

.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 20px;

}

.btn-light {

    padding: 17px 30px;

    border: 1px solid #cfcfcf;

    color: #111;

    background: #fff;
    border-radius: 10px;
    font-size: 16px;

}

.btn-gradient {

    padding: 17px 34px;

    color: #fff;
    border-radius: 10px;
    background: linear-gradient(90deg, #243b94, #91474d);

}


/*====================================
Stats
====================================*/

.hero-stats {
    display: flex;
    gap: 70px;
    margin-top: 20px;

}

.stat h2 {
    font-size: 46px;
    font-weight: 500;
    color: #111;

}

.stat span {
    display: block;
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
    color: #777;
    text-transform: uppercase;
}


/*====================================
Right
====================================*/

.hero-right {

    width: 54%;

    display: flex;

    justify-content: flex-end;

}

.hero-image {

    width: 620px;

    height: 560px;

    position: relative;

    overflow: hidden;

    border-top-right-radius: 70px;

    border-bottom-right-radius: 70px;

}

.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/*====================================
Experience
====================================*/

.experience-box {
    position: absolute;
    left: 0px;
    bottom: 25px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 1px solid #ffffff;

}

.experience-box h3 {
    font-size: 46px;
    font-weight: 400;
    line-height: 1;

}

.experience-box p {

    margin-top: 12px;

    text-align: center;

    font-size: 16px;

    line-height: 1.4;

}


/*====================================
Hero Animation
====================================*/

.hero-left,
.hero-right {
    opacity: 0;
    transition: transform 0.9s ease, opacity 0.9s ease;
}

.hero-left {
    transform: translateX(-120px);
}

.hero-right {
    transform: translateX(120px);
}

.hero-left.animate-in,
.hero-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width:991px) {

    .hero-section {
        padding: 40px 0 50px;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left h1 {
        font-size: 42px;
        line-height: 1.15;
    }

    .hero-left p {
        width: 100%;
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 35px;
        flex-wrap: wrap;
    }

    .hero-image {
        width: 100%;
        height: 430px;
        border-radius: 30px;
    }

    .experience-box {
        width: 140px;
        height: 140px;
    }

}

@media (max-width:576px) {

    .hero-section {
        padding: 25px 0 40px;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-left p {
        font-size: 15px;
        line-height: 1.7;
    }

    .stat h2 {
        font-size: 34px;
    }

    .stat span {
        font-size: 15px;
    }

    .hero-image {
        height: 300px;
    }

    .experience-box {
        width: 110px;
        height: 110px;
    }

    .experience-box h3 {
        font-size: 32px;
    }

    .experience-box p {
        font-size: 12px;
    }

}


/**************** Section 2 */
/*=========================
Services
=========================*/

.services-section {}

.services-heading {
    text-align: center;
    margin-bottom: 20px;
}

.services-heading h2 {
    font-size: 62px;
    font-weight: 400;
}

.services-heading p {
    margin-top: 5px;
    color: #555;
    font-size: 20px;
}


/*=========================
Layout
=========================*/

.services-wrapper {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 40px;
    align-items: start;
}

/*=========================
Left — Sticky Image
=========================*/

.services-left {
    position: relative;
}

.sticky-image {
    position: sticky;
    top: 80px;
    overflow: hidden;
}

.sticky-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 25%,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0) 75%);
    z-index: 1;
}

.sticky-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.image-content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    color: #fff;
    z-index: 2;
}

.image-content h3 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.5px;
}

/*=========================
Right — Scrollable, hidden scrollbar
=========================*/

.services-right {
    height: 620px;
    overflow-y: auto;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    gap: 0;

    /* hide scrollbar but keep scroll working */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge legacy */
}

.services-right::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge Chromium */
}


/*=========================
Cards — Zigzag placement
=========================*/
.service-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 140px;
    padding: 20px;
    max-width: 280px;
    opacity: 0;
    transform: translateY(40px);
    transition: .5s;
}

.service-card.active {
    opacity: 1;
    transform: translateY(0);
}

.service-card img {
    width: 120px;
    transition: transform 0.3s ease;
}

.service-card img:hover {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
}

/* Odd cards (1st, 3rd, 5th...) sit left */
.service-card:nth-child(odd) {
    align-self: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
}

/* Even cards (2nd, 4th, 6th...) sit right, shifted lower */
.service-card:nth-child(even) {
    align-self: flex-end;
    align-items: flex-end;
    text-align: right;
    margin-right: 20px;
    margin-top: 60px;
}

/* Slight extra stagger so odd cards after the first aren't flush with the one above */
.service-card:nth-child(odd):not(:first-child) {
    margin-top: 20px;
}

/* ************************ Marquee */
/*=========================
Top Marquee
=========================*/
.top-marquee {
    height: 100px;
    background: linear-gradient(90deg, #20357f, #874747);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: inline-flex;
    /* Important */
    align-items: center;
    gap: 70px;
    white-space: nowrap;
    will-change: transform;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    /* Important */
    color: #fff;
}

.marquee-item span {
    font-size: 20px;
    font-weight: 400;
}

/* About us section */
/*=========================================
About Section
=========================================*/

.about-section {
    padding: 90px 0;
    background: #ffffff;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 90px;
}


/*=========================================
Left
=========================================*/

.about-content {
    width: 48%;
}

.about-content h2 {
    font-family: "Arimo", sans-serif;
    font-size: 62px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 18px;
    line-height: 1;
}

.about-content h3 {
    font-family: "Arimo", sans-serif;
    font-size: 34px;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.35;
    margin-bottom: 24px;
    max-width: 520px;
}

.about-content p {
    font-size: 20px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 18px;
}


/*=========================================
Right
=========================================*/

.about-image {
    width: 46%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}


/*=========================================
About Animation
=========================================*/

/* Left content - slide in from left */
.about-content {
    opacity: 0;
    transform: translateX(-180px);
    transition: transform 1s ease, opacity 1s ease;
}

.about-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Right image - zoom out effect */
.about-image {
    opacity: 0;
    transition: opacity 1s ease;
}

.about-image.animate-in {
    opacity: 1;
}

.about-image img {
    transform: scale(1.4);
    transition: transform 1.2s ease;
}

.about-image.animate-in img {
    transform: scale(1);
}

/*=========================================
Knowledge Section
=========================================*/

.knowledge-section {
    width: 100%;
    background: #fff;
    overflow: hidden;
    /* height: 50dvh; */
}

.knowledge-wrapper {
    display: grid;
    grid-template-columns: 42% 58%;
    /* height: 530px; */
    overflow: hidden;
}

/*=========================================
Left Image
=========================================*/

.knowledge-image {
    position: relative;
    overflow: hidden;
    background: #efefef;

    display: flex;
    justify-content: center;
    align-items: center;
}

.knowledge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/*=========================================
Right Content
=========================================*/

.knowledge-content {

    background: #000;

    display: flex;
    align-items: center;
}

.content-inner {

    width: 100%;
    padding-left: 145px;
}

.knowledge-content h2 {

    margin: 0;

    color: #fff;

    font-family: 'Inter', sans-serif;

    font-size: 88px;

    font-weight: 300;

    line-height: 1.08;

    letter-spacing: -3px;
}

.knowledge-image,
.knowledge-content {
    height:100%;
}

/*=========================================
Laptop
=========================================*/

@media(max-width:1400px) {

    .knowledge-content h2 {
        font-size: 62px;
    }

    .content-inner {

        padding-left: 30px;
    }

}


/*=========================================
Tablet
=========================================*/

@media(max-width:991px) {

    .knowledge-wrapper {

        grid-template-columns: 1fr;
        height: auto;
    }

    .knowledge-image {

        height: 230px;
    }

    .knowledge-content {

        min-height: 320px;
    }

    .content-inner {

        padding: 70px 55px;
    }

    .knowledge-content h2 {

        font-size: 58px;
        letter-spacing: -1px;
    }

}


/*=========================================
Mobile
=========================================*/

@media(max-width:576px) {

    .knowledge-image {

        height: 300px;
    }

    .content-inner {

        padding: 45px 30px;
    }

    .knowledge-content h2 {

        font-size: 40px;
        line-height: 1.18;
    }

}

/*==================================
Section
==================================*/

.info-section {
    width: 100%;
    background: #fff;
}

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

/*==================================
Card
==================================*/

.info-card {
    position: relative;
    height: 350px;
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;

    cursor: pointer;

    border-right: 1px solid #ececec;
}

.info-card:last-child {
    border-right: none;
}

/* Hover Background */

.info-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(180deg,
            #22357d 0%,
            #26386d 35%,
            #523b58 70%,
            #8d463d 100%);

    opacity: 0;

    transition: .35s;
}

.info-card:hover::before {

    opacity: 1;
}

/*==================================
Content
==================================*/

.info-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Fixed width is the key */

.info-content h3 {
    margin: 0;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 300;
    color: #222;
}

.info-content p {

    /* width: 420px; */

    margin: 0;

    font-size: 24px;

    line-height: 1.45;

    font-weight: 300;

    color: #222;
}

/*==================================
Footer
==================================*/

.info-footer {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.info-footer span {

    font-size: 18px;

    color: #333;
}

.info-footer svg {

    width: 56px;

    fill: none;

    stroke: #111;

    stroke-width: 2;

    transition: .3s;
}

/*==================================
Hover
==================================*/

.info-card:hover h3,
.info-card:hover p,
.info-card:hover span {

    color: #fff;
}

.info-card:hover svg {

    stroke: #fff;

    transform: translateX(8px);
}

/*==================================
Section
==================================*/

.info-section {
    width: 100%;
    background: #fff;
}

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

/*==================================
Card
==================================*/

.info-card {
    position: relative;
    height: 300px;
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid #ececec;
}

.info-card:last-child {
    border-right: none;
}

/* Hover Background */

.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            #22357d 0%,
            #26386d 35%,
            #523b58 70%,
            #8d463d 100%);
    opacity: 0;
    transition: .35s;
}

.info-card:hover::before {
    opacity: 1;
}

/*==================================
Content
==================================*/

.info-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.info-content h3 {
    margin: 0;
    font-size: 35px;
    line-height: 1.12;
    font-weight: 300;
    color: #222;
    transition: .3s;
}

/* Answer paragraph - hidden by default, revealed on hover */

.info-content p.info-answer {
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
    color: #fff;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .3s ease .1s;
}

.info-card:hover .info-content p.info-answer {
    max-height: 200px;
    opacity: 1;
}

/*==================================
Footer
==================================*/

.info-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-footer span {
    font-size: 18px;
    color: #333;
}

.info-footer svg {
    width: 56px;
    fill: none;
    stroke: #111;
    stroke-width: 2;
    transition: .3s;
}

/*==================================
Hover
==================================*/

.info-card:hover h3 {
    display: none
}

.info-card:hover span {
    color: #fff;
}

.info-card:hover svg {
    stroke: #fff;
    transform: translateX(8px);
}

/*==================================
Why Choose Us
==================================*/

.why-choose-us {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.why-choose-us .container {
    max-width: 1500px;
    margin: auto;
    padding: 0 20px;
}

/*=============================
Heading
=============================*/

.why-heading {
    text-align: center;
    margin-bottom: 60px;
}

.why-heading h2 {
    font-size: 62px;
    font-weight: 400;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.1;
}

.why-heading h3 {
    font-size: 24px;
    font-weight: 400;
    color: #222;
    margin-bottom: 18px;
}

.why-heading h3 span {
    font-weight: 600;
}

.why-heading p {
    max-width: 1080px;
    margin: auto;
    font-size: 20px;
    line-height: 1.5;
    color: #444;
}

/*=============================
Process
=============================*/

.why-process {

    display: grid;

    grid-template-columns:
        220px 70px 220px 70px 220px 70px 220px;

    justify-content: center;

    align-items: start;

    column-gap: 18px;
}

/*=============================
Item
=============================*/

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

.circle {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;

    background: linear-gradient(90deg, #7b3c39, #2d5da9);

    display: flex;
    justify-content: center;
    align-items: center;
}

.circle i {

    color: #fff;

    font-size: 72px;
}

/*=============================
Arrow
=============================*/

.process-arrow {

    display: flex;
    justify-content: center;
    align-items: center;

    height: 180px;
}

.process-arrow i {

    font-size: 82px;

    background: linear-gradient(90deg, #7b3c39, #2d5da9);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

/*=============================
Text
=============================*/

.process-item h4 {
    margin-top: 22px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.process-item p {
    margin-top: 8px;
    font-size: 18px;
    color: #333;
    line-height: 1.45;
}

/*=========================================
Trusted Businesses
=========================================*/

.trusted-business-section {

    padding: 0px 0 0px;

    background: #fff;
}

.trusted-business-section .container {
    max-width: 100%;
    margin: auto;
    padding: 0 0px;
}

/*====================*/

.section-heading {

    text-align: center;

    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 62px;
    font-weight: 400;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.1;
}

.section-heading h3 {
    font-size: 18px;
    font-weight: 500;
    color: #232323;
    margin-bottom: 18px;
}

.section-heading h3 span {

    font-weight: 600;
}

.section-heading p {
    width: 90%;

    margin: auto;

    font-size: 22px;

    line-height: 1.55;

    color: #444;
}

/*====================*/

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    align-items: center;
}

/*====================*/

/* .client-card {
    height: 180px;
    border-radius: 24px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, .04),
        0 10px 30px rgba(0, 0, 0, .05);
    transition: .35s;
} */

.client-card img {

    width: 220px;

    max-width: 80%;

    object-fit: contain;

    display: block;
}

.clients-marquee {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
}

.marquee-left .marquee-track {
    animation: marqueeLeft 30s linear infinite;
}

.marquee-right .marquee-track {
    animation: marqueeRight 30s linear infinite;
}

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

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

@keyframes marqueeRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Client Card */
/* .client-card {
    flex: 0 0 290px;
    height: 180px;
    border-radius: 24px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .35s;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, .05),
        0 10px 30px rgba(0, 0, 0, .08);
} */

/* .client-card:hover {
    transform: translateY(-8px);
} */

.client-card img {
    max-width: 80%;
    max-height: 90px;
    object-fit: contain;
}

/* Pause animation on hover */

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

/*=============================
Why Choose Us — Animation
=============================*/

.process-item,
.process-arrow {
    opacity: 0;
    transform: translateX(-90px);
    transition: transform .8s ease, opacity .8s ease;
}

.process-item.animate-in,
.process-arrow.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* This one stays visible in its actual position from the start */
.process-item.static-item {
    opacity: 1;
    transform: translateX(0);
    transition: none;
}

/*=========================================
Testimonials
=========================================*/

.testimonial-section {
    padding: 30px 0 30px;
    background: #fff;
    overflow: hidden;
}

.testimonial-heading {

    text-align: center;

    margin-bottom: 55px;
}

.testimonial-heading h2 {
    font-size: 62px;
    font-weight: 400;
    color: #222;
    line-height: 1;
    margin-bottom: -25px;
}

/*--------------------------------*/

.testimonial-slider {

    margin: 0 -18px;
}

.testimonial-slider .slick-list {

    overflow: visible;
}

.testimonial-slider .slick-slide {

    padding: 0 18px;

    box-sizing: border-box;
}

/*--------------------------------*/

.testimonial-card {
    background: linear-gradient(180deg, #7b403d 0%, #21367d 100%);
    padding: 20px;
    height: 270px;
    color: #fff;
    transition: .3s;
    border-radius: 10px;
}

.testimonial-card p {

    display: -webkit-box;

    -webkit-line-clamp: 4;

    -webkit-box-orient: vertical;

    overflow: hidden;
}

/*--------------------------------*/

.client-info {

    display: flex;

    align-items: center;

    margin-bottom: 28px;
}

.client-info img {

    width: 78px;

    height: 78px;

    border-radius: 50%;

    object-fit: cover;

    margin-right: 18px;

    flex-shrink: 0;
}

.client-info h4 {

    font-size: 20px;

    font-weight: 600;

    margin: 0 0 4px;
}

.client-info span {

    display: block;

    font-size: 15px;

    margin-bottom: 8px;

    color: #fff;
}

.stars {

    color: #f6c547;

    font-size: 15px;
}

.stars i {

    margin-right: 2px;
}

/*--------------------------------*/

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    font-weight: 400;
}

/*--------------------------------*/

.slick-prev,
.slick-next {

    display: none !important;
}

.slick-dots {

    bottom: -45px;
}