﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}

body {
    font-family: 'Manrope', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Navbar Styles */
/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



/* =========================================
   NAVBAR
========================================= */

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0 2px;
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(8px);
}

.navbar-container {
    width: min(1380px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-navbar.scrolled {
    background: #00000029;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}


    .main-navbar.scrolled .logo-txt p {
        color: #f86604;
    }
    .main-navbar.scrolled .logo-txt h3 {
        color: #f17d2e;
    }
    

/* Logo */

.brand-logo img{
    width:auto;
    height:65px;
}
.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
   
}
.brand-footer {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
    .brand-footer img {
        width: auto;
        height: 65px;
    }

.brand-impact {
    color: #ffffff;
}

.brand-global {
    color: #F5A623;
}


/* Navigation links */

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: 0.3s ease;
    }

        .nav-links a:hover {
            color: #dcdcdc;
        }

 .main-navbar.scrolled .nav-links a:hover {
    color: #fff;
 }

/* Navbar button */

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 21px;
    background: #F5A623;
    color: #1A1228;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s ease;
}

    .nav-cta:hover {
        background: #FFD485;
        color: #1A1228;
    }

    .nav-cta span {
        font-size: 18px;
    }
.mobile-cta {
    display: none !important;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3.5px;
        background: #FFFFFF;
        transition: all 0.3s ease;
    }

.main-navbar.scrolled .menu-toggle span {
    background: #fff;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {

    .navbar-container {
        width: 92%;
        min-height: 72px;
    }

    .brand-logo img {
        width: 80px;
        height: 70px;
    }

    .logo-txt h3 {
        font-size: 15px;
    }

    .logo-txt p {
        font-size: 8px;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 10001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        padding: 110px 8% 40px;
        background: #FAF8F5;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.45s ease;
        z-index: 10000;
        overflow-y: auto;
    }

        .nav-links.active {
            transform: translateX(0);
        }

        .nav-links a {
            width: 100%;
            padding: 18px 0;
            color: #241A2F !important;
            text-decoration: none;
            font-size: 24px;
            font-weight: 700;
            border-bottom: 1px solid #E6DED5;
        }

            .nav-links a:hover {
                color: #F5A623 !important;
            }

    .mobile-cta {
        display: block !important;
        width: auto !important;
        margin-top: 25px;
        padding: 14px 25px !important;
        background: #F5A623;
        color: #241A2F !important;
        border: 0 !important;
        border-radius: 6px;
        text-align: center;
    }

    .menu-toggle span {
        background: #FFFFFF;
    }

    .main-navbar.scrolled .menu-toggle span {
        background: #241A2F;
    }

    .menu-toggle.active span {
        background: #241A2F;
    }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
}


/* =========================================
   HERO
========================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}


/* Background image */

.hero-background {
    position: absolute;
    inset: 0;
    background: url('/Images/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}


/* Very subtle overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(20 15 30 / 0%) 0%, rgb(18 18 18 / 18%) 40%, rgb(13 13 13 / 84%) 75%);
    z-index: 1;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-container {
    position: relative;
    z-index: 2;
    width: 96%;
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
    margin-left: auto;
}


/* Eyebrow */

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #F5A623;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.eyebrow-line {
    width: 34px;
    height: 1px;
    background: #F5A623;
}


/* Heading */

.hero-content h1 {
    font-size: clamp(48px, 5.5vw, 80px);
    line-height: 1.04;
    letter-spacing: -2px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

    .hero-content h1 span {
        color: #F5A623;
    }

  h2 span {
    color: #F5A623;
}


/* Paragraph */

.hero-content p {
    max-width: 550px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 35px;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}


/* Primary */

.hero-btn-primary {
    background: #F5A623;
    color: #1A1228;
    border: 1px solid #F5A623;
}

    .hero-btn-primary:hover {
        background: #FFD485;
        border-color: #FFD485;
        color: #1A1228;
    }

    .hero-btn-primary span {
        font-size: 20px;
    }


/* Secondary */

.hero-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
}

    .hero-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #ffffff;
    }


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {


    .navbar-container {
        width: 90%;
        
    }

    .hero-section {
        min-height: 850px;
    }

    .hero-background {
        background:url('/Images/hero.png');
        background-position: 30% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgb(20 15 30 / 49%) 0%, rgb(20 15 30 / 25%) 55%, rgb(20 15 30 / 47%) 100%);
    }

    .hero-container {
        width: 90%;
        margin: 0 auto;
    }

    .hero-content {
        max-width: 650px;
    }

        .hero-content h1 {
            font-size: clamp(45px, 9vw, 65px);
        }

        .hero-content p {
            font-size: 16px;
        }
}


