



/* Secret Invisible Admin Button */
.logo {
    position: relative;
    margin-left: 0;
}

#hiddenAdminBtn {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    opacity: 0;
    z-index: 10;
}

.logo {
    
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    max-height: 95px;   /* yahi main control hai */
    width: auto;
}

/* --- TEMP FIX: Force logo to the extreme left --- */
.top-header, header, nav, .nav-flex, .logo {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.logo img {
  display: block;
  margin-left: 10px !important;
}

/* -------- GLOBAL -------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #ffffff;
    color: #573F24;
}

/* Container centers content on screen */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding-left/right conflicts hataye */
}

/* -------- HEADER -------- */
.top-header {
    background: #5C4033;
    border-bottom: 2px solid #d8c3a1;
    padding: 10px 0; /* Top/Bottom padding */
    width: 100%;
}

/* --- MAIN LAYOUT ENGINE --- */
/* Ye sabse important part hai alignment ke liye */
.nav-flex {
    display: flex;
    justify-content: space-between; /* Logo Left, Menu Right */
    align-items: center;            /* Vertical Center */
}



/* -------- NAVBAR (RIGHT SIDE) -------- */
.navbar {
    /* Float aur fixed margin hata diya hai */
    display: flex;
    align-items: center;
    gap: 30px; /* Links ke beech ka gap */
}

.navbar a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #d8c3a1;
}

/* Contact Us Button Style */
a.nav-btn {
    padding: 10px 20px;
    background:  #4e352a; /* Thoda contrast color */
    color: #d8c3a1;      /* Text color dark */
    border-radius: 5px;
}

a.nav-btn:hover {
    background: #fff;
    color: #5C4033;
}
/* ======================================================
   HERO SECTION (Transparent Background)
====================================================== */

/* -------- HERO -------- */
.hero {
    width: 100%;
    height: 100vh;
    background: url("images/bg/silica_sand_bg.jpg") no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Soft white transparent overlay over full hero */
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65); /* full white transparent effect */
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    width: 55%;
    margin-left: 6%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #5b3e26;
    line-height: 1.2;
}

.hero-content p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #4a3926;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    border: 2px solid #6A4E2E;
    color: #6A4E2E;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.btn:hover {
    background: #6A4E2E;
    color: white;
    transform: scale(1.05);
}

/* ---- Responsive Hero ---- */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-content {
        width: 90%;
        margin-left: 5%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* ===================== MODAL POPUP ===================== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  width: 80%;
  max-width: 650px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.5s ease;
}

.close-modal {
  color: #5b3e26;
  float: right;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  margin-top: -10px;
}

.close-modal:hover {
  color: #000;
}

@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}




/* -------- PRODUCT SLIDER -------- */

.section-title{
    text-align: center;
}

.product-slider-section { 
    padding: 56px 0; 
    background: #fff; 
}

.wrap { 
    width:90%; 
    max-width:1200px; 
    margin: 0 auto; 
}

.section-title {
  font-size: 28px;
  color: #6A4E2E;
  font-weight:700;
  margin-bottom:18px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    animation: autoScroll 25s linear infinite;
}

@keyframes autoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.card {
    width: 220px;
    min-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.card-media {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}

.card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 4px solid #573F24;
    transition: .5s;
}

.card-body {
    padding: 14px;
    text-align: center;
}

.card-body h3 {
    color: #573F24;
    font-size: 17px;
    font-weight: 600;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 2px solid #573F24;
}

.card:hover img {
    transform: scale(1.1);
}


.product-list-section {
    padding: 60px 0;
}

.product-list-title {
    font-size: 32px;
    font-weight: 700;
    color: #6A4E2E;
    text-align: center;
    margin-bottom: 30px;
}

.product-list {
    list-style: none;
    padding-left: 0;
    max-width: 600px;
    margin: auto;
}

.product-list li {
    margin-bottom: 15px;
}

.product-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 20px;
    text-decoration: none;
    background: #fff;
    color: #573F24;
    border: 1px solid #e7d7c4;
    border-radius: 8px;
    transition: 0.3s;
}

.product-list a .arrow {
    font-size: 22px;
    transition: 0.3s;
}

.product-list a:hover {
    background: #f5ebe0;
    transform: translateX(5px) scale(1.02);
    border-color: #6A4E2E;
}

