:root {
    --primary-red: #c1121f;
    --dark-bg: #11151c;
    /* --light-bg: #fcfbfa; */
    --light-bg: #dba8790d;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --accent-green: #25D366;
    --border-color: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'montserrat';
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.section-subheading {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    border-left: 2px solid var(--primary-red);
    padding-left: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #f0f0f0;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.btn-dark:hover {
    background-color: #000;
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--white);
    /* width: 100%; */
}

.btn-red:hover {
    background-color: #a00f1a;
}

.btn-white {
    background-color: var(--white);
    color: var(--text-dark);
    width: 100%;
    margin-top: 1rem;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-with-arrow i {
    transition: transform 0.3s ease;
}

.btn-with-arrow:hover i {
    transform: translateX(5px);
}

/* Header & Mobile Menu */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 100;
    transition: background 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header>.logo-container,
.header>.menu-btn {
    padding: 0 1.5rem;
}

.header.scrolled {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled .logo-text h1,
.header.scrolled .menu-btn {
    color: var(--text-dark);
}

.header.scrolled .nav-btn {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.header.scrolled .desktop-nav a:not(.btn) {
    color: #000000;
    font-weight: 700;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 101;
}

.maple-leaf {
    width: 32px;
    height: 32px;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    color: var(--text-light);
    transition: color 0.3s;
}

.logo-text p {
    font-size: 0.5rem;
    color: #888;
    letter-spacing: 0.1em;
    margin-top: 0.1rem;
    font-weight: 500;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 101;
}

.desktop-nav {
    display: none;
}

/* Hidden on mobile */

/* Mobile Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--dark-bg);
    color: var(--white);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.open {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.menu-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    transition: opacity 0.3s;
}

.menu-link:hover {
    opacity: 0.7;
}

.menu-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    color: var(--text-light);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1542051812871-702e6eb00d28?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    width: 100%;
    max-width: 700px;
    min-height: 420px;
    /* Forces consistent height across slides */
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.line {
    height: 1px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.spec-sheet-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.spec-sheet-link:hover {
    color: var(--white);
}

/* Stats */
.stats-section {
    /* padding: 4rem 0; */
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #cb4549;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 500;
}

/* Certifications & Supplying */
.certifications-section {
    padding: 1rem 0 0rem;
    background-color: var(--white);
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.cert-list .dot {
    font-size: 0.5rem;
    color: #ccc;
}

.supplying-section {
    padding: 2rem 0 0rem;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 2.5rem;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #999;
    font-style: italic;
}

.client-logo.blue {
    color: #0077c8;
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-dots .dot {
    width: 30px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
}

.pagination-dots .dot.active {
    background-color: var(--primary-red);
}

/* Product Range Grid */
.product-range-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.product-card {
    padding: 2.5rem 1rem;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-card:nth-child(even) {
    background-color: var(--white);
}

.product-card i {
    font-size: 2.5rem;
    color: #555;
}

.product-card h3 {
    font-size: 1rem;
    font-weight: 500;
}

.explore-link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #888;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s;
}

.product-card:hover .explore-link {
    color: var(--primary-red);
}

/* About Shayay */
.about-section {
    padding: 5rem 0;
    background-color: var(--light-bg);

    border-top: 1px solid var(--border-color);
}

.about-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

/* Leadership */
.leadership-section {
    padding: 5rem 0;
    background-color: var(--white);

}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.leader-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.leader-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: #e5e5e5;
    display: block;
}

.leader-info {
    padding: 2rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    color: white;
}

.leader-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.leader-info p {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 500;
}

.founder-logo {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 400;
    color: #333;
    }

.founder-logo span {
    color: var(--primary-red);
}

/* What We Make */
.what-we-make-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.make-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.make-card {
    height: 450px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
    color: white;
    overflow: hidden;
    border-radius: 4px;
}

.make-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.make-card:hover img {
    transform: scale(1.05);
}

.make-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.make-content {
    position: relative;
    z-index: 3;
}

.make-tag {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #ddd;
}

.make-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.make-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 400px;
}

.white-link {
    color: white;
}

.make-card:hover .white-link {
    color: var(--primary-red);
}

/* Process */
.process-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.process-list {
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}

.process-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}

.process-item:hover {
    background-color: var(--white);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 4px;
    border-bottom-color: transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.process-icon {
    font-size: 2rem;
    color: #555;
    margin-right: 1.5rem;
}

.process-content {
    flex: 1;
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.process-num {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 500;
}

/* Split Contact Section */
.split-contact-section {
    display: grid;
    grid-template-columns: 1fr;
}

.spec-block {
    padding: 5rem 1.5rem;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.spec-card {
    background-color: #1a2530;
    color: white;
    padding: 2.5rem;
    border-radius: 4px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 37, 48, 0.2);
}

.spec-card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 1rem 0 2rem;
}

.spec-features {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.spec-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.5;
}

.spec-meta {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #888;
}

.contact-block {
    padding: 5rem 1.5rem;
    background-color: var(--dark-bg);
    color: white;
}

.text-white {
    color: white;
}

.text-light-gray {
    color: #aaa;
}

.contact-sub {
    color: #666;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #888;
    margin-top: 0.2rem;
}

.contact-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: #666;
}

.form-input:focus {
    outline: none;
    border-color: white;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background-color: #fff;
    color: white;
    border-top: 1px solid rgb(102 4 4 / 23%);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
}

.brand-tag {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: #888;
}

.footer-desc {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-cta {
    color: var(--primary-red);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s;
}

.footer-cta:hover {
    color: white;
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.95rem;
  color: #000000;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    font-size: 0.95rem;
    color: #000000;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.footer-contact i {
    color: #666;
    margin-top: 0.2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.made-in-uae {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.uae-flag {
    height: 12px;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background-color: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-wa-btn:hover {
    transform: scale(1.1);
}

/* =========================================================================
   MEDIA QUERIES FOR DESKTOP AND TABLET (RESPONSIVE)
   ========================================================================= */

@media (min-width: 768px) {

    /* Header */
    .menu-btn {
        display: none;
    }

    .header {
        padding: 0.6rem 0;
    }

    .header>.container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .desktop-nav a {
        color: var(--text-light);
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        transition: color 0.3s;
    }

    .desktop-nav a:hover {
        color: rgba(255, 255, 255, 0.7);
    }

    .desktop-nav a.btn {
        margin-right: 6px;
        padding: 0.75rem 1.5rem;
    }

    .header.scrolled .desktop-nav a:hover {
        color: var(--primary-red);
    }

    .header.scrolled .desktop-nav a.btn:hover {
        background-color: var(--text-dark);
        color: white;
    }

    /* Layouts */
    .section-title {
        font-size: 3rem;
    }

    .grid-layout-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    /* Hero */
    .hero {
        align-items: center;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 5rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: row;
        margin-bottom: 0;
    }

    .hero-footer {
        position: absolute;
        bottom: 3rem;
        left: 1.5rem;
        margin: 0;
        display: block;
        width: auto;
    }

    .spec-sheet-link {
        display: inline-flex;
    }

    /* Stats */
    .stats-section {
        /* padding: 5rem 0; */
    }

    .stats-grid,
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Supplying */
    .logos-container {
        justify-content: space-around;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 0;
    }

    .product-range-text {
        position: sticky;
        top: 120px;
    }

    /* Leadership Grid */
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .leader-card {
        margin-bottom: 0;
    }

    /* What We Make */
    .make-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact Split Layout */
    .split-contact-section {
        grid-template-columns: 1fr 1fr;
    }

    .spec-block {
        padding: 6rem 3rem 6rem 10%;
        border-top: none;
    }

    .contact-block {
        padding: 6rem 10% 6rem 3rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-top-grid {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }

    .hero-content {
        max-width: 900px;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 600px;
    }

    .product-card {
        padding: 3rem 1.5rem;
    }

    .leader-img,
    .founder-logo {
        height: 450px;
    }
}

/* Logo Marquee Slider */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    white-space: nowrap;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    }

.logo-marquee::after {
    right: 0;
    }

.logo-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 5rem;
    animation: marquee-scroll 25s linear infinite;
}

.logo-marquee:hover .logo-marquee-content {
    animation-play-state: paused;
}

.client-logo {
    font-size: 2rem;
    font-weight: 300;
    font-family: var(--font-heading);
    color: #bbb;
    transition: color 0.3s, transform 0.3s;
    cursor: pointer;
}

.client-logo:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

.client-logo.blue {
    font-family: var(--font-body);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2.5rem));
    }
}

/* --- NEW SECTIONS --- */

/* Our Services */
.services-section {
    padding: 5rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid #e0e0e0;
}

.service-icon-circle i {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.clock-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 1.5rem !important;
    color: var(--primary-red) !important;
    background: white;
    border-radius: 50%;
}

.service-text-col {
    max-width: 400px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.service-desc {
    font-size: 1rem;
    color: #555;
}

.service-image-col {
    width: 300px;
}

.service-image-col img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-divider {
    height: 1px;
    background-color: var(--border-color);
    width: 100%;
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-text-col {
        margin: 0 auto;
    }

    .service-icon-circle {
        margin: 0 auto;
    }

    .service-image-col {
        width: 100%;
    }
}

/* Our Products Image Section */
.products-image-section {
    padding: 5rem 0;
    background-color: var(--white);
    /* border-bottom: 1px solid var(--border-color); */
}

.products-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.products-image-grid img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.products-image-grid img:hover {
    transform: translateY(-5px);
}

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

@media (max-width: 480px) {
    .products-image-grid {
        grid-template-columns: 1fr;
    }
}

/* Visual Process Section */
.visual-process-section {
    /* padding: 5rem 0; */
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.visual-process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 0 2rem;
}

.v-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
}

.v-process-icon {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.v-process-step p {
    font-weight: 600;
    font-size: 0.95rem;
}

.v-process-arrow {
    font-size: 1.5rem;
    color: #999;
}

.clock-badge-container {
    position: relative;
    display: inline-block;
}

.clock-badge-container::after {
    content: '\\e162';
    /* Phosphor Clock Fill */
    font-family: 'Phosphor';
    position: absolute;
    bottom: -5px;
    right: -10px;
    font-size: 1.5rem;
    color: var(--primary-red);
    background: white;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .visual-process-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .v-process-arrow {
        transform: rotate(90deg);
    }
}

/* Footer Banner */
.footer-banner-section {
    background-color: #fcfbfa;
    padding: 4rem 0 0 0;
    /* No padding bottom to sit flush */
    border-top: 1px solid var(--border-color);
}

.footer-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f2ede7;
    padding: 3rem;
    border-radius: 8px 8px 0 0;
    /* Round top corners */
}

.fb-logo {
    display: flex;
    /* flex-direction: column;
    align-items: center; */
    gap: 0.5rem;
}

.maple-leaf-large {
    width: 60px;
    height: 60px;
}

.fb-logo h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

.fb-text {
    max-width: 400px;
    text-align: left;
    margin-left: -31%;
}

.fb-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.fb-text p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.fb-image {
    width: 250px;
    margin-bottom: -3rem;
    /* Push down to overlap footer */
}

.fb-image img {
    width: 100%;
}

@media (max-width: 900px) {
    .footer-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-bottom: 0;
    }

    .fb-text {
        text-align: center;
    }

    .fb-image {
        margin-bottom: 0;
    }
}


/* Hero Slider Styles */
.slider-container {
    overflow: hidden;
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
    pointer-events: none;
    /* prevent clicking on hidden slides */
}

.slide.active {
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
}

/* Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: background 0.3s;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.slider-dots .dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: white;
}

/* Advantage Section */
.advantage-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.advantage-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.advantage-text-col {
    flex: 1;
}

.advantage-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.advantage-list li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--primary-red);
    flex-shrink: 0;
}

