@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #D4AF37;
    /* Premium Gold */
    --primary-dark: #AA8C2C;
    --secondary: #E5E7EB;
    /* Light Gray */
    --accent: #0A192F;
    /* Deep Navy Blue */
    --accent-hover: #112240;
    --dark-text : #000;
    --text-main: #0A192F;
    --text-light: #fff;
    --bg-light: #FFFFFF;
    --border-color: #D1D5DB;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
    line-height: 1.7;
}
html {
    scroll-behavior: smooth;
}


section {
    scroll-margin-top: 90px;
}


h1, h2, h3, h4, h5, h6,
nav a,
button,
.btn-primary,
.header-contact-btn {
    font-family: "Poppins", sans-serif;
}

p {
     font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    line-height: 1.7;
}
body {
    background-color: var(--secondary);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
     font-family: "Rajdhani", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}




/* Top Contact Bar */
.top-bar {
    background-color: var(--accent);
    color: var(--primary);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* Header */
header {
    background-color: var(--bg-light);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-container img {
    width: 230px;
    /* height: 48px; */
    /* border-radius: 4px; */
}

.logo-text {
    /* font-size: 20px; */
    font-weight: 600;
    color: var(--accent);
    /* letter-spacing: -0.5px;
    text-transform: uppercase; */
}

.nav-links {
    display: flex;
    gap: 14px;
    white-space: nowrap;
    
}

.menu-toggle {
    display: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 18px;
    font-family: "Rajdhani", sans-serif;
    color: var(--text-main);
    text-transform: capitalize;
    /* letter-spacing: 1px; */
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}



.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.action-item:hover {
    color: var(--primary);
}

/* Hero Banner */
/* =========================================================
   VARDIBAZAAR HERO BANNER
   

/* =========================================================
   HERO
========================================================= */
.banner-logo img{
    width: 250px;
}


.vb-hero {
    position: relative;

    width: 100%;

    min-height: 650px;
    height: 78vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #0b1f3a;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.vb-hero-bg {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    z-index: 0;
}


/* =========================================================
   OVERLAY
========================================================= */

.vb-hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 24, 49, 0.98) 0%,
            rgba(7, 27, 52, 0.93) 27%,
            rgba(7, 27, 52, 0.68) 48%,
            rgba(7, 27, 52, 0.25) 70%,
            rgba(7, 27, 52, 0.04) 100%
        );
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.vb-hero-container {
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

    padding: 65px 6%;

    box-sizing: border-box;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.vb-hero-content {
    position: relative;

    width: 58%;
    max-width: 720px;

    color: #ffffff;
}


/* =========================================================
   EYEBROW
========================================================= */

.vb-eyebrow {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 17px;

    color: #e4b82e;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}

.vb-eyebrow span {
    display: block;

    width: 24px;
    height: 3px;

    flex-shrink: 0;

    background: #e4b82e;

    border-radius: 5px;
}


/* =========================================================
   TITLE
========================================================= */

.vb-hero-title {
    margin: 0 0 17px;

    color: #ffffff;

   font-size: clamp(41px, 6vw, 40px);

    font-weight: 700;

    line-height: 0.98;

    letter-spacing: 1px;
}


/* =========================================================
   TAGLINE
========================================================= */

.vb-hero-tagline {
    margin: 0;

    color: #ffffff;

    font-size: 25px;

    font-weight: 500;

    line-height: 1.3;

    letter-spacing: 0.2px;
}


/* =========================================================
   GOLD LINE
========================================================= */

.vb-title-line {
    width: 66px;
    height: 3px;

    margin: 18px 0;

    background: #e4b82e;

    border-radius: 5px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.vb-hero-text {
    max-width: 520px;

    margin: 0 0 28px;

    color: #f1f4f8;

    font-size: 18px;

    line-height: 1.6;

    font-weight: 400;
}


/* =========================================================
   STATS
========================================================= */

.vb-stats {
    display: flex;

    align-items: center;

    margin-bottom: 32px;
}


.vb-stat {
    display: flex;

    align-items: center;

    padding-right: 28px;

    margin-right: 28px;

    border-right: 1px solid rgba(255, 255, 255, 0.35);
}


.vb-stat:last-child {
    padding-right: 0;

    margin-right: 0;

    border-right: none;
}


/* STAT ICON */

.vb-stat-icon {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    margin-right: 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #e4b82e;

    border-radius: 50%;

    color: #e4b82e;

    font-size: 27px;

    font-weight: 600;
}


/* STAT CONTENT */

.vb-stat-content {
    display: flex;

    flex-direction: column;
}


.vb-stat-content strong {
    color: #e4b82e;

    font-size: 24px;

    line-height: 1.1;

    font-weight: 800;
}


.vb-stat-content span {
    margin-top: 4px;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.35;
}


/* =========================================================
   BUTTONS
========================================================= */

.vb-hero-buttons {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-bottom: 23px;
}


.vb-btn {
    height: 58px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    box-sizing: border-box;

    border-radius: 7px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 0.6px;

    transition: all 0.3s ease;
}


/* PRIMARY */

.vb-btn-primary {
    min-width: 245px!important;

    background-color: #e4b82e;

    color: #0b1f3a;

    border: 2px solid #e4b82e;

    box-shadow:
        0 10px 30px rgba(228, 184, 46, 0.20);
}


.vb-btn-primary span {
    font-size: 24px;

    transition: transform 0.3s ease;
}


.vb-btn-primary:hover {
    background: #f2c83f;

    border-color: #f2c83f;

    transform: translateY(-3px);
}


.vb-btn-primary:hover span {
    transform: translateX(5px);
}


/* SECONDARY */

.vb-btn-secondary {
    min-width: 225px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.03);

    border: 2px solid #e4b82e;
}


.vb-btn-secondary:hover {
    color: #0b1f3a;

    background: #e4b82e;

    transform: translateY(-3px);
}


.vb-btn-icon {
    font-size: 22px;
}


/* =========================================================
   PHONE BOX
========================================================= */

.vb-call-box {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 10px 20px 10px 10px;

    border: 1px solid rgba(255, 255, 255, 0.65);

    border-radius: 9px;

    background: rgba(7, 25, 48, 0.45);

    backdrop-filter: blur(8px);
}


.vb-call-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #e4b82e;

    border-radius: 50%;

    color: #e4b82e;

    font-size: 21px;
}


.vb-call-box strong {
    display: block;

    margin-bottom: 3px;

    color: #e4b82e;

    font-size: 15px;
}


.vb-call-box p {
    margin: 0;

    color: #ffffff;

    font-size: 17px;

    font-weight: 600;
}


.vb-call-box a {
    color: #ffffff;

    text-decoration: none;
}


.vb-call-box a:hover {
    color: #e4b82e;
}


.vb-call-box p span {
    margin: 0 9px;

    color: #e4b82e;
}


/* =========================================================
   RIGHT CONTACT CARD
========================================================= */

.vb-contact-card {
    position: relative;
    z-index: 5;

    width: 330px;
    flex-shrink: 0;

    padding: 28px 24px 0;

    box-sizing: border-box;

    background: #ffffff;

    border-radius: 20px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);

    overflow: hidden;
}