@media (max-width: 600px) {

    .main-navbar {
        padding: 10px 0;
    }

    .brand-logo {
        font-size: 22px;
    }

    .nav-cta {
        padding: 10px 15px;
        font-size: 12px;
        display: none;
    }

    .hero-section {
        height: 100vh;
        align-items: flex-end;
        padding-bottom: 70px;
    }

    .hero-background {
        background-position: 20% center;
    }

    .hero-content h1 {
        font-size: 65px;
        letter-spacing: -1.5px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }
}

/* Count Section */

.stats-section {
    width: 100%;
    background: #1A1228;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 55px 0;
}


.stats-container {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}


/* Individual stat */

.stat-item {
    position: relative;
    text-align: center;
    padding: 10px 25px;
}


    /* Vertical separator */

    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 10px;
        right: 0;
        width: 1px;
        height: 70px;
        background: rgba(255, 255, 255, 0.15);
    }


/* Number */

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -2px;
}


/* Animated number */

.counter {
    display: inline-block;
}


/* + / % */

.stat-suffix {
    color: #F5A623;
    font-size: 30px;
    font-weight: 700;
    margin-left: 3px;
}


/* Label */

.stat-label {
    margin-top: 13px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 800px) {

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:nth-child(3)::after {
        display: block;
    }

    .stat-number {
        font-size: 42px;
    }
}



