:root {
    --primary-brand: #C01E27;
    --primary-light: #D92B35;
    --text-dark: #0D1C33;
    /* Deeper high-contrast gray/black */
    --text-light: #4b5563;
    /* Sleek subtext gray */
    --text-muted: #6b7280;
    --bg-white: #ffffff;
    --bg-grey: #f9fafb;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    --max-width: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
}

h2 {
    font-size: 42px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------
   BUTTONS
------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: var(--primary-brand);
    color: white;
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-brand);
    cursor: pointer;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.editorial-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--text-dark);
    color: white;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s ease;
    border: 1px solid var(--text-dark);
}

.editorial-btn:hover {
    background: white;
    color: var(--text-dark);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    transition: 0.6s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(192, 30, 39, 0.35);
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.btn:hover::before {
    left: 150%;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--text-dark);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* -------------------------------------
   HEADER & TOP BAR
------------------------------------- */
.top-bar {
    background: white;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo i {
    font-size: 24px;
    color: var(--primary-brand);
}

.top-contact {
    display: flex;
    gap: 40px;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-contact-item i {
    font-size: 18px;
    color: var(--primary-brand);
}

.top-contact-item div {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

.top-contact-item span {
    font-size: 10px;
    font-weight: 300;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

/* Main Nav */
.main-nav {
    position: sticky;
    top: -1px;
    z-index: 1000;
    background-color: rgba(192, 30, 39, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
}

.nav-links>li {
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links>li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links>li>a {
    display: block;
    padding: 16px 28px;
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 100;
    border-top: 3px solid var(--primary-light);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-links>li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-menu a {
    display: block;
    padding: 14px 24px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--bg-grey);
    color: var(--primary-brand);
    padding-left: 30px;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
}

/* -------------------------------------
   3D CUBE FLIP SCROLL ANIMATIONS
------------------------------------- */
.fc-container,
.fc-ribbon,
.fc-services,
.fc-about,
.fc-banner,
.fc-accordion-sec,
.fc-double-banner,
.fc-clients,
.fc-bot-banner,
.product-card,
.fc-service-card,
.ledger-row {
    perspective: 1500px;
}

.cube-flip,
.fade-up-element {
    opacity: 1;
    clip-path: inset(20% 0 0 0);
    transform: translateY(40px) perspective(1000px) rotateX(-10deg);
    transition: 
        transform 1s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.8s ease-out,
        clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity, clip-path;
}

.cube-flip.visible,
.fade-up-element.visible {
    opacity: 1 !important;
    clip-path: inset(0 0 0 0) !important;
    transform: translateY(0) rotateX(0deg) !important;
    visibility: visible !important;
}

/* Ensure visibility by default if animations are removed */
.cube-flip, .fade-up-element {
    opacity: 1; /* Was 0, now 1 to prevent white screen if JS fails */
    visibility: visible;
}

/* Stagger transitions for grids based on structural nth-child hooks */
.product-card:nth-child(2) {
    transition-delay: 0.1s;
}

.product-card:nth-child(3) {
    transition-delay: 0.2s;
}

.benefit-item:nth-child(2) {
    transition-delay: 0.1s;
}

.benefit-item:nth-child(3) {
    transition-delay: 0.2s;
}

.benefit-item:nth-child(4) {
    transition-delay: 0.3s;
}

.benefit-item:nth-child(5) {
    transition-delay: 0.4s;
}

.benefit-item:nth-child(6) {
    transition-delay: 0.5s;
}

.gallery-layout img:nth-child(2) {
    transition-delay: 0.1s;
}

.fc-service-card:nth-child(1) { transition-delay: 0.1s; }
.fc-service-card:nth-child(2) { transition-delay: 0.2s; }
.fc-service-card:nth-child(3) { transition-delay: 0.3s; }
.fc-service-card:nth-child(4) { transition-delay: 0.4s; }
.fc-service-card:nth-child(5) { transition-delay: 0.5s; }
.fc-service-card:nth-child(6) { transition-delay: 0.6s; }

.fc-ribbon-item:nth-child(1) { transition-delay: 0.1s; }
.fc-ribbon-item:nth-child(2) { transition-delay: 0.2s; }
.fc-ribbon-item:nth-child(3) { transition-delay: 0.3s; }
.fc-ribbon-item:nth-child(4) { transition-delay: 0.4s; }

.gallery-layout img:nth-child(3) {
    transition-delay: 0.2s;
}

.gallery-layout img:nth-child(4) {
    transition-delay: 0.3s;
}

.gallery-layout img:nth-child(5) {
    transition-delay: 0.4s;
}

/* -------------------------------------
   PREMIUM EDITORIAL HERO
------------------------------------- */
.premium-hero {
    background-color: #f7f6f2;
    /* Elegant warm stone */
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}

.hero-top-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 2px;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 20px;
    margin-bottom: 80px;
}

.mega-title {
    font-size: 8vw;
    line-height: 0.85;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.mega-title i {
    font-family: 'Playfair Display', serif;
    /* Or keep primary, italicized */
    font-weight: 300;
    color: var(--primary-brand);
    letter-spacing: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    background: var(--text-dark);
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: grayscale(20%) contrast(1.1);
    transform: scale(1.05);
    transition: 10s ease-out;
}

.premium-hero:hover .hero-image-wrapper img {
    transform: scale(1);
}

.hero-caption {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px 30px;
    max-width: 400px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-brand);
}

/* -------------------------------------
   GLASS BADGES (MODERN HERO)
------------------------------------- */
.hero-glass-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1100px) {
    .hero-glass-badges {
        display: none;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 4px solid var(--primary-brand);
    padding: 24px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-radius: 2px;
    transform: translateX(50px);
    opacity: 0;
    min-width: 320px;
    animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.glass-card:nth-child(2) {
    animation-delay: 0.8s;
}

.glass-icon {
    width: 48px;
    height: 48px;
    background: rgba(192, 30, 39, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.glass-card i {
    font-size: 20px;
    color: #E63946;
}

.glass-card strong {
    display: block;
    font-size: 19px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.glass-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* -------------------------------------
   SECTION SPACING & TITLES Global
------------------------------------- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary-brand);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-title p {
    max-width: 600px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 auto;
}

/* -------------------------------------
   TRUSTED BENEFITS (Professional Layout)
------------------------------------- */
.benefits-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(192, 30, 39, 0.05);
    color: var(--primary-brand);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--primary-brand);
    border-color: var(--primary-brand);
    box-shadow: 0 10px 25px rgba(192, 30, 39, 0.2);
}

.benefit-icon i {
    color: var(--primary-brand);
    font-size: 24px;
    transition: 0.3s;
}

.benefit-item:hover .benefit-icon i {
    color: white;
}

.benefit-text h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 95%;
    margin: 0;
}

/* -------------------------------------
   ABOUT US SECTION (Professional)
------------------------------------- */
.single-about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-bracket {
    position: relative;
    padding: 20px;
    overflow: visible;
}

.img-bracket::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60%;
    height: 60%;
    background: repeating-linear-gradient(-45deg, var(--primary-brand), var(--primary-brand) 2px, transparent 2px, transparent 15px);
    z-index: 0;
}

.img-bracket::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40%;
    height: 40%;
    background: repeating-linear-gradient(45deg, var(--text-muted), var(--text-muted) 2px, transparent 2px, transparent 15px);
    z-index: 0;
    transition: 0.5s ease;
}

.img-bracket img {
    width: 100%;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.8s ease;
    border-radius: 4px;
}

.about-split:hover .img-bracket img {
    transform: scale(1.02);
}

.about-split p {
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--text-light);
}

/* Vision & Mission as intersecting layout boxes */
.vision-mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 15;
    transform: translateY(60px);
}

.vm-card {
    background: white;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--primary-brand);
    transition: 0.3s;
    border-radius: 4px;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.vm-card i {
    font-size: 44px;
    color: var(--primary-brand);
    margin-bottom: 24px;
}

/* Stats Overlay */
.stats-overlay {
    background: url('../images/hero.png') center/cover fixed;
    padding: calc(8vw + 60px) 0 100px 0;
    position: relative;
    margin-top: 60px;
    clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 100%);
}

.stats-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.92);
}

