*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#0d0d0d;
}
html {
  overflow-y: scroll;
}
a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =========================
   NAVBAR
========================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(250, 247, 247, 0.908);
    backdrop-filter: blur(10px);

    z-index: 9999;
    transition: .4s;
}


/* =========================
   NAVBAR CONTAINER
========================= */
nav .container {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.logo {
    justify-self: start;
}


.logo img {
    height: 190px;
    margin-left: -33px;
}
/* =========================
   NAVIGATION LINKS
========================= */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    gap: clamp(14px, 2vw, 40px);
}


.nav-links a {
    color: #171717;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #C9A13B;
}


/* =========================
   REQUEST QUOTE BUTTON
========================= */


.quote-btn {
    justify-self: end;
    background: #C9A13B;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    transition: .3s;
}

.quote-btn:hover {
    background: #0A0A0A;
}
/* ================= HERO ================= */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:120px 0 80px;
}

.hero-video{
    position:absolute;
    top:50%;
    left:50%;
    
    width:140%;
    height:100%;

    object-fit:cover;

    transform:translate(-50%,-50%);

    z-index:0;
}


.hero-overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        rgba(10, 10, 10, 0.759),
        rgba(5, 5, 5, 0.396)
    );

    z-index:1;
}
.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:1300px;
    margin:0 auto;
    padding:-11px 20px;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:left;
}

.hero-subtitle{

    color:#C9A13B;

    letter-spacing:3px;

    font-size:15px;

    font-weight:600;

}

.hero h1{

    font-size:72px;

    line-height:1.1;

    margin:20px 0;

    font-weight:700;

}

.hero p{

    width:600px;

    max-width:100%;

    font-size:20px;

    color:#e5e5e5;

    margin-bottom:40px;

    line-height:1.7;

}

.hero-buttons{

    display:flex;

    gap:20px;

}
.btn-gold{

    background:#C9A13B;

    color:#fff;

    padding:16px 40px;

    border-radius:40px;

    transition:.3s;

    font-weight:600;

}

.btn-gold:hover{

    background:#fff;

    color:#111;

}

.btn-outline{

    border:2px solid #fff;

    color:#f5f3f3;

    padding:16px 40px;

    border-radius:40px;

    transition:.3s;

    font-weight:600;

}

.btn-outline:hover{

    background:#ffffff;

    color:#0e0e0e;

}

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    text-align:center;

    z-index:2;

    animation:float 2s infinite;

}

.scroll-down span{

    display:block;

    margin-bottom:8px;

    font-size:14px;

}

@keyframes float{

    0%,100%{
        transform:translateX(-50%) translateY(0);
    }

    50%{
        transform:translateX(-50%) translateY(10px);
    }

}

/* Responsive */

@media(max-width:992px){
    .hero h1{
        font-size:50px;
    }

    .hero p{
        font-size:18px;
    }
}

@media(max-width:768px){
    .hero{
        height:100vh;
    }

    .hero-content{
        padding:110px 20px 70px;
        align-items:center;
        text-align:center;
    }

    .hero h1{
        font-size:38px;
        max-width:100%;
    }

    .hero p{
        width:100%;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        align-items:center;
    }

    .btn-gold,
    .btn-outline{
        text-align:center;
        width:100%;
        max-width:260px;
    }
}



.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:0;
}

.banner-content{
    position:relative;
    z-index:1;
    max-width:700px;
    padding:0 20px;
}

.banner-content h1{
    color:#fff;
    font-size:72px;
    margin-bottom:20px;
}

.banner-content p{
    color:#ddd;
    font-size:22px;
}



/* about */
.about{
    padding:100px 0;
    background:#161617;
}

.about-container{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:60px;
    align-items:center;
}

.about h2{
    color:#fff;
}

.about .company-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.image-frame{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    border:1px solid rgba(201, 161, 59, 0.28);
    box-shadow:0 14px 30px rgba(0, 0, 0, 0.24);
    aspect-ratio:4 / 3;
}

.image-frame::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(201, 161, 59, 0.12), transparent 60%);
    pointer-events:none;
}

.about img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.4s ease;
}

.about-image:hover img{
    transform:scale(1.03);
}

.about span{
    color:#C9A13B;
    font-weight:600;
    letter-spacing:2px;
}

.about h2{
    font-size:42px;
    margin:20px 0;
}
.about h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    
    margin-top:-10px;
}
.about .btn-gold{
    display:inline-block;
    margin-top:30px;
}
.about p{
    line-height:1.8;
    color:#ddd;
}

@media (max-width: 900px){
    .about-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .about-content{
        order:2;
    }
}


/* ================= ABOUT US VIDEO BANNER (separate from .about-banner) ================= */
.aboutus-banner{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:120px 0 80px;
    color:#fff;
}

.aboutus-video{
    position:absolute;
    top:50%;
    left:50%;

    width:112%;
    height:100%;

    object-fit:cover;

    transform:translate(-50%,-50%);

    z-index:0;
}