.product-list a:hover .arrow {
    transform: translateX(5px);
}
/* ============================================
   CLEAN + PROFESSIONAL PRODUCT PAGE UI
============================================ */

/* Fade-in animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Floating image */
@keyframes floatImg {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* PRODUCT SECTION */
.product-section {
    padding: 60px 20px;
    animation: fadeIn 1.2s ease-in-out;
}

.product-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #6A4E2E;
    margin-bottom: 40px;
}

/* =======================================================
   PRODUCT IMAGES: 2 TOP + 1 CENTER (Enhanced Zoom Version)
======================================================= */
.product-images {
    width: 100%;
    margin-bottom: 50px;
}

.img-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 25px;
}

/* Images balanced: less wide, slightly taller */
.img-row img {
    width: 42%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid #6A4E2E;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* Stronger zoom and depth effect */
.img-row img:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Single center image larger */
.img-row.single img {
    width: 55%;
    height: 360px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .img-row img {
        width: 46%;
        height: 260px;
    }
    .img-row.single img {
        width: 70%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .img-row {
        flex-direction: column;
        align-items: center;
    }
    .img-row img {
        width: 90%;
        height: 240px;
    }
    .img-row.single img {
        width: 90%;
        height: 250px;
    }
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.img-row img {
  animation: floatImg 5s ease-in-out infinite;
}

/* ============================================
   INFO (DESCRIPTION) WITH FIXED BG
============================================ */

.product-info-section {
    background-image: url('../images/bg/silica_sand_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
   padding: 120px 10% 60px;  /* Bottom padding ko 180px → 60px */
    margin-top: 0;  /* starts right after product images */
    position: relative;
}

.product-info-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.75); /* soft white layer */
}

.info-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    animation: fadeIn 1s;
}

.info-title {
    font-size: 40px;
    font-weight: 900;
    color: #4b2f1c;
    text-align: center;
    margin-bottom: 20px;
}

.info-text {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.8;
}

.info-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.info-points li {
        color: #573f24;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.info-points li i {
    font-size: 26px;
    color: #b44a00;
}



/* ============================================
   WHY CHOOSE US – NORMAL WHITE SECTION
============================================ */

.why-us {
    background: #ffffff;
    padding: 80px 10% 80px;
    margin-top: 0;        /* not inside background */
    border-top: 3px solid #e8d9c8;
}

.why-us h2 {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    color: #4b2f1c;
    margin-bottom: 20px;
}

.why-us p {
    max-width: 900px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* REMOVE GRID & CARDS COMPLETELY */
.why-grid,
.why-card {
    display: none !important;
}

/* ============================================
   RELATED PRODUCTS (3 BIG CIRCLE CARDS)
============================================ */

.related-products {
    padding: 60px 10%;
    text-align: center;
}

.related-products h2 {
    font-size: 38px;
    color: #4b2f1c;
    font-weight: 900;
    margin-bottom: 40px;
}

.related-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.related-card {
    width: 320px;
    cursor: pointer;
    text-align: center;
}

.related-card img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #b89a78;
    transition: 0.3s;
}

.related-card img:hover {
    transform: scale(1.08);
}

.related-card h3 {
    font-size: 22px;
    margin-top: 15px;
    font-weight: 700;
    color: #4b2f1c;
}

/* ======================================================
                PRODUCT APPLICATION / USES SECTION
====================================================== */
.product-uses-section {
  background: #f9f5f1;
  padding: 70px 8%;
  margin-top: 50px;
  border-top: 2px solid #d9c3a1;
}

.product-uses-section .info-title {
  color: #5b3e26;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.product-uses-section .info-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #6A4E2E;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.product-uses-section .info-points {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto 0;
}

.product-uses-section .info-points li {
  font-size: 16.5px;
  color: #4a321c;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.product-uses-section .info-points li i {
  color: #6A4E2E;
  font-size: 18px;
  flex-shrink: 0;
}

.product-uses-section .info-points li:hover {
  transform: translateX(6px);
  color: #6A4E2E;
}

/* Mobile */
@media (max-width: 768px) {
  .product-uses-section {
    padding: 50px 6%;
  }
  .product-uses-section .info-title {
    font-size: 24px;
  }
}


/* ============================
   RELATED PRODUCTS – CIRCLE IMAGE + BIG SQUARE CARDS
============================== */

.related-products {
    padding: 80px 10%;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 38px;
    color: #4b2f1c;
}

/* BIG 3-COLUMN GRID */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* SQUARE CARD */
.related-card {
    background: #ffffff;
    border: 2px solid #d2c5b8;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
}

/* CARD HOVER */
.related-card:hover {
    transform: translateY(-8px);
    background: #4b2f1c;
    color: #fff;
    border-color: #4b2f1c;
}

/* CIRCLE IMAGE */
.related-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #e6d9cc;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* HOVER IMAGE EFFECT */
.related-card:hover img {
    border-color: white;
    transform: scale(1.08);
}

/* TITLE TEXT */
.related-card p {
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-card img {
        width: 140px;
        height: 140px;
    }
}



/* =======================================================
   FREE SAMPLE FORM — FINAL VERSION
======================================================= */
.free-sample-section {
  padding: 80px 10%;
  background: #f4f0ec;
  font-family: "Poppins", sans-serif;
}

.free-sample-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 45px 50px;
  border-radius: 15px;
  border: 1px solid #d2c2b0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.free-sample-section h2 {
  text-align: center;
  color: #5b3e26;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.fs-sub {
  text-align: center;
  color: #7b644c;
  font-size: 17px;
  margin-bottom: 35px;
}