.advantage-image-col {
    flex: 1.2;
}

.advantage-image-col img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 900px) {
    .advantage-container {
        flex-direction: column;
    }

    .advantage-image-col {
        order: -1;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.why-choose-card {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 3rem 3rem 2rem 3rem;
    position: relative;
    max-width: 450px;
    width: 100%;
    margin: 3rem auto 0 auto;
    /* Centered, with top margin for the header */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-choose-header {
    background-color: #c1121f;
    /* Shayay red */
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1rem 2rem;
    position: absolute;
    top: -25px;
    /* Overlap effect */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(193, 18, 31, 0.3);
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
}

.why-choose-list li {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.why-choose-list li:last-child {
    margin-bottom: 0;
}

.why-choose-icon {
    color: #c1121f;
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: -2px;
    /* Align icon better with text */
}

.p-2 {
    padding: 10px 0;
}

.logo {
    height: 60px;
}

.framed-wrapper {
    position: relative;
    padding: 0;
    margin: 20px 0 20px 20px;
    /* Space for the offset */
}

.framed-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -49px;
    width: 100%;
    height: 110%;
    border: 10px solid #d4955bcf;
    /* background-color: #deb887; */
    z-index: 0;
    border-radius: 4px;
}

.framed-wood-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: block;
    position: relative;
    z-index: 1;
    animation: floatLeftRight 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes floatLeftRight {
    0% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-10px);
    }
}

.framed-wood-image:hover {
    animation-play-state: paused;
}

.whoweare {
    padding: 31px 0;
}

@keyframes spin-wooden-circle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.stat-number::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 6px dashed #d7b588;
    background-color: #deb887;
    z-index: -1;
    top: 50%;
    left: 84%;
    transform: translate(-50%, -50%);
    animation: spin-wooden-circle 12s linear infinite;
}

