/* Add this at the very top of your stylesheet */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; /* This completely stops the left/right sliding on mobile */
}

:root {
    --primary-dark: #071324;
    --secondary-dark: #0b1a30;
    --accent-gold: #c89b53;
    --accent-gold-hover: #b38847;
    --text-light: #ffffff;
    --text-muted: #a0aabf;

}

body,
button,
input,
textarea,
select,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
li {
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}
/* --- Header Layout Updates --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #070d14; /* Darker background to match the image */
    border-bottom: 3px solid var(--accent-gold); /* Gold strip at the bottom */
    transition: background 0.3s ease;
}

header.scrolled {
    background: #070d14;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* --- Logo & Tagline (Left Side) --- */
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img {
    background-color: white;
    border-radius: 31px;
    height: 105px; /* Made the logo bigger */
    width: auto;
    display: block;
    transition: transform 0.3s ease; /* Smooth transition for hover */
}

/* Hover effect on logo */
.logo:hover .logo-img {
    transform: scale(1.05); 
}

.logo-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2); /* Subtle vertical line */
}

.logo-tagline {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 700; /* Bold text */
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
}

/* --- Navigation Links --- */
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-gold);
}

/* Animated Underline Hover Effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* --- Button Updates --- */
.btn-gold {
    background: linear-gradient(90deg, #c89b53 0%, #b38847 100%); /* Adds depth matching the image */
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 155, 83, 0.4);
}

.menu-icon {
    background: rgb(255 255 255 / 0%);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.menu-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.05);

}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 19, 36, 0.95) 0%, rgba(7, 19, 36, 0.7) 40%, rgba(7, 19, 36, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 650px;
    margin-top: 80px;

    z-index: 10;
}

.hero-subtitle {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.hero-desc-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 26, 48, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    z-index: 10;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-right: none;
}

.info-icon {
    color: var(--accent-gold);
    font-size: 24px;
}

.info-text h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
}

.info-text p {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 54px;
    }

    .info-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .info-item:nth-child(2) {
        border-right: none;
    }

    .info-item {
        border-right: none;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .header-actions .btn-gold,
    .header-actions .menu-icon {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .info-bar {
        grid-template-columns: 1fr;
        gap: 20px;
        position: relative;
    }

    .hero {
        height: auto;
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        justify-content: center;
    }

    .slider-container,
    .hero-overlay {
        height: 100%;
    }
}


.about-section {
    padding: 100px 5%;
    background-color: #fdfdfd;
    perspective: 1200px;
}

.about-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.about-video {
    width: 100%;
    height: 650px; /* adjust as needed */
    display: block;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-video {
        height: 400px;
    }

    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }

    .exp-num {
        font-size: 28px;
    }
}