@media (max-width: 500px) {

    .stats-section {
        padding: 45px 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .stat-item {
        padding: 5px 10px;
    }

        .stat-item:not(:last-child)::after {
            height: 55px;
        }

    .stat-number {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .stat-suffix {
        font-size: 22px;
    }

    .stat-label {
        font-size: 10px;
        line-height: 1.4;
    }
}

/* Welcome Section */

.welcome-section {
    width: 100%;
    background: #F7F5F2;
    padding: 50px 0;
}

.welcome-container {
    width: min(900px, 90%);
    margin: 0 auto;
    text-align: center;
}


/* Small heading */

.welcome-eyebrow {
    margin-bottom: 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #F5A623;
}


/* Main heading */

.welcome-container h2 {
    margin: 0 0 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.15;
    letter-spacing: -1.8px;
    font-weight: 700;
    color: #1A1228;
}

    .welcome-container h2 span {
        color: #F5A623;
    }


/* Description */

.welcome-container p {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #6F687A;
}


@media (max-width: 600px) {

    .welcome-section {
        padding: 75px 0;
    }

    .welcome-container {
        width: 88%;
    }

        .welcome-container h2 {
            font-size: 34px;
            letter-spacing: -1px;
        }

        .welcome-container p {
            font-size: 15px;
            line-height: 1.7;
        }
}

/*What We do*/
.services-section {
    background: #F7F5F2;
    padding: 60px 0;
}

.services-container {
    width: min(1300px, 90%);
    margin: auto;
}

.services-heading {
    margin-bottom: 55px;
}

    .services-heading span {
        color: #F5A623;
        font-family: 'Manrope', sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .services-heading h2 {
        margin: 12px 0 0;
        color: #1A1228;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: clamp(40px, 4.5vw, 58px);
        font-weight: 600;
        line-height: 1.08;
        letter-spacing: -1px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    background: #fff;
    border: 1px solid #e9e5ec;
    border-radius: 14px;
    padding: 38px 34px;
    min-height: 265px;
    transition: .3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        border-color: #F5A623;
        box-shadow: 0 15px 35px rgba(26, 18, 40, .08);
    }

.service-card h3 {
    margin: 0 0 12px;
    color: #1A1228;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 21px;
    font-weight: 700;
}

.service-card p {
    margin: 0;
    color: #756b86;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}
.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #FFF3DF;
    border-radius: 11px;
    color: #F5A623;
    font-size: 20px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 65px 0;
    }

    .services-heading {
        margin-bottom: 35px;
    }

        .services-heading h2 {
            font-size: 38px;
        }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: auto;
        padding: 30px 26px;
    }
}

/*4Step section*/
.process-section {
    background: #f7f5f24f;
    padding: 80px 0;
}

.process-container {
    width: min(1380px, 94%);
    margin: auto;
}

.left-4step {
    flex: 0.8;
}

.process-intro {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.section-label {
    color: #F5A623;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.process-intro h2 {
    margin: 14px 0 22px;
    color: #1A1228;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.08;
    letter-spacing: -1px;
    font-weight: 600;
}

.process-intro-left > p {
    max-width: 500px;
    margin-bottom: 28px;
    color: #756b86;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.process-intro-left {
    margin-bottom:30px;
}

.process-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 23px;
    background: #F5A623;
    color: #1A1228;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

    .process-btn:hover {
        background: #1A1228;
        color: #fff;
    }

    .process-btn span {
        font-size: 19px;
    }

.process-intro-right > p {
    max-width: 500px;
    margin-bottom: 28px;
    color: #756b86;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.process-mini-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .process-mini-stats div {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }

    .process-mini-stats strong {
        color: #1A1228;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 27px;
    }

    .process-mini-stats span {
        color: #756b86;
        font-family: 'Manrope', sans-serif;
        font-size: 12px;
    }

.process-card {
    background: #1A1228;
    border-radius: 24px;
    padding: 30px;
    flex:1.2;
}

.process-card-title {
    text-align: center;
    margin-bottom: 25px;
}

    .process-card-title span {
        color: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 25px;
        font-weight: 600;
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
    width: 740px;
    margin: auto;
}

.process-item {
    min-width: 0;
}

.process-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: #261840;
}

    .process-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

.process-item:hover .process-image img {
    transform: scale(1.04);
}

.process-content {
    padding: 17px 5px 0;
}

.process-number {
    margin-bottom: 7px;
    color: #F5A623;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.process-content h3 {
    margin: 0 0 9px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
}

.process-content p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 800px) {
    .process-intro {
        flex-direction:column;
        gap: 30px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        width:auto;
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 70px 0;
    }

    .process-card {
        padding: 22px;
        border-radius: 18px;
    }

    .process-image {
        height: 220px;
    }

    .process-mini-stats {
        gap: 20px;
    }
}

/*industries section*/
.industries-section {
    background: #f7f5f2d1;
    padding: 70px 0;
}
.industries-content {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}
.industry-container {
    width: min(1380px, 94%);
    margin: auto;
}
.industry-container h2 {
    margin: 14px 0 60px;
    color: #1A1228;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.08;
    letter-spacing: -1px;
    font-weight: 600;
}

    .industries-bg {
        position: absolute;
        inset: 0;
        background: url('/Images/sector.png') center center / cover no-repeat;
        filter: brightness(0.85);
    }

    .industries-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(26,18,40,.05) 0%, rgba(26,18,40,.10) 35%, rgba(26,18,40,.70) 68%, rgba(26,18,40,.88) 100% );
    }

    .industries-container {
        position: relative;
        z-index: 2;
        width: min(1200px, 92%);
        min-height: 720px;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .industries-left {
        height: 100%;
    }

    .industries-right {
        padding: 50px 0 50px 35px;
    }

        .industries-right .section-label {
            color: #F5A623;
            font-family: 'Manrope', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .industries-right h2 {
            margin: 14px 0 38px;
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(38px, 4vw, 54px);
            line-height: 1.08;
            letter-spacing: -1px;
            font-weight: 600;
        }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 18px;
    }

    .industry-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

.industry-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 25%;
    color: #fff;
    font-size: 40px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(5px);
    transition: .3s ease;
}

    .industry-item span {
        margin-top: 11px;
        color: rgba(255,255,255,.88);
        font-family: 'Manrope', sans-serif;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.4;
    }

    .industry-item:hover .industry-icon {
        background: #F5A623;
        border-color: #F5A623;
        color: #1A1228;
        transform: translateY(-4px);
    }

    .industry-item:hover span {
        color: #fff;
    }

    @media (max-width: 950px) {
        .industries-section {
            min-height: 700px;
        }

        .industries-container {
            grid-template-columns: .7fr 1.3fr;
        }

        .industries-right {
            padding-left: 15px;
        }

        .industries-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 25px 10px;
        }
    }

    @media (max-width: 700px) {
        .industries-section {
            min-height: auto;
        }

        .industries-bg {
            background-position: 5% center;
        }

        .industries-overlay {
            background: rgb(26 18 40 / 50%);
        }

        .industries-container {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .industries-left {
            display: none;
        }

        .industries-right {
            padding: 40px 0;
        }

            .industries-right h2 {
                margin-bottom: 35px;
            }

        .industries-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px 0px;
        }
    }

