/* Header */

@media (max-width: 1400px) {

    .container {

        max-width: 1200px;

    }

    .navbar>ul {

        gap: 28px;

    }

}


@media (max-width: 1200px) {

    .navbar {

        margin-right: 20px;

    }

    .navbar>ul {

        gap: 22px;

    }

    .navbar>ul>li>a {

        font-size: 15px;

    }

    .call-box {

        display: none;

    }

}


@media (max-width: 992px) {


    /* TOP HEADER HIDE */

    .top-header {

        display: none;

    }


    /* MAIN HEADER */

    .main-header {

        position: sticky;

        top: 0;

        z-index: 9000;

    }


    .nav-container {

        height: 80px;

        padding-left: 20px;

        padding-right: 20px;

    }


    .logo img {

        height: 58px;

    }


    /* RIGHT SIDE */

    .header-right {

        margin-left: auto;

        gap: 10px;

    }


    .quote-btn {

        display: none;

    }


    /* HAMBURGER */

    .mobile-toggle {

        display: flex;

    }

       /* MOBILE NAV */
    

    .navbar {

        position: fixed;

        top: 0;

        right: 0;

        width: min(380px, 88vw);

        height: 100dvh;

        margin: 0;

        padding: 0 30px 40px;

        background: #fff;

        box-shadow:
            -20px 0 60px rgba(15, 23, 42, .18);

        overflow-y: auto;

        overflow-x: hidden;

        /*
          IMPORTANT:
          transform use kiya hai.
          Isse menu completely screen ke bahar rahega.
        */

        transform: translate3d(110%, 0, 0);

        visibility: hidden;

        opacity: 0;

        pointer-events: none;

        transition:
            transform .45s cubic-bezier(.77, 0, .18, 1),
            opacity .3s ease,
            visibility .3s ease;

        z-index: 10000;

        -webkit-overflow-scrolling: touch;

    }


    /* OPEN MENU */

    .navbar.active {

        transform: translate3d(0, 0, 0);

        visibility: visible;

        opacity: 1;

        pointer-events: auto;

    }



       /* MOBILE HEADER INSIDE MENU */
    

    .mobile-menu-header {

        display: flex;

        align-items: center;

        justify-content: space-between;

        height: 100px;

        margin-bottom: 5px;

        border-bottom:
            1px solid #E5E7EB;

    }


    .mobile-menu-logo img {

        width: 155px;

    }



       /* MOBILE NAV LIST */
    

    .navbar>ul {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;

        margin: 0;

        padding: 0;

        list-style: none;

    }


    .navbar>ul>li {

        width: 100%;

        border-bottom:
            1px solid #E5E7EB;

    }


    .navbar>ul>li>a {

        width: 100%;

        min-height: 60px;

        padding: 18px 5px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        color: #1F2937;

        font-size: 16px;

        font-weight: 700;

        text-transform: none;

        text-decoration: none;

    }


    .navbar>ul>li>a::after {

        display: none;

    }


    .navbar>ul>li>a:hover,
    .navbar>ul>li>a.active {

        color: var(--accent);

    }



       /* MOBILE DROPDOWN */
    

    .dropdown {

        position: static !important;

        display: none;

        width: 100%;

        min-width: 0;

        margin: 0;

        padding: 5px 0 12px;

        background: #F8FAFC;

        box-shadow: none !important;

        border: 0;

        border-radius: 0;

        opacity: 1 !important;

        visibility: visible !important;

        transform: none !important;

        transition: none;

    }


    .dropdown.show {

        display: block;

    }


    .dropdown li {

        width: 100%;

    }


    .dropdown li a {

        display: block;

        width: 100%;

        padding: 13px 15px;

        color: #64748B;

        font-size: 14px;

        font-weight: 500;

        text-decoration: none;

    }


    .dropdown li a:hover {

        color: var(--accent);

        background: #fff;

        padding-left: 20px;

    }


    /* Dropdown arrow */

    .navbar>ul>li.has-dropdown>a i {

        transition: transform .3s ease;

    }


    .navbar>ul>li.has-dropdown.dropdown-open>a i {

        transform: rotate(180deg);

    }

}



