/* Design Tokens */
:root {
    /* Colors */
    --color-black: #000000;
    --color-text-primary: #1a1a1d;
    --color-text-secondary: #2f3130;
    --color-text-tertiary: #4f5250;
    --color-dark-green: #1d3628;
    --color-forest-green: #0f1f17;
    --color-sage-green: #6e8a75;
    --color-light-green: #e2e8e5;
    --color-off-white: #f5f5f5;
    --color-white: #ffffff;
    --color-light-gray: #bac0bd;
    --color-medium-gray: #707573;
    --color-gray: #949a97;
    --color-dark-gray: #121313;

    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Font Sizes */
    --text-xs: 10.32px;
    --text-sm: 13.5px;
    --text-base: 20.64px;
    --text-lg: 23.11px;
    --text-xl: 29.08px;
    --text-2xl: 37.71px;
    --text-3xl: 68.26px;
    --text-4xl: 86.54px;
    --text-5xl: 97.32px;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;

    /* Border Radius */
    --radius-sm: 9px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 21px;

    /* Shadows */
    --shadow-sm: 0px 2.5px 2.5px rgba(0, 0, 0, 0.25);
    --shadow-md: 0px 4px 4px rgba(0, 0, 0, 0.25);
    --shadow-button: 4px 6px 3.9px rgba(0, 0, 0, 0.33);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Typography Classes */
.heading-xl {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 400;
}

.heading-lg {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400;
}

.heading-md {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 400;
}

.body-text {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 400;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px;
    position: relative;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0px 50px;
    border-radius: 0px 0px 20px 20px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

#nav-trigger {
    height: 1px;
    visibility: hidden;
}

/* Hero Section */
.hero {
    background-image: url('assets/images/hero-background.png');
    background-position: center;
    min-height: 1044px;
    background-size: cover;
    padding: 140px 0 0; /* Use padding-top for navbar clearance */
    margin-top: -83px;
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 120px;
    height: auto;
    padding: 5px 0;
}

.logo-text {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.02px;
    color: var(--color-black);
}
.navbarbutton {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 15px;
    padding: 6px 0px;
    flex-wrap: nowrap;
}

.nav-links {
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-sage-green);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 3px;
    padding-left: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-button);
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-btn span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.contact-btn img {
    width: 24px;
    height: 24px;
}

.hero-content {
    flex: 1; /* Pushes the description to the bottom of the flex container */
    margin-top: 60px;
    padding: 0 50px;
}

.hero-text {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 90%);
    padding: 16px 60px 16px 24px;
    border-radius: 20px 0px 0px 20px;
    margin-bottom: 40px;
    width: fit-content;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--color-black);
    max-width: 800px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 900;
    color: var(--color-text-primary);
    margin-bottom: 15px;
    line-height: 1.25;
}
.highlight-text{
    color:#1D3628;
}

.cta-button {
    display: block;
    margin: 0 auto 60px auto;
    font-family: var(--font-heading);
    font-size: 25.58px;
    font-weight: 500;
    color: #ffffff;
    padding: 18px 40px;
    border: 4px solid #1D3628;
    border-radius: 30px;
    background-color: rgba(29, 54, 40, 0.35);
    transition: 
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);

}

.cta-button:hover {
    background-color: rgba(29, 54, 40, 0.9);
    border-color: #1D3628;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.hero-description {
    width: 100%;
    background-color: #0B150F;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 60px 20px; /* Padding for spacing around the text */
    margin-bottom: 0; /* Ensures it's flush with the section bottom */
}

.hero-description p {
    max-width: 780px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-size: 21.26px;
    font-weight: 800;
    color: var(--color-off-white);
    text-align: center;
    line-height: 1.5;
}

/* Portfolio Section */
.portfolio {
    background-color: rgba(245, 245, 245, 0.3);
    padding: 20px 0;
    box-shadow: var(--shadow-sm), var(--shadow-md);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.portfolio-header {
    margin-bottom: 0px;
    padding: 0 57px;
}

.highlight-text2{
    color:#1D3628;
}

.portfolio-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 0px;
}

.portfolio-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--color-text-secondary);
}

.portfolio-intro {
    font-family: var(--font-heading);
    font-size: 20.28px;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 41px;
    padding: 0 57px;
}

.featured-project {
    background-image: url('assets/images/featured-project.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    padding: 40px 73px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 41px;
    margin-left: 57px;
    margin-right: 57px;
}

.badge {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
    background-color: #1D3628;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 380px;
}

.project-info {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    align-items: center;
}

.project-category,
.project-meta {
    font-family: var(--font-heading);
    font-weight: 200;
    color: var(--color-white);
}

.project-category {
    display: inline-block;
    width: fit-content;
    font-size: 14px;
    padding: 12px 8px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.08); /* semi-transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    /* Border for glass effect */
    border: 2px solid rgba(255, 255, 255, 0.2); /* subtle semi-transparent border */
    /* Optional: smooth transition on hover */
    transition: all 0.3s ease;
}