/*Contact section*/
.contact-section {
    background: #F7F5F2;
    padding: 30px 0;
}

.contact-container {
    width: min(1250px, 90%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.contact-left .section-label {
    color: #F5A623;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-left h2 {
    margin: 15px 0 22px;
    color: #1A1228;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(42px, 4.5vw, 60px);
    line-height: 1.08;
    letter-spacing: -2px;
}

    .contact-left h2 span {
        color: #F5A623;
    }

.contact-left > p {
    max-width: 500px;
    margin: 0 0 35px;
    color: #756b86;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-detail-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #FFF3DF;
    color: #F5A623;
    border-radius: 50%;
}

.contact-detail-label {
    display: block;
    margin-bottom: 3px;
    color: #93899f;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.contact-detail-value {
    display: block;
    color: #1A1228;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.contact-form-wrapper {
    padding: 38px;
    background: #261840;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(26, 18, 40, .12);
}

.contact-form-header {
    margin-bottom: 25px;
}

.form-title {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.form-description {
    display: block;
    color: rgba(255, 255, 255, .6);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-rowfull {
    display: grid;
    grid-template-columns: 1fr;
}
.form-rowfull input, .form-rowfull textarea {
   max-width:100%;
}
input, select, textarea {
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .form-group label {
        color: #d1d1d1;
        font-family: 'Manrope', sans-serif;
        font-size: 12px;
        font-weight: 600;
    }

.contact-input {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    outline: none;
    background: rgb(3 3 3 / 41%);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    transition: .3s ease;
}

    .contact-input::placeholder {
        color: rgba(255, 255, 255, .35);
    }

    .contact-input:focus {
        border-color: #F5A623;
        background: rgba(255, 255, 255, .08);
    }

.contact-textarea {
    min-height: 105px;
    resize: vertical;
}

.contact-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 3px;
    border: 0;
    border-radius: 5px;
    background: #e99100;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.service-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgb(3 3 3 / 41%);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
}

    .service-dropdown option {
        background-color: #261840;
        color: #ffffff;
        padding: 12px;
    }

    .contact-submit:hover {
        background: #f4a81d;
    }

@media (max-width: 800px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 550px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/*footer section*/
.site-footer {
    background: #1A1228;
    color: #fff;
    padding: 70px 0 0;
}

.footer-container {
    width: 92%;
    max-width: 1350px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.7fr;
    gap: 50px;
    padding-bottom: 30px;
}

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: inline-block;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 25px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

    .footer-logo span {
        color: #F5A623;
    }

.footer-brand p {
    color: rgba(255,255,255,0.58);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    margin: 0 0 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 50%;
        color: #fff;
        font-size: 13px;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-social a:hover {
            background: #F5A623;
            border-color: #F5A623;
            color: #1A1228;
        }

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

    .footer-column h4 {
        color: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px;
    }

    .footer-column a,
    .footer-column div {
        color: rgba(255,255,255,0.58);
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-column a:hover {
            color: #F5A623;
        }

.footer-contact a,
.footer-contact div {
    display: flex;
    flex-direction:column;
    align-items: flex-start;
    gap:2px;
    line-height: 1.5;
}

.footer-contact i {
    color: #F5A623;
    width: 15px;
    margin-top: 3px;
}

.footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 20px;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,0.4);
        font-family: 'Manrope', sans-serif;
        font-size: 11px;
    }

.footer-legal {
    display: flex;
    gap: 25px;
}

    .footer-legal a {
        color: rgba(255,255,255,0.45);
        font-family: 'Manrope', sans-serif;
        font-size: 11px;
        text-decoration: none;
    }

        .footer-legal a:hover {
            color: #F5A623;
        }

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .site-footer {
        padding-top: 50px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        gap: 18px;
    }
}

/*Testimonial section*/
.testimonials-section {
    background: #F3EFE9;
    padding: 70px 0;
    overflow: hidden;
}

.testimonials-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 55px;
}

    .testimonials-heading .section-label {
        display: block;
        margin-bottom: 15px;
    }

    .testimonials-heading h2 {
        margin: 0;
        color: #241A2F;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 44px;
        line-height: 1.12;
        font-weight: 700;
        letter-spacing: -1.5px;
    }

        .testimonials-heading h2 span {
            color: #F5A623;
        }

    .testimonials-heading p {
        max-width: 390px;
        margin: 0;
        color: #756B7D;
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
        line-height: 1.8;
    }

.testimonial-slider-wrap {
    position: relative;
}

.testimonialSwiper {
    overflow: visible;
}

.testimonial-slide {
    min-height: 350px;
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    gap: 35px;
    padding: 45px;
    background: #ffffffbd;
    border-radius: 10px;
    box-sizing: border-box;
}

.testimonial-slide-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5A623;
    border-radius: 50%;
    color: #241A2F;
    font-size: 17px;
}

.testimonial-count {
    color: rgba(255,255,255,0.38);
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.testimonial-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .testimonial-slide-content > p {
        max-width: 720px;
        margin: 0 0 40px;
        color: #222;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 25px;
        line-height: 1.6;
        font-weight: 500;
        letter-spacing: -0.4px;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.35);
    border-radius: 50%;
    color: #F5A623;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.testimonial-author strong {
    display: block;
    color: #333;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-author span {
    display: block;
    color: #444;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
}

.testimonial-slide-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #F5A623;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
}

    .testimonial-rating i {
        font-size: 10px;
    }

.testimonial-line {
    width: 1px;
    height: 90px;
    background: rgba(255,255,255,0.12);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.testimonial-progress {
    width: 180px;
    height: 2px;
    background: #D6CEC8;
    overflow: hidden;
}

.testimonial-progress-bar {
    width: 33.33%;
    height: 100%;
    background: #F5A623;
    transition: width 0.4s ease;
}

.testimonial-buttons {
    display: flex;
    gap: 8px;
}

    .testimonial-buttons button {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid #CFC5CD;
        border-radius: 50%;
        color: #241A2F;
        cursor: pointer;
        transition: 0.3s ease;
    }

        .testimonial-buttons button:hover {
            background: #241A2F;
            border-color: #241A2F;
            color: #F5A623;
        }

@media (max-width: 900px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-heading {
        display: block;
    }

        .testimonials-heading p {
            margin-top: 20px;
        }

    .testimonial-slide {
        grid-template-columns: 70px 1fr;
        min-height: 380px;
        padding: 35px;
    }

    .testimonial-slide-right {
        display: none;
    }
}

@media (max-width: 550px) {
    .testimonials-heading h2 {
        font-size: 33px;
    }

    .testimonial-slide {
        grid-template-columns: 1fr;
        min-height: 400px;
        padding: 28px;
        gap: 25px;
    }

    .testimonial-slide-left {
        flex-direction: row;
        align-items: center;
    }

    .testimonial-slide-content > p {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .testimonial-count {
        order: 2;
    }

    .testimonial-controls {
        margin-top: 20px;
    }
}

/*Solutions section`*/
.business-solutions-section {
    position: relative;
    background: linear-gradient(rgb(0 0 0 / 86%), rgb(0 0 0 / 68%)), url(/images/bg3.png);
    padding: 110px 0;
    overflow: hidden;
}

    .business-solutions-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -250px;
        top: -250px;
        border: 1px solid rgba(245,166,35,0.12);
        border-radius: 50%;
    }

    .business-solutions-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        left: -200px;
        bottom: -200px;
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 50%;
    }

.business-solutions-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.business-solutions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 55px;
}

    .business-solutions-header .section-label {
        display: block;
        margin-bottom: 16px;
        color: #F5A623;
        font-family: 'Manrope', sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .business-solutions-header h2 {
        margin: 0;
        color: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 43px;
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: -1.3px;
    }

        .business-solutions-header h2 span {
            color: #F5A623;
        }

    .business-solutions-header > p {
        max-width: 390px;
        margin: 0 0 3px;
        color: rgba(255,255,255,0.58);
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
        line-height: 1.85;
    }

.solutions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.solution-featured {
    position: relative;
    min-height: 400px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    gap:20px;
    background: linear-gradient(145deg, #f5a62326, #2115318f);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
}

    .solution-featured:hover {
        border-color: rgba(245,166,35,0.45);
        transform: translateY(-4px);
    }

.solution-number {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.solution-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5A623;
    border-radius: 14px;
    color: #1A1228;
    font-size: 22px;
}

.solution-content {
    position: relative;
    z-index: 2;
}

.solution-tag {
    display: block;
    margin-bottom: 10px;
    color: #F5A623;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.solution-content h3 {
    margin: 0 0 17px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
}

.solution-content p {
    max-width: 390px;
    margin: 0 0 25px;
    color: rgba(255,255,255,0.58);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.8;
}

.solution-content a,
.solution-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

    .solution-content a i,
    .solution-card-content a i {
        color: #F5A623;
        transition: 0.3s ease;
    }

    .solution-content a:hover i,
    .solution-card-content a:hover i {
        transform: translateX(5px);
    }

.solution-bg-icon {
    position: absolute;
    right: -30px;
    bottom: -40px;
    color: rgb(255 255 255 / 11%);
    font-size: 200px;
    transform: rotate(-12deg);
}

.solutions-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.solution-card {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: 32px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: 0.4s ease;
}

    .solution-card:hover {
        background: rgba(255,255,255,0.06);
        border-color: rgba(245,166,35,0.4);
        transform: translateX(4px);
    }

.solution-card-number {
    position: absolute;
    top: 27px;
    right: 28px;
    color: rgba(255,255,255,0.22);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.solution-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245,166,35,0.35);
    border-radius: 13px;
    color: #F5A623;
    font-size: 20px;
}

.solution-card-content {
    padding-right: 25px;
}

    .solution-card-content > span {
        display: block;
        margin-bottom: 7px;
        color: #F5A623;
        font-family: 'Manrope', sans-serif;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1.8px;
    }

    .solution-card-content h3 {
        margin: 0 0 9px;
        color: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 22px;
        font-weight: 700;
    }

    .solution-card-content p {
        margin: 0 0 15px;
        color: rgba(255,255,255,0.52);
        font-family: 'Manrope', sans-serif;
        font-size: 12px;
        line-height: 1.7;
    }

@media (max-width: 900px) {
    .business-solutions-section {
        padding: 80px 0;
    }

    .business-solutions-header {
        display: block;
    }

        .business-solutions-header > p {
            margin-top: 20px;
        }

    .solutions-layout {
        grid-template-columns: 1fr;
    }

    .solution-featured {
        min-height: 430px;
    }
}

@media (max-width: 550px) {
    .business-solutions-header h2 {
        font-size: 32px;
    }

    .solution-featured {
        min-height: 430px;
        padding: 28px;
    }

    .solution-content h3 {
        font-size: 30px;
    }

    .solution-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .solution-card-content {
        padding-right: 0;
    }

    .solution-card-number {
        top: 25px;
        right: 25px;
    }
}

/*About us page*/
.about-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #241A2F;
}

    .about-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, #000000 0%, rgb(40 36 45 / 85%) 45%, rgba(36, 26, 47, 0.65) 100%), url(/Images/bread.png);
        background-size: cover;
        background-position: center;
    }

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 94%;
    max-width: 1400px;
    margin: 40px auto 0;
}