.aboutus-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(10, 10, 10, 0.578),
        rgba(5, 5, 5, 0.523)
    );
    z-index:1;
}

.aboutus-content{
    position:relative;
    z-index:2;
    max-width:700px;
    padding:0 20px;
    margin-top: -200px;
}

.aboutus-content h1{
    color: #fff;
    font-size: 72px;
    margin-bottom: 15px;
    margin-left: 100px; 
}

.aboutus-content p{
    color:#ddd;
    font-size:22px;
    margin-left: 100px;
}

@media(max-width:768px){
    .aboutus-banner{
        min-height:90vh;
        justify-content:center;   /* center the banner content horizontally */
    }

    .aboutus-content{
        text-align:center;        
        margin:0 auto;
        padding:0 20px;
    }

    .aboutus-content h1{
        font-size:38px;
        margin-left:0;             
    }

    .aboutus-content p{
        color:#ddd;
        font-size:22px;
        margin-left:0;             
    }
}

/* WHO WE ARE - Mobile */
@media (max-width: 768px) {
  .about .company-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .about .company-grid > div:first-child {
    order: 2; /* image below */
  }

  .about .company-grid > div:last-child {
    order: 1; /* text first */
  }

  .about .company-grid img {
    width: 100%;
    border-radius: 20px;
  }
}

.mvv{
    background:#0f0f0f;
    color:#fff;
    padding:80px 0;
}

.mvv-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    padding:40px 30px;
    text-align:center;
}

.box i{
    font-size:32px;
    color:#C9A13B;
    margin-bottom:18px;
}

.box h3{
    margin-bottom:14px;
    font-size:24px;
}

.box p{
    line-height:1.8;
    color:#ddd;
}

.stats{
    background:#111;
    color:#fff;
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
}

.stats-grid h2{
    font-size:48px;
    margin-bottom:10px;
}

.stats-grid p{
    color:#ccc;
}

.cta-about{
    background:#C9A13B;
    color:#111;
    text-align:center;
    padding:60px 20px;
}

.cta-about h2{
    margin-bottom:20px;
    font-size:38px;
}

.cta-about p{
    margin-bottom:24px;
    font-size:18px;
}

.cta-about a{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:16px 32px;
    border-radius:40px;
    transition:.3s;
}

.cta-about a:hover{
    background:#0d0d0d;
}


/* ================= PRODUCTS SECTION ================= */

.products-section{
    background:#161617;
    padding:100px 0;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:60px;
}

.section-header span{
    color:#C9A13B;
    font-size:16px;
    font-weight:600;
    letter-spacing:1px;
}

.section-header h2{
    color:#fff;
    font-size:52px;
    margin-top:10px;
    font-weight:700;
}

/* Card */

.product-card{
    width:100%;
    background:#1f1f1f;
    border-radius:22px;
    overflow:hidden;
    transition:0.35s ease;
    cursor:pointer;

    display:flex;              /* NEW */
    flex-direction:column;     /* NEW */
    height:100%;                /* NEW - stretches to match tallest card in row */
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.35);
}

/* Image */

.product-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    transition:0.5s ease;
    flex-shrink:0;              /* NEW - image never shrinks/grows */
}

.product-card:hover img{
    transform:scale(1.08);
}

/* Text */

.product-info{
    padding:26px;
    flex:1;                     /* NEW - fills remaining card space */
    display:flex;               /* NEW */
    flex-direction:column;      /* NEW */
    min-height:150px;           /* NEW - guarantees same footer height; adjust to taste */
}

.product-info span{
    display:inline-block;
    background:#f7f7f7f9;
    color:#111;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    align-self:flex-start;      /* NEW - keeps pill from stretching full width */
}

.product-info h3{
    color:#fff;
    margin-top:20px;
    font-size:26px;
    line-height:1.4;
    font-weight:600;
    display:-webkit-box;
    -webkit-line-clamp:2;
    line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* ================= Marquee ================= */

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 15px 5px 30px;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    transform: translateX(0);
    align-items: stretch;       /* NEW - makes every card in the row match the tallest one */
}

.marquee-track .product-card {
    width: 340px;
    flex-shrink: 0;
}




/* ================= Navigation Buttons ================= */

.marquee-outer{
    position:relative;
}

.marquee-prev,
.marquee-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:2px solid #C9A13B;
    border-radius:50%;
    background:transparent;
    color:#C9A13B;
    font-size:20px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
    z-index:10;
}

.marquee-prev{
    left:10px;
}

.marquee-next{
    right:10px;
}

.marquee-prev:hover,
.marquee-next:hover{
    background:#C9A13B;
    color:#111;
}

/* ================= Responsive ================= */

@media(max-width:1200px){

    .section-header h2{
        font-size:42px;
    }

    .product-card img{
        height:260px;
    }

}