.stats-flex {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    text-align: left;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 50px;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.stat-box:last-child {
    border: none;
    padding-right: 0;
}

.stat-box i {
    font-size: 45px;
    color: var(--primary-brand);
    opacity: 0.7;
}

.stat-box h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 600;
}

.stat-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* -------------------------------------
   PRODUCTS & CHOPPED EDGES
------------------------------------- */
.products-section {
    background-color: #171d24;
    padding: 160px 0 120px;
    color: white;
    position: relative;
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -5vw;
    /* Overlap previous section seamlessly */
}

.products-section .section-title h2 {
    color: white;
}

.products-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.product-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: white;
    padding: 15px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35px), calc(100% - 35px) 100%, 0 100%);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    margin-bottom: -40px;
    filter: brightness(0.95);
    transition: 0.4s;
}

.product-card:hover img {
    filter: brightness(1.05);
}

.product-info {
    background: white;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: var(--text-dark);
}

/* -------------------------------------
   CONTACT
------------------------------------- */
.contact-page {
    padding: 120px 0;
    background: var(--bg-white);
}

.contact-top-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-card .icon {
    width: 64px;
    height: 64px;
    background: var(--primary-brand);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-form-box {
    background: white;
    border: 1px solid #f3f4f6;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    font-family: var(--font-secondary);
    outline: none;
    font-size: 15px;
    background: #fafafa;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary-brand);
    background: white;
    box-shadow: 0 0 0 4px rgba(192, 30, 39, 0.05);
}

textarea.form-control {
    height: 160px;
    resize: none;
    margin-bottom: 24px;
}

.map-wide iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
    filter: grayscale(100%) contrast(110%);
}

/* -------------------------------------
   FOOTER
------------------------------------- */
footer {
    background-color: #111;
    background-image: repeating-linear-gradient(90deg, #181818 0px, #181818 30px, rgba(13, 13, 13, 0.4) 30px, rgba(13, 13, 13, 0.4) 32px);
    color: white;
    padding-top: calc(100px + 5vw);
    padding-bottom: 0;
    position: relative;
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -5vw;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 100px;
}

.footer-logo {
    font-size: 24px;
    font-family: var(--font-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.5px;
}

.footer-logo i {
    color: var(--primary-brand);
    font-size: 28px;
}

.footer-desc {
    font-size: 14px;
    color: #a1a1aa;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 90%;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 2px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-brand);
    border-color: var(--primary-brand);
    transform: translateY(-3px);
}

.footer-widget h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #a1a1aa;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    color: var(--primary-brand);
    font-size: 12px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-brand);
    font-size: 18px;
    margin-top: 2px;
}

.footer-contact strong {
    display: block;
    color: white;
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-bottom {
    background: var(--primary-brand);
    padding: 24px 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
    text-transform: none;
}

.footer-credits a {
    font-weight: 600;
    color: inherit;
    text-decoration: none;
}

.footer-credits img {
    height: 24px;
    width: auto;
}

/* PROJECT GALLERY ENHANCEMENTS */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #eee;
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    color: #444;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-brand);
    color: white;
    border-color: var(--primary-brand);
    box-shadow: 0 10px 20px rgba(192,30,39,0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #000;
}

/* Masonry variations */
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.85;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(13, 28, 51, 0.9) 0%, transparent 70%);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay span {
    color: var(--primary-brand);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.gallery-overlay h4 {
    color: white;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

/* Industrial Brackets for Gallery */
.gallery-item::before, .gallery-item::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-brand);
    z-index: 10;
    opacity: 0;
    transition: 0.5s;
}