/* Two-column layout for large screens */
.row-2 {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ICON + INPUT WRAPPER */
.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #b08a63;
  font-size: 15px;
  pointer-events: none;
}

/* INPUTS + TEXTAREA */
.free-sample-form input,
.free-sample-form textarea {
  width: 100%;
  padding: 12px 15px 12px 42px;   /* left padding for icon */
  margin-bottom: 18px;
  border: 1px solid #c7b7a3;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  color: #3c2a18;
  background-color: #fff;
  transition: 0.3s ease;
}

.free-sample-form input:focus,
.free-sample-form textarea:focus {
  border-color: #8b6b51;
  box-shadow: 0 0 0 3px rgba(139,107,81,0.15);
}

.free-sample-form textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.6;
}

/* BUTTON */
.send-sample-btn {
  padding: 13px 45px;
  background: linear-gradient(135deg, #8b6b51, #6a4c39);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.send-sample-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .free-sample-container {
    padding: 30px 25px;
  }
  .row-2 {
    flex-direction: column;
  }
  .free-sample-section h2 {
    font-size: 30px;
  }
}

/* POPUP MESSAGE (same as inquiry form) */
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #3a7b3a;
    color: #fff;
    padding: 15px 22px;
    border-radius: 10px;
    font-size: 16px;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.18);
    animation: fadeInOut 3s ease forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .free-sample-container {
        padding: 30px 25px;
    }
    .free-sample-form .row-2 {
        flex-direction: column;
    }
    .free-sample-section h2 {
        font-size: 30px;
    }
}





.inquiry-box {
    max-width: 550px;
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #d2c2b0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: "Poppins", sans-serif;
}

.inquiry-box h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #5b3e26;
}

.inquiry-box label {
    font-weight: 600;
    color: #4a321c;
}

.inquiry-box input,
.inquiry-box textarea,
.inquiry-box select {
    width: 100%;
    padding: 12px;
    margin: 8px 0 18px;
    border: 1px solid #c7b7a3;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.inquiry-box button {
    width: 100%;
    padding: 12px;
    background: #795742;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

.inquiry-box button:hover {
    background: #6a4c39;
}

/* Optional — for icon alignment inside labels */
.inquiry-box label i {
    margin-right: 6px;
    color: #795742;
}

/* Optional — if you want same input-wrapper look as sample form */
.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #a88b6a;
    font-size: 15px;
}

/* POPUP */
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #3a7b3a;
    color: #fff;
    padding: 15px 22px;
    border-radius: 10px;
    font-size: 16px;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.18);
    animation: fadeInOut 3s ease forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* Floating Inquiry Button */
.floating-inquiry-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #795742;
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: 0.3s;
}

.floating-inquiry-btn:hover {
    background: #6a4c39;
}
 

/* -------- FULL FOOTER -------- */
.footer-main {
    background: #6A4E2E;
    color: #fff8f0;
    padding: 50px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    color: #FFE4C4;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: #FFF4E1;
}