@media(max-width:768px){

    .products-section{
        padding:0px 0;
    }

   .section-header{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:20px;
    margin-bottom:35px;
    margin-left:center;
    }
    .section-header h2{
        font-size:32px;
    }

    .section-header h7{
        font-size:15px;
        margin-left:center;
    }

    .marquee-prev,
    .marquee-next{
        width:42px;
        height:42px;
        font-size:15px;
    }

    .product-card img{
        height:220px;
    }

    .product-info{
        padding:20px;
    }

    .product-info h3{
        font-size:20px;
    }

}

/* FOOTER */

footer{
    background:#161617;
    color:#fdfdfd;
}

.footer-top{
    padding:70px 0;
}

.footer-top .container{
    width: 90%;
    max-width: 1300px;
    padding: 0;
    margin: auto;
}

.footer-grid{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0;
}
.footer-grid > div{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

footer h3{
    color:#fcfafa;
    margin-bottom:20px;
    position:relative;
}

footer h3::after{
    content:'';
    width:40px;
    height:3px;
    background:#c9a13b;
    display:block;
    margin:8px 0 0;
}

footer li{
    margin-bottom:12px;
}

footer a{
    color:#fbf6f6;
    transition:.3s;
}

footer a:hover{
    color:#c9a13b;
}

.socials{
    margin-top:20px;
    display:flex;
    justify-content:flex-start;
    gap:10px;
    flex-wrap:wrap;
}

.socials a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    border:1px solid #867e7e;
    border-radius:50%;
    margin-right:10px;
}

.socials a:hover{
    background:#c9a13b;
    color:#ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(158, 148, 148, 0);
    padding: 30px 0;
}


.footer-bottom .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    text-align: left;
    white-space: nowrap;
}
.footer-legal-links {
    text-align: center;
}

.footer-designer-links {
    text-align: right;
}

/* Pipe separators */
.footer-legal-links::before,
.footer-designer-links::before {
    content: "|";
    margin-right: 20px;
    color: #fefcfc;
    font-weight: 300;
}

/* =========================
   RESPONSIVE FOOTER
========================= */

/* Tablet */
@media (max-width:1003px){

    .footer-grid{
        gap:32px 24px;
    }

    .footer-grid > div{
        max-width:none;
    }

}


/* Mobile */
@media (max-width:768px){

    .footer-grid{
        flex-direction:column;
        align-items:center;
        gap:30px;
        text-align:center;
    }

    .footer-grid > div{
        align-items:center;
        max-width:none;
    }

    footer h3::after{
        margin:8px auto 0;
    }

    .socials{
        justify-content:center;
    }

    /* Top bar */
    .top-bar .container{
        flex-direction:column;
        gap:10px;
    }

    /* Footer bottom */
    .footer-bottom .container{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
        gap:10px;
    }

    .footer-bottom p{
        margin:0;
        text-align:center;
        line-height:1.6;
        white-space: normal;
    }

    .footer-legal-links,
    .footer-designer-links{
        text-align:center;
    }

    /* Remove pipe separators on phone */
    .footer-legal-links::before,
    .footer-designer-links::before{
        display:none;
    }

}

/* ================= CORE CAPABILITIES ================= */

.capabilities{
    background:#ffffff;
    padding:100px 0;
}

.capabilities h2{
    text-align:center;
    font-size:45px;
    color:#111;
    margin-bottom:60px;
    position:relative;
}

.capabilities h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#C9A13B;
    display:block;
    margin:15px auto 0;
}

.cap-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.cap-grid div{
    background:#111;
    color:#fff;
    padding:35px;
    border-radius:12px;
    text-align:center;
    font-size:20px;
    font-weight:600;
    transition:.3s;
    cursor:pointer;
}

.cap-grid div:hover{
    background:#C9A13B;
    color:#111;
    transform:translateY(-8px);
}


@media(max-width:991px){

    .cap-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .cap-grid{
        grid-template-columns:1fr;
    }

    .capabilities h2{
        font-size:34px;
    }

}

.company-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:100px;

    align-items:center;

}

.company-grid img{

    width:80%;

    border-radius:20px;

}
/* ================= MOBILE NAVIGATION ================= */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
    color:#111;
}

.mobile-quote{
    display:none;
}

@media (max-width:1003px){

    nav .container{
        height:80px;
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .menu-toggle{
        display:block;
        order:1;
        z-index:10001;
    }

    .logo{
        order:2;
        margin-left:auto;
        margin-right:-25px;
    }

    .logo img{
        height:140px;
        margin-top: 6px;
    }

    .quote-btn{
        display:none;
    }

  .nav-links{
    position:fixed;
    top:80px;
    left:-100%;
    width:280px;
    height:calc(100vh - 120px);
    background:#111;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:25px;
    padding: 0px 30px 15px;
    transition:left .35s ease;
    margin:0;
    z-index:9999;
    transform:none;
}

.nav-links li:first-child{
    margin-top: -160px;
}

.nav-links.active{
    left:0;
}

.nav-links a{
    color:#fff;
    font-size:18px;
}
    .mobile-quote{
        display:block;
        margin-top:15px;
        text-align:left;
    }

    .mobile-btn{
    display:inline-block;
    background:#C9A13B;
    color:#fff !important;
    padding:8px 14px;
    font-size:14px;
    border-radius:40px;   /* was 8px — higher value = more rounded corners */
    font-weight:600;
    margin:0;
}

}
@media (max-width:768px){

    .swiper-button-prev,
    .swiper-button-next{
        display:none !important;
    }

}

@media (max-width:768px){

    .swiper-button-prev,
    .swiper-button-next{
        display:none !important;
    }

}

html{
    scroll-behavior: smooth;
}

.scroll-down{
    cursor:pointer;
    pointer-events:auto;
}
/* ================= CONTACT PAGE ================= */



.contact-banner{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    overflow:hidden;

    padding:120px 0 80px;

    background:url("images/truckdesert.jpg") center center/cover no-repeat;

}

.contact-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(10,10,10,0.70),
        rgba(5,5,5,0.55)
    );

}