.gallery-item::before { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.gallery-item::after { bottom: 20px; right: 20px; border-left: none; border-top: none; }

.gallery-item:hover::before, .gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 1100px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1) rotate(5deg);
}

/* -------------------------------------
   INNER PAGE HERO SECTIONS
------------------------------------- */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    /* Header is sticky over it */
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.8) 100%);
    z-index: 1;
}

.page-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 60px;
}

.page-hero h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.breadcrumbs {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumbs a {
    color: white;
    transition: 0.3s;
}

.breadcrumbs a:hover {
    color: var(--primary-brand);
}

/* -------------------------------------
   FC PREMIUM LAYOUT SYSTEM
------------------------------------- */
.fc-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fc-subtext {
    font-size: 13px;
    color: var(--primary-brand);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.fc-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.btn-fc-outline {
    border: 1px solid white;
    color: white;
    padding: 14px 30px;
    font-size: 14px;
    transition: 0.3s;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-fc-outline:hover {
    background: white;
    color: var(--text-dark);
}

.btn-fc-dark {
    background: var(--text-dark);
    color: white;
    padding: 16px 36px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.3s;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-fc-dark:hover {
    background: var(--primary-brand);
}


/* -------------------------------------
   COMPONENTS & FLOATING ASSETS
------------------------------------- */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 10000;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1) rotate(10deg);
    background: #128C7E;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* SAUDI VISION 2030 SECTION */
.fc-vision-2030 {
    position: relative;
    padding: 120px 0;
    background: url('../images/riyadhbirdeye.webp') center/cover fixed;
    color: white;
    overflow: hidden;
}

.fc-vision-2030::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(13, 28, 51, 0.98), rgba(13, 28, 51, 0.8));
    z-index: 1;
}

.fc-vision-2030 .fc-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.vision-text {
    flex: 1;
}

.vision-text h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
}

.vision-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    max-width: 800px;
}

.vision-logo {
    width: 280px !important;
    height: auto !important;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transition: 0.5s ease;
}

.fc-vision-2030:hover .vision-logo {
    transform: translateY(-10px);
}

/* -------------------------------------
   MASTER 2-TIER HEADER (PER IMAGE)
------------------------------------- */
.fc-master-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: white;
    /* Prevents visual gaps */
}

/* Tier 1: White Info Bar */
.fc-header-top {
    background: white;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.fc-header-top .fc-logo {
    display: flex;
    align-items: center;
    transition: 0.3s;
    margin-right: 50px;
}

.fc-header-top .fc-logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.fc-header-top .fc-logo:hover {
    transform: scale(1.02);
}

.fc-info-badges {
    display: flex;
    gap: 40px;
}

.fc-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid #eee;
    padding-left: 30px;
}

.fc-info-item:first-child {
    border-left: none;
    padding-left: 0;
}

.fc-info-item i {
    width: 45px;
    height: 45px;
    background: rgba(13, 28, 51, 0.04);
    color: var(--primary-brand);
    /* Replaced green with Brand Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.4s;
}

.fc-info-item:hover i {
    background: var(--primary-brand);
    color: white;
    transform: rotateY(180deg);
}

.fc-info-text {
    display: flex;
    flex-direction: column;
}

.fc-info-text span {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: #888;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.fc-info-text strong {
    font-size: 15px;
    color: #0D1C33;
    font-weight: 600;
}

/* Tier 2: Navy Nav Bar */
.fc-navbar {
    background: #0D1C33;
    /* Dark Navy to match branding, replaced green */
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fc-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.fc-nav-links {
    display: flex;
    list-style: none;
    width: 100%;
}

.fc-nav-links>li {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.fc-nav-links>li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-nav-links a {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fc-nav-links>li>a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.fc-nav-links a:hover,
.fc-nav-links a.active {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.fc-nav-links>li>a:hover::before,
.fc-nav-links>li>a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Services Dropdown */
.fc-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0D1C33;
    min-width: 280px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--primary-brand);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
    z-index: 100;
}

.fc-dropdown:hover .fc-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fc-dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fc-dropdown-menu li:last-child {
    border-bottom: none;
}

.fc-dropdown-menu a {
    padding: 15px 30px;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.fc-dropdown-menu a:hover {
    padding-left: 40px;
    /* Slight indent hover effect */
    background: rgba(255, 255, 255, 0.08);
}

/* FC HERO */
.fc-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background: #0D1B2A;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 4s linear;
    transform: scale(1) translateX(0);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.15) translateX(1%);
}

.fc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.6) 100%);
    z-index: 5;
}

.fc-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.fc-hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.fc-hero-text-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.fc-hero-text-side h1 {
    font-size: 75px;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 40px;
    color: white;
    letter-spacing: -2px;
}

.fc-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.fc-hero-tags span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.fc-hero-tags span:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--primary-brand);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* -------------------------------------
   3D CRANE & CONTAINER SCENE
------------------------------------- */
.fc-hero-3d-side {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    z-index: 20;
}

.crane-assembly {
    position: relative;
    animation: lift-drop 6s ease-in-out infinite;
    transform-style: preserve-3d;
    margin-top: 100px;
}