.footer-col a {
    color: #FFF4E1;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ffffff33;
    font-size: 14px;
}

/* =======================================================
   CONTACT PAGE STYLING
======================================================= */
.contact-section {
  padding: 80px 10%;
  background: #f4f0ec;
  font-family: "Poppins", sans-serif;
}
.contact-title {
  text-align: center;
  color: #5b3e26;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-sub {
  text-align: center;
  color: #7b644c;
  margin-bottom: 45px;
  font-size: 17px;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-map {
  flex: 1 1 48%;
  position: relative;
  min-height: 380px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #6a4e2e;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.map-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #795742;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}
.map-btn:hover { background: #6a4c39; }

.contact-info {
  flex: 1 1 46%;
  background: #fff;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-info h3 {
  font-size: 26px;
  color: #5b3e26;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 16px;
  color: #3c2a18;
  line-height: 1.6;
  margin-bottom: 14px;
}
.contact-info i {
  color: #8b6b51;
  margin-right: 10px;
}

/* CONTACT FORM */
.contact-form-section {
  background: #fff;
  padding: 80px 10%;
}
.contact-form-box {
  max-width: 700px;
  margin: 0 auto;
  background: #fefcfb;
  border: 1px solid #d2c2b0;
  border-radius: 15px;
  padding: 45px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.contact-form-box h2 {
  text-align: center;
  color: #5b3e26;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-sub {
  text-align: center;
  color: #7b644c;
  margin-bottom: 35px;
  font-size: 16px;
}
.input-wrapper {
  position: relative;
  width: 100%;
}
.input-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a88b6a;
  font-size: 15px;
  pointer-events: none;
}
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px 15px 12px 42px;
  margin-bottom: 20px;
  border: 1px solid #c7b7a3;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  color: #3c2a18;
  background-color: #fff;
  transition: 0.3s ease;
}
.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #8b6b51;
  box-shadow: 0 0 0 3px rgba(139,107,81,0.15);
}
.contact-form-box textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.6;
}
.send-btn {
  background: linear-gradient(135deg,#25d366,#128c7e);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 45px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}
.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.row-2 {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
/* FLOATING WHATSAPP ICON (LEFT SIDE, CLEAN) */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;      /* ✅ removes underline */
  outline: none;              /* ✅ removes focus outline */
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  text-decoration: none;      /* ✅ ensures no underline on hover too */
}

@keyframes bounce-whatsapp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.whatsapp-float {
  animation: bounce-whatsapp 3s infinite ease-in-out;
}


/* Responsive */
@media (max-width: 768px){
  .contact-row{flex-direction:column;}
  .contact-map,.contact-info{width:100%;}
  .contact-form-box{padding:30px 25px;}
  .row-2{flex-direction:column;}
}

/* POPUP SUCCESS MESSAGE */
.popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #3a7b3a;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  display: none;
  opacity: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.18);
  transition: opacity 0.5s ease;
  z-index: 9999;
}

/* =======================================================
   COMPANY PAGE STYLING - Tulshi Microns
======================================================= */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f6f3;
  color: #3b2a1a;
  margin: 0;
  padding: 0;
}

/* ======================================================
       MANUFACTURING UNIT HERO (BALANCED VERSION)
======================================================= */
.manufacturing-hero {
  background: linear-gradient(to bottom, #fffaf5, #fff);
  padding: 80px 10%;
}

.manufacturing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.manufacturing-text {
  flex: 1 1 50%;
  color: #4a321c;
}

.manufacturing-text h1 {
  font-size: 36px;
  color: #5b3e26;
  font-weight: 800;
  margin-bottom: 20px;
}

.manufacturing-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #3b2a17;
  margin-bottom: 15px;
}

.extra-info {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.9;
  color: #2a180c;      /* ✅ darker brown — fully visible */
  font-weight: 400;
  opacity: 1;          /* ensure visible */
  display: block;      /* prevent accidental hidden state */
  visibility: visible;
  position: relative;
  z-index: 2;
}


.manufacturing-video {
  flex: 1 1 40%;
  text-align: center;
}

