* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f8f8f8;
    color: #333;
}

/* HEADER */
.header {
    background: #111;
    color: #fff;
    padding: 15px 0;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

.nav a:hover {
    color: #f4b400;
}

/* HERO */
/* HERO IMAGE USING HTML */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(35%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero h2 {
    color: #f4b400;
    font-size: 48px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero p {
    color: #ddd;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 25px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn {
    background: #f4b400;
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
}

/* ABOUT */
.about {
    padding: 50px 10%;
    text-align: center;
    background: #fff;
}

.about h2 {
    margin-bottom: 15px;
}

/* PRODUCTS */
.products {
    padding: 50px 10%;
    text-align: center;
}

.product-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.product {
    background: #fff;
    padding: 20px;
    width: 220px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* FOOTER */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 15px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
/* REMOVE UNWANTED BULLETS & LEFT DOTS */
ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
/* OWNER & CEO SECTION */
.team-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-card h3 {
    margin-top: 15px;
    font-size: 18px;
}

.team-card p {
    color: #666;
    font-size: 14px;
}
.map-section {
    padding: 50px 10%;
    background: #fff;
    text-align: center;
}

.map-section iframe {
    border-radius: 10px;
}
/* CONTACT PAGE IMPROVED */
.contact-section {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: #f8f8f8;
    align-items: center;
}

/* LEFT SIDE INFO */
.contact-info {
    text-align: center;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info a {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

/* RIGHT SIDE FORM */
.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    text-align: center;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form form button {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

.contact-form form button:hover {
    background: #333;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* COMMON HERO BANNER FOR ALL PAGES */
.hero {
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    ),
    url("images/contact-banner.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    opacity: 0.9;
}
/* PRODUCTS PAGE */
.products-page {
    padding: 70px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    background: #f8f8f8;
}

.product-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.product-card p {
    font-size: 15px;
    line-height: 1.6;
}

.product-cta {
    padding: 60px 10%;
    text-align: center;
    background: #fff;
}

.product-cta h2 {
    margin-bottom: 20px;
}
/* MANUFACTURING PAGE */
.manufacturing-section {
    padding: 70px 10%;
    background: #fff;
}

.manufacturing-section h2 {
    margin-bottom: 15px;
}

.manufacturing-section p {
    font-size: 15px;
    line-height: 1.7;
}
/* MANUFACTURING PAGE IMPROVEMENTS */
.center-heading {
    text-align: center;
    margin-bottom: 20px;
}

.manufacturing-section ul {
    margin-top: 15px;
    line-height: 1.9;
}
/* MANUFACTURING PAGE SPACING FIX */
.manufacturing-section p {
    margin-bottom: 25px;   /* paragraph ke baad gap */
}

.manufacturing-section h2 {
    margin-top: 50px;      /* heading se pehle gap */
    margin-bottom: 20px;   /* heading ke baad gap */
}

.manufacturing-section ul {
    margin-bottom: 30px;   /* list ke baad gap */
}
/* PRODUCT IMAGES */
.product img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.product h3 {
    font-size: 16px;
    margin-top: 5px;
}
.product-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
/* PRODUCT DETAIL PAGE */
.product-detail {
    padding: 70px 10%;
    background: #fff;
}

.product-detail-box {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* IMAGE */
.product-image {
    flex: 1;
    min-width: 280px;
}

.product-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* INFO */
.product-info {
    flex: 1;
    min-width: 280px;
}

.product-info h2 {
    margin-bottom: 15px;
}

.product-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-info h3 {
    margin-bottom: 10px;
}

/* TABLE */
.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.product-table th,
.product-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.product-table th {
    background: #f4f4f4;
    width: 40%;
}

/* MOBILE */
@media (max-width: 768px) {
    .product-detail-box {
        flex-direction: column;
    }
}
/* MULTI PRODUCT GRID */
.product-list {
    padding: 70px 10%;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-item img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.product-item p {
    font-size: 14px;
    margin-bottom: 10px;
}

.product-item a {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}
.product {
    text-decoration: none;
    color: inherit;
    display: block;
}
/* GRIT ROW */
.grit-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.grit-row span {
    border: 1px solid #f4b400;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 4px;
    color: #f4b400;
}
.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
/* ===== MOBILE HEADER ===== */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .logo {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .nav a {
        font-size: 14px;
    }
}
/* ===== HERO TEXT MOBILE ===== */
@media (max-width: 768px) {

    .page-title {
        padding: 70px 15px !important;
    }

    .page-title h1,
    .page-title h2 {
        font-size: 26px !important;
    }

    .page-title p {
        font-size: 15px !important;
        line-height: 1.5;
    }
}
/* ===== PRODUCT GRID RESPONSIVE ===== */

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

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== PRODUCT CARD MOBILE ===== */
@media (max-width: 600px) {

    .product-item {
        padding: 15px;
    }

    .product-item h3 {
        font-size: 16px;
    }

    .product-item p {
        font-size: 14px;
    }

    .product-item img {
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 600px) {
    .product-item a {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        font-size: 14px;
    }
}
/* ===== HOME PRODUCTS IMAGE FIX ===== */
.product img {
    width: 100%;
    height: 160px;              /* SAME HEIGHT FOR ALL */
    object-fit: contain;        /* image cut nahi hogi */
    background: #f6f6f6;        /* clean background */
    padding: 10px;
    border-radius: 6px;
}
.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 600px) {
    .product img {
        height: 140px;
    }
}
/* ===== FORCE MOBILE SINGLE COLUMN PRODUCTS ===== */
@media (max-width: 768px) {

    /* products section container */
    .products,
    .products-grid,
    .product-grid {
      display: block !important;
    }
  
    /* each product card */
    .product,
    .product-card {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto 25px !important;
      display: block !important;
    }
  
    /* image fix */
    .product img,
    .product-card img {
      display: block !important;
      width: auto !important;
      max-width: 220px !important;
      height: auto !important;
      margin: 0 auto 10px !important;
      object-fit: contain !important;
    }
  
    /* text center */
    .product h3,
    .product-card h3 {
      text-align: center !important;
    }
  
  }
  section.products * {
    float: none !important;
  }
/* ===============================
   FORCE HOME PRODUCTS MOBILE FIX
   =============================== */

   @media screen and (max-width: 768px) {}

    /* Sab kuch column me */
    .products,
    .products * {
      box-sizing: border-box;
    }
  
    .products .products-grid {
      display: block !important;
    }
  
    .products .product {
      display: block !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto 30px !important;
      padding: 20px !important;
      text-align: center !important;
    }
  
    .products .product img {
      display: block !important;
      margin: 0 auto 15px !important;
      width: 100% !important;
      max-width: 180px !important;
      height: auto !important;
      object-fit: c
    }
    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .product-card {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
    }
    
    .product-card img {
        max-width: 180px;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    
    /* MOBILE FIX */
    @media (max-width: 768px) {
        .products-grid {
            grid-template-columns: 1fr;
        }
    }
    .product {
        text-decoration: none;
        color: inherit;
        display: block;
    }
/* PRODUCTS GRID – DESKTOP */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;   /* image crop nahi hogi */
}
    /* ===== MOBILE RESPONSIVE FIX ===== */
@media (max-width: 768px) {

    .products-grid {
        display: block;   /* grid band */
    }

    .product-card {
        width: 100%;
        margin-bottom: 25px;
    }

    .product-card img {
        width: 100%;
        max-width: 260px;
        height: auto;
        margin: 0 auto;
        display: block;
        object-fit: contain;
    }

}
        /* PRODUCTS GRID – SAME AS COMBINATION STONE */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

/* SQUARE CARD */
.product-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* IMAGE BOX – FIXED HEIGHT */
.product-card img {
    width: 100%;
    height: 180px;          /* square feel */
    object-fit: contain;    /* crop nahi hogi */
    background: #f5f5f5;
    border-radius: 8px;
    padding: 10px;
}

/* TEXT */
.product-card h3 {
    font-size: 17px;
    margin: 12px 0 4px;
    color: #111;
}

.product-card p {
    font-size: 14px;
    color: #555;
}

/* BUTTON */
.product-card .btn {
    margin-top: 12px;
    padding: 8px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.products-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.page-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* DESKTOP: 3 per row */
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f4b400;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* ✅ MOBILE FIX – 1 PRODUCT PER ROW */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 200px;
    }
}