.crane-boom {
    position: absolute;
    top: -250px;
    left: -100px;
    width: 600px;
    height: 18px;
    background: repeating-linear-gradient(45deg, #fca311, #fca311 20px, #111 20px, #111 40px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.crane-cable {
    position: absolute;
    top: -232px;
    left: 50%;
    width: 5px;
    height: 250px;
    background: linear-gradient(to right, #444, #888, #444);
    transform: translateX(-50%);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.crane-hook {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    border: 6px solid #fca311;
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.cab.float-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.2;
    filter: none;
    animation: floatAnim 30s infinite linear;
}

.cable-strap {
    position: absolute;
    width: 3px;
    height: 90px;
    background: #bbb;
    bottom: -100px;
    transform-origin: top center;
}

.strap-1 {
    left: 50%;
    transform: rotate(35deg);
}

.strap-2 {
    left: 50%;
    transform: rotate(-35deg);
}

.cube-model {
    width: 280px;
    height: 110px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-box 12s ease-in-out infinite;
    margin-top: 15px;
}

.cube-face {
    position: absolute;
    border: 2px solid rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.7);
}

.cube-face.front {
    width: 280px;
    height: 110px;
    transform: translateZ(60px);
    background: var(--primary-brand);
}

.cube-face.back {
    width: 280px;
    height: 110px;
    transform: rotateY(180deg) translateZ(60px);
    background: #911218;
}

.cube-face.right {
    width: 120px;
    height: 110px;
    left: 80px;
    transform: rotateY(90deg) translateZ(140px);
    background: #b81b23;
}

.cube-face.left {
    width: 120px;
    height: 110px;
    left: 80px;
    transform: rotateY(-90deg) translateZ(140px);
    background: #690c12;
}

.cube-face.top {
    width: 280px;
    height: 120px;
    top: -5px;
    transform: rotateX(90deg) translateZ(55px);
    background: #e32631;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cube-face.bottom {
    width: 280px;
    height: 120px;
    top: -5px;
    transform: rotateX(-90deg) translateZ(55px);
    background: #3b070a;
    box-shadow: 0 100px 100px rgba(0, 0, 0, 0.8);
}

.cube-face.front,
.cube-face.back,
.cube-face.left,
.cube-face.right {
    background-image: repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(0, 0, 0, 0.2) 15px, rgba(0, 0, 0, 0.2) 20px);
}

@keyframes lift-drop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-35px);
    }
}

@keyframes rotate-box {

    0%,
    100% {
        transform: rotateY(35deg) rotateX(-12deg) rotateZ(-2deg);
    }

    50% {
        transform: rotateY(45deg) rotateX(-8deg) rotateZ(2deg);
    }
}

@media (max-width: 1000px) {
    .fc-hero-split {
        flex-direction: column;
        text-align: center;
    }

    .fc-hero-tags {
        justify-content: center;
    }

    .fc-hero-3d-side {
        margin-top: 50px;
        transform: scale(0.8);
    }
}

/* RIBBON */
.fc-ribbon {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 10;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
}

.fc-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.fc-ribbon-item {
    padding: 30px 25px;
    border-radius: 2px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* Custom Lined Border with Gaps */
    background-image: 
        linear-gradient(to right, rgba(13, 28, 51, 0.2) 60%, transparent 60%), 
        linear-gradient(to bottom, rgba(13, 28, 51, 0.2) 60%, transparent 60%), 
        linear-gradient(to right, rgba(13, 28, 51, 0.2) 60%, transparent 60%), 
        linear-gradient(to bottom, rgba(13, 28, 51, 0.2) 60%, transparent 60%);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 25px 1.5px, 1.5px 25px, 25px 1.5px, 1.5px 25px;
}

.fc-ribbon-item:hover {
    background-image: 
        linear-gradient(to right, var(--primary-brand) 60%, transparent 60%), 
        linear-gradient(to bottom, var(--primary-brand) 60%, transparent 60%), 
        linear-gradient(to right, var(--primary-brand) 60%, transparent 60%), 
        linear-gradient(to bottom, var(--primary-brand) 60%, transparent 60%);
    background-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.fc-ribbon-icon i {
    font-size: 32px;
    color: #0D1C33;
    margin-bottom: 24px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fc-ribbon-item:hover .fc-ribbon-icon i {
    color: var(--primary-brand);
    transform: scale(1.2) translateY(-10px);
}

.fc-ribbon-item h5 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
}

.fc-ribbon-item p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.7;
}

/* SERVICES */
.fc-services {
    background: #1a1e23;
    background-image: radial-gradient(#2d333b 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 140px 0;
    color: white;
    position: relative;
    z-index: 10;
}

.fc-services h2 {
    color: white;
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.fc-services p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    font-size: 16px;
}

.fc-services-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fc-service-card {
    background: white;
    padding: 45px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    border: 1px solid transparent;
}

.fc-service-card span {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.fc-service-card i {
    font-size: 28px;
    color: var(--text-dark);
    transition: 0.4s;
}

.fc-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.fc-service-card:hover i {
    transform: translateX(10px);
    color: var(--primary-brand);
}

.fc-service-card.view-all {
    background: var(--primary-brand);
    color: white;
}

.fc-service-card.view-all i {
    color: white;
}

.fc-service-card.view-all:hover {
    background: #E63946;
}

/* ABOUT SPLIT */
.fc-about {
    padding: 120px 0;
    background: white;
    position: relative;
    z-index: 10;
}

.fc-about-image {
    position: relative;
}

.fc-about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.fc-image-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    backdrop-filter: blur(10px);
}

.fc-stat {
    padding: 25px;
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-stat h3 {
    font-size: 32px;
    margin-bottom: 5px;
    color: white;
    font-weight: 600;
}

.fc-stat p {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-brand);
    margin: 0;
}

.fc-about-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
}

/* CREATIVE ABOUT UPGRADE */
.fc-about-image-wrapper {
    position: relative;
    padding: 30px;
}

.industrial-bracket {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary-brand);
    z-index: 1;
}