@media (max-width: 576px) {


    .container {

        padding-left: 16px;

        padding-right: 16px;

    }


    .nav-container {

        height: 72px;

    }


    .logo img {

        height: 46px;

    }


    .mobile-toggle {

        width: 46px;

        height: 46px;

        font-size: 20px;

    }


    .navbar {

        width: 100vw;

        max-width: 100vw;

        padding:
            0 22px 35px;

    }


    .mobile-menu-header {

        height: 90px;

    }


    .mobile-menu-logo img {

        width: 145px;

    }

}


@media (max-width: 380px) {

    .navbar {

        padding-left: 18px;

        padding-right: 18px;

    }


    .mobile-menu-logo img {

        width: 135px;

    }

}

/* Hero Section */

@media (max-width: 1100px) {

    .dismantling-hero {

        min-height: auto;

        padding-bottom: 0;

        background-position:
            60% center;
    }


    .hero-container {

        width: min(calc(100% - 50px),
                var(--container));
    }


    .hero-content {

        width: 650px;

        padding:
            100px 0 150px;
    }


    .hero-content h1 {

        font-size:
            clamp(48px, 7vw, 68px);

        letter-spacing: -2.8px;
    }


    .hero-floating-card {

        right: 30px;

        width: 280px;
    }


    .hero-scroll {

        display: none;
    }

}


@media (max-width: 900px) {

    .dismantling-hero {

        min-height: auto;

        display: block;

        background-position:
            65% center;
    }


    /* Softer overlay */

    .dismantling-hero::before {

        background:
            linear-gradient(180deg,

                rgba(255, 255, 255, .82) 0%,

                rgba(255, 255, 255, .76) 35%,

                rgba(255, 255, 255, .48) 62%,

                rgba(255, 255, 255, .18) 82%,

                rgba(255, 255, 255, .05) 100%);
    }


    .hero-container {

        width:
            calc(100% - 50px);

        margin: 0 auto;
    }


    .hero-content {

        width: 100%;

        max-width: 650px;

        padding:
            90px 0 100px;
    }


    .hero-content h1 {

        max-width: 650px;

        font-size:
            clamp(48px, 8vw, 64px);

        line-height: 1;

        letter-spacing: -2.5px;
    }


    .hero-description {

        max-width: 600px;

        font-size: 16px;

        line-height: 1.7;
    }


    /*
       Floating card becomes normal block
       instead of overlapping the hero
    */

    .hero-floating-card {

        position: relative;

        top: auto;

        right: auto;

        transform: none;

        width:
            calc(100% - 50px);

        max-width: 500px;

        margin:
            0 auto 40px;

        animation: none;
    }


    .hero-buttons {

        gap: 12px;
    }

}



@media (max-width: 600px) {

    .dismantling-hero {

        min-height: auto;

        display: block;

        background-position:
            68% center;

        background-size: cover;
    }

    .dismantling-hero::before {

        background:
            linear-gradient(180deg,

                rgba(255, 255, 255, .82) 0%,

                rgba(255, 255, 255, .76) 35%,

                rgba(255, 255, 255, .48) 62%,

                rgba(255, 255, 255, .18) 82%,

                rgba(255, 255, 255, .05) 100%);
    }


    /* Make grid even lighter */

    .dismantling-hero::after {

        opacity: .10;

        background-size:
            45px 45px;

        mask-image:
            linear-gradient(180deg,
                black 0%,
                transparent 80%);
    }


    .hero-container {

        width:
            calc(100% - 32px);

        margin: 0 auto;
    }


    .hero-content {

        width: 100%;

        padding:
            75px 0 45px;
    }

    .hero-eyebrow {

        gap: 8px;

        padding:
            8px 12px;

        margin-bottom: 22px;

        font-size: 9px;

        letter-spacing: 1.2px;

        white-space: nowrap;
    }


    .hero-eyebrow::before {

        width: 6px;

        height: 6px;

        box-shadow:
            0 0 0 4px rgba(245, 158, 11, .12);
    }

    .hero-content h1 {

        width: 100%;

        max-width: 100%;

        font-size:
            clamp(40px, 11vw, 54px);

        line-height: .98;

        letter-spacing: -2px;

        margin-bottom: 25px;
    }

    .hero-description {

        width: 100%;

        max-width: 100%;

        color: #4B5563;

        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 27px;
    }


    .hero-buttons {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }


    .hero-btn {

        width: 100%;

        min-height: 52px;

        padding:
            0 18px;

        border-radius: 9px;

        font-size: 13px;
    }


    .btn-arrow {

        font-size: 17px;
    }


    .hero-floating-card {

        position: relative;

        top: auto;

        right: auto;

        transform: none;

        width:
            calc(100% - 32px);

        max-width: none;

        margin:
            5px auto 32px;

        padding: 19px;

        border-radius: 14px;

        box-shadow:
            0 12px 30px rgba(31, 41, 55, .10);

        animation: none;
    }


    .card-top {

        gap: 11px;

        margin-bottom: 15px;
    }


    .card-icon {

        width: 39px;

        height: 39px;

        border-radius: 9px;

        font-size: 17px;
    }


    .card-title {

        font-size: 12px;

        margin-bottom: 3px;
    }


    .card-subtitle {

        font-size: 10px;
    }


    .card-line {

        margin-bottom: 14px;
    }


    .card-list {

        gap: 10px;
    }


    .card-list-item {

        gap: 9px;

        font-size: 11px;
    }


    .check {

        width: 17px;

        height: 17px;

        font-size: 9px;
    }


    .hero-scroll {

        display: none;
    }

}



