/* ================================
   FONTS
================================ */

/* Afacad – Google Font */
@import url('https://fonts.googleapis.com/css2?family=Afacad:wght@300;400;500;600;700&display=swap');

/* ================================
   ROOT VARIABLES
================================ */
:root {
    /* Font Families */
    --font-primary: 'Afacad', sans-serif;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Font Sizes */
    --font-size-xs: 14px;
    --font-size-sm: 16px;
    --font-size-base: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 28px;
    --font-size-3xl: 25px;
    --font-size-4xl: 36px;
    --font-size-5xl: 40px;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;
    --line-height-loose: 1.8;
}

/* ================================
   BASE STYLES
================================ */
* {
    font-family: var(--font-primary) !important;
    box-sizing: border-box;

}

/* ================================
   BODY
================================ */
body {
    font-family: var(--font-primary);
    font-weight: var(--font-regular);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin: 0;
    padding: 0;
    padding-top: 90px; /* navbar space */
}

/* ================================
   TYPOGRAPHY HIERARCHY
================================ */
h1, .h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-bold);
    line-height: var(--line-height-tight);
    margin: 0 0 1rem 0;
}

h2, .h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-semibold);
    line-height: var(--line-height-tight);
    margin: 0 0 0.875rem 0;
}

h3, .h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-semibold);
    line-height: var(--line-height-normal);
    margin: 0 0 0.75rem 0;
}

h4, .h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-semibold);
    line-height: var(--line-height-normal);
    margin: 0 0 0.75rem 0;
}

h5, .h5 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-medium);
    line-height: var(--line-height-normal);
    margin: 0 0 0.5rem 0;
}

h6, .h6 {
    font-size: var(--font-size-base);
    font-weight: var(--font-medium);
    line-height: var(--line-height-normal);
    margin: 0 0 0.5rem 0;
}

/* ================================
   TEXT ELEMENTS
================================ */
p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin: 0 0 1rem 0;
}

small, .text-small {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
}

.text-xs {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-normal);
}

/* ================================
   FONT WEIGHT UTILITIES
================================ */
.font-light {
    font-weight: var(--font-light) !important;
}

.font-regular {
    font-weight: var(--font-regular) !important;
}

.font-medium {
    font-weight: var(--font-medium) !important;
}

.font-semibold {
    font-weight: var(--font-semibold) !important;
}

.font-bold {
    font-weight: var(--font-bold) !important;
}

/* ================================
   OTHER TEXT ELEMENTS
================================ */
a {
    font-family: var(--font-primary);
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color:white;
}