.about-label,
.section-label {
    display: inline-block;
    color: #F5A623;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-hero h1 {
    max-width: 700px;
    margin: 10px 0 25px;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(42px, 5vw, 50px);
    line-height: 1.08;
    font-weight: 700;
}

    .about-hero h1 span {
        color: #F5A623;
    }

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
}

    .about-breadcrumb a {
        color: rgba(255,255,255,0.65);
        text-decoration: none;
    }

    .about-breadcrumb i {
        color: #F5A623;
        font-size: 8px;
    }

    .about-breadcrumb span {
        color: #FFFFFF;
    }

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.about-intro {
    padding: 110px 0;
    background: #FAF8F5;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.about-intro-image {
    height: 520px;
    overflow: hidden;
    border-radius: 12px;
}

    .about-intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-intro-content h2,
.about-solutions-content h2,
.about-section-heading h2 {
    margin: 15px 0 22px;
    color: #241A2F;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.15;
    font-weight: 700;
}

.about-intro-content p,
.about-solutions-content > p,
.about-section-heading > p {
    max-width: 650px;
    margin: 0 0 17px;
    color: #62586B;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 22px;
    background: #241A2F;
    color: #FFFFFF;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.3s ease;
}

    .about-btn:hover {
        background: #F5A623;
        color: #241A2F;
    }