/* =========================================================
   CARD HEADING
========================================================= */

.vb-contact-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    color: #0b1f3a;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: 0.3px;

    margin-bottom: 10px;

    white-space: nowrap;
}

.vb-contact-heading span {
    width: 25px;
    height: 2px;

    flex-shrink: 0;

    background: #e4b82e;
}

.vb-contact-heading i {
    color: #e4b82e;

    font-size: 14px;
}


/* =========================================================
   SUBTITLE
========================================================= */

.vb-contact-subtitle {
    margin: 0 0 20px;

    text-align: center;

    color: #64748b;

    font-size: 15px;

    line-height: 1.5;

    font-weight: 500;
}


/* =========================================================
   CONTACT ITEM
========================================================= */

.vb-contact-item {
    position: relative;

    display: flex;

    align-items: center;

    gap: 13px;

    width: 100%;

    padding: 17px 8px;

    box-sizing: border-box;

    text-decoration: none;

    border-top: 1px solid #edf0f3;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.vb-contact-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 25px;

    transition: 0.3s ease;
}


/* WhatsApp */

.whatsapp-icon {
    background: #e9f9ef;

    color: #20b957;
}

.whatsapp-item:hover {
    background: #f7fcf9;

    transform: translateX(4px);
}

.whatsapp-item:hover .whatsapp-icon {
    background: #20b957;

    color: #ffffff;

    transform: scale(1.05);
}


/* Call */

.call-icon {
    background: #fff7df;

    color: #e4b82e;
}

.call-item:hover {
    background: #fffcf2;

    transform: translateX(4px);
}

