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

body {
  color: #111;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  height: 45px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  height: 85vh;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
  url("../assets/images/hero-industrial-machinery.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* 🔥 THIS IS THE REAL FIX */
  margin-top: 70px;
}

.hero-content {
  max-width: 650px;
  color: #fff;
  text-align: left;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-primary {
  display: inline-block;
  background: #e53935;
  color: #fff;
  padding: 12px 26px;
  text-decoration: none;
  border-radius: 4px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.light-bg {
  background: #f7f7f7;
}

.section-title {
  font-size: 30px;
  margin-bottom: 40px;
}

/* ===== CAPABILITIES FIXED ===== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cap-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cap-card img {
  width: 100%;
  height: 280px;           /* 🔥 FIXED HEIGHT */
  object-fit: cover;       /* 🔥 CROPS PROPERLY */
}

.cap-card h3 {
  padding: 20px 20px 10px;
}

.cap-card p {
  padding: 0 20px 25px;
  color: #555;
  line-height: 1.6;
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.cap-card h3 {
  margin: 15px 0 8px;
}

/* INDUSTRIES */
.industry-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.industry-card,
.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  transition: all .3s ease;
}

.industry-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

/* FOOTER */
footer {
  background: #fff;
  padding: 60px 0 20px;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1fr 1fr;
  gap: 30px;
}

.footer-divider {
  background: #ddd;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #666;
}

/* ===== FORCE HERO LEFT ALIGN FIX ===== */
.hero .container {
  margin-left: 0 !important;
  padding-left: 80px;
}

@media (max-width: 768px) {
  .hero .container {
    padding-left: 20px;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.light-bg {
  background: #f6f7f8;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* ===== CARDS GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ===== INFO CARDS ===== */
.info-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.info-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
}

/* ====== SECTION BACKGROUND ====== */
.section-soft {
  background: #f6f7f9;
  padding: 80px 0;
}

/* ====== COMMON SECTION TITLE ====== */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

/* ====== GRID 3x3 ====== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ====== BUBBLE CARD ====== */
.bubble-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.bubble-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ====== CARD TEXT ====== */
.bubble-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.bubble-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER COLUMN DIVIDERS ===== */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.site-footer .footer-col {
  position: relative;
  padding-right: 30px;
}

/* vertical line between columns */
.site-footer .footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: 80%;
  background: #e5e7eb; /* light grey line */
}

/* mobile clean */
@media (max-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-col::after {
    display: none;
  }
}

/* ===== SAFE FOOTER DIVIDERS ===== */

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

footer .container > div {
  flex: 1;
  min-width: 200px;
}

/* vertical lines */
footer .container > div + div {
  border-left: 1px solid #e0e0e0;
  padding-left: 30px;
}

/* mobile */
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
  }

  footer .container > div {
    border-left: none;
    padding-left: 0;
  }
}

/* ===== FOOTER COLUMN DIVIDERS (SAFE GRID METHOD) ===== */

.footer-grid {
  position: relative;
}

.footer-grid > div {
  position: relative;
  padding-left: 30px;
}

.footer-grid > div:first-child {
  padding-left: 0;
}

.footer-grid > div:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #e0e0e0;
}

/* ===== PRODUCTS MOBILE VIEW FIX ===== */
@media (max-width: 768px) {

  .products,
  .product-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .product-card,
  .products > div {
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-card img,
  .products img {
    height: 180px !important;
    width: 100% !important;
    object-fit: cover;
  }

}

/* ===== UNIVERSAL MOBILE FIX ===== */
@media (max-width: 768px) {

  section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .products,
  .product-grid,
  .container,
  .row {
    display: block !important;
  }

  .products > *,
  .product-grid > *,
  .container > *,
  .row > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

}

/* ABOUT PAGE HERO ONLY */
.about-hero {
  height: 650px;
  background-image: url("../assets/images/about-hero-factory.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ================= ABOUT PAGE HERO FIX ================= */

/* Hero image dark overlay for text visibility */
}

/* Hero content above overlay */
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

/* Hero description spacing */
.hero .hero-content p {
  margin-top: 12px;
  line-height: 1.6;
}

/* Contact button spacing in hero */
.hero .btn {
  margin-top: 20px;
}

/* Hero CTA button improvements */
.about-hero .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px 32px;
  background: #c00000;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: all 0.25s ease;
}

.about-hero .hero-btn::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.25s ease;
}

.about-hero .hero-btn:hover {
  background: #9a0000;
  transform: translateY(-2px);
}

.about-hero .hero-btn:hover::after {
  transform: translateX(4px);
}

/* ABOUT PAGE HERO OVERLAY ONLY */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* ABOUT PAGE HERO TEXT VISIBILITY – NO IMAGE DARKENING */