.about-approach {
    padding: 100px 0;
    background: #FFFFFF;
}

.about-section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.approach-card {
    padding: 35px 30px;
    border: 1px solid #E6DED5;
    border-radius: 10px;
    background: #FAF8F5;
    transition: all 0.3s ease;
}

    .approach-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(36,26,47,0.08);
    }

.approach-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #FFF3DF;
    color: #F5A623;
    border-radius: 10px;
    font-size: 19px;
}

.approach-card h3 {
    margin: 0 0 12px;
    color: #241A2F;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
}

.approach-card p {
    margin: 0;
    color: #62586B;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.8;
}

.about-solutions {
    padding: 110px 0;
    background: #F3EFE9;
}

.about-solutions-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
}

.solution-list {
    margin-top: 35px;
}

.solution-list-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #E6DED5;
}

.solution-list-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #241A2F;
    color: #F5A623;
    border-radius: 8px;
    font-size: 16px;
}

.solution-list-item h3 {
    margin: 0 0 6px;
    color: #241A2F;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.solution-list-item p {
    margin: 0;
    color: #62586B;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.6;
}

.about-solutions-image {
    height: 560px;
    overflow: hidden;
    border-radius: 12px;
}

    .about-solutions-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-why {
    padding: 110px 0;
    background: #FAF8F5;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 70px;
}