.contact-content{

    position:relative;

    z-index:2;
    margin: 5px -25px;
    max-width:700px;
    margin-top: -150px;
    padding: 10px 20px;

}



.contact-content h1{

    color:#fff;

    font-size:72px;

    margin-bottom:20px;

}



.contact-content p{

    color:#ddd;

    font-size:22px;

}





/* MOBILE */


@media(max-width:768px){

.contact-banner{
    min-height:80vh;
    background-position:center;
}

.contact-content h1{
    font-size:40px;
}

.contact-content p{
    font-size:16px;
}

.company-grid{
    grid-template-columns:1fr;
    gap:35px;
}

.mvv-grid{
    grid-template-columns:1fr;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.contact-item:last-child{

    margin-bottom:0;

}

.contact-item i{

    color:#C9A13B;

    font-size:24px;

    width:30px;

    margin-top:4px;

}

.contact-item h3{

    color:#fff;

    font-size:20px;

    margin-bottom:6px;

}

.contact-item p{

    color:#ccc;

    line-height:1.7;

}/* ================= CONTACT PAGE ================= */

/* CONTACT BANNER */

.contact-banner{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:120px 0 80px;
    background:url("images/truckdesert.jpg") center center/cover no-repeat;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(10,10,10,.65),
        rgba(5,5,5,.45)
    );
}

.contact-content{

    position:relative;

    z-index:2;

    max-width:700px;

    text-align:left;

}

.contact-content h1{
    color:#fff;
    font-size:72px;
    margin-bottom:20px;
}

.contact-content p{
    color:#ddd;
    font-size:22px;
}

/* CONTACT MAIN */

.contact-main{
    background:#161617;
    padding:100px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:stretch;
}

/* ================= LEFT SIDE ================= */

.contact-info span{
    color:#C9A13B;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.contact-info h2{
    color:#fff;
    font-size:42px;
    margin:20px 0;
}

.contact-info h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#C9A13B;
    margin-top:18px;
}

.contact-info>p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:45px;
}

/* ================= CONTACT ITEMS ================= */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}


/* ICON */

.contact-item i {
    width: 32px;
    flex-shrink: 0;

    color: #C9A13B;
    font-size: 28px;

    margin-top: 5px;
    text-align: center;
}


/* TEXT AREA */

.contact-item div {
    flex: 1;
}


/* TITLE */

.contact-item h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 8px;
}


/* DESCRIPTION / PHONE / EMAIL */

.contact-item p {
    color: #ddd;
    line-height: 1.8;
    margin: 0;
}

/* ================= FORM ================= */

.contact-form{
    background:#1d1d1e;
    border:1px solid rgba(201,161,59,.28);
    border-radius:16px;
    padding: 45px;
}

.contact-form h2{
    color:#fff;
    font-size:36px;
    margin-bottom:25px;
}

.contact-form h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#C9A13B;
    margin-top:15px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:16px;
    background:#161617;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    border-radius:8px;
    font-size:15px;
    transition:.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#999;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
    outline:none;
    border-color:#C9A13B;
}

.contact-form textarea{
    height:170px;
    resize:none;
}

/* BUTTON */

.contact-form button{
    margin-top:10px;
    background:#C9A13B;
    color:#111;
    border:none;
    padding:16px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#fff;
}

/* RESPONSIVE */

@media(max-width:900px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .contact-info h2{
        font-size:34px;
    }

    .contact-content h1{
        font-size:50px;
    }

}

@media(max-width:768px){

    .contact-banner{
        min-height:80vh;
    }

    .contact-content{
        text-align:center;
        margin:0 auto;
    }

    .contact-content h1{
        font-size:38px;
    }

    .contact-content p{
        font-size:16px;
    }

    .contact-form{
        padding:30px;
    }

    /* center the info card content on mobile */
    .contact-info-card{
        text-align:center;
    }

    .contact-info-card h2::after{
        margin-left:auto;
        margin-right:auto;
    }

    /* stack icon above text, centered */
    .contact-item{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .contact-item i{
        margin-top:0;
    }

}

/* ================= CONTACT INFO CARD ================= */

.contact-info-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.10);

    border-radius:16px;

    padding:45px;

    transition:.35s;

}