.project-meta {
    font-size: 14px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 85.54px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-white);
}

.projects-grid {
    display: none; /* Hide original grid if we are using carousel structure */
}

/* Projects Carousel Styles */
.projects-carousel {
    width: 100%;
    overflow-x: auto;
    position: relative;
    padding: 20px 0 60px;
    cursor: grab;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.projects-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.projects-carousel:active {
    cursor: grabbing;
}

.projects-track {
    display: flex;
    gap: 40px;
    width: max-content;
    padding: 0 40px;
}

.carousel-card {
    flex: 0 0 400px; /* Fixed width for carousel items */
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.carousel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    pointer-events: none;
}

.carousel-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0) 100% );
}

.carousel-label span {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-left: 10px;
    color: var(--color-black);
}

.carousel-label img {
    width: 14px;
    height: 14px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 22px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0) 100% );
}

.project-label span {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 400;
    color: var(--color-black);
}

.project-label img {
    width: 14px;
    height: 14px;
    background-color: transparent;
    padding: 0;
    margin-bottom: 4px;
    border-radius: 0;
}

/* Approach Section */
.approach {
    background-color: rgba(255, 255, 255, 0.16);
    padding: 20px 0 60px; /* Removed horizontal padding */
    box-shadow: var(--shadow-sm), var(--shadow-md);
    /* border-radius: 0 0 var(--radius-lg) var(--radius-lg); */
    margin-bottom: 0px;
}

.approach h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    padding: 0 57px;
}

.approach-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 50px;
    padding: 0 57px;
}

/* Approach Cards Grid */
.approach-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    padding: 0 57px;
}

.approach-card-wrap {
    position: relative;
    /* Space for shadow: 20px on each side, 31px on bottom */
    padding: 0 20px 31px 20px;
    display: flex;
    flex-direction: column;
}

.approach-card-shadow {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #09160f;
    border-radius: 59px;
    z-index: 0;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.approach-card {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    border-radius: 59px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1; /* Stretch to fill wrap height */
}

.approach-card-icon {
    width: 99px;
    height: 99px;
    flex-shrink: 0;
    object-fit: contain;
}

.approach-card-divider {
    width: 4px;
    height: 140px;
    background-color: #09160f;
    border-radius: 2px;
    flex-shrink: 0;
    margin: 0 20px 0 16px;
}

.approach-card-text h3 {
    font-family: var(--font-heading);
    font-size: 35.17px;
    font-weight: 400;
    color: #09160f;
    margin-bottom: 8px;
    line-height: 1.2;
}

.approach-card-text p {
    font-family: var(--font-heading);
    font-size: 16.30px;
    font-weight: 400;
    color: var(--color-dark-gray);
    line-height: 1.5;
}

/* Team Section */
.team {
    background-color: rgba(255, 255, 255, 0.20);
    padding: 20px 0 60px;
    box-shadow: var(--shadow-sm), var(--shadow-md);
}

.team h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0;
    padding: 0 57px;
}

.team-group {
    margin-top: 48px;
}

.team-group-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: #09160f;
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 160px;
}

.team-grid--two {
    max-width: 720px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 245px;
}

.team-member-img-wrap {
    width: 245px;
    height: 245px;
    /* border: 3.5px solid #09160f; */
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.team-member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-name {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: #09160f;
    margin-bottom: 6px;
    line-height: 1.2;
}

.team-member-role {
    font-family: var(--font-heading);
    font-size: 20.24px;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* Why Section */
.why {
    background-color: #09160F;
    padding: 20px 0;
    box-shadow: var(--shadow-sm), var(--shadow-md);
    /* border-radius: var(--radius-lg); */
    margin: 0;
}

.why h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    padding: 0 57px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 100px;
    margin-bottom: 70px;
    padding: 0 57px;
}

.why-card {
    position: relative;
    padding: 24px 28px;
    background-color: #E2E8E5; /* true white for clear contrast */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.12);
}

.why-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background-color: #4B7F62;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 32.19px;
    font-weight: 400;
    color: var(--color-dark-gray);
    margin-bottom: 15px;
}

.why-card p {
    font-family: var(--font-heading);
    font-size: 22.36px;
    font-weight: 400;
    color: var(--color-text-tertiary);
    line-height: 1.4;
}

/* Services Section */
.services {
    background-color: rgba(255, 255, 255, 0.16);
    padding: 20px 0;
    box-shadow: var(--shadow-sm), var(--shadow-md);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin: 0;
}

