:root {
    --brand-color: #CB776D;
    --text-dark: #2D3134;
    --text-gray: #676E73;
    --bg-light: #F9FAFB;
    --transition: all 0.3s ease;
    --max-content-width: 1400px; /* Updated to 1400px */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #fff;
}

/* --- Container Utility --- */
.container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 40px; /* Balanced side padding */
}


/* --- Logo Styling --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between hard-hat icon and text */
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.logo-icon {
    background-color: var(--brand-color); /* #CB776D */
    color: white;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* Modern rounded square look */
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(203, 119, 109, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

/* Optional: Slight color shift on hover */
.logo:hover .logo-icon {
    transform: translateY(-2px);
    background-color: #b8665c; /* Slightly darker shade of brand color */
}

/* Adjusting Logo Text for Scrolled Navbar if needed */
.navbar.scrolled .logo-text {
    color: #1A1D1F; /* Ensure it's sharp against the white background */
}

/* --- Base Navbar Styles --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

/* Scrolled State (Triggered by JS) */
.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--brand-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.login-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

.btn-signup {
    background: var(--brand-color);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none; /* Hidden by default */
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    /* Active State for Mobile Menu */
    .nav-container.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: left;
        gap: 20px;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-signup {
        width: 100%;
        text-align: center;
    }
}
























/* --- About Hero Section --- */
.about-hero {
    padding: 160px 0 100px; /* Extra top padding for fixed header */
    background-color: #fff;
    overflow: hidden;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Column */
.about-left {
    flex: 1.2;
}

.about-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--text-dark);
}

.about-left h1 span {
    color: var(--brand-color);
}

.about-left p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 450px;
}

/* Center Column Stats */
.about-center {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
    border-left: 1px solid #eee;
}

.about-stat h3 {
    font-size: 42px;
    color: var(--text-dark);
    line-height: 1;
}

.about-stat p {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: capitalize;
    margin-top: 5px;
}