.contact-info-card:hover{

    border-color:rgba(201,161,59,.35);

    transform:translateY(-5px);

}

.contact-info-card span{

    color:#C9A13B;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.contact-info-card h2{

    color:#fff;

    font-size:42px;

    margin:20px 0;

}

.contact-info-card h2::after{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#C9A13B;

    margin-top:18px;

}

.contact-info-card>p{

    color:#ddd;

    line-height:1.8;

    margin-bottom:40px;

}




/* =====================================================
   REQUEST QUOTE PAGE
===================================================== */

.quote-hero{
    position:relative;
    min-height:65vh;
    display:flex;
    align-items:center;
    background:url("images/welding.jpeg") center/cover no-repeat;
}

.quote-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.quote-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.quote-content span{
    color:#C9A13B;
    font-weight:600;
    letter-spacing:2px;
}

.quote-content h1{
    font-size:64px;
    line-height:1.1;
    margin:20px 0;
    max-width:700px;
}

.quote-content p{
    max-width:650px;
    font-size:20px;
    color:#ddd;
    line-height:1.8;
}

/* ================= INTRO ================= */

.quote-intro{
    background:#161617;
    padding:100px 0;
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.quote-intro span{
    color:#C9A13B;
    font-weight:600;
    letter-spacing:2px;
}

.quote-intro h2{
    color:#fff;
    font-size:44px;
    margin:20px 0;
}

.quote-intro p{
    color:#ddd;
    line-height:1.9;
}

.intro-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.intro-cards div{
    background:#222;
    border-radius:15px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.intro-cards div:hover{
    transform:translateY(-8px);
    background:#C9A13B;
}

.intro-cards i{
    font-size:34px;
    color:#C9A13B;
    margin-bottom:20px;
}

.intro-cards div:hover i,
.intro-cards div:hover h3{
    color:#111;
}

.intro-cards h3{
    color:#fff;
}

/* ================= FORM ================= */

.quote-section{
    background:#111;
    padding:100px 0;
}

.quote-form{
    background:#1a1a1a;
    border-radius:18px;
    padding:50px;
}

.quote-form h2{
    color:#fff;
    text-align:center;
    margin-bottom:45px;
    font-size:40px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    color:#fff;
    margin-bottom:10px;
    font-weight:500;
}

.form-group input,
.form-group select,
.form-group textarea{
    background:#262626;
    border:1px solid #333;
    color:#fff;
    padding:15px 18px;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#C9A13B;
}

.full{
    margin-top:25px;
}

.full textarea{
    width:100%;
    resize:vertical;
}

/* ================= UPLOAD ================= */

.upload-box{
    margin-top:35px;
    border:2px dashed rgba(201,161,59,.5);
    border-radius:15px;
    padding:45px;
    text-align:center;
}

.upload-box i{
    font-size:42px;
    color:#C9A13B;
    margin-bottom:20px;
}

.upload-box h3{
    color:#fff;
}

.upload-box p{
    color:#bbb;
    margin:15px 0;
}

.upload-box input{
    color:#ddd;
}

/* ================= BUTTON ================= */

.submit-btn{
    margin-top:35px;
    background:#C9A13B;
    color:#fff;
    border:none;
    padding:18px 45px;
    border-radius:40px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#fff;
    color:#111;
}

/* ================= PROCESS ================= */

.process{
    background:#161617;
    padding:100px 0;
}

.process h2{
    color:#fff;
    text-align:center;
    font-size:44px;
    margin-bottom:70px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.process-grid div{
    text-align:center;
}

.process-grid span{
    width:75px;
    height:75px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    border-radius:50%;
    background:#C9A13B;
    color:#111;
    font-size:24px;
    font-weight:bold;
}

.process-grid h3{
    margin-top:20px;
    color:#fff;
    font-size:18px;
}

/* ================= CTA ================= */

.quote-cta{
    background:#C9A13B;
    text-align:center;
    padding:80px 20px;
}

.quote-cta h2{
    font-size:44px;
    color:#111;
}

.quote-cta p{
    margin:20px 0 35px;
    font-size:18px;
}

.quote-cta a{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:16px 36px;
    border-radius:40px;
    transition:.3s;
}

.quote-cta a:hover{
    background:#222;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .quote-hero{
        min-height:55vh;
        text-align:center;
    }

    .quote-content h1{
        font-size:38px;
    }

    .quote-content p{
        font-size:17px;
    }

    .intro-grid{
        grid-template-columns:1fr;
    }

    .intro-cards{
        grid-template-columns:1fr;
    }

    .quote-form{
        padding:30px 20px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .process h2{
        font-size:34px;
    }

    .quote-cta h2{
        font-size:30px;
    }

}
/* ================= for request quote ================= */
#quote-form {
  scroll-margin-top: 120px;
}

@media (max-width: 768px) {
  #quote-form {
    scroll-margin-top: 100px;
  }
}



/* =======================
   HERO BANNER
======================= */

.products-banner{

    position:relative;
    height:700px !important;
    width:100%;

    min-height:800px !important;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    overflow:hidden;
    margin:0;
    padding:0 5% !important;

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.72) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.30) 100%
        ),
        url("images/productshero.png");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    margin-top:0;

}
.products-banner-overlay{
    position:absolute;
    inset:0;
}