@media (max-width: 400px) {

    .hero-container {

        width:
            calc(100% - 24px);
    }


    .hero-content {

        padding:
            65px 0 38px;
    }


    .hero-eyebrow {

        font-size: 8px;

        letter-spacing: 1px;

        padding:
            7px 10px;
    }


    .hero-content h1 {

        font-size:
            39px;

        letter-spacing:
            -1.8px;
    }


    .hero-description {

        font-size:
            13.5px;

        line-height:
            1.65;
    }


    .hero-floating-card {

        width:
            calc(100% - 24px);

        padding:
            17px;
    }


    .card-title {

        font-size:
            11px;
    }


    .card-list-item {

        font-size:
            10.5px;
    }

}



@media (max-width: 900px) and (orientation: landscape) {

    .hero-content {

        padding:
            55px 0 40px;
    }


    .hero-content h1 {

        font-size:
            clamp(38px, 7vw, 52px);
    }


    .hero-description {

        max-width:
            650px;
    }


    .hero-floating-card {

        max-width:
            500px;
    }

}



@media (prefers-reduced-motion: reduce) {

    .hero-content,
    .hero-floating-card {

        animation: none !important;
    }

}

/* Services */

@media(max-width:1000px) {

    .ps-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

    }


    .ps-header-right {

        width: 100%;

        max-width: 600px;

    }


    .ps-services {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .ps-service-large {

        grid-column:
            span 2;

    }

}


@media(max-width:700px) {

    .premium-services {

        padding: 40px 0;

    }


    .ps-container {

        width:
            calc(100% - 32px);

    }


    .ps-header h2 {

        font-size: 45px;

        letter-spacing: -2.5px;

    }


    .ps-services {

        grid-template-columns: 1fr;

    }


    .ps-service-large {

        grid-column:
            span 1;

    }


    .ps-service {

        height: 440px;

    }


    .ps-service-content h3 {

        font-size: 27px;

    }


    .ps-service-content {

        left: 22px;

        right: 22px;

        bottom: 22px;

    }


    .ps-bottom {

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 18px;

        padding: 22px 0;

    }

}


@media(max-width:450px) {

    .ps-header h2 {

        font-size: 39px;

    }


    .ps-service {

        height: 420px;

    }


    .ps-service-content p {

        font-size: 11px;

    }

}