button, input, textarea, select {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

label {
    font-family: var(--font-primary);
    font-weight: var(--font-medium);
}

strong, b {
    font-weight: var(--font-bold);
}

em, i {
    font-style: italic;
}

/* ================================
   UTILITY CLASSES
================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.leading-tight {
    line-height: var(--line-height-tight) !important;
}

.leading-normal {
    line-height: var(--line-height-normal) !important;
}

.leading-relaxed {
    line-height: var(--line-height-relaxed) !important;
}

.leading-loose {
    line-height: var(--line-height-loose) !important;
}






/* ================================
   COMPANY OVERVIEW SECTION
================================ */

.company-overview {
    padding: 10px 0;
}

.title {
    font-size: var(--font-size-4xl) !important; /* 36px */
    font-weight: var(--font-bold);
    margin-bottom: 10px;
    line-height: 154%;
}

.title span {
    color: #2ca417;
}

.Overview {
    margin-bottom: 20px;
}

.desc {
    font-size: var(--font-size-2xl) !important; /* 28px */
    color: #444;
    line-height: 169%;
}

/* IMAGE STACK WRAPPER */
.img-stack {
    position: relative;
    margin-bottom: 30px;
}

/* TWO IMAGES TOP SIDE-BY-SIDE */
.top-images {
    display: flex;
    gap: 15px;
    position: relative;
}

.top-images img {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.img-1 {
    margin-bottom: 40px;
}
.pop{
    margin-left:143px;
}

.img-2 {
    margin-top: 40px;
}

.top-images img:hover {
    transform: translateY(-5px);
}

/* CENTER LOGO BETWEEN BOTH IMAGES */
.center-badge {
    width: 100px;
    position: absolute;
    left: 49%;
    top: 70% !important;
    transform: translate(-50%, -50%);
    z-index: 20;
}

/* What We Do Section */
.do {
    margin-top: 40px;
}

.do p:first-child {
    font-size: var(--font-size-3xl) !important; /* 32px */
    font-weight: var(--font-bold);
    margin-bottom: 20px;
}

.do p:first-child img {
    width: 40px;
    margin-left: 10px;
    vertical-align: middle;
}

.do p:last-child {
    font-size: var(--font-size-2xl) !important; /* 28px */
    color: #444;
    line-height: 1.6;
}

/* Button styling */
.btn-success {
    background: #4DB746;
    border: none;
    font-weight: var(--font-semibold);
    font-size: var(--font-size-lg) !important; /* 20px */
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-success:hover {
    background: #2ca417;
    color: whitesmoke !important;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 164, 23, 0.3);
}

.btn-success svg {
    margin-left: 10px;
}

/* ================================
   LAPTOP SPECIFIC (1024px - 1440px)
================================ */

@media (min-width: 1024px) and (max-width: 1440px) {
    .company-overview {
        padding: 35px 0;
    }
    
    .title {
        font-size: var(--font-size-3xl) !important; /* 32px */
        margin-bottom: 8px;
    }
    
    .desc {
        font-size: var(--font-size-xl) !important; /* 24px */
        line-height: 1.5;
    }
    
    .do p:first-child {
        font-size: var(--font-size-2xl) !important; /* 28px */
        margin-bottom: 15px;
    }
    
    .do p:last-child {
        font-size: var(--font-size-xl) !important; /* 24px */
        line-height: 1.5;
    }
    
    .center-badge {
        width: 90px;
        margin-top: -20px;
    }
    
    .top-images {
        gap: 12px;
    }
    
    .top-images img {
        width: 47%;
    }
    
    .img-1 {
        margin-bottom: 30px;
    }
    
    .img-2 {
        margin-top: 30px;
    }
    
    .btn-success {
        font-size: var(--font-size-base) !important; /* 18px */
        padding: 8px 22px;
        margin-top: 15px;
    }
    
    .do p:first-child img {
        width: 35px;
        margin-left: 8px;
    }
}

/* ================================
   TABLET (768px - 1023px)
================================ */

@media (min-width: 768px) and (max-width: 1023px) {
    .company-overview {
        padding: 30px 0;
    }
    
    .title {
        font-size: var(--font-size-2xl) !important; /* 28px */
        margin-bottom: 8px;
    }
    
    .desc {
        font-size: var(--font-size-lg) !important; /* 20px */
        line-height: 1.5;
    }
    
    .do p:first-child {
        font-size: var(--font-size-xl) !important; /* 24px */
        margin-bottom: 15px;
    }
    
    .do p:last-child {
        font-size: var(--font-size-lg) !important; /* 20px */
        line-height: 1.5;
    }
    
    .center-badge {
        width: 80px;
    }
    
    .top-images {
        gap: 10px;
    }
    
    .top-images img {
        width: 47%;
    }
    
    .img-1 {
        margin-bottom: 25px;
        height: auto;
    }
    
    .img-2 {
        margin-top: 25px;
        height: auto;
    }
    
    .btn-success {
        font-size: var(--font-size-sm) !important; /* 16px */
        padding: 8px 20px;
        margin-top: 15px;
    }
    
    .do p:first-child img {
        width: 30px;
        margin-left: 8px;
    }
}

/* ================================
   MOBILE (480px - 767px)
================================ */

@media (max-width: 767px) {
    .company-overview {
        padding: 25px 0;
    }
    
    .title {
        font-size: var(--font-size-xl) !important; /* 24px */
        text-align: center;
        line-height: 1.4;
    }
    
    .desc {
        font-size: var(--font-size-base) !important; /* 18px */
        text-align: center;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .Overview {
        margin-top: 30px;
        text-align: center;
    }
      /* KEEP SAME LAYOUT AS DESKTOP */
    .top-images {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .top-images img {
        width: 46% !important;
        margin: 0 !important;
        height: auto;
    }

    /* Mini versions of slanted spacing */
    .img-1 {
        margin-bottom: 20px !important;
    }

    .img-2 {
        margin-top: 20px !important;
    }

    /* CENTER BADGE – KEEP SAME POSITION */
    .center-badge {
        width: 70px !important;
        left: 50% !important;
        top: 60% !important;
        transform: translate(-50%, -50%);
    }

    /* RESPONSIVE TEXT */
    .title {
        text-align: center;
    }
    .do {
        text-align: center;
        margin-top: 30px;
    }
    
    .do p:first-child {
        font-size: var(--font-size-lg) !important; /* 20px */
    }
    
    .do p:last-child {
        font-size: var(--font-size-base) !important; /* 18px */
        padding: 0 10px;
    }
    
    .btn-success {
        font-size: var(--font-size-sm) !important; /* 16px */
        padding: 8px 18px;
    }
    
    .do p:first-child img {
        width: 25px;
        margin-left: 5px;
    }
}


/* ================================
   LARGE DESKTOP (1441px and above)
================================ */

@media (min-width: 1441px) {
    .company-overview {
        padding: 60px 0;
    }
    
    .title {
        font-size: var(--font-size-5xl) !important; /* 40px */
    }
    
    .desc {
        font-size: var(--font-size-3xl) !important; /* 32px */
    }
    
    .do p:first-child {
        font-size: var(--font-size-4xl) !important; /* 36px */
    }
    
    .do p:last-child {
        font-size: var(--font-size-3xl) !important; /* 32px */
    }
    
    .center-badge {
        width: 120px;
    }
    
    .top-images {
        gap: 20px;
    }
    
    .top-images img {
        width: 45%;
    }
}





/*section over card */

/* SECTION TITLE */
.services-title {
    font-size: 96px !important;
    font-weight: 600;
    font-weight: bold;
    line-height: 169%;
    margin-bottom: 40px;
    margin-top: -50px !important;
}
.services-title-img {
    width: 40px;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CENTER LAST 3 CARDS */
.services-grid > :nth-last-child(-n + 3) {
    justify-self: center !important;
}

/* CARD */
.service-card {
    position: relative;
    background: linear-gradient(to bottom, #98ec8a 0%, #ffffff 100%);
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto; /* Shorter height */
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* SERVICE IMAGE */
.service-img {
    width: 100%;
    height: 200px; /* Decreased height */
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 40px;
    clip-path: polygon(0 85%, 100% 100%, 100% 0, 0 0);
}

/* FRONT ICON OVER IMAGE */
.service-card img.service-img + img {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #2ca417;
    padding: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* CARD TITLE */
.service-card h3 {
    font-size: 28px !important;
    font-weight: 500;
    margin-bottom: 12px;
      font-size: medium;
    line-height: 132%;
}

/* CARD DESCRIPTION */
.service-card p {
    color: #000;
    font-size: 15px !important;
    line-height: 146%;
    min-height: 50px;
    margin-bottom: 15px;
    font-weight: 400px !important;
}

/* BUTTON */
.view-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:#8cf27a;
    padding: 12px 18px;
    border-radius: 40px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    font-size: 20px !important;
        margin-top: auto;
}

.view-btn:hover{
    text-decoration: none !important;
    color:green;
}

.view-btn span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding: 0;
    font-size: 16px !important;
}


/* RESPONSIVE TABLET */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-title{
        font-size: 25px !important;
    }
}


/* RESPONSIVE MOBILE FIX — PERFECT CENTERED CARDS */
@media (max-width: 576px) {

    /* Remove extra spacing from parent container */
    .services-section,
    .services-grid {
        padding: 0 !important;
        margin: 0 auto !important;
    }

    /* Make grid full-width + center content */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-items: center !important;
    }

    /* Center card perfectly */
    .service-card {
        width: 90% !important;
        margin: 0 auto !important;
    }

    /* Title spacing for mobile */
    .services-title {
        font-size: 32px !important;
        text-align: center !important;
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }
}



/* Section styling */
.app-section {
    text-align: center;
    padding: 10px 20px;
}

/* Section main heading */
.app-section h1 {
    font-size:96px !important; /* desktop default */
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

/* Sub-heading */
.app-section h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: normal;
    color: #67f052;
    margin-top: -20px;
}

/* Paragraph description */
.app-section p.description {
    font-size: 25px !important;
    max-width: 1000px !important; /* limit width for readability */
    margin: 0 auto 50px auto;
    color: #000;
    font-weight: bold;
    line-height: 1.2;
}
/* Flex container for cards */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Default card design (laptop view) */
.card-wrapper {
    display: flex;
    align-items: center;
    padding: 25px;
    width: 450px;
    border-radius: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s;
}


/* 3 different background images */
.card1 {
    background-image: url('../img/banner/our-expert-1.png');
}

.card2 {
    background-image: url('../img/banner/our-expert-2.png');
}

.card3 {
    background-image: url('../img/banner/our-expert-3.png');
}



/* Content box */
.card-content {
    padding: 10px;
     width: 200px;
    border-radius: 5px;
    flex: 1;
}


.card-content h4 {
    margin: 0 0 1px;
    margin-top: 2px;
    padding-bottom:2px !important;
    margin-left: 100px;
    font-size: 34px !important;
}

.card-content p {
     margin: 0 0 5px 115px;
     margin-top:-10px;
    line-height: 1.5;
    font-size: 12.97px !important;
    text-align: justify !important;
}



/* Tablet */
@media (max-width: 1024px) {
    .card-wrapper {
        width: 380px;
    }
    
    .card-content h4 {
        font-size: 18px !important;
        margin-left: 50px !important;
    }

    .card-content p {
        width: 80%;
        margin: 0 0 0px 0px;
        font-size: 14px !important;
        line-height: 1;
        margin-left:80px !important;
    }
    
    .card-content {
    padding: 10px;
     width: 300px;
    border-radius: 5px;
    flex: 1;
}
}


/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Tablets (medium screens) */
@media (max-width: 1024px) {
    .app-section h1 {
        font-size: 30px !important;
    }
    .app-section h3 {
        font-size: 1.8rem;
        margin-top: -15px;
    }
    .app-section p.description {
        justify-content: center;
        margin-left: 5px ;
        font-size: 20px !important;
        margin-bottom: 40px;
    }
}

/* Mobile (small screens) */
@media (max-width: 768px) {
    .app-section h1 {
        font-size: 3rem;
    }
    .app-section h3 {
        font-size: 1.5rem;
        margin-top: -10px;
    }
    .app-section p.description {
        font-size: 1.2rem;
        justify-content: center;
        margin-bottom: 30px;
        padding: 0 10px; /* add padding for small screens */
    }
}

@media (max-width: 600px) {

    .card-wrapper {
        width: 90%;
        height: 100% !important;
        padding: 20px;
        background-size: contain;
    }

    .card-content h4 {
        font-size: 18px !important;
        margin-left: 80px !important;
    }

    .card-content p {
         text-align: justify;
        width: 70%;
        margin: 16px 0 5px 5px;
        font-size: 10px !important;
        line-height: 1;
        
    }
    .card-content {
    padding: 10px;
     width: 200px !important;
    border-radius: 5px;
    flex: 1;
}


.card-content h4 {
    margin: 0 0 10px;
    margin-top: -15px;
    margin-bottom: -10px;
    margin-left: 100px;
    font-size: 20px !important;
}


}



/* Extra small mobiles (very small screens) */
@media (max-width: 480px) {
    .app-section h1 {
        font-size: 1.5rem;

    }
    .app-section h3 {
        font-size: 1.2rem;
        margin-top: -8px;
    }
    .app-section p.description {
        font-size: 12px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
}

@media (max-width: 375px) {
    
       .card-content {
    padding: 10px;
     width: 180px !important;
    border-radius: 5px;
    flex: 1;
}
    .card-content p {
        width: 80%;
       
        margin: 2px 0 5px 5px;
        font-size: 10px !important;
        line-height: 1;
        margin-left:56px !important;
    }
    
}


.promise-section {
    padding: 60px 20px;
    text-align: center;
}

.main-title {
    font-size: 96px !important;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 169%;
}

.subtitle {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 20px !important;
    line-height: 1.5;
    color: #555;
    text-align:center;
}

.center-button {
    display: inline-block;
    background: #4DB746;
    padding: 12px 28px;
    border-radius: 30px;
    margin-bottom: 50px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    font-size: 27px !important;
}

.promise-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}
/* Card Outer Wrapper (card + h4) */
.promise-item {
    text-align: center;
    width: 250px;
    margin: 5px;
}

/* YELLOW OVAL CARD */
.promise-card {
    background: #caeec4;
    padding: 45px 20px;
    border-radius: 150px;
    width: 100%;
    min-height: 333px;
    position: relative;
    color: #000;
    transition: 0.3s;

    display: flex;              /* enable flexbox */
    flex-direction: column;     /* stack items vertically */
    align-items: center;        /* center horizontally */
    justify-content: center;    /* center vertically */
    text-align: center;         /* center text */
}

.promise-card p {
    width: 150px;
    text-align: center;
    font-size: 20px !important;
}
.promise-card {
    position: relative;
    z-index: 1;
}

.promise-card:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 7px solid #1e8a24;
    border-radius: 160px;
    z-index: -1;
}


/* Remove outline — YOU DON'T NEED THIS */
.promise-card:hover {
    border-radius: 155px; /* keep shape only */
}



/* ICON CIRCLE COMMON DESIGN */
.icon-circle {
    background: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* TOP ICON CARDS (1,3,5) */
.icon-top {
    top: -25px;
}

/* BOTTOM ICON CARDS (2,4) */
.icon-bottom {
    bottom: -25px;
}

.promise-card p {
    font-size: 22px !important;
    line-height: 1.4;
    margin: 20px 0;
}

/* TITLE BELOW CARD */
.promise-item h4 {
    margin-top: 35px;   /* space between yellow card and title */
    font-size: 20px !important;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

@media (max-width: 768px) {
    .promise-item {
        width: 100%;
        max-width: 330px;


    }
    .main-title {
    font-size: 40px !important;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 169%;
}
    .promise-card {
        border-radius: 500px;
    }
    

.promise-card:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 7px solid #1e8a24;
    border-radius: 160px;
    z-index: -1;
}
}

.ample{
    /*text-align: left;*/
    font-size: 34px !important;
    margin-top: 50px;
    font-weight: 700; /* remove px – font-weight should be a number */
    line-height: 184%;
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
    .ample {
        font-size: 32px !important;
    }
    .promise-item h4 {
    margin-top: 55px;   /* space between yellow card and title */
    font-size: 15px !important;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}


.promise-card:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 7px solid #1e8a24;
    border-radius: 160px;
    z-index: -1;
}
}

/* Small screens (mobile) */
@media (max-width: 768px) {
    .ample {
        font-size: 28px !important;
        text-align: center; /* optional – looks better on mobile */
        margin-top: 30px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .ample {
        font-size: 24px !important;
        text-align: center;
        margin-top: 20px;
    }
    .promise-item h4{
        justify-content: center;
    }
    

.promise-card:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 7px solid #1e8a24;
    border-radius: 160px;
    z-index: -1;
}
}






/*our promise*/


.problem-bg-section {
    width: 100%;
    min-height: 250px !important;
    background-image: url("../img/services/imgbanner.webp");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 10px 10px;
    display: flex;
    align-items: center;
}

/* Left content box */
.problem-text-box {
    width: 50%;
    padding: 20px;
    border-radius: 12px;
}

.problem-text-box h2 {
    font-size: 60px !important;
    font-weight: 900;
    width: 100%;
    margin-bottom: 20px;
    line-height: 169%;

}

.problem-text-box p {
    font-size: 21px !important;
    line-height: 1.7;
    width: 100%;
    padding: 10px;
    text-align: justify !important;
    color: #333;
    
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .problem-text-box {
        width: 70%;
    }
    .problem-text-box h2{
        font-size: 40px !important;
    }

    .problem-text-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: white;
    padding: 15px;
    border-radius: 10px;
}
}

@media (max-width: 768px) {
    .problem-bg-section {
        background-position: center;
        padding: 40px 20px;
    }
    .problem-text-box {
        width: 100%;
        background: rgba(255, 255, 255, 0.85);
    }
    .problem-text-box h2 {
        font-size: 32px;
    }
   
}

@media (max-width: 576px) {
    .problem-text-box h2 {
        font-size: 26px !important;
    }
    .problem-text-box p {
        font-size: 16px !important;
    }
   
}








 .client-growth-section {
    text-align: center;
    padding: 60px 20px;
}

.growth-title {
    font-size: 60px !important;
     font-weight: 800;
    margin-bottom: 15px;
   
    text-underline-offset: 8px;
}

.growth-subtitle {
    font-size: 20px !important;
    color: #000;
    margin: 14px 165px;
}

.growth-highlight {
    color: #5be942;
    font-size: 22px !important;
    font-weight: 600;
    margin-bottom: 40px;
}

.growth-card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.growth-card {
    width: 230px;
    height: 260px; /* FIXED HEIGHT — makes all cards equal */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* ensures text stays bottom */
}

.growth-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ZIG-ZAG CARD POSITIONS */
.growth-card:nth-child(1),
.growth-card:nth-child(3),
.growth-card:nth-child(5) {
    margin-top: 0;   /* Top row */
}

.growth-card:nth-child(2),
.growth-card:nth-child(4) {
    margin-top: 20px;  /* Shift down for zig-zag pattern */
}
/* Black gradient overlay */
.growth-card::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85));
}