.services h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 20px;
    padding: 0 57px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 19px;
    margin-bottom: 70px;
    padding: 0 57px;
}

.service-card {
    background-color: #f7f9f8;
    padding: 40px 20px;
    border-radius: var(--radius-md);
    border: 4px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}

.service-icon {
    width: 86px;
    height: 86px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-dark-gray);
    margin-bottom: 15px;
}

.service-card p {
    font-family: var(--font-heading);
    font-size: 21.88px;
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* Contact Section */
.contact {
    background-color: #09160f;
    padding: 100px 57px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 200px;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-headline {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 52px;
}

.contact-cta-btn {
    display: inline-block;
    width: fit-content;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    background-color: var(--color-white);
    border-radius: 50px;
    padding: 18px 50px;
    transition: background-color 0.25s, transform 0.2s;
    cursor: pointer;
}

.contact-cta-btn:hover {
    background-color: #ebebeb;
    transform: translateY(-2px);
    opacity: 1;
}

/* Right Form */
.contact-right {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-40px) scale(0.98);
    filter: blur(4px);
    will-change: transform, opacity, filter;
    transition: opacity 1s cubic-bezier(0.2, 1, 0.2, 1), 
                transform 1s cubic-bezier(0.2, 1, 0.2, 1),
                filter 1s cubic-bezier(0.2, 1, 0.2, 1),
                visibility 1s;
}

.contact.form-visible .contact-right {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    filter: blur(0);
}

/* Staggered internal items */
.contact-right > * {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.2, 1), 
                transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.contact.form-visible .contact-right > * {
    opacity: 1;
    transform: translateY(0);
}

.contact.form-visible .contact-right .contact-form-title { transition-delay: 0.2s; }
.contact.form-visible .contact-right .contact-form-group:nth-child(2) { transition-delay: 0.3s; }
.contact.form-visible .contact-right .contact-form-group:nth-child(3) { transition-delay: 0.4s; }
.contact.form-visible .contact-right .contact-form-group:nth-child(4) { transition-delay: 0.5s; }
.contact.form-visible .contact-right .contact-submit-btn { transition-delay: 0.6s; }

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-off-white);
    margin-bottom: 24px;
}

.contact-form-group {
    margin-bottom: 18px;
}

.contact-form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-off-white);
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--color-white);
    border: none;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    color: #121313;
    outline: none;
    transition: box-shadow 0.25s;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    box-shadow: 0 0 0 2px var(--color-sage-green);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--color-dark-green);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 8px;
    transition: background-color 0.25s;
}

.contact-submit-btn:hover {
    background-color: #2a4a38;
}

/* Footer Area */
.footer-area {
    background-color: #09160f;
    padding: 0 57px 16px;
}

.contact-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    width: 56%;
    margin: 0 auto 28px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 400px;
    align-items: center;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.copyright {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar {
        padding: 0 30px;
    }
    
    .navbar.sticky {
        padding: 0 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-cards-grid {
        gap: 40px;
    }

    .contact {
        gap: 80px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(48px, 8vw, 72px);
    }
    
    .hero-subtitle {
        font-size: var(--text-xl);
    }

    .project-title {
        font-size: 60px;
    }

    .team-grid {
        gap: 60px;
        flex-wrap: wrap;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 80px 40px;
    }

    .contact-headline {
        font-size: 42px;
        text-align: center;
    }

    .contact-cta-btn {
        margin: 0 auto;
    }

    .contact-right {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbarbutton {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-text {
        padding: 16px 24px;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        margin: 0 auto 10px;
    }

    .hero-description {
        padding: 40px 20px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    .hero-description p {
        font-size: 18px;
    }

    .portfolio-header, .portfolio-intro {
        padding: 0 20px;
    }

    .featured-project {
        margin: 0 20px 40px;
        padding: 30px;
        min-height: 350px;
    }

    .project-title {
        font-size: 48px;
    }

    .badge {
        margin-bottom: 200px;
    }

    .carousel-card {
        flex: 0 0 300px;
    }

    .approach h2, .approach-subtitle {
        padding: 0 20px;
    }

    .approach-cards-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .approach-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        border-radius: 40px;
    }

    .approach-card-divider {
        width: 60px;
        height: 4px;
        margin: 20px 0;
    }

    .approach-card-shadow {
        border-radius: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 40px;
    }

    .team h2 {
        padding: 0 20px;
    }

    .team-grid {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .footer-area {
        padding: 0 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .project-title {
        font-size: 36px;
    }

    .approach-card-text h3 {
        font-size: 28px;
    }

    .team-member-name {
        font-size: 24px;
    }

    .why-card h3 {
        font-size: 26px;
    }

    .contact-headline {
        font-size: 32px;
    }

    .nav-links a {
        font-size: 16px;
    }
}