@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --primary-green: #006837;
    --primary-dark: #004d33;
    --accent-orange: #f26522;
    --accent-orange-dark: #d84315;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --gradient-green: linear-gradient(135deg, #008f4c 0%, #006837 100%);
    --gradient-orange: linear-gradient(135deg, #ff8c00 0%, #f26522 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 104, 55, 0.3);
}

.btn-orange {
    background: var(--gradient-orange);
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-green);
}

/* Top Strip */
.top-strip {
    background-color: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-strip-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 24px;
}

.top-strip-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.top-strip-image {
    height: 35px;
    display: flex;
    align-items: center;
}

.top-strip-image img {
    height: 100%;
    width: auto;
    max-height: 35px;
    object-fit: contain;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 60px;
}

header .logo {
    position: absolute;
    left: 24px;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    height: 60px;
    width: auto;
    min-width: 100px;
}

header .logo a {
    display: block !important;
    text-decoration: none;
    line-height: 0;
    height: 60px;
    width: auto;
}

header .logo img {
    height: 60px !important;
    width: auto !important;
    max-width: 200px;
    min-width: 100px;
    display: block !important;
    object-fit: contain;
    visibility: visible !important;
    opacity: 1 !important;
    border: none;
}

.header-image {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 110px;
    height: 28px;
    display: flex;
    align-items: center;
}

.header-image img {
    height: 100%;
    width: auto;
    max-height: 28px;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Outfit', sans-serif;
    color: #000000;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: #ffffff;
}

/* Mobile Menu Hidden Checkbox */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--primary-green);
    height: 3px;
    width: 25px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

nav ul {
    display: flex;
    gap: 40px;
    margin-left: 50px;
}

nav a {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--text-main);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-green);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
/* Hero Section */
.hero {
    /* Background moved to slider */
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding-top: 60px;
    overflow: hidden;
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
    z-index: 1;
}

.slide:first-child {
    opacity: 1;
    z-index: 2;
}

/* Gradient Overlay for readability */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 51, 34, 0.7), rgba(0, 51, 34, 0.6));
    z-index: 1;
}

/* Stagger Animations */
.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    3% {
        opacity: 1;
    }

    30% {
        opacity: 1;
        transform: scale(1.05);
    }

    33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
    text-align: left;
    /* Ensure text is above slider */
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    text-align: left;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    transform-style: preserve-3d;
}

.about-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 104, 55, 0.2), transparent);
    z-index: 1;
}

.about-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    color: #000000;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-text h2 {
    color: #000000;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-text p {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 30px;
}

/* Stats Section */
.stats {
    background: #d52329;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ffffff;
}

.stats p.subtitle {
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    opacity: 1;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    opacity: 1;
}

/* We Serve Section */
.we-serve {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #000000;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.serve-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border-bottom: 5px solid transparent;
}

.serve-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: #d52329;
}

.serve-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
}

.serve-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.serve-card .btn-outline {
    border-color: var(--primary-green);
    color: var(--primary-green);
    padding: 10px 24px;
    font-size: 0.9rem;
}

.serve-card .btn-outline:hover {
    background: var(--primary-green);
    color: white;
}

/* Why Us Icons */
.why-us {
    padding: 60px 40px;
    text-align: center;
    background: white;
    margin-top: 80px;
    margin-bottom: 80px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-us h3 {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.icons-flex {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.icon-item:hover {
    color: var(--accent-orange);
    transform: translateY(-5px);
}

.icon-item i {
    font-size: 40px;
    margin-bottom: 16px;
    background: rgba(0, 104, 55, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.icon-item:hover i {
    background: var(--primary-green);
    color: white;
}

.icon-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

/* Modern Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
    display: block;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
    opacity: 0.9;
    display: block;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
}

.service-image img[src=""],
.service-image img:not([src]) {
    display: none;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
    opacity: 1;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 104, 55, 0.1) 100%);
    pointer-events: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d52329;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: #d52329;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(213, 35, 41, 0.4);
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-card h4 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 0 20px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: #000000;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px 30px;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.services-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    top: 0;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
    background: white;
    position: relative;
    z-index: 1;
}

.service-item h4 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-item:hover h4 {
    color: var(--primary-green);
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Add a visual indicator on hover */
.service-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-green);
    transition: width 0.4s ease;
}

.service-item:hover .service-content::after {
    width: 100%;
}

/* Footer Section */
.clients {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.clients h3 {
    color: #000000;
    margin-bottom: 50px;
    font-size: 2rem;
    font-weight: 700;
}

.clients-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.client-box {
    background: white;
    width: 160px;
    height: 120px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    color: #ccc;
    padding: 15px;
}

.client-box i {
    font-size: 2.5rem;
    transition: all 0.4s ease;
    margin-bottom: 8px;
}

.client-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    transition: all 0.4s ease;
    margin-top: 5px;
}

.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.client-box:hover i {
    color: var(--primary-green);
    transform: scale(1.1);
}

.client-box:hover .client-name {
    color: var(--primary-green);
}

.contact-cta {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    margin: 80px auto;
    max-width: 1200px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.contact-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.contact-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.footer {
    background-color: #0b1c11;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #a0a0a0;
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.9rem;
    color: #666;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3.5rem;
    }

    .about-grid {
        gap: 40px;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {

    /* Mobile Header & Menu */
    .nav-container {
        justify-content: space-between;
    }

    header .logo {
        position: relative;
        left: 0;
    }

    header .logo img {
        height: 50px;
        max-width: 180px;
    }

    .nav-toggle-label {
        display: block;
        z-index: 1001;
    }


    nav {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        width: 100%;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    nav li {
        text-align: center;
        width: 100%;
    }

    nav a {
        display: block;
        padding: 15px;
        width: 100%;
    }

    /* Checkbox Hack for Menu Toggle */
    .nav-toggle:checked~nav {
        transform: scaleY(1);
    }

    .nav-toggle:checked~.nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked~.nav-toggle-label span::before {
        transform: rotate(45deg);
        bottom: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* Hero */
    .hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Grids */
    .about-grid,
    .stats-grid,
    .serve-grid,
    .footer-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 0;
    }

    .service-image {
        height: 160px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin: -30px auto 15px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h4 {
        font-size: 1rem;
        margin-bottom: 12px;
        padding: 0 15px;
    }

    .service-card p {
        font-size: 0.9rem;
        padding: 0 15px 20px;
    }

    /* About Section */
    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-img {
        order: -1;
    }

    /* Image on top */

    /* Footer */
    .footer-col {
        text-align: center;
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header .logo img {
        height: 45px;
        max-width: 150px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .icons-flex {
        gap: 40px;
    }

    .clients-logos {
        gap: 20px;
    }

    .client-box {
        width: 140px;
        height: 110px;
    }

    .client-box i {
        font-size: 2em;
    }

    .client-name {
        font-size: 0.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 0;
    }

    .service-image {
        height: 180px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin: -35px auto 20px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-card h4 {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .service-card p {
        padding: 0 15px 25px;
    }
}