* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* Hero Video Layout */
.home-hero-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-container {
    position: absolute;
    top: 240px;
    left: 80px;
    width: 100%;
    height: 100%;
    display: flex;
    text-align: left;
    z-index: 2;
    color: #ffffff;
    padding: 0 20px;
}

.hero-text-container h1 {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 110%;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    padding: 10px 60px;
    background: rgba(255, 255, 255, 0.185);
    border-radius: 50px;
    backdrop-filter: blur(16px) saturate(1.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0284c7, #10b981);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-cta {
    text-decoration: none;
    color: #000000;
    background: #ffffff0f;
    border: 1px solid rgb(48, 48, 48);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

h1 {
    font-size: 64px;
    line-height: 110%;
    font-weight: 400;
    letter-spacing: -2%;
}

@media (max-width: 1024px) {
    .hero-text-container {
        top: 200px;
        left: 40px;
    }

    .hero-text-container h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .navbar-header {
        top: 10px;
    }

    .navbar {
        width: 95%;
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
    }

    .btn-cta {
        padding: 8px 18px;
        font-size: 13px;
    }

    .hero-text-container {
        top: 160px;
        left: 24px;
        width: calc(100% - 48px);
        padding: 0;
    }

    .hero-text-container h1 {
        font-size: 32px;
        line-height: 120%;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 80px 40px 60px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.solutions-section .container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.solutions-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 500;
    color: #176bb8;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 290px);
    gap: 28px;
    justify-content: center;
    width: 100%;
}

.solution-card {
    position: relative;
    width: 290px;
    height: 213px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.solution-card:hover .card-bg-image {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: background 0.3s ease;
}

.card-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #ffffff;
}

.card-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 8px;
    color: #ffffff;
}

.card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive Grid for Solutions */
@media (max-width: 960px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 290px);
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .solution-card {
        width: 100%;
        max-width: 320px;
    }
}

/* Who We Are Section */
.who-we-are-section {
    padding: 120px 40px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    width: 100%;
}

.who-we-are-container {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 180px 1fr 320px;
    gap: 60px;
    align-items: start;
    text-align: left;
}

.who-we-are-left {
    padding-top: 6px;
    text-align: left;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111827;
    text-transform: uppercase;
    text-align: left;
}

.who-we-are-middle {
    text-align: left;
}

.who-we-are-heading {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    color: #007680;
    margin-bottom: 26px;
    letter-spacing: -0.015em;
    text-align: left;
}

.who-we-are-text {
    text-align: left;
}

.who-we-are-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 18px;
    text-align: left;
}

.who-we-are-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 6px;
    text-align: left;
}

.stat-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    text-align: left;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    text-align: left;
}

.stat-number,
.stat-unit {
    font-family: 'Inter', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #00937a;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Scroll Animation Utilities & Staggered Delays */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive adjustments for Who We Are */
@media (max-width: 1024px) {
    .who-we-are-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .who-we-are-right {
        flex-direction: row;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .who-we-are-section {
        padding: 40px 20px 60px;
    }

    .who-we-are-heading {
        font-size: 28px;
    }

    .stat-number,
    .stat-unit {
        font-size: 36px;
    }

    .who-we-are-right {
        flex-direction: column;
        gap: 32px;
    }
}

/* Projects Section */
.projects-section {
    padding: 0px 40px 120px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.projects-section .container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.projects-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 500;
    color: #176bb8;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 290px);
    gap: 28px;
    justify-content: center;
    width: 100%;
}

.project-card {
    position: relative;
    width: 290px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.project-card .card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.project-card:hover .card-bg-image {
    transform: scale(1.06);
}

.project-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.project-card .card-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #ffffff;
}

.project-card .card-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
}

.project-card .card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
}

/* Responsive Grid for Projects */
@media (max-width: 960px) {
    .projects-grid {
        grid-template-columns: repeat(2, 290px);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .projects-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .project-card {
        width: 100%;
        max-width: 320px;
    }
}

/* Site Footer */
.site-footer {
    position: relative;
    width: 100%;
    background: linear-gradient(81deg, #008f71 28%, #007791 54%, #004e75 100%);
    padding: 100px 60px 70px;
    color: #ffffff;
    overflow: hidden;
}

.footer-graphic {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: right bottom;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Top CTA Banner */
.footer-cta-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 90px;
}

.footer-cta-banner h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 28px;
    max-width: 620px;
    letter-spacing: -0.015em;
}

.btn-contact-us {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #111827;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-contact-us:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    background-color: #f8fafc;
}

.btn-contact-us svg {
    transition: transform 0.3s ease;
}

.btn-contact-us:hover svg {
    transform: translateX(3px);
}

/* Bottom Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 900px;
}

.footer-col-logo {
    display: flex;
    align-items: center;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo {
    height: 71px;
    width: auto;
    display: block;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.95;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: #ffffff;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social-icons a {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social-icons a:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer-graphic {
        max-height: 380px;
        opacity: 0.6;
    }

    .footer-cta-banner h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 24px 40px;
    }

    .footer-graphic {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-cta-banner h2 {
        font-size: 24px;
    }
}