/* Right Column Image */
.about-right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.about-img {
    width: 100%;
    border-radius: 40px;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Floating Principles Card */
.principles-card {
    position: absolute;
    bottom: -30px;
    left: -50px;
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    min-width: 280px;
}

.principles-list {
    list-style: none;
    margin-top: 15px;
}

.principles-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.principles-list li i {
    color: var(--brand-color);
    font-size: 18px;
}

/* Responsive About Hero */
@media (max-width: 1200px) {
    .about-left h1 { font-size: 42px; }
    .about-flex { gap: 20px; }
}

@media (max-width: 1024px) {
    .about-flex {
        flex-direction: column;
        text-align: left;
    }
    .about-center {
        flex-direction: row;
        border-left: none;
        padding-left: 0;
        justify-content: left;
        width: 100%;
        margin: 40px 0;
    }
    .about-left p { margin: 0 auto; }
    .about-right { justify-content: left; }
    .principles-card { left: 50%; transform: translateX(-50%); bottom: -40px; }
}



/* --- Detailed About Us Section --- */
.about-us-detailed {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Visual Side Styles */
.about-visual {
    position: relative;
    height: 600px;
}

.side-img-large {
    width: 80%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.side-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: 15%;
    background: var(--brand-color);
    color: white;
    padding: 25px;
    border-radius: 20px;
    z-index: 2;
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Side Styles */
.about-info h2 {
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.2;
}

.about-info h2 span {
    color: var(--brand-color);
}

.main-desc {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.m-v-item {
    display: flex;
    gap: 20px;
}

.m-v-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #FFF5F4;
    color: var(--brand-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.m-v-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.m-v-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.about-footer-cta {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.about-footer-cta p {
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 15px;
}

.signature strong {
    display: block;
    color: var(--brand-color);
    font-size: 16px;
}

.signature span {
    font-size: 13px;
    color: var(--text-gray);
}

/* Responsive Handling */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-visual {
        height: 500px;
    }
}



/* --- Mission, Vision, Values Section --- */
.mission-vision-alt {
    padding: 100px 0;
    background-color: #fff;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    padding: 50px 40px;
    background: #f9f9f9;
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

/* Center Card Highlight */
.mvv-card.featured-mvv {
    background-color: var(--brand-color);
    color: white;
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(203, 119, 109, 0.2);
}

.mvv-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--brand-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.featured-mvv .mvv-icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.mvv-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.mvv-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.featured-mvv p {
    color: rgba(255, 255, 255, 0.9);
}

.mvv-list {
    list-style: none;
}

.mvv-list li {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mvv-list li i {
    color: var(--brand-color);
}

.featured-mvv .mvv-list li i {
    color: white;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.values-tags span {
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-color);
    border: 1px solid #eee;
}

/* Responsive MVV */
@media (max-width: 1024px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    .mvv-card.featured-mvv {
        transform: translateY(0);
    }
}




/* --- Video Player Section --- */
.video-player-section {
    padding: 100px 0;
    background-color: #fff;
}

.video-player-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    background: #000; /* Fallback color */
}

.video-poster {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient ensures text visibility over any image */
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    color: white;
}

.badge-white {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-info-top h2 {
    font-size: 42px;
    margin-top: 20px;
    max-width: 550px;
    line-height: 1.2;
}

/* Play Trigger Styling */
.play-trigger {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    align-self: center;
    transition: transform 0.3s ease;
}

.play-trigger:hover {
    transform: scale(1.05);
}

.play-circle {
    width: 100px;
    height: 100px;
    background: white;
    color: var(--brand-color); /* Uses your #CB776D */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding-left: 5px; 
    box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.play-text {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-duration {
    font-size: 14px;
    opacity: 0.8;
}

/* --- Modal Styling --- */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
}

.modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--brand-color);
}

.video-responsive-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.video-responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .video-player-section {
        padding: 60px 0;
    }

    .video-player-container {
        border-radius: 25px;
        aspect-ratio: auto; /* Allows content to define height */
        min-height: 450px;
    }

    .video-overlay {
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }

    .video-info-top h2 {
        font-size: 28px;
        max-width: 100%;
    }

    .play-trigger {
        flex-direction: column;
        gap: 15px;
    }

    .play-circle {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .play-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .video-player-container {
        min-height: 400px;
    }

    .video-info-top h2 {
        font-size: 24px;
    }
    
    .badge-white {
        font-size: 11px;
    }
}














/* --- Services Hero Section --- */
.services-hero {
    padding: 160px 0 80px;
    background-color: #ffffff; /* Switched to White */
    color: var(--text-dark); /* Dark text for readability */
    position: relative;
    overflow: hidden;
}

.s-hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.s-hero-content {
    flex: 1;
}

.s-hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 20px 0;
    color: #0A142F; /* Deep navy for the heading */
}

.s-hero-content h1 span {
    color: var(--brand-color);
}

.s-hero-content p {
    font-size: 18px;
    color: var(--text-gray); /* Using your standard gray text */
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

.s-hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.trust-pill i {
    color: var(--brand-color);
}

/* Visual Styling */
.s-hero-visual {
    flex: 1;
}

.s-image-box {
    position: relative;
    border-radius: 40px; /* Slightly more rounded to match modern UI */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1); /* Shadow to make image pop on white */
}

.s-image-box img {
    width: 100%;
    display: block;
    filter: brightness(1); /* Full brightness for white background */
}

.experience-tag {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    color: #0A142F;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-tag strong {
    font-size: 24px;
    color: var(--brand-color);
}

.experience-tag span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.btns-primary {
    background-color: var(--brand-color); /* #CB776D */
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(203, 119, 109, 0.2);
}

.btns-primary:hover {
    background-color: #b8665c; /* Slightly darker on hover */
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(203, 119, 109, 0.3);
}

/* Services Quick Bar */
.services-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #F9FAFB; /* Light gray to distinguish from white section */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #F0F0F0;
}

.s-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #0A142F;
    font-weight: 600;
    border-right: 1px solid #E5E7EB;
}

.s-bar-item:last-child {
    border-right: none;
}

.s-bar-item i {
    color: var(--brand-color);
    font-size: 20px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .s-hero-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .s-hero-content p {
        margin: 0 auto 35px;
    }
    
    .s-hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }


    .btns-primary {
        width: 100%;
        text-align: center;
    }

    .services-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .s-bar-item {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 60px;
    }

    .s-hero-content h1 {
        font-size: 34px;
    }
    
    .services-bar {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}




/* --- Services Section --- */
.services {
    padding: 100px 0;
    background-color: #fff;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.services-intro p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

/* Featured Card Styles (First item) */
.service-card.featured {
    background-color: var(--brand-color);
    color: white;
    border: none;
}

.service-card.featured .s-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .read-more {
    color: white;
}

/* Standard Card Styles */
.s-icon {
    width: 50px;
    height: 50px;
    background: #FFF5F4;
    color: var(--brand-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    text-decoration: none;
    color: var(--brand-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-card:not(.featured):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: transparent;
}

/* Responsive Grid */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-intro h2 {
        font-size: 32px;
    }
}








/* --- Commitment Section Styles --- */
.commitment-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Cards take more space on the left */
    gap: 60px;
    align-items: center;
}

/* Left Side Card Grid Arrangement */
.comm-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two cards side by side */
    gap: 20px;
}

.comm-card {
    background: #F9FAFB;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
}

.comm-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--brand-color);
}

.comm-icon {
    width: 50px;
    height: 50px;
    background: #FFF5F4;
    color: var(--brand-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.comm-card h3 {
    font-size: 18px;
    color: #0A142F;
    margin-bottom: 10px;
}

.comm-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Right Side Content */
.commitment-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #0A142F;
    margin: 20px 0;
}

.commitment-content h2 span {
    color: var(--brand-color);
}

.commitment-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.quality-stamp {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F9FAFB;
    padding: 20px;
    border-radius: 20px;
    border-left: 4px solid var(--brand-color);
}

/* --- Responsive Fixes --- */
@media (max-width: 1024px) {
    .commitment-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .commitment-cards-side {
        order: 2; /* Content goes on top on mobile */
    }
    
    .commitment-content {
        order: 1;
        margin-bottom: 40px;
    }

    .quality-stamp {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .comm-card-grid {
        grid-template-columns: 1fr; /* Single column for small phones */
    }
}






/* --- Why Choose Us Section --- */
.why-choose {
    padding: 100px 0;
    background-color: #fff;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 48px;
    line-height: 1.1;
    margin: 25px 0;
}

.why-text h2 span {
    color: var(--brand-color);
}

.why-text p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.why-btns {
    display: flex;
    gap: 20px;
}

/* Image Side and Progress Card */
.why-image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.why-image-wrapper {
    position: relative;
    max-width: 520px;
}

.why-main-img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

.progress-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    width: 300px;
}

.p-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.p-card-header p {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.p-card-header i {
    color: #ddd;
    font-size: 12px;
}

.p-card-body {
    display: flex;
    align-items: center;
    gap: 15px;
}

.p-icon {
    width: 45px;
    height: 45px;
    background: var(--brand-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-info {
    flex: 1;
}

.p-info h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 75%; /* Represents the progress level */
    height: 100%;
    background: var(--brand-color);
}

/* Responsive Why Choose Section */
@media (max-width: 1024px) {
    .why-content {
        flex-direction: column;
        text-align: center;
    }
    .why-text h2 { font-size: 38px; }
    .why-btns { justify-content: center; }
    .why-image-side { justify-content: center; margin-top: 40px; }
    .progress-card { left: 50%; transform: translateX(-50%); bottom: -20px; }
}




/* --- FAQ Section --- */
.faq {
    padding: 100px 0;
    background-color: #fff;
}

.faq-content {
    display: flex;
    gap: 80px;
}

.faq-title-side {
    flex: 1;
}

.faq-title-side h2 {
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.2;
}

.faq-title-side p {
    color: var(--text-gray);
    font-size: 16px;
}

.faq-list-side {
    flex: 1.5;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 25px 0;
    transition: var(--transition);
}

.faq-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-color);
}

.faq-header h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-header i {
    font-size: 14px;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-body p {
    padding: 15px 0 0 45px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Active State for FAQ */
.faq-item.active .faq-body {
    max-height: 200px; /* Adjust based on content */
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

/* Responsive FAQ */
@media (max-width: 1024px) {
    .faq-content {
        flex-direction: column;
        gap: 40px;
    }
    .faq-title-side { text-align: left; }
}





















/* --- Projects Hero Section --- */
.projects-hero {
    padding: 160px 0 60px;
    background-color: #ffffff;
    text-align: center;
}

.p-hero-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.p-hero-content h1 {
    font-size: 56px;
    color: #0A142F;
    line-height: 1.1;
    margin: 20px 0;
}

.p-hero-content h1 span {
    color: var(--brand-color);
}

.p-hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Filter Bar Styling */
.projects-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9FAFB;
    padding: 10px 15px;
    border-radius: 100px;
    border: 1px solid #F0F0F0;
    margin-bottom: 50px;
}

.filter-tabs {
    display: flex;
    gap: 5px;
}

.filter-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: white;
    color: var(--brand-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.project-search {
    position: relative;
    padding-right: 15px;
}

.project-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.project-search input {
    padding: 10px 20px 10px 40px;
    border-radius: 50px;
    border: 1px solid #E5E7EB;
    outline: none;
    font-size: 14px;
    width: 250px;
}

/* Stats Ribbon Styling */
.projects-stats-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--brand-color);
    padding: 40px;
    border-radius: 30px;
    color: white;
    box-shadow: 0 20px 40px rgba(203, 119, 109, 0.2);
}

.p-stat h3 {
    font-size: 32px;
    margin-bottom: 5px;
}

.p-stat span {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-stat:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.2);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
    .p-hero-content h1 { font-size: 42px; }
    
    .projects-filter-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 20px;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-search input { width: 100%; }
}

@media (max-width: 768px) {
    .projects-stats-ribbon {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px;
    }

    .p-stat:nth-child(2) { border-right: none; }
}

@media (max-width: 480px) {
    .projects-stats-ribbon {
        grid-template-columns: 1fr;
    }
    .p-stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 15px; }
    .p-stat:last-child { border-bottom: none; }
}





/* --- Optimized Portfolio Grid --- */
.portfolio-grid {
    padding: 80px 0;
    background: #ffffff;
}

.masonry-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns on Desktop */
    grid-auto-rows: 320px;
    gap: 24px;
}