.manufacturing-video video {
  width: 100%;
  max-width: 400px;   /* ✅ smaller width */
  height: 580px;      /* ✅ reduced height */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.manufacturing-video video:hover {
  transform: scale(1.05);
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .manufacturing-container {
    flex-direction: column;
    text-align: center;
  }

  .manufacturing-video video {
    max-width: 100%;
    height: auto;
  }

  .manufacturing-text h1 {
    font-size: 28px;
  }

  .manufacturing-text p {
    font-size: 16px;
  }
}


/* ======================================================
                COMPANY INTRODUCTION SECTION
====================================================== */
.company-intro-section {
  background: #fdfaf6;
  padding: 80px 10%;
  text-align: center;
  border-bottom: 2px solid #e2d4c3;
}

.company-intro-section .intro-container {
  max-width: 900px;
  margin: auto;
}

.intro-title {
  font-size: 30px;
  font-weight: 700;
  color: #5b3e26;
  margin-bottom: 20px;
  position: relative;
}

.intro-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #6A4E2E;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.intro-text {
  font-size: 17px;
  line-height: 1.7;
  color: #4a321c;
  text-align: justify;
  margin-top: 15px;
}


/* GALLERY */
.factory-gallery {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}
.factory-gallery h2 {
  font-size: 32px;
  color: #5b3e26;
  font-weight: 700;
  margin-bottom: 10px;
}
.factory-gallery .sub {
  font-size: 16px;
  color: #7b6a56;
  margin-bottom: 60px;
}

.machine-photo {
  margin-bottom: 70px;
  position: relative;
}
.machine-photo img {
  width: 100%;
  max-width: 1000px;
  border-radius: 15px;
  border: 2px solid #d1bfa6;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.6s ease;
}
.machine-photo img:hover {
  transform: scale(1.04);
}
.caption {
  margin-top: 15px;
  font-size: 16px;
  color: #4a3b28;
  font-weight: 500;
}

/* PRODUCTION INFO */
.production-info {
  background: #f4ede7;
  padding: 80px 10%;
}
.production-info .info-box {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 40px 45px;
  border-radius: 14px;
  border: 1px solid #d2c2b0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.production-info h2 {
  color: #5b3e26;
  font-size: 28px;
  margin-bottom: 15px;
}
.production-info p {
  color: #654b31;
  line-height: 1.7;
  margin-bottom: 25px;
}
.production-info ul {
  list-style: none;
  padding: 0;
}
.production-info li {
  font-size: 16px;
  color: #3b2a1a;
  margin-bottom: 10px;
}
.production-info i {
  color: #7a573f;
  margin-right: 10px;
}

/* QUALITY */
.quality-section {
  text-align: center;
  padding: 80px 10%;
  background: #fff;
}
.quality-section h2 {
  font-size: 30px;
  color: #5b3e26;
  margin-bottom: 15px;
}
.quality-section p {
  max-width: 850px;
  margin: auto;
  color: #6b523a;
  font-size: 16px;
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(180deg,#7a573f,#5b3e26);
  color: #fff;
  text-align: center;
  padding: 90px 10%;
}
.cta-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-section p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.7;
}
.cta-btn {
  background: #fff;
  color: #5b3e26;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #f4ede7;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px){
  .company-hero{padding:80px 7%;}
  .company-hero h1{font-size:32px;}
  .factory-gallery{padding:60px 7%;}
  .production-info{padding:60px 7%;}
  .quality-section{padding:60px 7%;}
  .cta-section{padding:70px 7%;}
}