.products-banner-content{
    position:relative;
    z-index:2;
    max-width:760px;
    width:min(100%,760px);
    padding:0 0px;
    margin:0;
    text-align:left;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding-left: 34px;
    margin-bottom:100px;
    transform: translateY(-40px); 
}

.products-banner-content span{
    display:inline-block;
    color:#C9A13B;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;
    margin-bottom:15px;
}

.products-banner-content h1{
    color:#fff;
    font-size:64px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:700;
}

.products-banner-content p{
    color:#d5d5d5;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

/* =======================
   PRODUCTS SECTION
======================= */

.products-section{
    background:#0d0d0d;
    padding:100px 0;
}

/* =======================
   FILTER BUTTONS
======================= */

.filter-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 60px 0;
}

.filter-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(201,161,59,.35);
    border-radius: 50px;
    cursor: pointer;
    transition: .35s ease;
}

.filter-btn:hover {
    background: #C9A13B;
    color: #111;
    border-color: #C9A13B;
}

.filter-btn.active {
    background: #C9A13B;
    color: #111;
    border-color: #C9A13B;
    font-weight: 600;
}


/* =======================
   MOBILE FILTER BUTTONS
======================= */

@media (max-width: 540px) {

    .filter-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .filter-btn {
        width: 200px;
        text-align: center;
    }

}

/* =======================
   SMALL SCREENS
======================= */

@media (max-width: 540px) {

    .filter-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

}

/* =======================
   GRID
======================= */

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:35px;

    align-items:stretch;
}

/* =======================
   CARD
======================= */

.product-card{

    display:flex;

    flex-direction:column;

    background:#161616;

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    overflow:hidden;

    transition:.4s ease;

    height:100%;
}

.product-card:hover{

    transform:translateY(-10px);

    border-color:#C9A13B;

    box-shadow:0 20px 45px rgba(0,0,0,.45);
}

/* Gold Line */

.product-card::before{

    content:"";

    width:100%;

    height:4px;

    background:#C9A13B;

    display:block;
}

/* =======================
   IMAGE
======================= */

.card-media{

    position:relative;

    width:100%;

    height:280px;

    overflow:hidden;

    background:#111;

    display:flex;

    align-items:center;

    justify-content:center;
}

.card-media img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    object-position:center;

    transition:transform .7s ease;

    flex-shrink:0;
}

.product-card:hover .card-media img{

    transform:scale(1.08);
}

/* Dark Overlay */

.card-media::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.12)

    );
}

/* Placeholder */

.img-placeholder{

    position:absolute;

    inset:15px;

    border:1px dashed rgba(201,161,59,.35);

    display:none;

    justify-content:center;

    align-items:center;

    color:#999;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;
}

/* =======================
   CONTENT
======================= */

.product-info{

    flex:1;

    padding:28px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;
}

.product-info span{

    color:#111;

    background:#C9A13B;

    border:2px solid #C9A13B;

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1.5px;

    font-weight:600;

    margin-bottom:12px;
}

.product-info h3{

    color:#fff;

    font-size:28px;

    line-height:1.3;

    margin:0;
}

.product-info p{

    color:#bdbdbd;

    margin-top:15px;

    line-height:1.8;
}

/* =======================
   RESPONSIVE
======================= */

@media(max-width:1200px){

.products-grid{

grid-template-columns:repeat(2,1fr);

}

.products-banner-content h1{

font-size:52px;

}

}

@media(max-width:768px){

.products-banner{

min-height:100vh;

padding:0;

}

.products-banner-content{

text-align:center;

margin:auto;

padding:0 20px;

align-items:center;

}

.products-banner-content h1{

font-size:38px;

}

.products-banner-content p{

font-size:16px;

}

.filter-bar{

justify-content:center;

gap:12px;

}

.filter-btn{

padding:11px 22px;

font-size:13px;

}

.products-grid{

grid-template-columns:1fr;

}

.card-media{

height:240px;

}

.product-info{

padding:22px;

}

.product-info h3{

font-size:24px;

}

}

.hidden{
    display:none !important;
}

/* =====================================================
   PROJECT HERO
===================================================== */

.projects-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    
    margin: 0;                 /* ← Remove the -30px */
    padding: 0 5%;

    /* Add the same gradient overlay as your products banner */
    background-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.289) 0%,
            rgba(0, 0, 0, 0.271) 50%,
            rgba(0, 0, 0, 0.303) 100%
        ),
        url("images/projecthero.jpg");

    background-size: cover;
    background-position: center center;  /* Try center instead of 15% */
    background-repeat: no-repeat;
}

.projects-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.859) 0%,
        rgba(0,0,0,.55) 40%,
        rgba(0, 0, 0, 0.456) 90%
    );

    z-index:1;
} 