/* Base Project Card Styling */
.project-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f4f4f4;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Feature Grid Sizes (Desktop Only) */
.project-card.large { grid-column: span 2; grid-row: span 2; }
.project-card.tall { grid-row: span 2; }

/* Content Overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    /* Dark gradient ensures white text is readable regardless of the photo */
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 35px;
    transition: all 0.4s ease;
}

.p-category {
    display: inline-block;
    background: var(--brand-color); /* #CB776D */
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-meta h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 600;
}

.project-meta p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.view-project-btn {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.view-project-btn:hover {
    background: var(--brand-color);
    color: white;
}

.portfolio-footer {
    text-align: center;
    margin-top: 60px;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet View (2 Columns) */
@media (max-width: 1024px) {
    .masonry-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
        gap: 20px;
    }
    .project-card.large { grid-column: span 2; }
}

/* Mobile View (Single Column Stack) */
@media (max-width: 768px) {
    .portfolio-grid { padding: 40px 0; }

    .masonry-layout {
        grid-template-columns: 1fr; /* Single column */
        grid-auto-rows: auto;
        gap: 25px;
    }

    .project-card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 380px; /* Force a consistent professional height */
        border-radius: 20px;
    }

    /* On mobile, text is always visible (No Hover required) */
    .project-overlay {
        opacity: 1 !important;
        transform: translateY(0) !important;
        padding: 25px;
    }

    .project-meta h3 { font-size: 19px; }
}