.industrial-bracket.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.industrial-bracket.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.fc-about-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.fc-about-image img {
    width: 100%;
    transition: 0.6s transform cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fc-about-image:hover img {
    transform: scale(1.05);
}

.floating-stat-badge {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 10;
    border-left: 5px solid var(--primary-brand);
    transform: translateX(30px);
}

.badge-icon i {
    font-size: 24px;
    color: var(--primary-brand);
}

.badge-text strong {
    display: block;
    font-size: 20px;
    color: var(--text-dark);
}

.badge-text span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.experience-seal {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 11;
}

.experience-seal svg {
    width: 100%;
    height: 100%;
    animation: rotateSeal 20s linear infinite;
}

.seal-inner {
    position: absolute;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

@keyframes rotateSeal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.creative-title {
    font-size: 48px !important;
    letter-spacing: -1.5px;
    margin-bottom: 25px !important;
}

.core-strengths-list {
    margin: 40px 0;
    display: grid;
    gap: 25px;
}

.strength-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.strength-item i {
    width: 45px;
    height: 45px;
    background: #f4f6f9;
    color: var(--primary-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 18px;
    flex-shrink: 0;
    transition: 0.3s;
}

.strength-item:hover i {
    background: var(--primary-brand);
    color: white;
}

.strength-item h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.strength-item p {
    font-size: 14px;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.about-action-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 10px;
}

.trusted-by {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.trusted-by img {
    height: 40px;
    width: auto;
    opacity: 0.9;
    object-fit: contain;
}

.trusted-by span {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #666;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .floating-stat-badge {
        transform: none;
        top: auto;
        bottom: 20px;
        right: 20px;
    }
    .experience-seal {
        display: none;
    }
    .about-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .trusted-by img {
        height: 35px !important;
    }
    
    .trusted-by span {
        font-size: 10px !important;
    }
}

.fc-about-text h2 strong {
    font-weight: 600;
}

.fc-about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* BANNER */
.fc-banner {
    height: 400px;
    background: url('../images/site-office.png') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    z-index: 10;
}

.fc-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.7) 100%);
    z-index: 1;
}

.fc-banner-content {
    position: relative;
    z-index: 2;
    width: 60%;
}

.fc-banner-content h2 {
    color: #ffffff !important;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    opacity: 1 !important;
    visibility: visible !important;
}

.fc-banner-actions {
    display: flex;
    gap: 20px;
}

.fc-banner-logo {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 60px;
    font-weight: 600;
    opacity: 0.1;
    letter-spacing: 5px;
}

/* ACCORDION */
.fc-accordion-sec {
    background: #fdfdfd;
    padding: 120px 0;
    background-image: repeating-linear-gradient(45deg, #f5f5f5 25%, transparent 25%, transparent 75%, #f5f5f5 75%, #f5f5f5), repeating-linear-gradient(45deg, #f5f5f5 25%, #fdfdfd 25%, #fdfdfd 75%, #f5f5f5 75%, #f5f5f5);
    background-size: 80px 80px;
    background-attachment: fixed;
    position: relative;
    z-index: 10;
}

.fc-accordion-sec h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fc-acc-item {
    background: white;
    margin-bottom: 10px;
    padding: 25px 30px;
    border: 1px solid #ebebeb;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.fc-acc-item>span,
.fc-acc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 18px;
    width: 100%;
}

.fc-acc-item i {
    color: var(--primary-brand);
    font-size: 14px;
}

.fc-acc-body {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.fc-acc-item.active {
    border-left: 4px solid var(--primary-brand);
    padding-left: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fc-acc-item.active .fc-acc-body {
    max-height: 400px;
    margin-top: 15px;
    opacity: 1;
}

/* SPLIT BANNER */
.fc-double-banner {
    display: flex;
    height: 350px;
    background-color: #0D1C33;
    position: relative;
    z-index: 10;
}

.fc-split-banner {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-sp-overlay {
    background: rgba(13, 27, 42, 0.85);
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transition: 0.4s;
}

.fc-split-banner:hover .fc-sp-overlay {
    background: rgba(13, 27, 42, 0.7);
}

.fc-sp-overlay h3 {
    color: white;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* CLIENTS */
.fc-clients {
    padding: 120px 0;
    background: white;
    position: relative;
    z-index: 10;
}

.fc-client-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.fc-client-top h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.fc-stat-highlight {
    text-align: right;
}

.fc-stat-highlight strong {
    font-size: 32px;
    display: block;
    font-weight: 300;
    color: var(--text-dark);
}

.fc-stat-highlight span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.fc-client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.fc-client-grid i {
    font-size: 50px;
    color: #d1d5db;
    transition: 0.3s;
}

.fc-client-grid i:hover {
    color: var(--primary-brand);
    transform: scale(1.1);
}

/* BOT BANNER */
.fc-bot-banner {
    background: url('../images/hero.png') center/cover;
    padding: 120px 0 200px 0;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    z-index: 5;
}

.fc-bot-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.9);
    z-index: 1;
}

.fc-bot-banner .fc-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fc-bot-banner h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #ffffff !important;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
    opacity: 1 !important;
    visibility: visible !important;
}

.fc-bot-actions {
    text-align: right;
}

.fc-bot-actions p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

@media (max-width: 1000px) {
    .fc-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fc-ribbon-grid,
    .fc-client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-hero-content h1 {
        font-size: 48px;
    }

    .fc-services-cards {
        grid-template-columns: 1fr;
    }

    .fc-banner-content {
        width: 100%;
    }

    .fc-double-banner {
        flex-direction: column;
        height: auto;
    }

    .fc-split-banner {
        height: 300px;
    }

    .fc-bot-banner .fc-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: stretch;
    }

    .fc-bot-actions {
        text-align: center;
    }

    .fc-nav-container {
        padding: 15px 20px;
    }

    .fc-logo {
        font-size: 20px;
    }

    .fc-nav-links {
        display: none;
        flex-direction: column;
        background: #0D1C33;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 30px;
        gap: 20px;
        border-bottom: 2px solid var(--primary-brand);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .fc-nav-links.active {
        display: flex !important;
    }

    .fc-header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block !important;
        cursor: pointer;
        color: white !important;
    }
}

/* Responsive */
@media (max-width: 900px) {

    .nav-links,
    .top-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-grid,
    .about-split,
    .benefits-grid,
    .vision-mission-cards,
    .stats-flex,
    .product-slider,
    .contact-top-grid,
    .form-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .home-hero h1 {
        font-size: 40px;
    }
}

/* -------------------------------------
   PAGE LOADER & TRANSITION MECHANICS
------------------------------------- */
body {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

body.page-active {
    opacity: 1;
}

#page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #E63946;
    /* bright green for strong visibility */
    z-index: 999999;
    width: 0%;
    transition: width 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 0 10px #E63946, 0 0 5px #E63946;
    pointer-events: none;
}

/* -------------------------------------
   SAUDI VISION 2030 SECTION
------------------------------------- */
.fc-vision-2030 {
    position: relative;
    padding: 120px 0;
    background: url('../images/riyadhbirdeye.webp') center/cover no-repeat fixed;
    color: white;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    z-index: 10;
}

.fc-vision-2030::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 28, 51, 0.95) 0%, rgba(13, 28, 51, 0.4) 100%);
    z-index: 1;
}