.stats-section h2 {
    text-align: center;
    padding: 29px 0;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 34px;

}

.wood-text {
    color: #deb887;
}

.framed-wrapper_two {
    position: relative;
    display: inline-block;
}

.framed-wrapper_two::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 32px;
    width: 100%;
    height: 110%;
    border: 10px solid #d4955bcf;
    /* background-color: #deb887; */
    z-index: 0;
    border-radius: 4px;
}

p.stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #cb4549;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
}

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #8b5a2b !important;
    border-color: #8b5a2b !important;
    cursor: pointer;
}

.service-card h3,
.service-card p,
.service-card div {
    transition: all 0.3s ease;
}

.service-card i {
    transition: all 0.6s ease-in-out !important;
    display: inline-block;
}

.service-card:hover h3,
.service-card:hover p {
    color: white !important;
}

.service-card:hover i {
    color: white !important;
    transform: rotate(360deg);
}

.service-card:hover div[style*="border: 2px solid"] {
    border-color: white !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.process-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(203, 69, 73, 0.1) !important;
    border-color: #cb4549 !important;
}

.process-card .watermark-num {
    transition: all 0.5s ease;
}

.process-card:hover .watermark-num {
    transform: scale(1.1);
    color: #fff0f0 !important;
}

.process-card .process-icon-wrapper {
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-wrapper {
    background: #cb4549 !important;
}

.process-card:hover .process-icon-wrapper i {
    color: white !important;
}

.set_para {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 21px;
}

.classic-stat-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.classic-stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8b5a2b;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.classic-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 90, 43, 0.25) !important;
    border-bottom-color: #cb4549 !important;
}