/* Desktop Hover Effects (Only active on mouse-enabled devices) */
@media (min-width: 1025px) {
    .project-overlay {
        opacity: 0;
        transform: translateY(15px);
    }
    
    .project-card:hover .project-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .project-card:hover img {
        transform: scale(1.1);
    }
}




/* --- Text-Only Contact Hero --- */
.contact-hero-text-only {
    padding: 180px 0 100px;
    background-color: #ffffff;
}

.c-text-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Heading Styles */
.c-main-heading .short-title {
    color: var(--brand-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.c-main-heading .large-title {
    font-size: 64px;
    line-height: 1.05;
    color: #0A142F;
    font-weight: 800;
}

.c-main-heading .large-title span {
    color: var(--brand-color);
}

/* Right Content Styles */
.c-main-content p {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 45px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.secondary-link {
    font-weight: 700;
    color: #0A142F;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.secondary-link:hover {
    color: var(--brand-color);
}

/* Availability Badge */
.availability-status {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #0A142F;
    padding: 10px 15px;
    background: #F9FAFB;
    width: fit-content;
    border-radius: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e; /* Green status */
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
    .contact-hero-text-only {
        padding: 140px 0 80px;
    }
    
    .c-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .c-main-heading .large-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .c-main-heading .large-title {
        font-size: 38px;
    }

    .hero-cta-group {
        width: 100%;
    }

    .btns-primary {
        width: 100%;
        text-align: center;
    }
    
    .availability-status {
        width: 100%;
        justify-content: center;
    }
}







/* --- Construction Tech Section --- */
.construction-tech {
    padding: 100px 0;
    background-color: #0A142F; /* Deep Navy background for "High-Tech" feel */
    color: white;
    overflow: hidden;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Side */
.tech-visual {
    position: relative;
}

.tech-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: visible; /* Allows badges to pop out */
}

.tech-image-wrapper img {
    width: 100%;
    border-radius: 30px;
    filter: brightness(0.8);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.floating-badge {
    position: absolute;
    background: white;
    color: #0A142F;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
}

.drone-tag { top: 10%; right: -20px; animation-delay: 0s; }
.bim-tag { bottom: 15%; left: -20px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Content Side */
.tech-content h2 {
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.2;
}

.tech-content h2 span {
    color: var(--brand-color);
}

.tech-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.tech-feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tech-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(203, 119, 109, 0.15);
    color: var(--brand-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(203, 119, 109, 0.3);
}

.tech-text h4 {
    color: white;
    font-size: 19px;
    margin-bottom: 8px;
}

.tech-text p {
    font-size: 15px;
    margin-bottom: 0;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .tech-content {
        text-align: center;
    }

    .tech-item {
        text-align: left;
    }

    .floating-badge {
        position: static;
        margin: 10px auto;
        width: fit-content;
        animation: none;
    }
}




/* --- Talk To Us CTA Section --- */
.talk-to-us {
    padding: 100px 0;
    background-color: #ffffff; /* Clean white base */
}

.cta-card {
    background: #0A142F; /* Deep Navy */
    border-radius: 40px;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Subtle background decoration */
.cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--brand-color);
    filter: blur(150px);
    opacity: 0.15;
}

.cta-badge {
    color: var(--brand-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.cta-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cta-content h2 span {
    color: var(--brand-color);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Actions */
.cta-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: white;
    color: #0A142F;
    border-color: white;
}

/* Quick Info Panel */
.cta-quick-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--brand-color);
}

.info-item span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3px;
}

.info-item strong {
    font-size: 18px;
    font-weight: 600;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .cta-card {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        text-align: center;
    }

    .cta-actions {
        justify-content: left;
    }

    .cta-quick-info {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 32px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btns-primary, .btn-outline {
        width: 100%;
        text-align: left;
        justify-content: left;
    }
}





/* --- Inquiry Section Styling --- */
.inquiry-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.short-title {
    color: var(--brand-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.large-title {
    font-size: 48px;
    line-height: 1.1;
    color: #0A142F;
    margin-bottom: 25px;
}

.large-title span {
    color: var(--brand-color);
}

.inquiry-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Right Form Styling */
.inquiry-form-container {
    background: #F9FAFB;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #F0F0F0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.web3-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #0A142F;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    background: white;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(203, 119, 109, 0.1);
}

.submit-btn {
    background-color: #0A142F;
    color: white;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: var(--brand-color);
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .inquiry-content {
        text-align: left;
    }

    .large-title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .inquiry-form-container {
        padding: 25px;
    }
}





































/* --- Contact Hero Section --- */
.contact-hero {
    padding: 160px 0 100px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.c-hero-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.c-hero-content {
    flex: 1.2;
}

.c-hero-content h1 {
    font-size: 52px;
    color: #0A142F;
    line-height: 1.1;
    margin: 20px 0;
}

.c-hero-content h1 span {
    color: var(--brand-color);
}

.c-hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 520px;
}

.contact-meta {
    font-size: 14px;
    font-weight: 600;
    color: #0A142F;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item i {
    color: var(--brand-color);
}

/* Quick Contact Cards */
.c-hero-cards {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F9FAFB;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
}

.quick-card:hover {
    background: white;
    transform: translateX(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--brand-color);
}

.q-icon {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--brand-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.q-text span {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.q-text a, .q-text p {
    font-size: 18px;
    font-weight: 700;
    color: #0A142F;
    text-decoration: none;
    margin: 0;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
    .c-hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .c-hero-content p {
        margin: 0 auto 30px;
    }

    .meta-item {
        justify-content: center;
    }

    .c-hero-cards {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
    }

    .c-hero-content h1 {
        font-size: 36px;
    }

    .quick-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .quick-card:hover {
        transform: translateY(-5px);
    }
}




















/* --- Project Application Section --- */
.application-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.app-flex {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.app-info {
    flex: 1;
}

.app-requirements {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.app-requirements li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #0A142F;
}

.app-requirements li i {
    color: var(--brand-color);
}

/* Form Wrapper */
.app-form-wrapper {
    flex: 1.2;
    background: #F9FAFB;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #F0F0F0;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.web3-app-form .form-group {
    margin-bottom: 20px;
}

.web3-app-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0A142F;
    margin-bottom: 8px;
}

.web3-app-form input, 
.web3-app-form select, 
.web3-app-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: white;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.web3-app-form input:focus, 
.web3-app-form textarea:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 4px rgba(203, 119, 109, 0.1);
}

.full-width {
    width: 100%;
    padding: 18px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .app-flex {
        flex-direction: column;
        gap: 50px;
    }
    
    .app-info {
        text-align: left;
    }

    .app-requirements {
        display: inline-block;
        text-align: left;
    }

    .app-form-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .app-form-wrapper {
        padding: 30px 20px;
    }
}




















/* --- Footer Section --- */
.footer {
    background-color: #0A142F; /* Dark navy background */
    color: #fff;
    padding-top: 60px;
    padding-bottom: 40px;
}

/* Newsletter Bar */
.newsletter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.newsletter-text h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.newsletter-form .input-group {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px 5px 5px 45px;
    display: flex;
    align-items: center;
    min-width: 400px;
}

.newsletter-form i {
    position: absolute;
    left: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 0;
    flex: 1;
    outline: none;
}

.btn-subscribe {
    background: var(--brand-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    filter: brightness(1.1);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--brand-color);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.bottom-links {
    display: flex;
    gap: 25px;
}

.bottom-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.bottom-links a:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .footer-brand { grid-column: span 3; margin-bottom: 20px; }
}

@media (max-width: 768px) {
    .newsletter-bar {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .newsletter-form .input-group {
        min-width: 100%;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand { grid-column: span 2; }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
