@import url('https://fonts.googleapis.com/css2?family=Trade+Winds&display=swap');
@import url('https://fonts.cdnfonts.com/css/codec-pro');

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

:root {
    --primary-color: #01C063;
    --primary-dark: #00a352;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body {
    background-color: white;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    color: var(--text-dark);
}

header {
    background: linear-gradient(
        135deg,
        rgba(1, 192, 99, 0.97) 0%,
        rgba(0, 163, 82, 0.97) 50%,
        rgba(0, 145, 70, 0.97) 100%
    );
    padding: 1.2rem 4rem;
    box-shadow: 
        0 4px 20px rgba(1, 192, 99, 0.15),
        0 2px 8px rgba(0, 163, 82, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 145, 70, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

header.scrolled {
    padding: 1rem 4rem;
    background: linear-gradient(
        135deg,
        rgba(1, 192, 99, 0.95) 0%,
        rgba(0, 163, 82, 0.95) 60%,
        rgba(0, 145, 70, 0.95) 100%
    );
    box-shadow: 
        0 6px 25px rgba(1, 192, 99, 0.2),
        0 2px 10px rgba(0, 163, 82, 0.12),
        0 1px 5px rgba(0, 0, 0, 0.06);
}

header.scrolled::before {
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* .footer-info .update{
    font-size: 22px;
} */

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    letter-spacing: 0.3px;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

nav a:hover::before {
    width: calc(100% - 2.4rem);
}

nav a.active {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav a.active::before {
    display: none;
}

/* Add contact button */
.contact-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 2rem;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile menu icon */
.menu-icon {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-icon div {
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    header {
        padding: 1rem 2rem;
    }

    header.scrolled {
        padding: 0.8rem 2rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    nav a {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        margin-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    nav ul.show {
        display: flex;
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    nav a::before {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .logo-img {
        height: 32px;
    }
}

/* Add margin to main content to account for fixed header */
main {
    margin-top: 80px;
}

/* Hero Section Styles */
.hero-section {
    min-height: calc(100vh - 80px);
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('assets/map.jpg') center/cover no-repeat;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    background-size: 115%;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.text-content {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.tagline {
    display: inline-block;
    font-family: 'Codec Pro', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(1, 192, 99, 0.1);
    border-radius: 4px;
}

.text-content h1 {
    font-family: 'Codec Pro', sans-serif;
    font-weight: 800;
    font-size: 4.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-content h1 .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.text-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.15em;
    left: 0;
    width: 100%;
    height: 0.2em;
    background-color: rgba(1, 192, 99, 0.2);
    z-index: -1;
    transform: skewX(-10deg);
}

.subtitle {
    font-size: 1.35rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-primary, .cta-secondary {
    font-family: 'Codec Pro', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-decoration: none;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 192, 99, 0.2);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
}

.cta-secondary:hover {
    background-color: rgba(1, 192, 99, 0.1);
    transform: translateY(-2px);
}

.car-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    position: relative;
    padding: 2rem;
    perspective: 1000px;
}

.car-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 20px;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
}

.car-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(1, 192, 99, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.car-image img {
    max-width: 110%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: rotateY(-5deg) rotateX(2deg);
    animation: carFloat 6s ease-in-out infinite;
}

.car-image:hover img {
    transform: rotateY(-2deg) rotateX(1deg) translateY(-10px);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.2));
}

@keyframes carFloat {
    0%, 100% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0);
    }
    50% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-15px);
    }
}

.car-image::before,
.car-image::after {
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        text-align: center;
        padding: 0 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .text-content h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .car-image {
        padding: 1rem;
        justify-content: center;
        perspective: 800px;
        margin-bottom: 140px; /* Add space for stats container */
    }

    .car-image img {
        max-width: 90%;
        transform: rotateY(0deg) rotateX(0deg);
    }

    .car-image:hover img {
        transform: translateY(-5px);
    }

    @keyframes carFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
} 

/* Add after your existing styles */
.stats-container {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out forwards;
    position: absolute;
    left: 156.9%;
    top: 75%;
    transform: translateX(-50%);
    width: max-content;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Codec Pro', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    white-space: nowrap;
}

.connected-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.location-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.partner-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .stats-container {
        left: 110%;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .location-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .stats-container {
        left: 105%;
    }
}

@media (max-width: 768px) {
    .stats-container {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-top: 2rem;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .location-text {
        font-size: 1.2rem;
    }
    
    .partner-text {
        font-size: 1.1rem;
    }
}

.partnership-info {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.global-partnership {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.highlight-text {
    font-family: 'Codec Pro', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-text {
    font-family: 'Codec Pro', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.platform-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    animation: lineDrawIn 0.6s ease-out 1.4s forwards;
}

@keyframes numberCount {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes lineDrawIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Update your existing media queries */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .stat-text {
        font-size: 1.2rem;
    }

    .partnership-info {
        text-align: center;
        margin: 1.5rem 0;
    }

    .platform-text {
        font-size: 1.2rem;
    }
} 

/* What We Do Section */
.what-we-do,
.mission-vision,
.why-wipe {
    background: 
        linear-gradient(120deg, 
            rgba(1, 192, 99, 0.03) 0%,
            rgba(255, 255, 255, 0) 20%),
        linear-gradient(240deg, 
            rgba(0, 163, 82, 0.03) 0%,
            rgba(255, 255, 255, 0) 20%),
        linear-gradient(135deg, 
            #f8fafa 0%,
            #f0f9f6 35%,
            #e8f6f1 65%,
            #e5f5ef 100%);
    position: relative;
    overflow: hidden;
}

.what-we-do::before,
.mission-vision::before,
.why-wipe::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, 
            rgba(1, 192, 99, 0.04) 0%, 
            rgba(1, 192, 99, 0) 50%),
        radial-gradient(circle at 80% 80%, 
            rgba(0, 163, 82, 0.04) 0%, 
            rgba(0, 163, 82, 0) 50%);
    pointer-events: none;
}

/* Adjust section paddings for better flow */
.what-we-do {
    padding: 8rem 2rem;
}

.mission-vision {
    padding: 8rem 2rem;
}

.why-wipe {
    padding: 8rem 2rem;
}

/* Add subtle separators between sections */
.mission-vision::after,
.what-we-do::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(1, 192, 99, 0.1) 50%,
        transparent 100%
    );
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-subtitle {
    font-family: 'Codec Pro', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.what-we-do h2 {
    font-family: 'Codec Pro', sans-serif;
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.what-we-do h2 span {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-decoration {
    position: relative;
    display: inline-block;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    top: 50%;
    opacity: 0;
    animation: expandWidth 0.6s ease 0.4s forwards;
}

.title-decoration::before {
    right: calc(100% + 20px);
    transform-origin: right;
}

.title-decoration::after {
    left: calc(100% + 20px);
    transform-origin: left;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

@keyframes expandWidth {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Update media queries */
@media (max-width: 1024px) {
    .what-we-do h2 {
        font-size: 3.5rem;
    }
    
    .title-decoration::before,
    .title-decoration::after {
        width: 40px;
    }
}

@media (max-width: 768px) {
    .what-we-do h2 {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .title-decoration::before,
    .title-decoration::after {
        width: 30px;
    }
}

.what-we-do::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, 
            rgba(1, 192, 99, 0.04) 0%, 
            rgba(1, 192, 99, 0) 50%),
        radial-gradient(circle at 80% 80%, 
            rgba(0, 163, 82, 0.04) 0%, 
            rgba(0, 163, 82, 0) 50%);
    pointer-events: none;
}

.what-we-do::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2301c063' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    min-height: 400px;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    transform: skewY(-5deg);
    transition: all 0.5s ease;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.service-card:nth-child(2)::before {
    transform: skewY(5deg);
}

.service-card:hover::before {
    transform: skewY(0);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(1, 192, 99, 0.15),
        0 0 0 2px rgba(1, 192, 99, 0.2);
}

.service-card .content-wrapper {
    position: relative;
    z-index: 1;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a352 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
    transform-origin: center;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 12px;
    background-clip: text;
}

.service-card:hover .service-icon {
    transform: scale(1.2) translateY(-10px);
    filter: drop-shadow(0 10px 15px rgba(1, 192, 99, 0.3));
}

.service-card h3 {
    font-family: 'Codec Pro', sans-serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    transform: translateY(0);
    transition: all 0.5s ease;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-left: 99px;

}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.5s ease;
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    transform: translateY(0);
    transition: all 0.5s ease;
    opacity: 0.9;
    padding-right: 1rem;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-left: 19px;
}

.service-card:hover p {
    transform: translateY(-5px);
    opacity: 1;
    color: var(--text-dark);
}

.wipe-button, .linkedin-button {
    position: relative;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.service-card:hover .wipe-button,
.service-card:hover .linkedin-button {
    transform: translateY(-5px);
}

/* Decorative elements */
.service-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(1, 192, 99, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(1, 192, 99, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 30px;
}

.service-card:hover::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .service-card:nth-child(3) {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .service-card:nth-child(3) {
        grid-column: span 1;
    }

    .service-card::before {
        transform: skewY(-3deg);
    }

    .service-card:nth-child(2)::before {
        transform: skewY(3deg);
    }

    .service-card h3 {
        font-size: 1.8rem;
    }

    .service-card p {
        font-size: 1rem;
        padding-right: 0;
    }

    .service-card .content-wrapper {
        padding: 2.5rem 2rem;
        gap: 1.2rem;
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

/* Update button styles */
.wipe-button, .linkedin-button {
    font-family: 'Codec Pro', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    text-decoration: none;
}

.wipe-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a352 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(1, 192, 99, 0.2);
}

.wipe-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(1, 192, 99, 0.3);
}

.wipe-button:active {
    transform: translateY(0) scale(0.98);
}

.linkedin-button {
    background: #0077B5;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.2);
}

.linkedin-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
    background: #006399;
}

.linkedin-button:active {
    transform: translateY(0) scale(0.98);
}

.button-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.wipe-button:hover .button-icon {
    transform: translateX(3px) rotate(45deg);
}

.linkedin-button:hover .button-icon {
    transform: scale(1.1);
}

.linkedin-button .button-icon {
    font-weight: 800;
    font-style: normal;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.mission-vision .section-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    position: relative;
}

.mission-block, .vision-block {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-block::before, .vision-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), rgba(1, 192, 99, 0.3));
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.mission-block:hover::before, .vision-block:hover::before {
    opacity: 1;
}

.mission-block:hover, .vision-block:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(1, 192, 99, 0.1);
}

.mission-vision .section-subtitle {
    font-family: 'Codec Pro', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-vision h2 {
    font-family: 'Codec Pro', sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.mission-text, .vision-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(1, 192, 99, 0.2);
    transition: all 0.4s ease;
}

.mission-block:hover .mission-text,
.vision-block:hover .vision-text {
    border-left-color: var(--primary-color);
}

@media (max-width: 1024px) {
    .mission-vision .section-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision h2 {
        font-size: 2rem;
    }

    .mission-text, .vision-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        padding: 4rem 1.5rem;
    }

    .mission-block, .vision-block {
        padding: 2rem;
    }

    .mission-vision h2 {
        font-size: 1.8rem;
    }

    .mission-text, .vision-text {
        font-size: 1rem;
        padding-left: 1rem;
    }
}

.why-wipe .section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.why-wipe .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-wipe .section-subtitle {
    font-family: 'Codec Pro', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(1, 192, 99, 0.1);
    border-radius: 30px;
}

.why-wipe h2 {
    font-family: 'Codec Pro', sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(1, 192, 99, 0.05) 0%, 
        rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(1, 192, 99, 0.1);
}

.benefit-item:hover::before {
    opacity: 1;
}

.check-icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.4s ease;
}

.benefit-item:hover .check-icon {
    transform: scale(1.2);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-family: 'Codec Pro', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .why-wipe h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .why-wipe {
        padding: 4rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-wipe .section-subtitle {
        font-size: 1rem;
    }

    .why-wipe h2 {
        font-size: 1.8rem;
    }

    .benefit-content h3 {
        font-size: 1.2rem;
    }

    .benefit-content p {
        font-size: 1rem;
    }
}

.about-us {
    padding: 8rem 2rem;
    background: 
        linear-gradient(120deg, 
            rgba(1, 192, 99, 0.03) 0%,
            rgba(255, 255, 255, 0) 20%),
        linear-gradient(240deg, 
            rgba(0, 163, 82, 0.03) 0%,
            rgba(255, 255, 255, 0) 20%),
        linear-gradient(135deg, 
            #f8fafa 0%,
            #f0f9f6 35%,
            #e8f6f1 65%,
            #e5f5ef 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, 
            rgba(1, 192, 99, 0.04) 0%, 
            rgba(1, 192, 99, 0) 50%),
        radial-gradient(circle at 80% 80%, 
            rgba(0, 163, 82, 0.04) 0%, 
            rgba(0, 163, 82, 0) 50%);
    pointer-events: none;
}

.about-us .section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-us .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-us .section-subtitle {
    font-family: 'Codec Pro', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(1, 192, 99, 0.1);
    border-radius: 30px;
}

.about-us h2 {
    font-family: 'Codec Pro', sans-serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(1, 192, 99, 0.1);
}

.lead-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-stats .stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(1, 192, 99, 0.1);
}

.about-stats .stat-number {
    font-family: 'Codec Pro', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-text {
        padding: 2rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .detail-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 4rem 1.5rem;
    }

    .about-us h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-stats .stat-number {
        font-size: 2rem;
    }

    .about-stats .stat-label {
        font-size: 1rem;
    }
}

/* Footer Gradient Styles */
.footer-gradient {
    position: relative;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(1, 192, 99, 0.05) 20%,
        rgba(1, 192, 99, 0.1) 40%,
        rgba(0, 163, 82, 0.15) 60%,
        rgba(0, 163, 82, 0.2) 80%,
        rgba(0, 163, 82, 0.25) 100%
    );
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(1, 192, 99, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 163, 82, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2301c063' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
    pointer-events: none;
}

.footer-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.footer-logo {
    text-align: left;
}

.footer-logo .logo-text {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 2px 10px rgba(1, 192, 99, 0.2);
}

.footer-tagline {
    font-family: 'Codec Pro', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    letter-spacing: 1px;
    margin-top: 19px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.footer-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(1, 192, 99, 0.2) 50%,
        transparent 100%
    );
}

@media (max-width: 768px) {
    .footer-gradient {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-logo .logo-text {
        font-size: 2rem;
    }

    .footer-tagline {
        font-size: 1rem;
    }
} 

/* Add UAE Location styles */
.location-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 1rem;
}

.location-selector:hover {
    background: rgba(255, 255, 255, 0.1);
}

.location-selector i {
    font-size: 1.2rem;
}

.location-selector .arrow-down {
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

/* Update media queries for location selector */
@media (max-width: 768px) {
    .location-selector {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

.connected-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.location-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.partner-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-light);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .connected-text {
        font-size: 1.2rem;
        text-align: center;
    }

    .partner-text {
        font-size: 1.1rem;
    }
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .footer-logo-img {
        height: 32px;
    }
}

.footer-logo-text {
    font-family: 'Codec Pro', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #01C063;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .footer-logo-text {
        font-size: 32px;
    }
} 