/* Text on image */
.growth-card-text {
    position: absolute;
    bottom: 18px;
    left: 15px;
    right: 15px;
    color:rgb(255, 253, 253) !important;
    font-size: 15px !important;
    font-weight: 500;
    line-height: 1.4;
    z-index:1;
}
.role {
    font-size: 40px !important;
    font-weight: 800;
    line-height: 184%;
    margin: 40px 0px;
    justify-content: left;
}

.role span {
    color: #1e8e24;
    font-size: inherit; /* same as parent */
    font-weight: 900;
}

/* ---------- TABLET ---------- */
@media (max-width: 992px) {
    .role {
        font-size: 32px !important;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 576px) {
    .role {
        font-size: 24px !important;
        text-align: left; /* optional: if you want left-align on mobile */
    }
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .growth-card { width: 45%; height: 230px; }
}

@media (max-width: 768px) {
    .growth-card { width: 100%; max-width: 330px; }
        .growth-subtitle { font-size: 18px !important; margin: 14px 0px; }

}

@media (max-width: 576px) {
    .growth-title { font-size: 32px !important; }
    .growth-subtitle { font-size: 16px !important; margin: 14px 0px; }
    .growth-highlight { font-size: 18px !important; }
}




.enquiry-section {
    display: flex;
    justify-content: center !important;
    align-items: center;
    position: relative;
}

/* LEFT SIDE IMAGES WRAPPER */
.enquiry-images {
    position: relative;
}

/* Logo on top */
.enquiry-logo {
    width: 95px;
    position: absolute;
    top: -180px;
    z-index: 3;
    margin-left: -30px;
}

/* People image overlapping the box */
.enquiry-people {
    width: 270px;
    height: 144px;
    position: absolute;
    margin-top: -73px !important;
    margin-left: 59px;
    z-index: 2;
    border-radius: 20px !important;
}

/* RIGHT SIDE PURPLE BOX */
.enquiry-box {
    background:#4DB746;
    padding: 40px 40px 40px 180px; /* space for image overlap */
    border-radius: 25px;
    max-width: 70%;
    width: 65%;
    min-height: 230px;
}

/* Text */
.enquiry-box p {
    font-size: 27px;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-left: 200px;
    color: white;
    font-weight: 500;
}

/* Button */
.btn-enquiry {
    display: inline-block;
    background: white;
    padding: 10px 30px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    margin-left: 208px;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-top: -23px;
}


@media (max-width: 1200px) {
    .enquiry-box {
        padding-left: 150px;
    }
    
    /* PEOPLE IMAGE CENTER TOP */
    .enquiry-people {
        width: 520px;
        height: auto;
        margin-left:170px;
        transform: translateX(-50%);
        top: 72px;
        margin-top: 0;
    }
}

@media (max-width: 992px) {

    .enquiry-section {
        flex-direction: column;
        margin-top: 10px;
    }

    /* BOX CENTER */
    .enquiry-box {
        padding: 120px 30px 40px 30px;
        margin-left: 0;
        text-align: center;
        max-width: 70%;
    }

    /* PEOPLE IMAGE CENTER TOP */
    .enquiry-people {
        width: 267px !important;
        height: 95px;
        margin-left:2px !important;
        transform: translateX(-50%);
        top: 90px !important;
        margin-bottom: -10px !important;
    }

    /* LOGO CENTER ABOVE */
    .enquiry-logo {
        width: 80px;
       left: -211px;
        transform: translateX(-50%);
        top: -43px;
    }

    /* TEXT CENTER */
    .enquiry-box p {
        margin-left:16px;
        font-size: 25px;
    }

    /* BUTTON CENTER */
    .btn-enquiry {
        margin-left: 20px;
    }
}

@media (max-width: 576px) {

    .enquiry-box {
        margin-top: -50px;
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .enquiry-people {
        width: 180px !important;
        top: 47px !important;
        height: 70px !important;
        margin-left: -2px !important;
    }

    .enquiry-logo {
        width: 70px;
        top: -90px;
        margin-left: 75px;
    }

    .enquiry-box p {
        font-size: 21px !important;
        line-height: 1.5;
    }

    .btn-enquiry {
        padding: 12px 28px;
        font-size: 16px;
        margin-left:-4px ;
    }
}





