body {
    font-family: 'Poppins', sans-serif;
     background: linear-gradient(135deg, #fff #fff);
   /* background: #414141;#383737*/
    color: #fff;   
}
/*#383737*/

/* NAVBAR 
.custom-nav {
    background: #000;
    border-bottom: 1px solid #222;
}*/



/* BUTTON */
.btn-yellow {
    background: #ffc107;
    color: #000;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-yellow:hover {
    background: #ffcc00;
}


/* HERO */
/* HERO */
.hero {
    padding: 100px 0;
  background: linear-gradient(135deg, #000, #000);
    /* background: linear-gradient(135deg, #2c2b2b, #111);*/
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
}

.hero h1 {
    color: #fff;
}
.hero p {
    color: #fff;
}

.hero-img {
    max-height: 400px;
}

/* CATEGORY */
/* SECTION */
.categories {
    padding: 40px 0;
}

/* CARD */
.card-box {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
    height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* IMAGE BOX */
.img-box {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
}

/* IMAGE FIX (NO CUT) */
.img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.3s;
}

/* TITLE */
.card-box h5 {
    color: #fff;
    padding: 10px;
    font-size: 16px;
}

/* HOVER EFFECT */
.card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255,193,7,0.4);
}

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

/* FOOTER */
/* FOOTER */
.footer {
   background: linear-gradient(135deg, #f7c704, #ffc107);
    padding: 20px 0 20px;
    margin-top: 50px;
    color: #000;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 25px rgba(255, 193, 7, 0.4);
}

/* Headings */
.footer h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    position: relative;
}

/* Stylish underline */
.footer h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 5px;
}

/* Text */
.footer p {
    margin: 0;
    font-weight: 500;
    color: #111;
}

/* Links */
.footer a {
    color: #000;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: 0.3s;
}

/* Hover effect */
.footer a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Divider */
.footer hr {
    border-top: 1px solid rgba(0,0,0,0.2);
    margin: 30px 0;
}

/* Bottom text */
.footer .text-center p {
    font-size: 14px;
    color: #111;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero {
        text-align: center;
    }

    .card-box {
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 60px 0;
    }

    

    .hero-img {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* ===== RESPONSIVE NAVBAR FIX ===== */
body {
    overflow-x: hidden;
    padding-top: 70px;
}


    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.4;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-img {
        width: 100%;
        max-width: 820px;
        height: auto;
    }

    .categories {
        padding: 50px 0;
    }

    .card-box {
        padding: 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }


@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-img {
        max-width: 260px;
    }

    .navbar-brand img {
        height: 45px;
    }
}




.tag{
  display:inline-block;
  background:#fff;
  color:#000;
  padding:8px 18px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
}

.hero-btns{
  margin-top:35px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
  padding:14px 30px;
  border-radius:10px;
  text-decoration:none;
  transition:.3s;
  font-weight:600;
}

.btn-primary{
  background:#fff;
  color:#000;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-outline{
  border:1px solid #facc15;
  color:#facc15;
}

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



/* STATS */

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:42px;
  margin-bottom:100px;
  margin-top:50px;
}

.stat-box{
     background: black;
  border:1px solid rgba(255,255,255,0.08);
  padding:35px;
  border-radius:20px;
  text-align:center;
  transition:.3s;
  color:#fff;
}

.stat-box:hover{
  transform:translateY(-6px);
  border-color:#facc15;
}

.stat-box h2{
  color:#facc15;
  font-size:42px;
  margin-bottom:10px;
}



/* RESPONSIVE */

@media(max-width:991px){

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

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

}

@media(max-width:768px){

  .hero-page{
    padding:70px 0;
  }

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

  

  .hero-stats{
    grid-template-columns:1fr;
  }

}



/* ===========about us page ========================== */

about-page{
  padding:100px 0;
     background: linear-gradient(135deg, #414141, #625e4a);
  color:#fff;
}

/* HERO */

.about-hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  margin-bottom:80px;
  flex-wrap:wrap;
}

.about-content{
  flex:1;
  min-width:300px;
}

.about-content h1{
  font-size:52px;
  line-height:1.2;
  margin:20px 0;
  font-weight:700;
}

.about-content p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:17px;
}




.about-image{
  flex:1;
  text-align:center;
  min-width:300px;
}

.about-image img{
  width:100%;
  max-width:500px;
}



/* RESPONSIVE */