.about-hero h1 {
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.about-hero p {
  color: #f5f5f5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.about-hero .hero-btn {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ================= ABOUT HERO TEXT VISIBILITY FIX ================= */

/* ONLY About page hero text */
.about-hero .hero-content h1 {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 
    0 2px 6px rgba(0,0,0,0.65),
    0 4px 12px rgba(0,0,0,0.45);
}

.about-hero .hero-content p {
  color: #f1f1f1;
  font-size: 17px;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Contact button spacing */
.about-hero .hero-btn {
  margin-top: 22px;
}

/* ABOUT PAGE HERO TEXT VISIBILITY */
.about-hero h1 {
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.about-hero p {
  color: #f5f5f5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.about-hero .hero-btn {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ABOUT PAGE OVERLAY FIX */
.about-hero {
  position: relative;
  isolation: isolate;
}

.about-hero::before {
  z-index: 0;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
}

.about-hero + section,
.about-hero ~ section {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* ================= MOBILE HEADER FIX ================= */
@media (max-width: 768px) {

  .site-header {
    position: relative;
    padding: 12px 0;
  }

  .header-flex {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .logo {
    max-width: 140px;
    height: auto;
  }

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

  nav a {
    font-size: 14px;
  }
}

/* ================= OUR CAPABILITIES MOBILE FIX ================= */
@media (max-width: 768px) {

  .capabilities-grid {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
  }

  .capability-card {
    width: 100%;
    max-width: 100%;
  }

  .capability-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* ================= MOBILE FOOTER FIX ================= */
@media (max-width: 768px) {

  footer {
    text-align: center;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer img {
    max-width: 150px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .capabilities-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .capability-card {
    transform: none !important;
    scale: 1 !important;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: static;
  }

  .header-flex {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

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

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

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-grid ul {
    padding: 0;
    list-style: none;
  }
}

/* ================= MOBILE HEADER FIX ================= */
@media (max-width: 768px) {

  header.site-header {
    position: relative;
    background: #ffffff;
    z-index: 1000;
  }

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

  .header-flex .logo {
    max-width: 140px;
    height: auto;
  }

  nav {
    margin-top: 6px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* push hero BELOW header */
  .hero {
    margin-top: 0;
    padding-top: 20px;
  }
}

/* ============ OUR CAPABILITIES MOBILE FIX ============ */
@media (max-width: 768px) {

  .capabilities-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .capability-card {
    transform: none !important;
    scale: 1 !important;
  }

  .capability-card img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }
}

/* ================= FOOTER MOBILE FIX ================= */
@media (max-width: 768px) {

  footer {
    padding: 30px 20px;
    text-align: center;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-column {
    width: 100%;
    border: none;
    padding: 0;
  }

  .footer-column::before {
    display: none;
  }
}

/* ===== FIX HEADER OVERLAP ON MOBILE ===== */
.site-header {
  position: relative;
  z-index: 1000;
}

.hero {
  margin-top: 0;
}

/* Mobile only */
@media (max-width: 768px) {
  .site-header {
    position: relative;
  }

  .hero {
    padding-top: 80px; /* header height space */
  }
}

/* ===== FIX CAPABILITIES CARD IMAGE STRETCH ===== */
.capability-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.capability-card {
  overflow: hidden;
}

/* ===== FIX FOOTER MOBILE ALIGNMENT ===== */
@media (max-width: 768px) {
  .site-footer,
  .footer,
  footer {
    text-align: center;
  }

  .footer-columns,
  .footer-grid {
    display: block;
  }

  .footer-logo {
    margin: 0 auto 16px;
    display: block;
  }

  .footer-column {
    margin-bottom: 24px;
  }
}

/* ===== HEADER FIX ===== */
.site-header {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

/* ===== MOBILE HEADER ALIGNMENT ===== */
@media (max-width: 768px) {
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-header nav {
    margin-top: 10px;
  }

  .site-header nav a {
    margin: 0 10px;
    display: inline-block;
  }
}

/* ===== CAPABILITIES CARD FIX ===== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.capability-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ================= GREENAI STYLE MOBILE HEADER ================= */
@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }

  .logo {
    max-height: 42px;
  }

  nav {
    display: none; /* hamburger ke liye */
  }

  .menu-toggle {
    display: block;
  }
}

/* ================= CARD IMAGE FIX (MOBILE) ================= */
@media (max-width: 768px) {
  .capability-card,
  .product-card {
    width: 100%;
    overflow: hidden;
  }

  .capability-card img,
  .product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
}

/* ================= GREENAI STYLE FOOTER (MOBILE) ================= */
@media (max-width: 768px) {
  footer {
    background: #0f4c4c;
    color: #ffffff;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: left;
  }

  .footer-grid h4 {
    margin-bottom: 10px;
  }

  .footer-grid ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer-grid ul li {
    margin-bottom: 6px;
  }

  .footer-logo img {
    max-width: 160px;
  }
}

/* ================= FINAL MOBILE FIX ================= */
@media (max-width: 768px) {

  /* ---------- HEADER FIX ---------- */
  header.site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 999;
    padding: 10px 16px;
  }

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header img.logo {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* ---------- HERO FIX ---------- */
  .hero {
    min-height: auto;
    padding: 120px 16px 60px;
    background-position: center;
    background-size: cover;
  }

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

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 12px;
  }

  .hero .btn {
    width: 100%;
    text-align: center;
  }

  /* ---------- CAPABILITY / PRODUCT IMAGE FIX ---------- */
  .card img,
  .capability-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
  }

  /* ---------- FOOTER FIX ---------- */
  footer {
    padding: 50px 20px 80px;
    text-align: left;
  }

  footer .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  footer .divider,
  footer .vertical-line {
    display: none;
  }

  footer h4 {
    margin-bottom: 10px;
  }

  footer ul {
    padding-left: 0;
  }

  footer ul li {
    margin-bottom: 6px;
  }
}

/* ================= ABOUT PAGE HERO FIX ================= */

/* About hero button – same as home */
.hero-about .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #c00000;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

.hero-about .btn:hover {
  background: #9a0000;
}

/* About hero description readability */
.hero-about p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
}

/* Ensure text stays above image */
.hero-about .hero-content {
  position: relative;
  z-index: 2;
}

/* ===== ABOUT PAGE HERO IMAGE ===== */

.hero-about {
  background-image: url("../assets/images/about-hero-factory.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== ABOUT HERO DARK OVERLAY ===== */

.hero-about {
  position: relative;
}

.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dark level - adjust if needed */
  z-index: 1;
}

.hero-about .hero-content {
  position: relative;
  z-index: 2;
}

.about-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .about-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* FIX WHO WE ARE ALIGNMENT */
.who-we-are {
  padding: 80px 0;
}

.who-we-are .about-grid-2 {
  max-width: 1100px;
  margin: auto;
}

/* WHO WE ARE – TEXT POLISH */
.who-we-are h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.who-we-are p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 520px;
}

/* WHO WE ARE – IMAGE CARD */
.about-image img {
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* WHO WE ARE – SECTION BACKGROUND */
.who-we-are {
  background: #f8f9fb;
}

/* SOFT BUBBLES */
.bubbles span {
  opacity: 0.15;
}

/* OPTIONAL SPACING */
.who-we-are .about-text {
  padding-right: 20px;
}

/* WHO WE ARE – FINAL POLISH */
.who-we-are .container {
  max-width: 1100px;
}

.who-we-are {
  padding: 80px 0;
}

.about-grid-2 {
  align-items: center;
}

/* BUBBLE HOVER FEEL */
.about-image {
  position: relative;
}

.about-image:hover .bubbles span {
  transform: scale(1.15);
  opacity: 0.25;
}

.bubbles span {
  transition: all 0.4s ease;
}

/* VALUE SECTION */
.value-section {
  position: relative;
  padding: 80px 0;
  background: #f8f9fb;
  overflow: hidden;
}

.value-section .section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

/* GRID */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */
.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.value-card h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.value-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* BUBBLES */
.bubbles span {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255,0,0,0.08);
  border-radius: 50%;
  animation: float 12s infinite ease-in-out;
}

.bubbles span:nth-child(1) { top: 10%; left: 5%; }
.bubbles span:nth-child(2) { bottom: 15%; right: 10%; animation-delay: 3s; }
.bubbles span:nth-child(3) { top: 40%; right: 25%; animation-delay: 6s; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT SPECIALIZATION SECTION */
.product-specialization {
  position: relative;
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.product-specialization h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.product-specialization .section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* CARD */
.spec-card {
  background: #f8f9fb;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.spec-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.spec-card p {
  color: #555;
  line-height: 1.7;
}

/* BUBBLES */
.product-specialization .bubbles span {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(220,0,0,0.06);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

.product-specialization .bubbles span:nth-child(1) {
  top: 10%;
  left: 5%;
}
.product-specialization .bubbles span:nth-child(2) {
  bottom: 15%;
  right: 10%;
}
.product-specialization .bubbles span:nth-child(3) {
  top: 40%;
  right: 30%;
}
.product-specialization .bubbles span:nth-child(4) {
  bottom: 30%;
  left: 25%;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .specialization-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT SPECIALIZATION POLISH */
.product-specialization h2 {
  letter-spacing: 0.5px;
}

.spec-card {
  cursor: pointer;
}

.spec-card:hover {
  background: #ffffff;
}

.spec-card h3 {
  letter-spacing: 0.3px;
}

/* Slight bubble interaction */
.product-specialization:hover .bubbles span {
  opacity: 0.22;
}

/* ================= CTA SECTION ================= */
.about-cta {
  position: relative;
  padding: 100px 20px;
  background: #f7f8fa;
  overflow: hidden;
}

.about-cta .cta-box {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.about-cta h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-cta p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* BUBBLES */
.about-cta .bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(192,0,0,0.08);
  animation: float 10s infinite ease-in-out;
}

.about-cta .bubbles span:nth-child(1) {
  width: 120px;
  height: 120px;
  left: 10%;
  bottom: 10%;
}

.about-cta .bubbles span:nth-child(2) {
  width: 180px;
  height: 180px;
  right: 15%;
  top: 20%;
}

.about-cta .bubbles span:nth-child(3) {
  width: 90px;
  height: 90px;
  right: 30%;
  bottom: 15%;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

/* CTA FIXED & IMPROVED */
.about-cta {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(135deg, #f3f4f6, #ffffff);
  overflow: hidden;
}

.about-cta .cta-box {
  max-width: 900px;   /* bigger box */
  margin: 0 auto;
  background: #ffffff;
  padding: 80px 60px;  /* more spacing */
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

.about-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-cta p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* BUTTON FIX */
.about-cta .btn {
  display: inline-block;
  background: #e30613;
  color: #fff;
  padding: 14px 40px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-cta .btn:hover {
  background: #b8000c;
  transform: translateY(-3px);
}

/* BUBBLES STRONGER */
.about-cta .bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(227,6,19,0.12);
  animation: float 12s infinite ease-in-out;
  z-index: 1;
}

.about-cta .bubbles span:nth-child(1) {
  width: 200px;
  height: 200px;
  left: 5%;
  bottom: 10%;
}

.about-cta .bubbles span:nth-child(2) {
  width: 260px;
  height: 260px;
  right: 10%;
  top: 15%;
}

.about-cta .bubbles span:nth-child(3) {
  width: 120px;
  height: 120px;
  right: 35%;
  bottom: 20%;
}

/* ================= FOOTER PERFECT ALIGNMENT ================= */

.site-footer {
  background: #ffffff;
  padding: 60px 20px 40px;
  border-top: 1px solid #e6e6e6;
}

/* THIS IS THE REAL GRID CONTAINER */
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

/* Footer Logo */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

/* Headings */
.footer-grid h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Text */
.footer-grid p,
.footer-grid a {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  text-decoration: none;
}

/* Quick Links spacing */
.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: #e30613;
}

/* Bottom copyright section */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer {
    padding: 45px 20px;
  }
}

/* FOOTER LOGO FIX */
.footer-logo {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
}

.footer-grid a:hover {
  color: #e30613;
  padding-left: 5px;
}

/* FOOTER LOGO ALIGN FIX */
.footer-grid > div:first-child {
  align-self: flex-start;
}

/* FOOTER QUICK LINKS */
.site-footer a {
  color: #333;
  text-decoration: none;
}

.site-footer a:hover {
  color: #c62828;
  text-decoration: underline;
}

/* FOOTER LOGO FIX */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 12px;
}

/* FOOTER COLUMN DIVIDERS FIX */
.footer-grid > div {
  border-left: 1px solid #e0e0e0;
  padding-left: 24px;
}

.footer-grid > div:first-child {
  border-left: none;
  padding-left: 0;
}

/* ================= HEADER ================= */

.site-header {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #c62828;
}

/* ================= FOOTER ================= */

.site-footer {
  background: #ffffff;
  padding: 60px 0 20px;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 15px;
}

.site-footer h4 {
  margin-bottom: 15px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.site-footer ul li a:hover {
  color: #c62828;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
}

/* ===============================
   PRODUCT PAGE – HERO SECTION
================================ */

.product-hero {
  position: relative;
  height: 85vh;
  background: url("../assets/images/product-hero-warehouse.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.product-hero-content {
  position: relative;
  color: #fff;
  max-width: 650px;
  margin-left: 80px;
}

.product-hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.product-hero p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.product-hero-btn {
  display: inline-block;
  background: #c40000;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Floating / Bubble feel */
.product-hero-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(196, 0, 0, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .product-hero {
    height: auto;
    padding: 90px 0;
  }

  .product-hero h1 {
    font-size: 32px;
  }
}

/* PRODUCT OVERVIEW SECTION */
.products-overview {
  padding: 80px 0;
  background: #f8f9fb;
}

.products-overview h2 {
  font-size: 36px;
  margin-bottom: 15px;
  text-align: center;
}

.products-intro {
  max-width: 700px;
  margin: 0 auto 50px;   
  text-align: center;    
  color: #555;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card h3 {
  margin-bottom: 12px;
  color: #111;
}

.product-card p {
  color: #555;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   PRODUCTS GRID – BUBBLE EFFECT
================================ */

.products-section {
  padding: 80px 8%;
  background: #f8f9fb;
}

.products-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
}

.products-section p.section-sub {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* PRODUCT CARD */
.product-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Bubble glow */
.product-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(255, 0, 0, 0.12);
  top: -60px;
  right: -60px;
  border-radius: 50%;
  filter: blur(40px);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* TEXT */
.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

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

/* RESPONSIVE */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   FAQ SECTION – PRODUCTS PAGE
================================ */

.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

.faq-item {
  max-width: 900px;
  margin: 0 auto 25px;
  padding: 25px 30px;
  background: #f8f9fb;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ===============================
   FAQ ACCORDION – BUBBLE EFFECT
================================ */

.faq-section {
  padding: 80px 20px;
  background: #ffffff;
}

.faq-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #f8f9fb;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Question button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* + / - icon */
.faq-question span {
  font-size: 26px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* 🚨 FORCE CLICK FIX */
.bubbles,
.bubbles *,
.bubble,
.floating-bubbles {
  pointer-events: none !important;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #111;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
}

/* Question */
.faq-question {
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

/* Icon */
.faq-icon {
  font-size: 26px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* FORCE FAQ TO BE CLICKABLE */
.faq-section,
.faq-accordion,
.faq-item,
.faq-question {
  position: relative;
  z-index: 999;
}

/* DISABLE CLICKS ON BUBBLES */
.bubbles,
.bubbles * {
  pointer-events: none;
}

.faq-section {
  padding: 60px 0;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 18px 0 26px;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* FIX: allow clicks on FAQ */
.faq-section,
.faq-accordion,
.faq-item,
.faq-question {
  position: relative;
  z-index: 5;
}

.bubble,
.bubbles,
.background-bubbles {
  pointer-events: none;
}

/* TEMP FIX: Disable bubbles completely */
.bubble,
.bubbles,
.background-bubbles {
  display: none !important;
}

/* FORCE FAQ CLICK FIX */
.faq-section,
.faq-section *,
.faq-item,
.faq-question {
  pointer-events: auto !important;
  position: relative;
  z-index: 9999;
}

/* Kill invisible overlays */
section::before,
section::after,
.container::before,
.container::after {
  pointer-events: none !important;
}

.faq-section {
  padding: 80px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.faq-item summary {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 15px;
  line-height: 1.7;
  color: #555;
}

.mv-section {
  position: relative;
  padding: 80px 20px;
  background: #f6f8fb;
  overflow: hidden;
}

/* Bubble Effect */
.mv-section::before,
.mv-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 200, 200, 0.15);
  z-index: 0;
}

.mv-section::before {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -80px;
}

.mv-section::after {
  width: 220px;
  height: 220px;
  bottom: -50px;
  right: -60px;
}

.mv-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.mv-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.mv-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.mv-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.mv-card p {
  line-height: 1.7;
  color: #444;
}

/* Values */
.values-wrapper {
  max-width: 1100px;
  margin: 70px auto 0;
  position: relative;
  z-index: 2;
}

.values-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.value-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.value-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.value-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.value-card p {
  line-height: 1.7;
  color: #444;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .mv-container,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Our Values Icons Styling ===== */
.value-icon {
  font-size: 20px;
  color: #b30000;
  background: #f8f8f8;
  padding: 6px;
  border-radius: 50%;
}

/* ===== Value Card Headings ===== */
.value-card h3 {
  font-weight: 600;
  font-size: 18px;
}

/* ===== Hover Effect on Value Cards ===== */
.value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;   /* 👈 image ko visibly bada karega */
  object-fit: cover;
  border-radius: 16px;
}

.about-image img {
  width: 100%;
  height: 480px;   /* fixed strong height */
  object-fit: cover;
  border-radius: 18px;
}

/* ===== WHAT WE DO SECTION FIXED ===== */

.what-we-do-section {
  padding: 100px 0;
}

.what-we-do-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.what-we-do-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.what-we-do-content h2 {
  font-size: 38px;
  margin-bottom: 25px;
}

.what-we-do-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .what-we-do-flex {
    grid-template-columns: 1fr;
  }

  .what-we-do-image img {
    height: 300px;
  }
}

/* ===== INFO SECTIONS (WHO WE ARE / WHAT WE DO) ===== */

.info-section {
  padding: 100px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-grid.reverse {
  direction: rtl;
}

.info-grid.reverse .info-content {
  direction: ltr;
}

.info-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.info-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.info-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
}

/* Mobile */
@media (max-width: 768px) {
  .info-grid,
  .info-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .info-image img {
    height: 300px;
  }
}

.about-preview-section {
  padding: 80px 20px;
}

.about-preview-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-preview-text {
  flex: 1;
}

.about-preview-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-preview-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #444;
}

.about-read-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #c62828; /* logo red */
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.about-read-btn::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255,255,255,0.2);
  top: 100%;
  left: -10%;
  border-radius: 50%;
  transition: 0.4s;
}

.about-read-btn:hover::after {
  top: -10%;
}

.about-preview-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.about-preview-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* Bubble Effect */
.bubble-effect {
  position: relative;
}

.bubble-effect::before,
.bubble-effect::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(198,40,40,0.15);
  animation: floatBubble 6s infinite ease-in-out;
}

.bubble-effect::before {
  width: 120px;
  height: 120px;
  top: -30px;
  left: -30px;
}

.bubble-effect::after {
  width: 80px;
  height: 80px;
  bottom: -20px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatBubble {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .about-preview-container {
    flex-direction: column;
  }

  .about-preview-text h2 {
    font-size: 28px;
  }
}

/* ===============================
   OUR MISSION / VISION / VALUES – HEAVY LOOK
================================ */

.mission-vision-section,
.values-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Grid ko thoda wide feel dena */
.mission-vision-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* Card ko bulky banana */
.mission-card,
.value-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover me thoda premium lift */
.mission-card:hover,
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

/* Icons ko thoda powerful look */
.mission-card .icon,
.value-icon {
  font-size: 34px;
  margin-bottom: 18px;
  color: #c62828; /* logo red */
}

/* Headings ko bold & readable */
.mission-card h3,
.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Text ko thoda open space dena */
.mission-card p,
.value-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
}

/* ===============================
   BUBBLE BACKGROUND EFFECT
================================ */

.mission-card,
.value-card {
  position: relative;
  overflow: hidden;
}

/* Bubble 1 */
.mission-card::before,
.value-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(198, 40, 40, 0.08); /* logo red bubble */
  border-radius: 50%;
  top: -60px;
  right: -60px;
  animation: bubbleFloat 8s ease-in-out infinite;
}

/* Bubble 2 */
.mission-card::after,
.value-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: rgba(198, 40, 40, 0.06);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: bubbleFloatReverse 10s ease-in-out infinite;
}

/* Bubble animations */
@keyframes bubbleFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(18px); }
  100% { transform: translateY(0); }
}

@keyframes bubbleFloatReverse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* =========================================
   OUR VALUES – WIDE, BULKY, GHOSHI STYLE
   ONE TIME FIX
========================================= */

/* 2x2 wide grid */
.values-grid {
  max-width: 1280px;              /* overall section wide */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Card heavy look */
.value-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 42px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}

/* Icon bigger (Ghoshi feel) */
.value-card i {
  font-size: 42px;
  margin-bottom: 18px;
  color: #c62828;
}

/* Heading thoda heavy */
.value-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

/* 👇 MAIN GHOSHI TRICK – TEXT WIDTH CONTROL */
.value-card p {
  max-width: 420px;              /* yahi magic hai */
  font-size: 15.5px;
  line-height: 1.85;
}

/* Bubble effect */
.value-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  background: rgba(198,40,40,0.08);
  border-radius: 50%;
  top: -90px;
  right: -90px;
  animation: bubbleFloat 9s ease-in-out infinite;
}

.value-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(198,40,40,0.06);
  border-radius: 50%;
  bottom: -70px;
  left: -70px;
  animation: bubbleFloatReverse 11s ease-in-out infinite;
}

/* Animations */
@keyframes bubbleFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

@keyframes bubbleFloatReverse {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Mobile */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-card p {
    max-width: 100%;
  }
}

/* ===============================
   GLOBAL CARD WIDE FIX (GHOSHI)
=============================== */

/* Mission, Vision, Values – common */
.mission-card,
.vision-card,
.value-card {
  width: 100%;
  max-width: 560px;        /* 👈 CARD WIDE */
  padding: 42px 44px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* INNER CONTENT CONTROL = GHOSHI MAGIC */
.mission-card p,
.vision-card p,
.value-card p {
  max-width: 420px;        /* 👈 TEXT WRAP CONTROL */
  line-height: 1.85;
  font-size: 15.5px;
}

/* HEADINGS */
.mission-card h3,
.vision-card h3,
.value-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

/* ICON SIZE */
.mission-card i,
.vision-card i,
.value-card i {
  font-size: 42px;
  margin-bottom: 18px;
  color: #c62828;
}

/* ===============================
   2x2 GRID – VALUES
=============================== */
.values-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

/* ===============================
   BUBBLE EFFECT – ALL CARDS
=============================== */
.mission-card::before,
.vision-card::before,
.value-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(198,40,40,0.08);
  border-radius: 50%;
  top: -90px;
  right: -90px;
  animation: bubbleFloat 9s ease-in-out infinite;
}

.mission-card::after,
.vision-card::after,
.value-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(198,40,40,0.06);
  border-radius: 50%;
  bottom: -70px;
  left: -70px;
  animation: bubbleFloatReverse 11s ease-in-out infinite;
}

@keyframes bubbleFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(22px); }
}

@keyframes bubbleFloatReverse {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .vision-card,
  .value-card {
    max-width: 100%;
  }

  .mission-card p,
  .vision-card p,
  .value-card p {
    max-width: 100%;
  }
}

/* ===== FORCE WIDE + BULKY MISSION / VISION / VALUES ===== */

.mission-vision-wrapper,
.values-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mission & Vision cards */
.mission-card,
.vision-card,
.value-card {
  position: relative;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 18px;
  min-height: 260px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ICON SIZE — FORCE */
.mission-card i,
.vision-card i,
.value-card i {
  font-size: 56px;           /* 🔥 BIG ICON */
  margin-bottom: 20px;
  color: #c62828;
  display: inline-block;
}

/* HEADING BIGGER */
.mission-card h3,
.vision-card h3,
.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* PARAGRAPH — 3 LINE FEEL */
.mission-card p,
.vision-card p,
.value-card p {
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 95%;
}

/* GRID — WIDER LOOK */
.mission-vision-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ===== BUBBLE EFFECT — FORCE ON ALL ===== */
.mission-card::before,
.vision-card::before,
.value-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(198, 40, 40, 0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  z-index: 0;
}

.mission-card::after,
.vision-card::after,
.value-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(198, 40, 40, 0.06);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
  z-index: 0;
}

.mission-card *,
.vision-card *,
.value-card * {
  position: relative;
  z-index: 1;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .mission-vision-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   FIX: MISSION & VISION ICON SIZE
   ================================ */

/* Mission & Vision ICON BIG */
.mission-card i,
.mission-card svg,
.vision-card i,
.vision-card svg {
  font-size: 64px !important;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

/* Mission & Vision TITLE slightly bigger */
.mission-card h3,
.vision-card h3 {
  font-size: 26px;
  font-weight: 600;
}

/* ================================
   LOCK VALUES ICON SIZE (NO GROW)
   ================================ */

.values-section i,
.values-section svg {
  font-size: 46px !important;
  width: 46px;
  height: 46px;
}

/* =====================================================
   FIX 1: Mission & Vision ko heavy + wide banana
   FIX 2: Our Values se proper spacing
   NOTE: Our Values section untouched
   ===================================================== */

/* Mission & Vision section wrapper */
.mission-vision-section {
  margin-bottom: 90px; /* spacing fix */
}

/* Mission & Vision cards */
.mission-vision-section .card {
  max-width: 100%;
  padding: 42px 48px;        /* heavy feel */
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Mission & Vision heading */
.mission-vision-section .card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Mission & Vision text */
.mission-vision-section .card p {
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 92%;           /* wider text block */
}

/* Mission & Vision icons — BIG like Our Values */
.mission-vision-section .icon,
.mission-vision-section .icon img,
.mission-vision-section .icon svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .mission-vision-section {
    margin-bottom: 70px;
  }

  .mission-vision-section .card {
    padding: 32px 26px;
  }

  .mission-vision-section .card h3 {
    font-size: 22px;
  }

  .mission-vision-section .icon,
  .mission-vision-section .icon img,
  .mission-vision-section .icon svg {
    width: 56px;
    height: 56px;
  }
}

/* ===== FIX MISSION & VISION SECTION PROPERLY ===== */

.mv-section {
  padding: 100px 0;              /* space top-bottom so Values chipke nahi */
}

.mv-container {
  max-width: 1200px;             /* 👈 THIS makes it WIDER */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Cards bigger & heavier */
.mv-card {
  padding: 40px 35px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  min-height: 260px;             /* visual weight */
}

/* BIG ICON — THIS WAS MISSING */
.mv-icon {
  font-size: 54px;               /* 👈 icon bada */
  margin-bottom: 20px;
  line-height: 1;
}

/* Heading stronger */
.mv-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

/* Text thoda breathable */
.mv-card p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 95%;
}

/* Mobile */
@media (max-width: 900px) {
  .mv-container {
    grid-template-columns: 1fr;
  }
}

/* ================================
   FIX: Mission & Vision spacing + bubble
================================ */

/* 1️⃣ Proper gap so Our Values chipke nahi */
.mv-section {
  padding: 100px 0 140px;   /* bottom extra gap */
  position: relative;
}

/* 2️⃣ Wider layout (already working, safe keep) */
.mv-container {
  max-width: 1200px;
  margin: 0 auto 80px;      /* space before Our Values */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* 3️⃣ Card heavy + bubble base */
.mv-card {
  position: relative;
  padding: 42px 38px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  overflow: hidden;
  min-height: 260px;
}

/* 4️⃣ BUBBLE EFFECT (THIS WAS MISSING) */
.mv-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(220, 38, 38, 0.08); /* brand red soft */
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.mv-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

/* 5️⃣ BIG ICON (same visual weight as Our Values) */
.mv-icon {
  font-size: 54px;
  margin-bottom: 18px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* 6️⃣ Text hierarchy */
.mv-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 95%;
  position: relative;
  z-index: 1;
}

/* 7️⃣ Ensure Our Values breathes */
.values-section {
  margin-top: 120px;
}

/* Mobile safety */
@media (max-width: 900px) {
  .mv-container {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   Mission & Vision – Bubble Effect Fix
   (DO NOT touch Our Values)
================================ */

.mv-card {
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(220, 38, 38, 0.15);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.mv-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(220, 38, 38, 0.10);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

/* FORCE bubble on Mission & Vision cards */
.mv-container > div {
  position: relative;
  overflow: hidden;
}

.mv-container > div::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(220, 38, 38, 0.15);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

.mv-container > div::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
}

/* sabse neeche paste kar */
.bubble-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.mv-card {
  position: relative;
  overflow: hidden;
}

/* ================= HEADER NAV + GET QUOTE ================= */

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV LINKS */
.nav-links a {
  position: relative;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 500;
  color: #222;
  padding: 6px 0;
}

/* bubble underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #d32f2f;
  border-radius: 50px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* active page underline (body class se) */
body.contact-page .nav-links a[href="contact.html"]::after,
body.home-page .nav-links a[href="index.html"]::after,
body.about-page .nav-links a[href="about.html"]::after,
body.products-page .nav-links a[href="products.html"]::after {
  width: 100%;
}

/* GET QUOTE BUTTON */
.btn-quote {
  margin-left: 25px;
  padding: 10px 22px;
  background: #d32f2f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

/* bubble hover on button */
.btn-quote::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn-quote:hover::before {
  width: 300px;
  height: 300px;
}

/* ================= HEADER FIX: LOGO + HEIGHT ================= */

.site-header {
  padding: 10px 0;           /* header height control */
}

.site-header .logo {
  height: 48px;              /* logo readable but not oversized */
  width: auto;
  object-fit: contain;
}

/* FORCE LOGO SIZE — FINAL FIX */

.site-header img.logo {
  height: 60px !important;
  max-height: none !important;
  width: auto !important;
}

.header-flex {
  align-items: center;
}

.contact-hero {
  background: url("../assets/images/industrial-warehouse.jpg") center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
}

.contact-form button {
  background: #c62828;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #c62828;
  transition: 0.3s;
}

..nav-links a::after {
  width: 0%;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Contact Hero */
.contact-hero {
  height: 65vh;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.contact-hero .hero-content {
  position: relative;
  text-align: left;
  max-width: 700px;
}

.contact-hero {
  height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.contact-hero {
  height: 65vh;
  display: flex;
  align-items: center;
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 700px;
  margin-left: 120px;   /* pehle 80px tha */
  padding-right: 20px;
}

.contact-hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 600px;
}

.why-choose-card::before,
.why-choose-card::after,
.industries-card::before,
.industries-card::after {
  display: none !important;
  content: none !important;
}

*::before,
*::after {
  pointer-events: none !important;
}

/* REMOVE RED CIRCLE / HOVER ARTIFACT */
.why-card::before,
.why-card::after,
.choose-card::before,
.choose-card::after,
.industries-card::before,
.industries-card::after {
  content: none !important;
  display: none !important;
}

/* 🔥 KILL BUBBLE EFFECT COMPLETELY */
.bubble-card::before,
.bubble-card::after {
  content: none !important;
  display: none !important;
}

.bubble-card {
  overflow: hidden !important;
}

.bubble-card * {
  pointer-events: auto;
}

/* ===== CONTACT CARDS SECTION ===== */

.contact-cards {
  padding: 70px 0;
  background: #f9f9f9;
  position: relative;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  position: relative;
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

/* Red bubble effect */
.contact-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(211, 47, 47, 0.08);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  z-index: 0;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.main-info {
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.sub-info {
  font-size: 14px;
  color: #666;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hero h1 {
    font-size: 48px;   /* Desktop */
    font-weight: 700;
}

.contact-hero p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 700px;
}

.contact-hero {
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
}
.call-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #e10600;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.call-btn:hover {
    background: #b80000;
    transform: scale(1.05);
}

/* Bubble effect */
.call-btn::after {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: rgba(255,255,255,0.2);
    top: -100%;
    left: -100%;
    border-radius: 50%;
    animation: bubble 4s linear infinite;
}

@keyframes bubble {
    0% { transform: translate(0,0); }
    100% { transform: translate(50%,50%); }
}

/* ===== CONTACT HERO ===== */
.contact-hero {
    position: relative;
    height: 90vh;
    background-image: url('../assets/images/contact-sk-traders-industrial-warehouse.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    max-width: 600px;
}

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

.hero-content p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.6;
}

.call-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #e10600;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.call-btn:hover {
    background: #bb0000;
    transform: scale(1.05);
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
    padding: 80px 0;
}

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

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

.contact-card i {
    font-size: 30px;
    color: #e10600;
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card span {
    font-size: 14px;
    color: gray;
}

.map-form-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.map-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-box {
    height: 100%;
    min-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .map-form-grid {
        grid-template-columns: 1fr;
    }

    .map-box {
        height: 350px;
    }
}

.form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-box h2 {
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
}

.form-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s ease;
}

.form-box input:focus,
.form-box textarea:focus {
    border-color: #e10600;
    outline: none;
    box-shadow: 0 0 0 3px rgba(225,6,0,0.1);
}

.form-box button {
    padding: 15px;
    background: #e10600;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-box button:hover {
    background: #bb0000;
    transform: translateY(-2px);
}

.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp {
    background-color: #25D366;
}

.call {
    background-color: #007bff;
}

/* ===== FLOATING BUTTONS ===== */

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* WhatsApp */
.floating-buttons .whatsapp {
  background: #25D366;
  animation: pulse 2s infinite;
}

/* Call */
.floating-buttons .call {
  background: #000;
}

/* Hover Effect */
.floating-buttons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile */
@media (max-width: 768px) {
  .floating-buttons {
    right: 15px;
    bottom: 70px;
  }
}

/* ===== MOBILE HEADER SYSTEM ===== */

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Desktop */
.desktop-quote {
  display: inline-block;
}

.mobile-quote {
  display: none;
}

/* Mobile */
@media (max-width: 992px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    transition: 0.3s ease;
    gap: 20px;
  }

  .nav-links a {
    color: #fff;
    font-size: 18px;
  }

  .nav-links.active {
    right: 0;
  }

  .desktop-quote {
    display: none;
  }

  .mobile-quote {
    display: inline-block;
    margin-top: 20px;
    background: red;
    padding: 10px 20px;
    color: #fff;
  }
}

/* ===== MOBILE HEADER FIX ===== */
@media (max-width: 992px) {

  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    width: 120px;
  }

  .menu-toggle {
    font-size: 26px;
  }

}

/* ===== MOBILE HERO FIX ===== */
@media (max-width: 768px) {

  .hero {
    height: 70vh;
    padding: 20px;
  }

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

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

  .hero .btn,
  .hero button {
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
  }

}

@media (max-width: 768px) {
  .floating-buttons {
    right: 15px;
    bottom: 90px;
  }
}

/* ================= MOBILE COMPLETE FIX ================= */
@media (max-width: 768px) {

  /* HEADER FIX */
  .site-header {
    padding: 10px 15px;
  }

  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: 110px;
  }

  .menu-toggle {
    font-size: 26px;
    line-height: 1;
  }

  /* HERO FIX */
  .hero {
    height: auto;
    min-height: 85vh;
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

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

  .hero .btn,
  .hero button,
  .btn-quote {
    display: inline-block;
    width: auto;
    padding: 10px 18px;
    font-size: 14px;
    margin-top: 15px;
  }

  /* FLOATING BUTTON FIX */
  .floating-buttons {
    right: 15px;
    bottom: 100px;
  }

  .floating-buttons a {
    width: 50px;
    height: 50px;
  }

}

/* ================= MOBILE CLEAN FIX ================= */
@media (max-width: 768px) {

  /* HEADER FIX */
  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .btn-quote {
    display: none; /* mobile me header button hide kar rahe hain */
  }

  /* HERO FIX */
  .hero {
    padding: 100px 20px 60px;
    height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

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

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

  .btn-primary {
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 15px;
  }

  /* FLOATING BUTTON FIX */
  .floating-buttons {
    right: 15px;
    bottom: 90px;
  }

}

@media (max-width: 768px) {

  .site-header {
    padding: 10px 15px;
  }

  .header-flex {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .logo {
    display: block;
    width: 110px;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

}

@media (max-width: 768px) {

  .btn-primary {
    display: inline-block;
    width: auto !important;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 6px;
  }

}

@media (max-width: 768px) {
  .hero-content {
    text-align: left;
  }
}

/* ================= FORCE MOBILE FIX ================= */
@media (max-width: 768px) {

  /* HEADER PROPER ALIGN */
  .site-header .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-header .logo {
    width: 110px;
  }

  .menu-toggle {
    position: relative;
    top: 0;
    font-size: 26px;
  }

  /* HERO TEXT CONTROL */
  .hero .hero-content h1 {
    font-size: 26px !important;
    line-height: 1.2;
  }

  .hero .hero-content p {
    font-size: 14px !important;
  }

  /* HERO BUTTON FIX */
  .hero .btn-primary {
    width: auto !important;
    display: inline-block !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    border-radius: 6px;
  }

}

/* ===== MOBILE HEADER ONLY FIX ===== */
@media (max-width: 768px) {

  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 15px;
    background: #fff;
    flex-direction: column;
    width: 200px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
  }

  .nav-links a {
    padding: 8px 0;
    display: block;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

  .site-header {
    position: relative;
    z-index: 1000;
  }

}

/* ===== PROFESSIONAL MOBILE MENU ===== */
@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #111;
    flex-direction: column;
    padding-top: 100px;
    transition: 0.3s ease;
    z-index: 2000;
  }

  .nav-links a {
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    z-index: 3000;
  }

}

@media (max-width: 768px) {

/* ===== CLEAN MOBILE HEADER RESET ===== */
@media (max-width: 768px) {

  .site-header {
    padding: 10px 0;
  }

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    padding-top: 90px;
    transition: 0.3s ease;
    z-index: 2000;
  }

  .nav-links a {
    color: #fff;
    padding: 16px 25px;
    font-size: 18px;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

}

@media (max-width: 768px) {

  .header-flex {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 16px !important;
  }

  .menu-toggle {
    margin-left: auto !important;
    font-size: 28px;
    cursor: pointer;
  }

}

@media (max-width: 768px) {

  .site-header {
    position: relative;
  }

  .menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    cursor: pointer;
  }

}

@media (max-width: 768px) {

  .menu-toggle {
    position: fixed;
    right: 20px;
    top: 25px;
    font-size: 28px;
    cursor: pointer;
    z-index: 5000;
  }

}

/* ================= CLEAN MOBILE RESET ================= */
@media (max-width: 768px) {

  /* Container full width */
  .container {
    width: 100%;
    padding: 0 16px;
  }

  /* Header clean */
  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links,
  .desktop-quote {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

  /* Hero section fix */
  .hero {
    height: auto;
    padding: 90px 20px 60px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
  }

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

  .btn-primary {
    width: auto;
    padding: 10px 22px;
    font-size: 14px;
  }

  /* Section spacing */
  section {
    padding: 50px 0;
  }

  /* Grid stack */
  .grid,
  .about-grid-2 {
    display: block;
  }

  .card {
    margin-bottom: 20px;
  }

  /* Footer stack */
  .footer-container {
    display: block;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 25px;
  }

}

@media (max-width: 768px) {

  .header-flex {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .logo {
    flex: 0 0 auto;
  }

  .menu-toggle {
    margin-left: auto !important;
    font-size: 28px;
  }

}

/* ===== MOBILE HEADER BUTTON FIX ONLY ===== */

@media (max-width: 768px) {

  .header-flex {
    display: flex;
    align-items: center;
  }

  .menu-toggle {
    margin-left: auto;
    font-size: 26px;
    cursor: pointer;
  }

}

/* ===== FINAL MOBILE HEADER OVERRIDE (SAFE) ===== */

@media (max-width: 768px) {

  .container.header-flex {
    display: flex !important;
    align-items: center !important;
  }

  .menu-toggle {
    margin-left: auto !important;
    display: block !important;
    font-size: 26px;
    cursor: pointer;
  }

}

@media (max-width: 768px) {

  .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    width: auto !important;
    flex: 0 0 auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 1000;
    margin-left: 0 !important;
  }

}

@media (max-width: 768px) {

  .container.header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .logo {
    flex: 0 0 auto !important;
  }

  .menu-toggle {
    flex: 0 0 auto !important;
    margin-left: auto !important;
    z-index: 9999 !important;
  }

}

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

@media (max-width: 768px) {

  .menu-toggle {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 9999;
  }

  .site-header {
    position: relative;
  }

}

@media (max-width: 768px) {

  .site-header {
    position: relative;
  }

  .menu-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
  }

  .logo {
    position: relative;
    z-index: 1;
  }

}