/* =======================================================
   ABOUT US PAGE - Tulshi Microns
======================================================= */
body {
  font-family: "Poppins", sans-serif;
  background: #f8f6f3;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* HERO */
.about-hero {
  background: linear-gradient(180deg,#f3ebe4,#f9f7f4);
  text-align: center;
  padding: 100px 10% 70px;
}
.about-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #5b3e26;
}
.about-hero span { color: #795742; }
.about-hero p {
  color: #6b523a;
  font-size: 18px;
  margin-top: 10px;
}

/* WHO WE ARE */
.who-we-are {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 10%;
  flex-wrap: wrap;
}
.who-we-are .text {
  flex: 1 1 50%;
}
.who-we-are h2 {
  color: #5b3e26;
  font-size: 28px;
  margin-bottom: 15px;
}
.who-we-are p {
  font-size: 16px;
  color: #4b3724;
  line-height: 1.8;
}
.who-we-are .photo img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* VISION & MISSION */
.vision-mission {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #fff;
  padding: 80px 10%;
  text-align: center;
}
.vision-mission div {
  flex: 1 1 45%;
  background: #f4ede7;
  margin: 10px;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.vision-mission i {
  font-size: 38px;
  color: #795742;
  margin-bottom: 15px;
}
.vision-mission h3 {
  color: #5b3e26;
  margin-bottom: 10px;
}
.vision-mission p {
  color: #4b3724;
  line-height: 1.7;
  font-size: 15px;
}

/* JOURNEY */
.journey {
  text-align: center;
  padding: 80px 10%;
}
.journey h2 {
  font-size: 30px;
  color: #5b3e26;
  margin-bottom: 25px;
}
.timeline {
  list-style: none;
  padding: 0;
  max-width: 650px;
  margin: auto;
  text-align: left;
}
.timeline li {
  background: #fff;
   color: #795742;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #795742;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.timeline span {
  font-weight: 700;
  color: #5b3e26;
}

/* OFFICE GALLERY */
.office-gallery {
  background: #fff;
  text-align: center;
  padding: 80px 10%;
}
.office-gallery h2 {
  color: #5b3e26;
  margin-bottom: 10px;
}
.office-gallery p {
  color: #6b523a;
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}
.gallery-grid img:hover { transform: scale(1.05); }
/* ===============================
   WHY CHOOSE US – FINAL CSS
================================ */
/* ===============================
   WHY CHOOSE – FORCE VISIBLE FIX
================================ */

.why-choose{
  background: #f4ede7;
  padding: 80px 10%;
  text-align: center;
  overflow: visible !important;
}

.why-choose h2{
  color: #5b3e26;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}

/* GRID */
.why-choose .why-grid{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD – HARD OVERRIDE */
.why-choose .why-grid .card{
  position: relative !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;

  width: auto !important;
  height: auto !important;
  min-height: 120px;

  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: none !important;
}

/* HOVER */
.why-choose .why-grid .card:hover{
  transform: translateY(-6px) !important;
}

/* ICON */
.why-choose .why-grid .card i{
  font-size: 32px;
  color: #795742;
  margin-bottom: 12px;
  display: inline-block;
}

/* TEXT */
.why-choose .why-grid .card p{
  font-size: 16px;
  font-weight: 600;
  color: #573F24;
  margin: 0;
}



/* CTA */
.cta-section {
  background: linear-gradient(180deg,#7a573f,#5b3e26);
  color: #fff;
  text-align: center;
  padding: 90px 10%;
}
.cta-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta-section p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
  font-size: 16px;
}
.cta-btn {
  background: #fff;
  color: #5b3e26;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #f4ede7;
  transform: scale(1.05);
}

/* =======================================================
   LIGHTBOX GALLERY POPUP
======================================================= */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.4);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close, .next, .prev {
  position: absolute;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.close { top: 25px; right: 45px; }
.next, .prev {
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
}
.next { right: 20px; }
.prev { left: 20px; }
.next:hover, .prev:hover, .close:hover {
  color: #f4b27a;
  transition: 0.3s;
}

/* Responsive */
@media(max-width:768px){
  .who-we-are{flex-direction:column;}
  .vision-mission{flex-direction:column;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
}
/* new responsive css */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
        }

        /* HEADER */
        .top-header {
            width: 100%;
            background: #5b3e26;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
        }

        .nav-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }

        /* LOGO */
        .logo img {
            height: 55px;
        }

        /* NAVBAR DESKTOP */
        .navbar {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .navbar a {
            text-decoration: none;
            color: #222;
            font-size: 15px;
            font-weight: 600;
        }

        .nav-btn {
            padding: 8px 18px;
            background: #2b7cff;
            color: #fff !important;
            border-radius: 25px;
        }

        /* HAMBURGER */
        .menu-toggle {
            display: none;
            font-size: 30px;
            cursor: pointer;
        }

        /* ===============================
           MOBILE
        ================================= */
        @media (max-width: 992px) {

            /* Show hamburger */
            .menu-toggle {
                display: block;
            }

            /* Hide menu initially */
            .navbar {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                padding: 15px 20px;
                gap: 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            }

            /* Show menu when active */
            .navbar.active {
                display: flex;
            }

            .navbar a {
                width: 100%;
                padding: 10px 0;
                border-bottom: 1px solid #eee;
            }

            .nav-btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 45px;
            }
        }