.call-item:hover .call-icon {
    background: #e4b82e;

    color: #ffffff;

    transform: scale(1.05);
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.vb-contact-info {
    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}

.vb-contact-label {
    display: block;

    color: #64748b;

    font-size: 12px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.vb-contact-info strong {
    display: block;

    color: #0b1f3a;

    font-size: 16px;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   ARROW
========================================================= */

.vb-arrow {
    margin-left: auto;

    color: #c2c8d0;

    font-size: 13px;

    transition: 0.3s ease;
}

.vb-contact-item:hover .vb-arrow {
    color: #e4b82e;

    transform: translateX(3px);
}


/* =========================================================
   BOTTOM COLLECTION AREA
========================================================= */

.vb-contact-bottom {
    display: flex;

    align-items: center;

    gap: 13px;

    margin: 12px -24px 0;

    padding: 18px 24px;

    background: #fffaf0;

    border-top: 1px solid #f1ead8;
}


/* Bottom Icon */

.vb-bottom-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #e4b82e;

    border-radius: 50%;

    color: #e4b82e;

    font-size: 17px;
}


/* Bottom Text */

.vb-contact-bottom > div:nth-child(2) {
    display: flex;

    flex-direction: column;

    gap: 3px;

    flex: 1;
}

.vb-contact-bottom strong {
    color: #0b1f3a;

    font-size: 13px;

    font-weight: 700;
}

.vb-contact-bottom span {
    color: #64748b;

    font-size: 12px;

    line-height: 1.4;
}

.vb-contact-bottom > i {
    color: #0b1f3a;

    font-size: 14px;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .vb-contact-card {
        width: 290px;

        padding: 24px 20px 0;
    }

    .vb-contact-heading {
        font-size: 15px;
    }

    .vb-contact-icon {
        width: 45px;
        height: 45px;

        font-size: 22px;
    }

    .vb-contact-info strong {
        font-size: 14px;
    }

    .vb-contact-bottom {
        margin-left: -20px;
        margin-right: -20px;

        padding-left: 20px;
        padding-right: 20px;
    }
    
}


/* =========================================================
   MOBILE
========================================================= */


@media (max-width: 768px) {

    .vb-contact-card {
        width: 100%;
        max-width: 400px;

        margin: 25px auto 0;

        padding: 22px 18px 0;

        border-radius: 16px;
    }

    .vb-contact-heading {
        font-size: 15px;
    }

    .vb-contact-subtitle {
        font-size: 12px;

        margin-bottom: 10px;
    }

    .vb-contact-item {
        padding: 14px 5px;
    }

    .vb-contact-icon {
        width: 44px;
        height: 44px;

        font-size: 21px;
    }

    .vb-contact-info strong {
        font-size: 14px;
    }

    .vb-contact-bottom {
        margin-left: -18px;
        margin-right: -18px;

        padding: 16px 18px;
    }
}


/* =========================================================
   DECORATIVE DOTS
========================================================= */

.vb-dots {
    position: absolute;

    width: 170px;
    height: 130px;

    z-index: 2;

    opacity: 0.5;

    pointer-events: none;

    background-image:
        radial-gradient(
            #e4b82e 1.4px,
            transparent 1.4px
        );

    background-size: 14px 14px;
}


.vb-dots-left {
    left: 0;
    bottom: 25px;
}


.vb-dots-right {
    right: 20px;
    bottom: 40px;

    opacity: 0.45;
}


/* =========================================================
   BOTTOM CURVE
========================================================= */

.vb-hero-bottom {
    position: absolute;

    z-index: 5;

    left: -3%;
    bottom: -45px;

    width: 106%;
    /* height: 85px; */

    background: #ffffff;

    /* border-top: 5px solid #e4b82e; */

    border-radius:
        50% 50% 0 0 /
        35% 35% 0 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .vb-hero {
        height: auto;

        min-height: 680px;
    }

    .vb-hero-container {
        padding: 80px 5%;
    }

    .vb-hero-content {
        width: 62%;
    }

    .vb-qr-card {
        width: 220px;

        margin-right: 0;
    }

    .vb-qr-image {
        width: 160px;
        height: 160px;
    }

    .vb-stat {
        padding-right: 15px;

        margin-right: 15px;
    }

    .vb-stat-icon {
        width: 52px;
        height: 52px;

        font-size: 23px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    /*
       IMPORTANT:
       Fixed minimum height allows the absolute
       background image to properly cover the hero.
    */

    .vb-hero {
        position: relative;

        width: 100%;

        min-height: 980px;

        height: auto;

        display: block;

        overflow: hidden;

        background: #0b1f3a;
    }


    /* MOBILE BACKGROUND */

    .vb-hero-bg {
        position: absolute;

        top: 0;
        left: 0;

        width: 100%;

        height: 100%;

        min-height: 980px;

        display: block;

        object-fit: cover;

        /*
           Adjust this if your model is
           more left/right in the image.
        */
        object-position: 68% center;

        z-index: 0;
    }


    /* MOBILE OVERLAY */

    .vb-hero-overlay {
        position: absolute;

        top: 0;
        left: 0;

        width: 100%;

        height: 100%;

        z-index: 1;

        background:
            linear-gradient(
                180deg,
                rgba(5, 24, 49, 0.96) 0%,
                rgba(7, 27, 52, 0.90) 45%,
                rgba(7, 27, 52, 0.96) 100%
            );
    }


    /* CONTAINER */

    .vb-hero-container {
        position: relative;

        z-index: 3;

        width: 100%;

        max-width: 100%;

        margin: 0;

        padding: 70px 20px 100px;

        box-sizing: border-box;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;
    }


    /* CONTENT */

    .vb-hero-content {
        width: 100%;

        max-width: 100%;
    }


    /* EYEBROW */

    .vb-eyebrow {
        gap: 10px;

        margin-bottom: 14px;

        font-size: 13px;

        letter-spacing: 0.5px;
    }


    .vb-eyebrow span {
        width: 20px;
        height: 2px;
    }


    /* TITLE */

    .vb-hero-title {
        margin-bottom: 15px;

       font-size: clamp(41px, 6vw, 40px);

        line-height: 1;

        letter-spacing: 1px;
    }


    /* TAGLINE */

    .vb-hero-tagline {
        font-size: 18px;

        line-height: 1.4;
    }


    /* GOLD LINE */

    .vb-title-line {
        width: 55px;

        height: 3px;

        margin: 15px 0;
    }


    /* DESCRIPTION */

    .vb-hero-text {
        max-width: 100%;

        margin-bottom: 27px;

        font-size: 15px;

        line-height: 1.6;
    }


    /* STATS */

    .vb-stats {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;

        margin-bottom: 30px;
    }


    .vb-stat {
        min-width: 0;

        margin: 0;

        padding: 0;

        border: none;
    }


    .vb-stat-icon {
        width: 46px;
        height: 46px;

        margin-right: 10px;

        font-size: 20px;
    }


    .vb-stat-content strong {
        font-size: 19px;
    }


    .vb-stat-content span {
        font-size: 11px;

        line-height: 1.3;
    }


    /* BUTTONS */

    .vb-hero-buttons {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        margin-bottom: 22px;
    }


    .vb-btn {
        width: 100%;

        min-width: 0;

        height: 54px;

        box-sizing: border-box;

        font-size: 13px;
    }


    .vb-btn-primary,
    .vb-btn-secondary {
        min-width: 0;
    }


    /* PHONE */

    .vb-call-box {
        width: 100%;

        box-sizing: border-box;

        margin-bottom: 30px;

        padding: 10px 12px;
    }


    .vb-call-icon {
        width: 42px;
        height: 42px;
    }


    .vb-call-box strong {
        font-size: 13px;
    }


    .vb-call-box p {
        font-size: 13px;

        white-space: nowrap;
    }


    .vb-call-box p span {
        margin: 0 5px;
    }


    /* QR */

    .vb-qr-card {
        position: relative;

        align-self: center;

        width: 230px;

        margin: 10px auto 0;

        padding: 20px 18px;

        box-sizing: border-box;
    }


    .vb-qr-image {
        width: 170px;
        height: 170px;

        max-width: 100%;
    }


    /* DOTS */

    .vb-dots-left {
        left: -20px;

        bottom: 20px;
    }


    .vb-dots-right {
        right: -30px;

        bottom: 150px;
    }


    /* HIDE CURVE ON MOBILE */

    .vb-hero-bottom {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vb-hero {
        min-height: 1000px;
    }


    .vb-hero-bg {
        min-height: 1000px;

        object-position: 70% center;
    }


    .vb-hero-container {
        padding: 60px 18px 80px;
    }


    .vb-eyebrow {
        font-size: 12px;
    }


    .vb-hero-title {
        font-size: 43px;

        letter-spacing: -1.5px;
    }


    .vb-hero-tagline {
        font-size: 17px;
    }


    .vb-hero-text {
        font-size: 14px;
    }


    /* STATS */

    .vb-stats {
        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }


    .vb-stat-icon {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }


    .vb-stat-content strong {
        font-size: 17px;
    }


    .vb-stat-content span {
        font-size: 10px;
    }


    /* PHONE */

    .vb-call-box p {
        font-size: 12px;
    }


    /* QR */

    .vb-qr-card {
        width: 215px;
    }


    .vb-qr-image {
        width: 160px;
        height: 160px;
    }
}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .vb-hero {
        min-height: 1020px;
    }


    .vb-hero-bg {
        min-height: 1020px;

        object-position: 72% center;
    }


    .vb-hero-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .vb-hero-title {
        font-size: 38px;
    }


    .vb-stat-icon {
        width: 38px;
        height: 38px;

        margin-right: 7px;
    }


    .vb-stat-content strong {
        font-size: 15px;
    }


    .vb-stat-content span {
        font-size: 9px;
    }


    .vb-call-box p {
        font-size: 11px;
    }
}
/* End Banner */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: var(--primary);
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* =========================================================
   ABOUT US SECTION
========================================================= */

.about-section {
    position: relative;
    padding: 100px 5%;
    background: #f6f7f9;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(228, 184, 46, 0.08);
    top: -150px;
    left: -150px;
}

.about-container {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-content {
    position: relative;
    z-index: 2;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    color: #e4b82e;
    font-size: 15px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-label span {
    width: 38px;
    height: 3px;
    background: #e4b82e;
    display: block;
}


/* TITLE */

.about-title {
    margin: 0 0 25px;

    color: #0b1f3a;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 800;

    letter-spacing: -1.5px;
}

.about-title strong {
    color: #e4b82e;
    font-weight: 800;
}


/* TEXT */

.about-intro {
    max-width: 700px;

    margin: 0 0 16px;

    color: #17243a;

    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
}

.about-text {
    max-width: 700px;

    margin: 0 0 14px;

    color: #526078;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   STATS
========================================================= */

.about-stats {
    display: flex;
    align-items: stretch;

    margin-top: 35px;
    margin-bottom: 35px;
}

.about-stat {
    padding: 0 28px;

    border-right: 1px solid #d4d9e1;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-stat:first-child {
    padding-left: 0;
}

.about-stat:last-child {
    border-right: none;
}

.about-stat strong {
    color: #0b1f3a;

    font-size: 30px;
    line-height: 1;

    font-weight: 800;
}

.about-stat span {
    color: #667085;

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* =========================================================
   BUTTON
========================================================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    padding: 15px 25px;

    background: #e4b82e;
    color: #0b1f3a;

    border: 2px solid #e4b82e;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 0.5px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.about-btn span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.about-btn:hover {
    background: #0b1f3a;
    border-color: #0b1f3a;
    color: #ffffff;
}

.about-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   RIGHT HIGHLIGHT CARD
========================================================= */

.about-highlight {
    position: relative;

    padding: 45px 40px;

    background: #0b1f3a;

    border-radius: 18px;

    box-shadow: 0 25px 60px rgba(11, 31, 58, 0.18);

    overflow: hidden;
}

.about-highlight::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(228, 184, 46, 0.25);
    border-radius: 50%;

    right: -80px;
    bottom: -80px;
}


/* CARD TOP */

.about-card-top {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color: #e4b82e;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.about-card-line {
    width: 30px;
    height: 2px;

    background: #e4b82e;
}


/* CARD TITLE */

.about-highlight h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.about-highlight > p {
    margin: 0 0 30px;

    color: #c9d2df;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.about-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 17px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #e4b82e;
    border-radius: 50%;

    color: #e4b82e;

    font-size: 20px;
    font-weight: 700;
}

.about-feature h4 {
    margin: 0 0 4px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.about-feature p {
    margin: 0;

    color: #aeb9c9;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-section {
        padding: 80px 5%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        max-width: 750px;
    }

    .about-highlight {
        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-section {
        padding: 65px 20px;
    }

    .about-container {
        gap: 40px;
    }

    .about-label {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .about-label span {
        width: 28px;
    }

    .about-title {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .about-intro {
        font-size: 17px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px 0;
    }

    .about-stat {
        width: 50%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .about-stat:first-child {
        padding-left: 0;
    }

    .about-stat strong {
        font-size: 25px;
    }

    .about-stat span {
        font-size: 11px;
    }

    .about-highlight {
        padding: 32px 25px;
        border-radius: 14px;
    }

    .about-highlight h3 {
        font-size: 27px;
    }

    .about-highlight > p {
        font-size: 14px;
    }

    .about-btn {
        width: 100%;
        box-sizing: border-box;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .about-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-title {
        font-size: 33px;
    }

    .about-stat {
        width: 100%;
        border-right: none;
    }

    .about-stat:not(:last-child) {
        padding-bottom: 15px;
        border-bottom: 1px solid #d4d9e1;
    }

}


/* Collections */
.collections-section {
    padding: 100px 5%;
    background-color: var(--secondary);
}

.section-title {
    font-size: 32px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.collections-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 32px;
    padding-bottom: 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
}

.collections-grid::-webkit-scrollbar {
    height: 6px;
}

.collections-grid::-webkit-scrollbar-track {
    background: var(--border-color);
}

.collections-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
}

.collection-card {
    flex: 0 0 calc((100% - 96px) / 4);
    scroll-snap-align: start;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
    border-color: var(--primary);
}

.collection-img-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.collection-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-img {
    transform: scale(1.05);
}

.collection-info {
    padding: 24px;
    text-align: center;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.collection-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    text-transform: capitalize;
    /* letter-spacing: 1px; */
    transition: color 0.3s ease;
}

.collection-desc {
    font-size: 16px;

     font-family: "Rajdhani", sans-serif;
     font-weight: 500;
    color: var(--dark-text);
    margin-top: 8px;
    line-height: 1.4;
}

.collection-card:hover .collection-title {
    color: var(--primary-dark);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Product Sliders */
/* =========================================================
   WORKER UNIFORMS SECTION
========================================================= */

.slider-section {
    width: 100%;
    padding: 80px 5%;
    box-sizing: border-box;

    background: #f7f8fa;

    border-top: 1px solid #e8ebef;
}


/* =========================================================
   CENTERED SECTION HEADER
========================================================= */

.slider-header {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 45px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    text-align: center;
}


/* =========================================================
   SMALL SECTION TAG
========================================================= */

.section-tag {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #c49a16;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* Gold lines */

.section-tag::before,
.section-tag::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    flex-shrink: 0;

    background: #e4b82e;

    border-radius: 10px;
}


/* =========================================================
   MAIN SECTION TITLE
========================================================= */

.slider-header .section-title {
    position: relative;

    margin: 0;

    color: #0b1f3a;

    font-family: 'Poppins', sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;

    text-align: center;

    text-transform: uppercase;
}


/* Gold underline */

.slider-header .section-title::after {
    content: "";

    display: block;

    width: 65px;
    height: 4px;

    margin: 14px auto 0;

    background: #e4b82e;

    border-radius: 10px;
}


/* =========================================================
   SECTION DESCRIPTION
========================================================= */

.slider-header .section-desc {
    max-width: 720px;
    margin: 20px auto 0;
    color: #000;
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}


/* =========================================================
   SLIDER CONTAINER
========================================================= */

.slider-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: flex;
    align-items: stretch;

    gap: 24px;

    overflow-x: auto;

    padding: 5px 5px 22px;

    box-sizing: border-box;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: thin;

    scrollbar-color:
        #e4b82e
        #e8ebef;
}


/* =========================================================
   SCROLLBAR
========================================================= */

.slider-container::-webkit-scrollbar {
    height: 6px;
}

.slider-container::-webkit-scrollbar-track {
    background: #e8ebef;

    border-radius: 10px;
}

.slider-container::-webkit-scrollbar-thumb {
    background: #e4b82e;

    border-radius: 10px;
}

.slider-container::-webkit-scrollbar-thumb:hover {
    background: #c49a16;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    position: relative;

     /* flex: 1 1 0; */
 flex: 0 0 300px; 

    scroll-snap-align: start;

    background: #ffffff;

    border: 1px solid #e1e6ec;

    border-radius: 14px;

    overflow: hidden;

    box-sizing: border-box;

    box-shadow:
        0 5px 18px rgba(11, 31, 58, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Card Hover */

.product-card:hover {
    transform: translateY(-8px);

    border-color: #e4b82e;

    box-shadow:
        0 18px 40px rgba(11, 31, 58, 0.13);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-img {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: cover;

    background: #ffffff;

    border: 0;

    border-bottom: 1px solid #e8ebef;

    transition:
        transform 0.5s ease;
}


/* Image Hover */

.product-card:hover .product-img {
    transform: scale(1.025);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {
    padding: 18px;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   PRODUCT CATEGORY
========================================================= */

.product-category {
    margin: 0 0 16px;

    color: #0b1f3a;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 0.7px;

    text-transform: capitalize;
}


/* =========================================================
   OPTIONAL PRODUCT TITLE
========================================================= */

.product-title {
    margin: 0 0 8px;

    color: #0b1f3a;

    font-family: 'Poppins', sans-serif;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   OPTIONAL RATING
========================================================= */

.product-rating {
    display: flex;

    align-items: center;

    gap: 3px;

    margin-bottom: 12px;
}

.product-rating span {
    margin-left: 6px;

    color: #667085;

    font-family: 'Lato', sans-serif;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   OPTIONAL PRICE
========================================================= */

.product-price {
    margin: 0 0 20px;

    color: #0b1f3a;

    font-family: 'Poppins', sans-serif;

    font-size: 20px;
    font-weight: 800;
}


/* =========================================================
   ENQUIRY BUTTON
========================================================= */

.btn-add-cart {
    width: 100%;
    min-height: 48px;

    padding: 12px 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    box-sizing: border-box;

    background: #e4b82e;

    color: #0b1f3a;

    border: 2px solid #e4b82e;

    border-radius: 7px;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* Button Arrow */

.btn-add-cart span {
    font-size: 20px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


/* Button Hover */

.btn-add-cart:hover {
    background: #0b1f3a;

    color: #ffffff;

    border-color: #0b1f3a;

    transform: translateY(-2px);
}

.btn-add-cart:hover span {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .slider-section {
        padding: 70px 4%;
    }

    .slider-header {
        max-width: 800px;
    }

    .slider-header .section-title {
        font-size: 36px;
    }

    .slider-header .section-desc {
        max-width: 650px;

        font-size: 15px;
    }

    .product-card {
        flex: 0 0 280px;
    }

    .product-img {
        height: 340px;
    }

    .product-info {
        padding: 20px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .slider-section {
        padding: 60px 20px;
    }


    /* Header */

    .slider-header {
        max-width: 100%;

        margin-bottom: 32px;

        gap: 8px;
    }


    /* Tag */

    .section-tag {
        font-size: 10px;

        letter-spacing: 1.2px;

        gap: 7px;
    }


    .section-tag::before,
    .section-tag::after {
        width: 20px;

        height: 2px;
    }


    /* Title */

    .slider-header .section-title {
        font-size: 28px;

        line-height: 1.2;

        letter-spacing: -0.3px;
    }


    /* Underline */

    .slider-header .section-title::after {
        width: 50px;

        height: 3px;

        margin-top: 10px;
    }


    /* Description */

    .slider-header .section-desc {
        max-width: 100%;

        padding: 0 5px;

        margin-top: 3px;

        font-size: 14px;

        line-height: 1.65;
    }


    /* Slider */

    .slider-container {
        gap: 18px;

        padding: 5px 5px 18px;
    }


    /* Cards */

    .product-card {
        flex: 0 0 82vw;

        max-width: 340px;

        border-radius: 12px;
    }


    /* Image */

    .product-img {
        height: 380px;
    }


    /* Product Info */

    .product-info {
        padding: 18px;
    }


    /* Category */

    .product-category {
        margin-bottom: 14px;

        font-size: 12px;
    }


    /* Button */

    .btn-add-cart {
        min-height: 48px;

        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .slider-section {
        padding: 52px 16px;
    }


    .slider-header {
        margin-bottom: 28px;
    }


    .section-tag {
        font-size: 9px;

        letter-spacing: 1px;
    }


    .section-tag::before,
    .section-tag::after {
        width: 17px;
    }


    .slider-header .section-title {
        font-size: 25px;
    }


    .slider-header .section-desc {
        padding: 0;

        font-size: 13.5px;

        line-height: 1.65;
    }


    .slider-container {
        gap: 15px;
    }


    .product-card {
        flex: 0 0 86vw;
    }


    .product-img {
        height: 360px;
    }


    .product-info {
        padding: 17px;
    }


    .btn-add-cart {
        min-height: 46px;

        font-size: 11px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .slider-section {
        padding-left: 14px;
        padding-right: 14px;
    }


    .slider-header .section-title {
        font-size: 23px;
    }


    .slider-header .section-desc {
        font-size: 13px;
    }


    .product-card {
        flex: 0 0 88vw;
    }


    .product-img {
        height: 340px;
    }
}

/* worker Uniform End this Section  */

.section-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
}

.view-all {
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--primary-dark);
}

/* Stats & Ratings */
.stats-section {
    padding: 80px 5%;
    background-color: var(--accent);
    color: var(--bg-light);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box i {
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
    color: var(--bg-light);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #A0AABF;
}

/* Certifications */
.certifications-section {
    padding: 100px 5%;
    background-color: var(--secondary);
}

.certs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.cert-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 40px 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(10, 25, 47, 0.05);
    border-color: var(--primary);
}

.cert-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

.cert-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

.cert-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Clients Marquee */
.clients-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.clients-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 32px;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
    gap: 32px;
    animation: scroll 25s linear infinite;
}

.client-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 40px;
    border-right: 1px solid var(--border-color);
    white-space: nowrap;
    transition: var(--transition);
    opacity: 0.9;
}

.client-logo:last-child {
    border-right: none;
}

.client-logo:hover {
    color: var(--accent);
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 16px));
    }
}

/* Footer */
.footer {
    background-color: var(--accent);
    color: var(--bg-light);
    padding-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 250px;
    border-radius: 4px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.footer-desc {
    color: var(--text-light);
     font-family: "Rajdhani", sans-serif;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 17px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--bg-light);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-light);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
    font-size: 16px;
    border-bottom: 1px solid #d4af37
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 24px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 16px;
     font-family: "Rajdhani", sans-serif;
}

/* Inquiry Form Section */
.inquiry-section {
    padding: 80px 5%;
    background-color: var(--secondary);
}

.inquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.inquiry-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.inquiry-content .section-title::after {
    left: 0;
    transform: none;
}

.inquiry-desc {
    color: var(--dark-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.inquiry-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-item i {
    color: var(--primary);
    background-color: var(--bg-light);
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-item h4 {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 4px;
}

.info-item p {
    color: var(--dark-text);
    font-size: 16px;
}

.inquiry-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
    border: 1px solid var(--border-color);
}

.inquiry-form .form-group {
    margin-bottom: 20px;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inquiry-form label {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    color: var(--text-main);
    background-color: #F9FAFB;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-light);
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
}

.modal-close:hover {
    color: var(--accent);
    background-color: rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 0;
}

.modal-body .inquiry-section {
    padding: 40px;
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .modal-body .inquiry-section {
        padding: 24px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .inquiry-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 2%;
        flex-wrap: wrap; 
        gap: 12px;
    }
    

    .logo-container {
        gap: 10px;
        min-width: 0;
    }

    .logo-container img {
        width: 200px;
    }

    .logo-text {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding-top: 8px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        border-bottom: 1px solid #FFEB3B;
        width: 100%;
        padding: 8px 0;
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    .menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 7px;
        margin-left: auto;
        background-color: #050505;
        border: none;
        border-radius: 0;
        cursor: pointer;
        position: relative;
        z-index: 1;
    }

    .menu-toggle span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: #8c96a2;
    }

    .hero {
        min-height: auto;
        padding: 80px 5%;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.85) 100%);
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .top-bar {
        font-size: 11px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .header-actions .action-text {
        display: none;
    }

    .collections-section,
    .slider-section,
    .certifications-section,
    .stats-section {
        padding: 60px 5%;
    }

    .product-card {
        flex: 0 0 80%;
    }

    .slider-container {
        gap: 16px;
    }

    .slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .collections-grid {
        gap: 16px;
    }

    .collection-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

@media (max-width: 576px) {
    .inquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .inquiry-form-wrapper {
        padding: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .collection-card {
        flex: 0 0 80%;
    }

    .hero-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 36px;
    }
}

.action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 56px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
  }

  .action-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    transition: filter 0.2s ease, opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .action-bar a:active {
    filter: brightness(0.85);
  }

  .btn-call {
    background-color: #17181c;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .btn-whatsapp {
    background-color: #17181c;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .btn-register {
    background-color: #e4b82e;
    border-radius: none!important;
  }

  .action-bar a .icon {
    margin-right: 6px;
    font-size: 14px;
    flex-shrink: 0;
  }

  /* Small phones */
  @media (max-width: 360px) {
    .action-bar a {
      font-size: 11px;
    }
    .action-bar a .icon {
      font-size: 12px;
      margin-right: 4px;
    }
  }

  /* Show only on mobile; hide on tablet/desktop */
  @media (min-width: 768px) {
    .action-bar {
      display: none;
    }
  }
  
  .floating_btn {
    position: fixed;
    bottom: 30px;
    /*right: 0;*/
    left: 0; 
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.contact_icon {
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}
.text_icon {
    margin-top: 8px;
    color: #000 !important;
    font-size: 13px;
}


@media (max-width: 1230px) {
    .nav-links a {
font-size: 12px!important;
}
}

@media (max-width: 1024px){
    
    .nav-links a {
font-size: 12px!important;
     
    }
}

@media (max-width: 880px) {
    
    .nav-links a {
font-size: 8px!important;
     
    }
}




  /* =================================
   AUTHORIZED DEALERS - PREMIUM STYLE
================================= */

.vb-authorized-dealers {
    width: 100%;
    max-width: 620px;
    margin: 18px 0 20px;
}

/* Heading */
.vb-dealers-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.vb-dealers-title span {
    width: 38px;
    height: 2px;
    background: #f5c400;
    display: block;
}

.vb-dealers-title strong {
    color: #f5c400;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

/* Logos row */
.vb-dealers-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

/* Individual logo boxes */
.vb-dealer-logo {
    width: 150px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.96);
    border-radius: 5px;

    padding: 7px 12px;

    box-sizing: border-box;
}

/* Logo images */
.vb-dealer-logo img {
    width: auto;
    height: auto;
    max-width: 125px;
    max-height: 40px;

    object-fit: contain;
    display: block;
}

/* Divider */
.vb-dealer-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.35);
}


/* =================================
   MOBILE
================================= */

@media (max-width: 767px) {

    .vb-authorized-dealers {
        margin: 15px 0 18px;
    }

    .vb-dealers-title {
        justify-content: center;
    }

    .vb-dealers-title span {
        width: 30px;
    }

    .vb-dealers-title strong {
        font-size: 14px;
    }

    .vb-dealers-logos {
        justify-content: center;
        gap: 10px;
    }

    .vb-dealer-logo {
        width: 135px;
        height: 48px;
        padding: 6px 10px;
    }

    .vb-dealer-logo img {
        max-width: 115px;
        max-height: 36px;
    }

    .vb-dealer-divider {
        height: 32px;
    }
}