.fc-vision-2030 .fc-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    text-align: left;
}

.vision-logo {
    width: 320px;
    margin: 0;
    flex-shrink: 0;
}

.vision-text {
    max-width: 700px;
    margin: 0;
}

.vision-text h2 {
    color: white;
    font-size: 64px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.vision-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

@media (max-width: 991px) {
    .fc-vision-2030 .fc-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .vision-logo {
        margin: 0 auto;
        width: 160px;
    }
    .vision-text {
        margin: 0 auto;
    }
    .vision-text h2 {
        font-size: 36px;
    }
}

/* Floating Decorative Shapes */
.floating-bg-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.2;
    filter: none;
    animation: floatAnim 30s infinite linear;
}

.shape-red {
    background: var(--primary-brand);
}

.shape-blue {
    background: var(--text-dark);
}

@keyframes floatAnim {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5vw, 10vh) rotate(120deg); }
    66% { transform: translate(-5vw, 5vh) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Project Gallery Grid */
.project-gallery-sec {
    background: #111;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0 100px;
    position: relative;
    z-index: 10;
    background: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 28, 51, 0.95) 10%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    opacity: 0;
    transition: 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--primary-brand);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    transform: translateY(15px);
    transition: 0.4s 0.1s ease;
}

.gallery-overlay h4 {
    color: white;
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    transform: translateY(15px);
    transition: 0.4s 0.2s ease;
}

.gallery-item:hover .gallery-overlay span,
.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* SERVICE PAGE ENHANCEMENTS */
.tech-specs-sec {
    padding: 80px 0;
    background: #fdfdfd;
}