.classic-stat-card:hover::before {
    transform: scaleY(1);
}

.classic-stat-card>div {
    position: relative;
    z-index: 1;
}

.classic-stat-card p,
.classic-stat-card h5 {
    transition: all 0.3s ease;
}

.classic-stat-card i {
    transition: all 0.6s ease-in-out !important;
    display: inline-block;
}

.classic-stat-card:hover p,
.classic-stat-card:hover h5,
.classic-stat-card:hover i {
    color: white !important;
}

.classic-stat-card:hover i {
    transform: rotate(360deg);
}

.process-step-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    height: 100%;
}

.process-step-card:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
    cursor: pointer;
}

.process-step-card:hover .process-icon-wrapper {
    background: #8b5a2b !important;
    cursor: pointer;
}

.process-step-card:hover .process-icon-wrapper i {
    color: white !important;
    transform: rotate(360deg);
}

.process-arrow {
    transition: transform 0.3s ease;
}

.process-step-card:hover+.process-arrow {
    transform: translateX(10px);
}

.classic-about-section {
    background-color: var(--light-bg);
}

.process-flow-section {
    background-color: var(--light-bg);
}

.truck {
    height: 374px;
    object-fit: cover;
}
/* About Page Hero Banner Animations */
@keyframes kenBurns {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes slideUpFade {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.about-hero-banner {
    position: relative;
    height: 65vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.about-hero-bg {
    background: linear-gradient(rgba(17, 21, 28, 0.5), rgba(17, 21, 28, 0.7)), url('assets/banner1.jpeg') no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    animation: kenBurns 4s ease-out forwards;
    z-index: -1;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.anim-stagger-1 {
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.3s;
}

.anim-stagger-2 {
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.6s;
}

.anim-stagger-3 {
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.9s;
}