/* About us */
@media(max-width:1000px) {

    .about-premium-main {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .about-premium-content {

        max-width: 750px;

    }


    .about-premium-visual {

        height: 560px;

    }

}


@media(max-width:700px) {

    .about-premium {

        padding: 80px 0;

    }


    .about-premium-container {

        width:
            calc(100% - 32px);

    }


    .about-premium-top {

        margin-bottom: 35px;

    }


    .about-premium-main {

        gap: 55px;

    }


    .about-premium-visual {

        height: 450px;

    }


    .about-experience {

        right: 15px;

        bottom: 25px;

        min-width: 190px;

        padding: 19px;

    }


    .about-experience strong {

        font-size: 40px;

    }


    .about-premium-content h2 {

        font-size: 48px;

        letter-spacing: -2.5px;

    }


    .about-stats {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-stat {

        min-height: 90px;

        padding: 0 20px;

    }


    .about-stat:nth-child(2) {

        border-right: none;

    }


    .about-stat:nth-child(-n+2) {

        border-bottom:
            1px solid rgba(255, 255, 255, .13);

    }

}


@media(max-width:450px) {

    .about-premium-container {

        width:
            calc(100% - 28px);

    }


    .about-premium-visual {

        height: 390px;

    }


    .about-experience {

        right: 10px;

        bottom: 20px;

    }


    .about-premium-content h2 {

        font-size: 41px;

    }


    .about-big-text {

        font-size: 15px;

    }


    .about-premium-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

    }

}

/* project */

   /* TABLET */


@media (max-width: 1100px) {

    .projects-container {

        width: min(calc(100% - 50px), 1200px);

    }

    .projects-header {

        gap: 45px;

    }

    .projects-grid {

        grid-template-columns: 1.2fr .8fr;

    }

    .project-featured .project-image {

        height: 620px;

    }

}



   /* TABLET / SMALL LAPTOP */


@media (max-width: 900px) {

    .projects-section {

        padding: 60px 0;

    }

    .projects-container {

        width: min(calc(100% - 40px), 800px);

    }

    .projects-header {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 45px;

    }

    .projects-header-right p {

        max-width: 600px;

    }

    .projects-grid {

        grid-template-columns: 1fr 1fr;

        gap: 25px;

    }

    .project-featured {

        grid-row: auto;

    }

    .project-featured .project-image {

        height: 400px;

    }

    .project-image {

        height: 320px;

    }

    .project-wide {

        grid-column: 1 / -1;

    }

    .project-wide .project-image {

        height: 360px;

    }

}



   /* MOBILE */


@media (max-width: 650px) {

    .projects-section {

        padding: 55px 0;

    }

    .projects-container {

        width: min(calc(100% - 32px), 600px);

    }

    .projects-header {

        gap: 22px;

        margin-bottom: 35px;

    }

    .projects-eyebrow {

        margin-bottom: 14px;

        font-size: 10px;

        letter-spacing: 1.7px;

    }

    .projects-header h2 {

        font-size: 44px;

        line-height: .95;

        letter-spacing: -2.5px;

    }

    .projects-header-right p {

        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 18px;

    }

    .projects-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .project-featured {

        grid-row: auto;

    }

    .project-wide {

        grid-column: auto;

    }

    .project-image,

    .project-featured .project-image,

    .project-wide .project-image {

        height: 300px;

    }

    .project-number {

        top: 15px;

        right: 15px;

        width: 38px;

        height: 38px;

        font-size: 9px;

    }

    .project-category {

        left: 18px;

        bottom: 18px;

        font-size: 8px;

        letter-spacing: 1.4px;

    }

    .project-category::before {

        width: 18px;

        margin-right: 7px;

    }

    .project-arrow {

        right: 15px;

        bottom: 14px;

        width: 44px;

        height: 44px;

        font-size: 22px;

    }

    .project-info {

        align-items: flex-start;

        padding: 14px;

    }

    .project-info h3 {

        font-size: 17px;

    }

    .project-location {

        padding-top: 19px;

        font-size: 9px;

    }

    .projects-footer {

        flex-wrap: wrap;

        gap: 20px;

        margin-top: 45px;

    }

    .projects-footer-line {

        display: none;

    }

}



   /* SMALL MOBILE */


@media (max-width: 400px) {

    .projects-container {

        width: calc(100% - 24px);

    }

    .projects-header h2 {

        font-size: 38px;

        letter-spacing: -2px;

    }

    .project-image,

    .project-featured .project-image,

    .project-wide .project-image {

        height: 260px;

    }

    .project-info {

        gap: 10px;

    }

    .project-info h3 {

        font-size: 16px;

    }

}


   /* TABLET */


@media (max-width: 992px) {

    .reviews-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .reviews-intro {
        padding-right: 0;
    }

    .reviews-intro h2 {
        font-size: 48px;
    }

    .reviews-intro-text {
        max-width: 600px;
    }

}



   /* MOBILE */


@media (max-width: 576px) {

    .reviews-container {
        width: min(100% - 32px, 1200px);

        gap: 35px;
    }

    .reviews-intro h2 {
        font-size: 39px;

        letter-spacing: -1.8px;
    }

    .reviews-intro-text {
        font-size: 14px;

        line-height: 1.7;

        margin-top: 20px;
    }

    .review-trust {
        margin-top: 28px;
    }

    .review-card {
        min-height: 400px;

        padding: 30px 25px;
    }

    .review-card blockquote {
        font-size: 19px;

        line-height: 1.55;
    }

    .review-bottom {
        align-items: flex-start;

        flex-direction: column;

        padding-top: 25px;
    }

    .review-meta {
        text-align: left;
    }

    .review-controls {
        margin-top: 15px;
    }

}


   /* RESPONSIVE */


@media (max-width: 1100px) {

    .about-intro-grid {
        gap: 55px;
    }

    .capabilities-layout {
        gap: 55px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .about-hero {
        min-height: auto;
    }

    .about-hero .about-container {
        display: block;
    }

    .about-intro-grid,
    .capabilities-layout{
        grid-template-columns: 1fr;
    }

    .about-main-image {
        max-width: 600px;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-item:nth-child(2) {
        border-right: 0;
    }

    .approach-item:nth-child(-n+2) {
        border-bottom: 1px solid #dce3ea;
    }

    .industries-inline {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .about-container {
        width: min(100% - 32px, 600px);
    }

    .about-hero-content {
        padding: 75px 0 35px;
    }

    .about-hero-content h1 {
        font-size: 46px;
        letter-spacing: -2.5px;
    }

    .about-hero-content p {
        font-size: 15px;
    }

    .about-introduction,
    .about-capabilities{
        padding: 75px 0;
    }

    .about-approach,
    .about-values,
    .about-industries {
        padding: 75px 0;
    }

    .about-section-heading,
    .industries-heading {
        display: block;
    }

    .about-section-heading p,
    .industries-heading p {
        margin-top: 20px;
    }

    .about-intro-content h2,
    .about-section-heading h2,
    .values-heading h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .about-main-image {
        height: 430px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-item {
        border-right: 0;
        border-bottom: 1px solid #dce3ea;
    }

    .approach-item:last-child {
        border-bottom: 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }

    .about-cta {
        padding: 75px 0;
    }

    .about-cta h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

}


   /* MOBILE APPROACH - COMPACT HORIZONTAL */


@media (max-width: 650px) {

    .approach-grid {
        display: block !important;
    }

    .approach-item {
        position: relative !important;

        display: grid !important;

        grid-template-columns: 78px 1fr !important;

        column-gap: 16px !important;

        align-items: center !important;

        min-height: 0 !important;

        padding: 26px 0 !important;

        border-right: 0 !important;

        border-bottom: 1px solid #dce3ea !important;
    }


    
       NUMBER
    

    .approach-number {
        grid-column: 1 !important;
        grid-row: 1 !important;

        position: static !important;

        margin: 0 !important;

        align-self: start !important;

        padding-top: 3px !important;

        font-size: 10px !important;

        line-height: 1 !important;

        font-weight: 800 !important;

        color: #cbd5e1 !important;
    }


    
       ICON
    

    .approach-icon {
        grid-column: 1 !important;
        grid-row: 1 !important;

        width: 46px !important;
        height: 46px !important;

        margin: 0 0 0 27px !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        border-radius: 50% !important;

        border: 1px solid #dbe3eb !important;

        background: #fff !important;

        box-shadow:
            0 5px 16px rgba(15, 23, 42, .05) !important;
    }


    .approach-icon i {
        font-size: 15px !important;

        color: #f59e0b !important;
    }


    
       TITLE
    

    .approach-item h3 {
        grid-column: 2 !important;
        grid-row: 1 !important;

        margin: 0 0 7px !important;

        font-size: 19px !important;

        line-height: 1.2 !important;

        letter-spacing: -.3px !important;
    }


    
       /* DESCRIPTION */
    

    .approach-item p {
        grid-column: 2 !important;
        grid-row: 2 !important;

        margin: 0 !important;

        font-size: 13px !important;

        line-height: 1.55 !important;

        color: #64748b !important;
    }


    .approach-item:last-child {
        border-bottom: 0 !important;
    }

}

@media (max-width: 650px) {

    .approach-item {
        display: grid !important;
        grid-template-columns: 24px 50px 1fr !important;
        column-gap: 10px !important;
        align-items: center !important;
        padding: 24px 0 !important;
    }

    .approach-number {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        position: static !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 10px !important;
        line-height: 1 !important;
    }

    .approach-icon {
        grid-column: 2 !important;
        grid-row: 1 / span 2 !important;
        width: 46px !important;
        height: 46px !important;
        margin: 0 !important;
    }

    .approach-item h3 {
        grid-column: 3 !important;
        grid-row: 1 !important;
        margin: 0 0 6px !important;
        font-size: 18px !important;
    }

    .approach-item p {
        grid-column: 3 !important;
        grid-row: 2 !important;
        margin: 0 !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

}


@media (max-width: 992px) {

    .leader-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .leader-content {
        max-width: 700px;
    }

    .leader-visual {
        justify-content: flex-start;
    }

    .leader-image-wrap {
        width: 100%;
        max-width: 500px;
        height: 560px;
    }

    .leader-bottom {
        margin-top: 70px;
    }

}




@media (max-width: 768px) {

    .leader-section {
        padding: 70px 0 0;
    }

    .leader-container,
    .leader-bottom {
        width: min(100% - 32px, 600px);
    }

    .leader-content h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .leader-intro {
        font-size: 15px;
        margin-top: 24px;
    }

    .leader-quote {
        padding-left: 35px;
    }

    .leader-quote p {
        font-size: 15px;
    }

    .leader-image-wrap {
        height: 480px;
    }

    .leader-side-line {
        display: none;
    }

    .leader-bottom {
        grid-template-columns: 1fr 1fr;

        margin-top: 60px;
    }

    .leader-stat {
        min-height: 85px;

        padding: 15px 10px;

        border-bottom: 1px solid #dfe4ea;
    }

    .leader-stat:nth-child(2) {
        border-right: 0;
    }

    .leader-stat:nth-child(3) {
        padding-left: 0;
    }

}




@media (max-width: 480px) {

    .leader-content h2 {
        font-size: 38px;
    }

    .leader-image-wrap {
        height: 430px;
    }

    .leader-bottom {
        grid-template-columns: 1fr;
    }

    .leader-stat,
    .leader-stat:nth-child(3) {
        padding-left: 0;
        border-right: 0;
    }

    .leader-stat:last-child {
        border-bottom: 0;
    }

}




@media (max-width: 1200px) {

    .certificate-slide {
        flex-basis: 33.333%;
    }

}


@media (max-width: 992px) {

    .certifications-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .certifications-title-row p {
        max-width: 600px;
    }

    .certificate-slide {
        flex-basis: 50%;
    }

}


@media (max-width: 650px) {

    .certifications-section {
        padding: 65px 0;
    }

    .certifications-container {
        width: min(100% - 30px, 1380px);
    }

    .certifications-heading {
        margin-bottom: 32px;
    }

    .certifications-title-row h2 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }

    .certifications-title-row p {
        font-size: 14px;
        line-height: 1.7;
    }

    .certificate-slide {
        flex-basis: 100%;
        padding: 0 4px;
    }

    .certificate-image {
        height: 330px;
    }

    .certificate-arrow {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .certificate-slider-wrap {
        gap: 8px;
    }

    .certification-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
    }

    .certification-bottom span {
        justify-content: flex-start;
    }

    .certification-bottom span+span {
        border-left: 0;
    }

    .viewer-box {
        width: 94vw;
        height: 82vh;
        border-radius: 14px;
    }

}


@media (max-width: 900px) {


    .industries-heading {

        margin-bottom: 45px;

    }

    .industries-grid {

        grid-template-columns: 1fr;

    }

    .industry-item:nth-child(odd) {

        border-right: none;

        padding-right: 20px;

    }

    .industry-item:nth-child(even) {

        padding-left: 0;

    }

}


@media (max-width: 576px) {

    .industries-section {

        padding: 65px 0 70px;

    }

    .industries-heading {

        margin-bottom: 40px;

    }

    .industries-eyebrow {

        font-size: 9px;

        letter-spacing: 2px;

    }

    .industries-heading h2 {

        font-size: 42px;

        letter-spacing: -2px;

    }

    .industries-heading p {

        font-size: 14px;

        line-height: 1.7;

    }

    .industry-item {

        min-height: 105px;

        gap: 20px;

        padding: 20px 0 !important;

    }

    .industry-info h3 {

        font-size: 16px;

    }

    .industry-info p {

        font-size: 8px;

        letter-spacing: 1px;

    }

}
@media (max-width: 1100px) {

    .why-choose-grid {

        gap: 50px;

    }

    .why-choose-content h2 {

        font-size: 48px;

    }

    .why-image-wrapper {

        height: 520px;

    }

}




@media (max-width: 768px) {

    .why-choose-section {

        padding: 80px 0;

    }


    .why-choose-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .why-choose-content {

        max-width: 100%;

    }


    .why-choose-content h2 {

        font-size: 42px;

        letter-spacing: -1.5px;

    }


    .why-intro {

        font-size: 15px;

        line-height: 1.7;

    }


    .why-image-wrapper {

        height: 450px;

        border-radius: 17px;

    }


    .why-stats {

        margin-top: 15px;

    }

}




@media (max-width: 576px) {

    .why-choose-section {

        padding: 65px 0;

    }


    .section-label {

        font-size: 10px;

        letter-spacing: 1.6px;

    }


    .why-choose-content h2 {

        font-size: 36px;

    }


    .why-feature {

        gap: 13px;

        padding: 17px 0;

    }


    .why-feature-icon {

        width: 44px;

        height: 44px;

        font-size: 16px;

    }


    .why-feature h3 {

        font-size: 15px;

    }


    .why-feature p {

        font-size: 13px;

    }


    .why-image-wrapper {

        height: 390px;

        border-radius: 14px;

    }


    .why-experience-card {

        left: 15px;

        bottom: 15px;

        padding: 13px 16px;

    }


    .why-experience-card strong {

        font-size: 32px;

    }


    .why-experience-card span {

        font-size: 11px;

    }


    .why-safety-card {

        top: 15px;

        right: 15px;

        padding: 10px 12px;

    }


    .why-safety-icon {

        width: 34px;

        height: 34px;

    }


    .why-stat {

        padding: 0 5px;

    }


    .why-stat strong {

        font-size: 20px;

    }


    .why-stat span {

        font-size: 9px;

    }

}


@media (max-width: 1100px) {

    .work-steps {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;

    }


    .work-card {

        min-height: 370px;

    }

}


@media (max-width: 650px) {


    .how-work-header {

        margin-bottom: 45px;

    }


    .how-work-header h2 {

        font-size: 42px;

        letter-spacing: -2px;

    }


    .how-work-header p {

        padding: 0 8px;

        font-size: 14px;

        line-height: 1.7;

    }


    .work-steps {

        grid-template-columns: 1fr;

        gap: 16px;

    }


    .work-card {

        min-height: auto;

        padding: 24px;

    }


    .work-card-top {

        margin-bottom: 25px;

    }


    .work-number {

        font-size: 50px;

    }


    .work-icon {

        width: 52px;

        height: 52px;

    }


    .work-card h3 {

        font-size: 20px;

    }


    .work-card p {

        font-size: 13px;

    }


    .work-trust {

        grid-template-columns: 1fr;

        gap: 0;

        padding: 8px 20px;

    }


    .trust-item {

        justify-content: flex-start;

        /* padding: 17px 0; */

    }


    .trust-item:not(:last-child)::after {

        top: auto;

        right: 0;

        bottom: 0;

        width: 100%;

        height: 1px;

    }

}