.why-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid #E6DED5;
}

    .why-item > span {
        color: #F5A623;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 15px;
        font-weight: 800;
    }

    .why-item h3 {
        margin: 0 0 9px;
        color: #241A2F;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 17px;
        font-weight: 700;
    }

    .why-item p {
        margin: 0;
        color: #62586B;
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
        line-height: 1.7;
    }

.about-cta {
    padding: 75px 0;
    background: #241A2F;
}

.about-cta-inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta-label {
    color: #F5A623;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-cta h2 {
    max-width: 650px;
    margin: 12px 0 0;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
}

.about-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    background: #F5A623;
    color: #241A2F;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
}

    .about-cta-btn:hover {
        background: #FFD485;
    }

@media (max-width: 900px) {

    .about-hero {
        min-height: 330px;
    }

    .about-hero-content {
        width: 88%;
        margin-top: 72px;
    }

    .about-hero h1 {
        font-size: 38px;
        margin: 15px 0 20px;
    }

    .about-intro,
    .about-approach,
    .about-solutions,
    .about-why {
        padding: 75px 0;
    }

    .about-container {
        width: 88%;
    }

    .about-intro-grid,
    .about-solutions-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-intro-image {
        height: 360px;
        order: 1;
    }

    .about-intro-content {
        order: 2;
    }

        .about-intro-content h2,
        .about-solutions-content h2,
        .about-section-heading h2 {
            font-size: 31px;
        }

        .about-intro-content p,
        .about-solutions-content > p,
        .about-section-heading > p {
            font-size: 14px;
        }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .approach-card {
        padding: 28px 25px;
    }

    .about-solutions-image {
        height: 360px;
        order: 1;
    }

    .about-solutions-content {
        order: 2;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .why-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .about-cta {
        padding: 60px 0;
    }

    .about-cta-inner {
        width: 88%;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .about-cta h2 {
        font-size: 30px;
    }
}

@media (max-width: 500px) {

    .about-hero {
        min-height: 300px;
    }

        .about-hero h1 {
            font-size: 32px;
        }

    .about-breadcrumb {
        font-size: 11px;
    }

    .about-intro-image,
    .about-solutions-image {
        height: 300px;
    }

    .solution-list-item {
        gap: 14px;
    }

    .solution-list-icon {
        width: 40px;
        height: 40px;
    }

    .about-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/*Services Page*/
.services-page {
    padding: 110px 0;
    background: #FAF8F5;
}

.services-page-container {
    width: 92%;
    max-width: 1350px;
    margin: auto;
}

.services-layout {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 70px;
    align-items: start;
}

.services-sidebar {
    position: sticky;
    top: 120px;
}

.services-sidebar-label {
    display: block;
    margin-bottom: 25px;
    color: #8B8192;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.services-nav {
    border-top: 1px solid #E6DED5;
}

.service-nav-item {
    width: 100%;
    min-height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid #E6DED5;
    background: transparent;
    color: #62586B;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .service-nav-item i {
        color: #8B8192;
        font-size: 11px;
        transition: all 0.3s ease;
    }

    .service-nav-item:hover,
    .service-nav-item.active {
        color: #241A2F;
    }

    .service-nav-item.active {
        padding-left: 15px;
        border-left: 3px solid #F5A623;
    }

        .service-nav-item.active i {
            color: #F5A623;
            transform: translateX(4px);
        }

.services-content {
    min-width: 0;
}

.service-panel {
    display: none;
    animation: serviceFade 0.45s ease;
}

    .service-panel.active {
        display: block;
    }

@keyframes serviceFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-panel-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 45px;
}

    .service-panel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.service-panel-intro {
    margin-bottom: 45px;
}

    .service-panel-intro h2 {
        max-width: 750px;
        margin: 15px 0 20px;
        color: #241A2F;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: clamp(30px, 3.5vw, 46px);
        line-height: 1.15;
        font-weight: 700;
    }

    .service-panel-intro p {
        max-width: 720px;
        margin: 0;
        color: #62586B;
        font-family: 'Manrope', sans-serif;
        font-size: 14px;
        line-height: 1.8;
    }

.service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-detail-card {
    padding: 28px;
    background: #FFFFFF;
    border: 1px solid #E6DED5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .service-detail-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(36,26,47,0.07);
    }

.service-detail-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #FFF3DF;
    color: #F5A623;
    border-radius: 8px;
}

.service-detail-card h3 {
    margin: 0 0 8px;
    color: #241A2F;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.service-detail-card p {
    margin: 0;
    color: #62586B;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.7;
}

.service-feature-list {
    border-top: 1px solid #E6DED5;
}

.service-feature {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #E6DED5;
}

    .service-feature > i {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #241A2F;
        color: #F5A623;
        border-radius: 8px;
    }

    .service-feature h3 {
        margin: 0 0 7px;
        color: #241A2F;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 16px;
        font-weight: 700;
    }

    .service-feature p {
        margin: 0;
        color: #62586B;
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
        line-height: 1.7;
    }

@media (max-width: 900px) {

    .services-page {
        padding: 75px 0;
    }

    .services-page-container {
        width: 88%;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .services-sidebar {
        position: relative;
        top: auto;
    }

    .services-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        border: 0;
    }

    .service-nav-item {
        min-height: 58px;
        padding: 0 15px;
        border: 1px solid #E6DED5;
        border-radius: 7px;
        background: #FFFFFF;
        font-size: 12px;
    }

        .service-nav-item.active {
            padding-left: 15px;
            border: 1px solid #F5A623;
            background: #FFF3DF;
        }

    .service-panel-image {
        height: 320px;
    }

    .service-panel-intro h2 {
        font-size: 31px;
    }
}

@media (max-width: 600px) {

    .services-nav {
        grid-template-columns: 1fr;
    }

    .service-panel-image {
        height: 260px;
        margin-bottom: 35px;
    }

    .service-panel-intro {
        margin-bottom: 35px;
    }

        .service-panel-intro h2 {
            font-size: 29px;
        }

    .service-items {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 24px;
    }
}