.projects-banner .container{

    position:relative;
    z-index:2;
    max-width:2000px;
    width:100%;
    margin:0 !important;
    padding-left:  30px;
    
}

.projects-banner span{

    color:#C9A13B;
    font-size:18px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.projects-banner h1{

    color:#fff;
    font-size:72px;
    line-height:1.1;
    margin:20px 0 30px;
    font-weight:700;
}

.projects-banner p{

    color:#ddd;
    max-width:600px;
    margin:0;
    font-size:21px;
    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

    .projects-banner{

        height:85vh;
        min-height:600px;
        background-position:center 30%;
        padding:120px 20px 60px;
        justify-content:center;
        text-align:center;
    }

    .projects-banner .container{
        padding-left:0;
    }

    .projects-banner h1{
        font-size:42px;
    }

    .projects-banner p{
        font-size:18px;
        line-height:1.6;
        margin:0 auto;
    }

}

/* =====================================================
   PROJECT SECTION
===================================================== */

.projects-section{

    background:#161617;

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#C9A13B;

    font-weight:600;

    letter-spacing:2px;

}

.section-title h2{

    color:#fff;

    font-size:54px;

    margin:18px 0;

}

.section-title p{

    color:#bbb;

    max-width:760px;

    margin:auto;

    line-height:1.8;

}


/* =====================================================
   PROJECT GRID
===================================================== */

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.project-card{

    background:#1d1d1d;

    border-radius:18px;

    overflow:hidden;

    transition:.35s ease;

    border:1px solid rgba(255,255,255,.06);

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 18px 45px rgba(0,0,0,.35);

}

.project-card img{

    width:100%;

    height:270px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:30px;

}

.project-tag{

    display:inline-block;

    background:#C9A13B;

    color:#111;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.project-content h3{

    color:#fff;

    font-size:28px;

    margin-bottom:15px;

}

.project-content p{

    color:#bbb;

    line-height:1.8;

}


/* =====================================================
   PROCESS
===================================================== */

.project-process{

    background:#111;

    padding:100px 0;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-box{

    background:#1b1b1b;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

}

.process-box:hover{

    transform:translateY(-10px);

}

.number{

    width:70px;

    height:70px;

    background:#C9A13B;

    color:#111;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:bold;

    margin:0 auto 25px;

}

.process-box h3{

    color:#fff;

    margin-bottom:15px;

}

.process-box p{

    color:#bbb;

    line-height:1.8;

}


/* =====================================================
   CTA
===================================================== */

.projects-cta{

    background:#C9A13B;

    text-align:center;

    padding:90px 20px;

}

.projects-cta h2{

    color:#111;

    font-size:46px;

    margin-bottom:20px;

}

.projects-cta p{

    max-width:700px;

    margin:auto;

    color:#222;

    line-height:1.8;

    margin-bottom:35px;

}

.cta-btn{

    display:inline-block;

    padding:16px 38px;

    background:#111;

    color:#fff;

    border-radius:40px;

    transition:.3s;

    font-weight:600;

}

.cta-btn:hover{

    background:#222;

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:991px){

.projects-grid{

grid-template-columns:repeat(2,1fr);

}

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.projects-banner h1{

font-size:56px;

}

.section-title h2{

font-size:44px;

}

}


@media(max-width:768px){

.projects-banner{

min-height:70vh;

padding:120px 20px 70px;

}

.projects-banner span{

font-size:15px;

}

.projects-banner h1{

font-size:40px;

margin:15px 0;

}

.projects-banner p{

font-size:17px;

}

.projects-section{

padding:80px 0;

}

.section-title{

margin-bottom:50px;

}

.section-title h2{

font-size:34px;

}

.projects-grid{

grid-template-columns:1fr;

gap:25px;

}

.project-card img{

height:230px;

}

.project-content{

padding:22px;

}

.project-content h3{

font-size:24px;

}

.project-process{

padding:80px 0;

}

.process-grid{

grid-template-columns:1fr;

gap:20px;

}

.projects-cta{

padding:70px 20px;

}

.projects-cta h2{

font-size:32px;

}

.projects-cta p{

font-size:16px;

}

}

/* =====================================================
   SMALL SCREENS
===================================================== */

@media (max-width: 375px) {

    /* GLOBAL RESET */

    html,
    body {
        width: 100%;
        max-width: 100%;
        min-width: 266px;
        overflow-x: hidden;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    img,
    video {
        max-width: 100%;
    }


    /* ================= CONTAINER ================= */

    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 12px;
        padding-right: 12px;
    }


    /* ================= HEADER ================= */

    nav .container {
        width: 100%;
        height: 75px;
        min-height: 75px;
        padding: 0 12px;
    }

    .menu-toggle {
        display: block;
        flex-shrink: 0;
        font-size: 24px;
        padding: 0;
    }

    .logo {
        margin: 0;
        margin-left: auto;
        margin-right: -14px;
        flex-shrink: 1;
    }

    .logo img {
        width: auto;
        height: 105px;
        max-width: 125px;
        object-fit: contain;
    }


    /* ================= MOBILE MENU ================= */

    .nav-links {
        top: 75px;
        left: -100%;
        width: min(280px, 85vw);
        height: calc(100vh - 75px);
        padding: 30px 20px;
        gap: 20px;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 16px;
        white-space: normal;
    }


    /* ================= HERO ================= */

    .hero {
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-content h1 {
        font-size: clamp(30px, 10vw, 38px);
        line-height: 1.1;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.55;
        overflow-wrap: break-word;
    }


    /* ================= HERO BUTTONS ================= */

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 240px;
        min-width: 0;
        text-align: center;
        padding: 13px 10px;
    }


    /* ================= SCROLL BUTTON ================= */

    .scroll-down {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        z-index: 10;
    }


    /* ================= ALL SECTIONS ================= */

    section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }


    /* ================= GRIDS ================= */

    .about-container,
    .footer-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
    }


    /* ================= ABOUT ================= */

    .about-content h2,
   

    .about-content p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* ================= PRODUCTS / MARQUEE ================= */

    .marquee-outer {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .marquee-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .marquee-track {
        width: max-content;
    }

 

    /* ================= CONTACT ================= */

    .contact-content,
    .contact-info-card {
        width: 100%;
        max-width: 100%;
    }

    .contact-content h1 {
        font-size: clamp(32px, 10vw, 48px);
        line-height: 1.1;
        overflow-wrap: break-word;
    }

    .contact-info-card {
        padding: 20px 15px;
    }


    /* ================= FOOTER ================= */

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    footer p,
    footer li {
        font-size: 13px;
        line-height: 1.6;
        overflow-wrap: break-word;
    }

}


/* =====================================================
  screen resize
===================================================== */

@media (min-width: 266px) and (max-width: 300px) {

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    nav .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .logo img {
        height: 90px;
        max-width: 110px;
    }

    .menu-toggle {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons a {
        max-width: 220px;
        font-size: 14px;
        padding: 12px 8px;
    }

    .product-card {
        width: 240px;
    }

}


/* ================================
   DISCLAIMER PAGE
================================ */

.disclaimer-page {
    min-height: 100vh;
    padding: 160px 20px 100px;
    background: #050505;
    color: #ffffff;
}
.disclaimer-container {
    width: min(90%, 1300px);
    margin-inline: auto;
}

/* HEADER */

.disclaimer-header {
    text-align: center;
    margin-bottom: 75px;
}

.disclaimer-label {
    display: block;
    margin-bottom: 18px;
    color: #C9A13B;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.disclaimer-header h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 500;
    letter-spacing: -1px;
}

.gold-line {
    width: 55px;
    height: 2px;
    margin: 25px auto;
    background: #C9A13B;
}

.disclaimer-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #fdfafa;
    font-size: 15px;
    line-height: 1.8;
}

/* CONTENT */

.disclaimer-content {
    width: 100%;
}

.disclaimer-section {
    margin-bottom: 55px;
}

.disclaimer-section h2 {
    margin: 0 0 18px;
    color: #C9A13B;
    font-size: 21px;
    font-weight: 500;
}

.disclaimer-section p {
    margin: 0 0 17px;
    color: #fdfafa;
    font-size: 15px;
    line-height: 1.9;
}

.disclaimer-section p:last-child {
    margin-bottom: 0;
}

.disclaimer-section strong {
    color: #ffffff;
    font-weight: 500;
}

/* COMPANY AMENDMENT */

.company-amendment {
    margin-top: 70px;
    padding-left: 25px;
    border-left: 2px solid #C9A13B;
}

/* MOBILE */

@media (max-width: 768px) {

    .disclaimer-page {
        padding: 120px 20px 70px;
    }

    .disclaimer-container {
        width: 100%;
    }

    .disclaimer-header {
        margin-bottom: 50px;
    }

    .disclaimer-header h1 {
        font-size: 45px;
    }

    .disclaimer-header p {
        font-size: 14px;
    }

    .disclaimer-section {
        margin-bottom: 42px;
    }

    .disclaimer-section h2 {
        font-size: 19px;
    }

    .disclaimer-section p {
        font-size: 14px;
        line-height: 1.8;
    }

    .company-amendment {
        padding-left: 18px;
    }

}


 /* to alig the product cards */
.marquee-track .product-info{
    min-height:180px;
}

.marquee-track .product-info h3{
    display:-webkit-box;
    -webkit-line-clamp:3;
    line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.marquee-track .product-info span{
    color:#111;
    background:#C9A13B;
    border:2px solid #C9A13B;
}

.product-info h3{
    color:#fff;
    font-size:28px;
    line-height:1.3;
    margin:0;

    display:block;
    -webkit-line-clamp:unset;
    line-clamp:unset;
    -webkit-box-orient:unset;
    overflow:visible;
}

/* send message button loading*/

.loader {
    width:16px;
    height:16px;
    border:2px solid rgba(255,255,255,.4);
    border-top:2px solid #fff;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
    vertical-align:middle;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