.about-video {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 12px;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -25px;
    background-color: #c89b53;
    color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(200, 155, 83, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-num {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.exp-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

.about-text-col {
    padding-right: 20px;
}

.section-subtitle {
    color: #c89b53;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.section-title span {
    color: #c89b53;
    font-weight: 600;
}

.section-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-card {
    background-color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    color: #c89b53;
    font-size: 24px;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.feature-text {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
}

.animate-3d {
    opacity: 0;
    transform: translateY(80px) rotateX(-20deg) scale(0.95);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.animate-3d.show-3d {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .features-grid {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 20px;
    }

    .experience-badge {
        right: -10px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text-col {
        padding-right: 0;
        text-align: center;
    }

    .section-title {
        font-size: 36px;
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

.business-divisions,
.stats-banner {
    font-family: 'Outfit', sans-serif;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.business-divisions {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-heading {
    color: #c89b53;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 38px;
    font-weight: 500;
    color: #111111;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.division-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.division-card:hover {
    transform: translateY(-5px);
}

.card-image-wrapper {
    position: relative;
    height: 180px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    bottom: -18px;
    left: 20px;
    background-color: #c89b53;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(200, 155, 83, 0.4);
}

.card-content {
    padding: 35px 20px 25px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    line-height: 1.3;
    margin-bottom: 15px;
}

.division-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.division-list li {
    position: relative;
    padding-left: 15px;
    font-size: 13px;
    color: #555555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.division-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 1px;
    color: #c89b53;
    font-size: 10px;
}

.stats-banner {
    background-color: #071324;
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 30px;
    border-right: 1px solid rgba(200, 155, 83, 0.3);

}

.stat-box:last-child {
    border-right: none;
}

.stat-icon i {
    font-size: 45px;
    color: #c89b53;
    font-weight: 300;
}

.stat-number {
    font-size: 36px;
    font-weight: 600;
    color: #c89b53;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stat-box {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .divisions-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-box {
        border-right: none !important;
        padding: 0;
        justify-content: flex-start;
    }

    .main-heading {
        font-size: 32px;
    }
}

.fa,
.fa-solid,
.fa-regular,
.fa-brands,
.fas,
.far,
.fab {
    font-family: "Font Awesome 6 Free" !important;
    font-style: normal !important;
}

.fa-solid,
.fas {
    font-weight: 900 !important;
}

.fa-regular,
.far {
    font-weight: 400 !important;
}

.stat-icon i,
.feature-icon,
.info-icon,
.logo-icon {
    font-family: "Font Awesome 6 Free" !important;
}



/* --- Base Container & Section --- */
.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.projects-portfolio-section {
    padding: 90px 0;
    background-color: #fafafa;
}

/* --- Header Section --- */
.projects-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.projects-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.projects-subtitle-line {
    width: 30px;
    height: 1px;
    background-color: #d4af37;
}

.projects-subtitle {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d4af37;
}

.projects-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.projects-main-title span {
    color: #d4af37;
    font-weight: 700;
}

.projects-divider {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 25px auto;
}

.projects-lead-text {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
    line-height: 1.6;
}

/* --- Grid & Cards --- */
.projects-display-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-portfolio-card {
    position: relative;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #111111;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.project-portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.project-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-portfolio-card:hover .project-bg-img {
    transform: scale(1.06);
}

/* --- Info Strip Overlay --- */
.project-info-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Creates the dark fade up from the bottom */
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.7) 60%, transparent 100%);
    padding: 60px 30px 25px 30px; 
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-sizing: border-box;
}

.project-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.project-text h3 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}

.project-text p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* --- Layout Media Breakpoints --- */
@media (max-width: 992px) {
    .projects-display-grid {
        gap: 25px;
    }
    .projects-main-title {
        font-size: 34px;
    }
    .project-portfolio-card {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .projects-display-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .projects-portfolio-section {
        padding: 65px 0;
    }
    .projects-section-header {
        margin-bottom: 45px;
    }
    .projects-main-title {
        font-size: 28px;
    }
    .project-portfolio-card {
        height: 300px;
    }
    .project-info-strip {
        padding: 50px 20px 20px 20px;
        gap: 15px;
    }
}


/* --- Section Container Layout --- */
.work-process-section {
    padding: 80px 40px;
    background-color: #fafafa;
    /* Subtle professional structural grey offset */
    overflow: hidden;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
}

/* --- Left Heading Typography Side-Block --- */
.process-title-block {
    width: 20%;
    padding-right: 20px;
    flex-shrink: 0;
    margin-top: 15px;
}

.process-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
    /* Premium Gold Accent */
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.process-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

/* --- Horizontal Flow Timeline Context --- */
.process-timeline-flow {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Individual Node Settings */
.process-step-node {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

/* Icon Badge Encasements */
.icon-circle-wrapper {
    width: 76px;
    height: 76px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.icon-circle-wrapper i {
    font-size: 24px;
    color: #d4af37;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Step Typography Formatting */
.process-step-content .step-number {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.process-step-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.process-step-content p {
    font-size: 12px;
    color: #777777;
    line-height: 1.5;
    font-weight: 400;
}

/* Horizontal Connecting Dotted Lines */
.step-connector-arrow {
    position: absolute;
    top: 38px;
    left: calc(50% + 38px);
    width: calc(100% - 76px);
    text-align: center;
    z-index: 2;
}

.step-connector-arrow i {
    color: #b8b8b8;
    font-size: 14px;
    letter-spacing: -2px;
    display: block;
    opacity: 0.7;
    /* Emulates a premium dotted connecting track path natively */
    border-bottom: 1px dotted #999999;
    height: 1px;
    content: "";
}

/* Hide the raw internal arrow icon glyph since layout uses border-line mechanics */
.step-connector-arrow i::before {
    display: none;
}

/* --- Premium Corporate Interactive Hover States --- */
.process-step-node:hover .icon-circle-wrapper {
    transform: translateY(-5px);
    background-color: #111111;
    border-color: #111111;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.process-step-node:hover .icon-circle-wrapper i {
    color: #ffffff;
}

/* --- Fully Fluid Responsive Breakpoints --- */
@media (max-width: 1200px) {
    .process-container {
        flex-direction: column;
    }

    .process-title-block {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
        padding-right: 0;
    }

    .process-timeline-flow {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .work-process-section {
        padding: 60px 20px;
    }

    .process-step-content h3 {
        font-size: 13px;
    }

    .process-step-content p {
        font-size: 11px;
    }

    .icon-circle-wrapper {
        width: 66px;
        height: 66px;
    }

    .step-connector-arrow {
        top: 33px;
        left: calc(50% + 33px);
        width: calc(100% - 66px);
    }
}

/* Mobile Breakpoint UI Refactorization (Smooth Step Stack) */
@media (max-width: 768px) {
    .process-timeline-flow {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .process-step-node {
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: row;
        text-align: left;
        align-items: center;
        margin-bottom: 40px;
        padding: 0;
    }

    .process-step-node:last-child {
        margin-bottom: 0;
    }

    .icon-circle-wrapper {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }

    .process-step-content {
        flex-grow: 1;
    }

    /* Transform straight horizontal lines into vertical dot matrices on mobile viewports */
    .step-connector-arrow {
        position: absolute;
        top: 66px;
        left: 32px;
        width: 1px;
        height: 40px;
    }

    .step-connector-arrow i {
        border-bottom: none;
        border-left: 2px dotted #b8b8b8;
        height: 100%;
        width: 1px;
    }
}



/* --- Container Frame --- */
.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.all-services-section {
    padding: 90px 0;
    background-color: #fcfcfc;
}

/* --- Corporate Section Header Area --- */
.services-main-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 65px auto;
}

.services-tagline {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #d4af37;
    /* Core Gold Accent */
    display: block;
    margin-bottom: 12px;
}

.services-title {
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-title span {
    color: #d4af37;
    font-weight: 400;
}

.services-underline {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 18px auto;
}

.services-lead {
    font-size: 15px;
    color: #666666;
    font-weight: 400;
}

/* --- Clean 3-Column Service Grid Framework --- */
.services-individual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Single Service Card Master Layout --- */
.indiv-service-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Image Wrapper and Sizing Context */
.indiv-img-frame {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background-color: #111111;
}

.indiv-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* --- Division Department Color Tags --- */
.division-badge,
.division-badge-infra,
.division-badge-interior,
.division-badge-urban {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 12px;
    letter-spacing: 1px;
    z-index: 2;
}

.division-badge {
    background-color: #111111;
}

/* Architecture - Classic Jet Black */
.division-badge-infra {
    background-color: #294a63;
}

/* Infrastructure - Deep Engineering Blue */
.division-badge-interior {
    background-color: #5c4433;
}

/* Interiors - Luxury Muted Walnut */
.division-badge-urban {
    background-color: #1f4228;
}

/* Urban Development - Forest Land Green */

/* Card Bottom Content Area */
.indiv-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    transition: all 0.4s ease;
}

.indiv-title-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.indiv-title-row i {
    font-size: 20px;
    color: #d4af37;
    margin-right: 12px;
    transition: transform 0.4s ease;
}

.indiv-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.3px;
}

.indiv-body p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
}

/* --- Advanced Hardware-Accelerated Hover Animations --- */
.indiv-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: #dddddd;
}

.indiv-service-card:hover .indiv-img-frame img {
    transform: scale(1.10);
}

.indiv-service-card:hover .indiv-body {
    background-color: #fafafa;
}

.indiv-service-card:hover .indiv-title-row i {
    transform: scale(1.15);
}

/* --- Perfect Responsive Media Breakpoints --- */
@media (max-width: 1024px) {
    .services-individual-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Scales from 3 columns down into an elegant 2-column grid layout */
        gap: 25px;
    }

    .services-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .all-services-section {
        padding: 65px 0;
    }

    .services-main-header {
        margin-bottom: 45px;
    }

    .services-title {
        font-size: 26px;
    }

    .indiv-img-frame {
        height: 160px;
    }
}

@media (max-width: 600px) {
    .services-individual-grid {
        grid-template-columns: 1fr;
        /* Formats seamlessly into a single clean column on mobile screens */
        max-width: 420px;
        margin: 0 auto;
    }
}



/* CONTACT SECTION */

.cu-section {
    padding: 90px 20px;
    background: #ffffff;
}

.cu-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.cu-heading .cu-subtitle {
    color: #c89b53;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cu-heading .cu-title {
    color: #141436;
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
}

.cu-heading .cu-description {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.cu-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.cu-info {
    flex: 1;
}

.cu-info .cu-info-title {
    color: #141436;
    font-size: 32px;
    margin-bottom: 35px;
}

.cu-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.cu-info-item h4 {
    color: #141436;
    margin-bottom: 4px;
    font-size: 16px;
}

.cu-info-item p {
    color: #666;
    margin: 0;
}

/* ICON */

.cu-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(200, 155, 83, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cu-icon i {
    font-size: 18px;
    color: #c89b53;
    line-height: 1;
}

/* SOCIAL */

.cu-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.cu-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0b1a30;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cu-social a i {
    font-size: 16px;
}

.cu-social a:hover {
    background: #c89b53;
    transform: translateY(-3px);
}

/* FORM */

.cu-form-area {
    flex: 1.4;
}

.cu-row {
    display: flex;
    gap: 15px;
}

.cu-row input {
    flex: 1;
}

.cu-form-area input,
.cu-form-area textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    margin-bottom: 15px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

.cu-form-area input:focus,
.cu-form-area textarea:focus {
    border-color: #c89b53;
    box-shadow: 0 0 0 3px rgba(200, 155, 83, 0.15);
}

.cu-btn {
    background: #c89b53;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cu-btn:hover {
    background: #0b1a30;
}

/* FONT AWESOME FIX */

.fab,
.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.fas,
.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.far,
.fa-regular {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .cu-wrapper {
        flex-direction: column;
    }

    .cu-row {
        flex-direction: column;
        gap: 0;
    }

    .cu-heading .cu-title {
        font-size: 34px;
    }
}
.cu-section {
    position: relative;
    padding: 90px 20px;
    background: #fff;
    overflow: hidden;
    z-index: 1;
}

/* Background Image */
.cu-section::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -50px;

    width: 700px;
    height: 700px;

    background: url("Assets/img/footer-bg.png") no-repeat center;
    background-size: contain;

    opacity: 0.12;
    z-index: -1;

    animation: footerBgFloat 8s ease-in-out infinite;
}

/* Animation */
@keyframes footerBgFloat {

    0% {
        transform: translateY(80px) scale(0.7);
        opacity: 0;
    }

    20% {
        opacity: 0.12;
    }

    50% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }

    100% {
        transform: translateY(-40px) scale(1.15);
        opacity: 0;
    }
}

.cu-section::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: 0;

    width: 600px;
    height: 600px;

    background: url("Assets/img/footer-bg.png") no-repeat center;
    background-size: contain;

    opacity: 0.08;
    z-index: -1;

    animation: bloomAnimation 12s linear infinite;
}

@keyframes bloomAnimation {

    0% {
        transform: translateY(120px) scale(0.4) rotate(0deg);
        opacity: 0;
    }

    25% {
        opacity: 0.08;
    }

    50% {
        transform: translateY(0) scale(1) rotate(3deg);
        opacity: 0.15;
    }

    75% {
        opacity: 0.08;
    }

    100% {
        transform: translateY(-80px) scale(1.3) rotate(-3deg);
        opacity: 0;
    }
}


.cu-form-area {
    position: relative;
    z-index: 1;
}

.cu-form-area::before {
    content: "";
    position: absolute;
    inset: -80px;

    background: url("../img/Architecture.jpg") no-repeat center;
    background-size: contain;

    opacity: 0.08;
    z-index: -1;

    animation: formBgMove 10s ease-in-out infinite;
}

@keyframes formBgMove {
    0% {
        transform: translateY(80px) scale(0.7);
    }
    50% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-50px) scale(1.15);
    }
}
/* ==========================
   VALEIN GROUP FOOTER
========================== */

.vg-footer {
    position: relative;
    background: #071324;
    color: #ffffff;
    padding-top: 70px;
    overflow: hidden;
}

/* Right Side Architecture Background Image */
.vg-footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background: url('../img/footer-bg.png') no-repeat right center;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

/* Content Layer */
.vg-footer-container,
.vg-footer-bottom {
    position: relative;
    z-index: 2;
}

.vg-footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 30px 50px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.vg-footer-left {
    flex: 2;
}

.vg-footer-logo {
   border-radius: 63px;
    background-color: white;
    max-height: 84px;
    margin-bottom: 25px;
}

.vg-footer-desc {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

.vg-social-links {
    display: flex;
    gap: 12px;
}

.vg-social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vg-social-links a:hover {
    background: #c89b53;
    border-color: #c89b53;
    transform: translateY(-3px);
}

.vg-footer-right {
    flex: 1;
}

.vg-footer-right h4 {
    color: #c89b53;
    font-size: 20px;
    margin-bottom: 25px;
}

.vg-footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vg-footer-right ul li {
    margin-bottom: 12px;
}

.vg-footer-right ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vg-footer-right ul li a:hover {
    color: #c89b53;
    padding-left: 5px;
}

.vg-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 20px;
}

.vg-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.7;
}

.vg-footer-bottom a {
    color: #c89b53;
    text-decoration: none;
    font-weight: 600;
}

.vg-footer-bottom a:hover {
    color: #ffffff;
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 991px) {

    .vg-footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .vg-footer-right {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .vg-footer {
        padding-top: 50px;
    }

    .vg-footer::after {
        width: 250px;
        opacity: 0.08;
    }

    .vg-footer-container {
        padding: 0 20px 40px;
    }

    .vg-footer-bottom {
        padding: 15px;
    }

    .vg-footer-logo {
        max-height: 55px;
    }
}

/* SCROLL ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}


#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #c89b53;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(30px);
    transition: all .4s cubic-bezier(.22, 1, .36, 1);

    box-shadow:
        0 10px 30px rgba(200, 155, 83, .35);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: #071324;
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .25);
}

#backToTop i {
    transition: transform .3s ease;
}

#backToTop:hover i {
    transform: translateY(-3px);
}

#backToTop::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: #c89b53;
    opacity: .25;
    filter: blur(15px);
    z-index: -1;
}


#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader video {
    width: 250px;
    height: auto;
    object-fit: contain;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

#preloader video {
    width: 450px;
    max-width: 80vw;
}
/* Section Layout */
.prosection {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333333;
  font-family: sans-serif;
}

/* Grid System - Desktop Default (3 Columns) */
.image-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Image Container & Hover Effects */
.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px; /* Smooth, modern corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #000;
  cursor: pointer;
  
  /* Smooth transition for the container shadow */
  transition: box-shadow 0.4s ease;

  /* Initial Page Load Animation */
  animation: fadeInUp 0.6s ease backwards;
}

/* Staggered load effect for the grid items */
.showcase-item:nth-child(1) { animation-delay: 0.1s; }
.showcase-item:nth-child(2) { animation-delay: 0.2s; }
.showcase-item:nth-child(3) { animation-delay: 0.3s; }

.showcase-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  /* Multi-stage timing function for premium fluid movement */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

/* --- Premium Shine Effect --- */
.showcase-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 1;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
  transform: skewX(-25deg);
}

/* --- COMBINED HOVER ACTIONS --- */
.showcase-item:hover {
  /* Deepens shadow to create a "lifting" effect */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.showcase-item:hover img {
  transform: scale(1.06);
  opacity: 0.9; /* Slight dimming enhances the cinematic look */
}

/* Triggers the shine flash across the image */
.showcase-item:hover::before {
  animation: shine 0.75s forward;
}

/* --- KEYFRAMES --- */
@keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile View (2 Columns) */
@media (max-width: 768px) {
  .prosection {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .image-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .showcase-item img {
    height: 180px;
  }
}

/* Extra Small Mobile View */
@media (max-width: 400px) {
  .image-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}