.specs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table td {
    padding: 20px;
    font-size: 14px;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 35%;
    background: #f9f9f9;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    padding: 40px;
    border-left: 4px solid var(--primary-brand);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card i {
    font-size: 30px;
    color: var(--primary-brand);
    margin-bottom: 20px;
    display: block;
}

.advantage-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-ribbon-sec {
    background: #0d1c33;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.values-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.value-pill {
    background: rgba(255,255,255,0.05);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .specs-container, .advantages-grid {
        grid-template-columns: 1fr;
    }
}
.industrial-highlight-section, .industrial-cta-section { 
    position: relative; 
    padding: 140px 0; 
    background-color: #0D1C33; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    color: #ffffff !important; 
    overflow: hidden; 
    z-index: 10;
}

.industrial-highlight-section { 
    background-image: url('../images/site-office.png'); 
}

.industrial-cta-section { 
    background-image: url('../images/hero.png'); 
    padding-bottom: 240px; 
}

.industrial-overlay { 
    position: absolute; 
    inset: 0; 
    background: rgba(13, 27, 42, 0.9); 
    z-index: 1; 
}

.industrial-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.industrial-content { 
    flex: 1.2;
    text-align: left; 
}

.industrial-image-side {
    position: absolute;
    right: 0;
    bottom: -380px;
    z-index: 1;
}

.industrial-image-side img {
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
    opacity: 1 !important;
}

@media (max-width: 1200px) {
    .industrial-image-side {
        right: -250px;
    }
}

@media (max-width: 991px) {
    .industrial-image-side {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 40px;
    }
    .industrial-image-side img {
        max-width: 100%;
    }
}


.industrial-title { 
    color: #ffffff !important; 
    font-size: 48px; 
    font-weight: 600; 
    line-height: 1.15; 
    margin-bottom: 40px; 
    text-shadow: 4px 4px 20px rgba(0,0,0,1); 
    opacity: 1 !important; 
    visibility: visible !important; 
    transform: none !important; 
}

.industrial-btns { 
    display: flex; 
    gap: 20px; 
}

.industrial-btns .btn { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px; 
    font-size: 15px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.industrial-btns .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.industrial-btns .btn-outline:hover {
    background: #fff;
    color: #0D1C33;
}

/* ==========================================================================
   HEADER STRUCTURE FIXES (COMPATIBILITY)
   ========================================================================== */
.fc-nav-flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.fc-mobile-dropdown-trigger {
    display: none; /* Hidden on Desktop */
    padding: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
}

.pc-dropdown-arrow {
    font-size: 10px;
    margin-left: 8px;
}

/* ==========================================================================
   PRODUCTION-READY MOBILE RESPONSIVENESS OVERHAUL (320px - 991px)
   ========================================================================== */

@media (max-width: 991px) {
    /* 1. STRICT VIEWPORT & GLOBAL CONSTRAINTS */
    html, body {
        width: 100% !important;
        overflow-x: hidden !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Force all layout wrappers to bridge viewport boundaries safely */
    .container, .fc-container, .fc-master-header, .fc-header-top, 
    .fc-ribbon, .fc-hero, .fc-services, .fc-about, .fc-vision-2030,
    .industrial-highlight-section, .fc-accordion-sec, .fc-double-banner,
    .fc-bot-banner, footer, .footer-bottom, section, header, div {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Prevent any individual element from breaking the viewport */
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* 2. PREMIUM MOBILE HEADER & NAVIGATION */
    .fc-master-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 10000 !important;
        background: #fff !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }

    .fc-header-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 100px !important;
        padding: 0 20px !important;
        width: 100% !important;
        margin: 0 !important;
        background: #fff !important;
    }

    .fc-logo img {
        height: 75px !important;
        width: auto !important;
    }

    .fc-info-badges {
        display: none !important; /* Remove heavy desktop detail */
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 45px !important;
        height: 45px !important;
        background: var(--text-dark) !important;
        color: #fff !important;
        border-radius: 4px !important;
        font-size: 22px !important;
        cursor: pointer !important;
        transition: 0.3s ease !important;
        z-index: 10002 !important;
    }

    .mobile-menu-btn:active {
        transform: scale(0.9);
    }

    /* NAVIGATION DRAWER */
    .fc-navbar {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #0D1C33 !important;
        z-index: 10001 !important;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 100px 0 40px !important;
        box-shadow: -15px 0 50px rgba(0,0,0,0.6) !important;
    }

    .fc-navbar.active {
        right: 0 !important;
    }

    .fc-nav-container {
        width: 100% !important;
        padding: 0 !important;
    }

    .fc-nav-links {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .fc-nav-links li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    }

    .fc-nav-links li a {
        display: block !important;
        padding: 18px 30px !important;
        color: #fff !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    /* Dropdown UI in Mobile */
    .fc-dropdown-menu {
        position: static !important;
        display: none !important;
        background: rgba(255,255,255,0.05) !important;
        width: 100% !important;
        padding: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        transform: none !important;
        border-top: none !important;
    }

    .fc-dropdown-menu.active {
        display: block !important;
    }

    .fc-dropdown-menu li a {
        padding-left: 50px !important;
        font-size: 14px !important;
        text-transform: none !important;
        letter-spacing: 0.5px !important;
        opacity: 0.8 !important;
    }

    .fc-mobile-dropdown-trigger {
        display: flex !important;
        width: 60px !important;
        height: 60px !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255,255,255,0.08) !important;
        color: #fff !important;
    }

    .fc-nav-flex-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 3. HERO & PAGE TITLES */
    .fc-hero {
        padding-top: 80px !important; /* Header offset */
        height: auto !important;
        min-height: 80vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .fc-hero-content {
        padding: 60px 20px !important;
        text-align: center !important;
    }

    .fc-hero-text-side {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .fc-hero-text-side h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 25px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .fc-hero-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .fc-hero-tags span {
        font-size: 11px !important;
        padding: 6px 12px !important;
        background: rgba(255,255,255,0.1) !important;
        backdrop-filter: blur(5px) !important;
        margin: 0 !important;
    }

    /* 4. CONTENT SECTIONS & GRIDS */
    .fc-ribbon {
        padding: 40px 0 !important;
    }

    .fc-ribbon-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .fc-ribbon-item {
        text-align: center !important;
        align-items: center !important;
    }

    .fc-services {
        padding: 80px 0 !important;
    }

    .fc-services-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 40px !important;
    }

    .fc-service-card {
        padding: 25px !important;
        height: auto !important;
    }

    .fc-about {
        padding: 80px 0 !important;
    }

    .about-split, .fc-split-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 50px !important;
        text-align: center !important;
    }

    .fc-about-image-wrapper {
        padding: 15px !important;
    }

    .fc-about-image img {
        height: 300px !important;
        object-fit: cover !important;
    }

    .floating-stat-badge {
        position: relative !important;
        margin: 30px auto 0 !important;
        transform: none !important;
        left: auto !important;
        bottom: auto !important;
        width: fit-content !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }

    .experience-seal {
        display: none !important; /* Simplify mobile view */
    }

    .core-strengths-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin: 30px 0 !important;
    }

    .strength-item {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .about-action-row {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
    }

    /* INDUSTRIAL HIGHLIGHT */
    .industrial-highlight-section {
        padding: 80px 0 !important;
    }

    .industrial-flex {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
        padding: 0 20px !important;
    }

    .industrial-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 30px !important;
    }

    .industrial-btns {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .industrial-btns .btn {
        width: 100% !important;
        padding: 18px !important;
    }

    .industrial-image-side {
        display: none !important;
    }

    /* ACCORDION */
    .fc-acc-item {
        padding: 20px !important;
    }

    .fc-acc-top span {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }

    /* DOUBLE BANNER */
    .fc-double-banner {
        display: flex !important;
        flex-direction: column !important;
    }

    .fc-split-banner {
        height: 350px !important;
        width: 100% !important;
    }

    /* VISION 2030 */
    .fc-vision-2030 {
        padding: 60px 0 !important;
    }

    .fc-vision-2030 .fc-container {
        flex-direction: column !important;
        gap: 30px !important;
        align-items: center !important;
    }

    .vision-text {
        text-align: center !important;
    }

    .vision-text h2 {
        font-size: 30px !important;
    }

    .vision-logo {
        width: 150px !important;
    }

    /* BOT BANNER */
    .fc-bot-banner {
        padding: 60px 0 !important;
    }

    .fc-bot-banner .fc-container {
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center !important;
    }

    .fc-bot-banner h2 {
        font-size: 24px !important;
        line-height: 1.4 !important;
    }

    /* FOOTER */
    footer {
        padding-top: 60px !important;
    }

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

    .footer-widget h4 {
        margin-bottom: 20px !important;
        font-size: 20px !important;
    }

    .footer-bottom .container {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .footer-credits {
        margin-top: 10px !important;
    }

    /* 5. COMPONENTS & ASSETS */
    .btn, .btn-fc-dark, .btn-fc-outline {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 16px 25px !important;
        font-size: 14px !important;
    }

    .wa-float {
        width: 55px !important;
        height: 55px !important;
        bottom: 20px !important;
        right: 20px !important;
        font-size: 28px !important;
        z-index: 9999 !important;
    }

    /* 6. TYPOGRAPHY SCALING */
    h1 { font-size: 32px !important; line-height: 1.2 !important; }
    h2 { font-size: 28px !important; line-height: 1.2 !important; }
    h3 { font-size: 24px !important; line-height: 1.3 !important; }
    h4 { font-size: 20px !important; line-height: 1.4 !important; }
    p { font-size: 15px !important; line-height: 1.6 !important; }

    .fc-subtext {
        font-size: 12px !important;
        letter-spacing: 2px !important;
    }

    /* SPECIAL MOBILE HERO ENHANCEMENTS */
    .fc-hero {
        height: 85vh !important;
        text-align: center !important;
    }

    /* Animated Industrial Bottom Border */
    .fc-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary-brand), transparent);
        background-size: 200% 100%;
        animation: heroBorderMove 3s infinite linear !important;
        z-index: 20;
    }

    @keyframes heroBorderMove {
        0% { background-position: -100% 0; }
        100% { background-position: 100% 0; }
    }

    .page-hero {
        height: 60vh !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .page-hero-container {
        padding-top: 20px !important;
    }

    .page-hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .fc-hero-text-side {
        position: relative !important;
        padding: 0 10px !important;
    }

    .fc-hero-text-side h1 {
        font-size: 30px !important;
        text-shadow: 0 4px 10px rgba(0,0,0,0.5) !important;
        margin-bottom: 25px !important;
        min-height: 120px !important; /* Ensure space for typewriter */
    }

    .typewriter::after {
        content: "|";
        animation: blink 0.7s infinite;
        color: var(--primary-brand);
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }

    /* Animated Industrial Badge */
    .fc-hero-text-side::before {
        content: 'ESTABLISHED 2004';
        display: block !important;
        background: var(--primary-brand) !important;
        color: white !important;
        padding: 6px 16px !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        letter-spacing: 2px !important;
        border-radius: 50px !important;
        margin: 0 auto 20px !important;
        width: fit-content !important;
        box-shadow: 0 0 20px rgba(185, 28, 28, 0.45) !important;
        animation: heroBadgePulse 2s infinite ease-in-out !important;
    }

    @keyframes heroBadgePulse {
        0% { transform: scale(1); opacity: 0.9; }
        50% { transform: scale(1.1); opacity: 1; }
        100% { transform: scale(1); opacity: 0.9; }
    }

    .fc-hero-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .fc-hero-tags span {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(5px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        font-size: 10px !important;
        padding: 8px 15px !important;
        border-radius: 4px !important;
    }

    /* 7. ABOUT PAGE ENHANCEMENTS */
    .strength-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .vision-mission-cards {
        flex-direction: column !important;
    }

    .vm-card {
        padding: 50px 30px !important;
        text-align: center !important;
    }

    .vm-icon {
        margin: 0 auto 20px !important;
    }

    .vm-divider {
        width: 100% !important;
        height: 1px !important;
        margin: 0 !important;
    }

    /* FIX: Benefits grid - 1 column stack */
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }

    .benefits-section {
        padding: 60px 0 !important;
    }

    .benefit-item {
        padding: 25px !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 20px !important;
        background: white !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
        border-radius: 12px !important;
    }

    .benefit-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }

    /* 8. SERVICES PAGE SPECIFIC */
    .specs-container {
        grid-template-columns: 1fr !important;
    }

    .advantages-grid {
        grid-template-columns: 1fr !important;
    }

    .specs-table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
    }

    .specs-table tr {
        display: flex !important;
        flex-direction: column !important;
        border-bottom: 1px solid #eee !important;
        padding: 10px 0 !important;
    }

    .specs-table td {
        width: 100% !important;
        padding: 10px !important;
        text-align: left !important;
    }

    .specs-table td:first-child {
        background: #f1f1f1 !important;
        font-weight: 700 !important;
    }

    /* FIX: Remove floating shapes on mobile to prevent overflow and visual noise */
    .floating-bg-icons, .float-shape, .industrial-bracket {
        display: none !important;
    }

    /* Hero section slides should be contained */
    .hero-slide {
        background-position: center !important;
    }

    /* MOBILE VISION 2030 & WHATSAPP */
    .fc-vision-2030 {
        background-attachment: scroll !important;
        padding: 80px 0 !important;
    }

    .fc-vision-2030 .fc-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .vision-text h2 {
        font-size: 32px !important;
    }

    .vision-logo {
        width: 180px !important;
        margin: 0 auto !important;
    }

    .wa-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 28px !important;
    }
}

/* Specific Fix for smaller phones */
@media (max-width: 480px) {
    .fc-hero-text-side h1 {
        font-size: 28px !important;
    }
    .fc-logo img {
        height: 60px !important;
    }
    .fc-header-top {
        height: 90px !important;
    }
    .fc-navbar {
        width: 90% !important;
    }
}

/* Pixel Perfect Fixes for specific widths */
@media (min-width: 768px) and (max-width: 991px) {
    .fc-ribbon-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .fc-services-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}