@media(max-width:991px){

  .about-content h1{
    font-size:42px;
  }

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

}

@media(max-width:768px){

  .about-page{
    padding:70px 0;
  }

  .about-content h1{
    font-size:34px;
  }

  .why-content h2{
    font-size:32px;
  }

  .about-stats{
    grid-template-columns:1fr;
  }

}

/* contact page */

form .form-control {
  background: rgba(56, 56, 56, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

form .form-control::placeholder {
  color: #aaa;
}

form .form-control:focus {
  border-color: #ffcc00;
  box-shadow: none;
}

.glass {
    background: rgb(7 7 7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgb(244 230 7);
    transition: 0.4s;
    color: #ffffff;
}



.glass-contact p {
  margin-bottom: 10px;
  color: #000;
}




.glass-contact strong {
  color: #ffcc00;
}

.glass-contact {
  background: rgba(240, 236, 236, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgb(246, 246, 4);
  transition: 0.4s;
}
/*product page */
/* SECTION */
/* SECTION */
.products-home {
  padding: 60px 0;
  background: #f9f9f9;
}

/* HEADER */
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.section-header p {
  color: #777;
  margin-top: 5px;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* HOVER EFFECT 🔥 */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* IMAGE BOX */
.product-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* IMAGE FIX */
.product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.3s;
}

/* IMAGE ZOOM */
.product-card:hover img {
  transform: scale(1.08);
}

/* PRODUCT NAME */
.product-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.overlay h3{
    font-size:16px;
    line-height:1.3;
    
}

.overlay p{
    font-size:12px;
    line-height:1.4;
}
/*home page section*/
/* White background sections text fix */
section {
    color: #000;
}

/* Specifically for light sections */
.bg-light {
    color: #000;
}

/* Headings fix */
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
    color: #000;
}

/* Paragraph fix */
section p {
    color: #000;
}
.bg-light,
.bg-white,
section {
    color: #000 !important;
}

.bg-light h2,
.bg-light p {
    color: #000 !important;
}


/* ================= CONTACT PAGE ================= */

/* .contact-page {
  padding: 50px 20px 60px;
} */

/* CONTAINER */
.contact-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 25px;
}

.contact-header h1 {
  margin-bottom: 10px;
}

.contact-header p {
  color: #64748b;
}

/* INPUT GROUP */
.input-group {
  margin-bottom: 15px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  outline: none;
  font-size: 14px;
}

/* TEXTAREA */
.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
}

/* BUTTON */
.contact-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg,#3b82f6,#9333ea);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* DARK MODE */
body.dark .contact-container {
  background: #1e293b;
  color: white;
}

body.dark .contact-form input,
body.dark .contact-form textarea {
  background: #0f172a;
  color: white;
  border: 1px solid #334155;
}
/*change css */
/* MAIN BOX */
.brochure-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 60px 0;
}

/* reverse layout */
.brochure-box.reverse {
  flex-direction: row-reverse;
}

/* IMAGE CARD */
.brochure-img {
  width: 420px;
  height: 240px;
  background: #f5f5f5;
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* IMAGE */
.brochure-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

/* TEXT */
.brochure-content {
  flex: 1;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE FIX */
/* ========================= */

@media (max-width: 768px) {

  .brochure-box {
    flex-direction: column !important;   /* 🔥 sab stack ho jayega */
    text-align: center;
    gap: 20px;
  }

  .brochure-img {
    width: 100%;
    height: 200px;   /* thoda chhota for mobile */
  }

  .brochure-content {
    width: 100%;
  }

  .brochure-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}




/* CONTENT */
.brochure-content {
  flex: 1;
}
.section-title { font-size: 26px; font-weight: 700; color: #111; position: relative; margin-bottom: 15px; }
.section-title::after { content: ""; width: 50px; height: 3px; background: #f4b400; /* yellow accent */ position: absolute; left: 0; bottom: -5px; border-radius: 2px; }
/* ---------------- MOBILE FIX ---------------- */
@media (max-width: 768px) {

  .brochure-box {
    flex-direction: column !important;   /* sab stack ho jaye */
    text-align: center;
  }

  .brochure-box.reverse {
    flex-direction: column !important;   /* reverse hata do mobile me */
  }

  .brochure-img {
    width: 100%;
    height: 200px;   /* thodi chhoti for mobile */
  }

  .brochure-content {
    width: 100%;
  }

  .section-title {
    font-size: 20px;
  }

}