/* ===== GLOBAL RESET & FIXES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* KILLS horizontal scroll */
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
body{
margin:0;
font-family:Segoe UI, Arial, sans-serif;
color:#222;
line-height:1.7;
}

.topbar{
background:#111;
color:#fff;
text-align:center;
padding:10px;
font-size:14px;
}

/* ================= HEADER (FIXED & CLEAN) ================= */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: clamp(14px, 4vw, 18px) clamp(16px, 6vw, 60px);
  background: #ffffff;

  position: sticky;
  top: 0;
  z-index: 100;

  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo .mark { color: #c40000; }
.logo .ev { color: #0f766e; }

/* NAV */
header nav {
  display: flex;
  align-items: center;
  gap: 22px;                 /* 🔥 use gap, not margin */
}

header nav a {
  text-decoration: none;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
}

/* CTA */
.cta {
  background: #c40000;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

/* LANGUAGE BUTTON */
.lang-btn {
  border: 1px solid #e5e7eb;
  background: transparent;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

/* ===== MOBILE HEADER (TEMP SAFE FIX) ===== */
@media (max-width: 900px) {
  header nav {
    gap: 14px;
    flex-wrap: wrap;       /* wrap ONLY nav, not header */
  }
}

/* ================= HERO (POLISHED) ================= */

.hero {
  min-height: 100vh;
  width: 100%;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65)
    ),
    url("images/back.jpg") center / cover no-repeat;

  display: flex;
  align-items: center;

  padding: 0 clamp(20px, 6vw, 80px);
  color: #ffffff;

  overflow: hidden;
}

/* TEXT */
.hero-text {
  max-width: 760px;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 16px;
  max-width: 620px;
  opacity: 0.95;
  margin-bottom: 28px;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 14px;
}

.hero button {
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  background: #c40000;
  color: #fff;
  font-size: 15px;
  border-radius: 6px;
}

.hero .outline {
  background: transparent;
  border: 1px solid #fff;
}

/* ===== HERO MOBILE ===== */
@media (max-width: 600px) {
  .hero {
    padding: 0 20px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero button {
    width: 100%;
  }
}

section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 70px);
}


.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
background:#f6f6f6;
}

.stats div{
font-size:34px;
font-weight:700;
}
.stats span{
display:block;
font-size:14px;
color:#666;
}


.image-box{
background:#ddd;
border-radius:12px;
}

.light{background:#f7f7f7}

.why-grid,.product-grid,.financer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-card,.product-card{
background:#fff;
padding:35px;
border-radius:10px;
box-shadow:0 6px 15px rgba(0,0,0,.08);
text-align:center;
}

.financer-grid div{
background:#111;
color:#fff;
padding:25px;
border-radius:8px;
text-align:center;
}

form input,form textarea{
width:100%;
padding:14px;
margin-bottom:12px;
}

form button{
background:#c40000;
color:#fff;
border:none;
padding:14px;
cursor:pointer;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:25px;
}

@media(max-width:900px){
.split{grid-template-columns:1fr}
.why-grid,.product-grid,.financer-grid,.stats{grid-template-columns:1fr 1fr}
}

@media(max-width:500px){
section{padding:60px 20px}
header{flex-direction:column}
.why-grid,.product-grid,.financer-grid,.stats{grid-template-columns:1fr}
}
/* ================= FINANCERS SECTION ================= */
/* ================= FINANCERS SECTION ================= */

.financers-section {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #ffffff;

  padding: clamp(80px, 10vw, 120px)
           clamp(20px, 6vw, 70px);
}

.financers-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Title */
.financers-section h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: 12px;
  font-weight: 800;
}

/* Subtitle */
.financer-subtext {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
}

/* Grid */
.financer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* Card */
.financer-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);

  border-radius: 18px;
  padding: 32px 24px;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover */
.financer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.55);
}

/* Logo */
.financer-card img {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;

  margin-bottom: 18px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.financer-card:hover img {
  transform: scale(1.06);
}

/* Name */
.financer-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Tagline */
.financer-card span {
  font-size: 13px;
  color: #9ca3af;
}

/* ================= MOBILE TWEAKS ================= */

@media (max-width: 500px) {
  .financer-card {
    padding: 28px 20px;
  }

  .financer-card img {
    max-height: 55px;
  }
}

/* ================= TEAM SECTION ================= */

.team-section {
  background: #f8fafc;
  padding: 100px 60px;
}

.team-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.team-section h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.team-intro {
  max-width: 850px;
  margin: 0 auto 60px;
  color: #475569;
  font-size: 16px;
}

/* ----- Leadership ----- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-bottom: 80px;
}

.leader-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.leader-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.leader-card h3 {
  margin: 5px 0;
  font-size: 20px;
}

.leader-card span {
  color: #c40000;
  font-size: 14px;
  font-weight: 600;
}

/* ----- Workforce ----- */
.sub-title {
  font-size: 30px;
  margin-bottom: 35px;
}

.workforce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.worker-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}

.worker-card:hover {
  transform: translateY(-6px);
}

.worker-card .avatar {
  font-size: 36px;
  margin-bottom: 10px;
}

.worker-card h4 {
  margin: 5px 0;
  font-size: 18px;
}

.worker-card span {
  font-size: 13px;
  color: #64748b;
}

/* ----- Responsive ----- */
@media (max-width: 600px) {
  .team-section {
    padding: 70px 20px;
  }
}
/* ================= TEAM HIERARCHY ================= */

.team-title {
  font-size: 28px;
  margin: 50px 0 25px;
  text-align: center;
  color: #111827;
}

/* Directors */
.director-row,
.co-director-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Managing Director */
.md-row {
  display: flex;
  justify-content: center;
}

.md-card {
  transform: scale(1.05);
  border: 2px solid #c40000;
}

/* Workforce Industrial Style */
.workforce-industrial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.worker-tile {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.worker-tile:hover {
  transform: translateY(-6px);
}

.worker-tile .gear {
  font-size: 38px;
  margin-bottom: 12px;
}

.worker-tile h4 {
  margin: 6px 0;
  font-size: 18px;
}

.worker-tile span {
  font-size: 13px;
  color: #cbd5f5;
}

/* Responsive */
@media (max-width: 700px) {
  .director-row,
  .co-director-row {
    flex-direction: column;
    align-items: center;
  }
}
/* ================= MANUFACTURING PROCESS ================= */

.process-section {
  background: #0f172a;
  color: #fff;
  padding: 110px 60px;
}

.process-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.process-section h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.process-intro {
  max-width: 850px;
  margin: 0 auto 70px;
  color: #cbd5f5;
  font-size: 16px;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.process-step {
  background: #111827;
  padding: 30px 22px;
  border-radius: 16px;
  width: 200px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.process-step .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.process-step h4 {
  margin: 10px 0;
  font-size: 18px;
}

.process-step p {
  font-size: 13px;
  color: #cbd5f5;
}

.arrow {
  font-size: 34px;
  margin: 0 18px;
  color: #22c55e;
}

@media (max-width: 900px) {
  .process-flow {
    flex-direction: column;
  }
  .arrow {
    transform: rotate(90deg);
    margin: 15px 0;
  }
}
@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline-step {
    width: 100% !important;
    max-width: 420px;
  }
}

/* ================= FACTORY GALLERY ================= */

.factory-gallery {
  background: #f8fafc;
  padding: 100px 60px;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.factory-gallery h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.gallery-intro {
  max-width: 850px;
  margin: 0 auto 60px;
  color: #475569;
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

@media (max-width: 600px) {
  .factory-gallery {
    padding: 70px 20px;
  }
}
/* ================= ADVANCED MANUFACTURING PROCESS ================= */

.mfg-process {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  padding: 120px 60px;
  overflow: hidden;
}

.mfg-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.mfg-process h2 {
  font-size: 44px;
  margin-bottom: 18px;
}

.mfg-intro {
  max-width: 850px;
  margin: 0 auto 90px;
  color: #c7d2fe;
  font-size: 16px;
}

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.timeline-progress {
  position: absolute;
  top: 28px;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  transition: width 0.8s ease;
}

.timeline-step {
  width: 18%;
  opacity: 0.35;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step h4 {
  margin-top: 18px;
  font-size: 18px;
}

.timeline-step p {
  font-size: 13px;
  color: #cbd5f5;
}

/* ---- CIRCLE ---- */
.circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #020617;
  border: 2px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: auto;
  transition: all 0.6s ease;
}

.timeline-step.active .circle {
  background: #22c55e;
  border-color: #22c55e;
  color: #020617;
  box-shadow: 0 0 0 10px rgba(34,197,94,0.15);
}

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline-progress {
    width: 4px;
    height: 0%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-step {
    width: 100%;
    margin-bottom: 40px;
  }
}
.hero {
  height: 95vh;
  background:
    linear-gradient(
      rgba(2, 6, 23, 0.65),
      rgba(2, 6, 23, 0.65)
    ),
    url("back.png") center / cover no-repeat;

  display: flex;
  align-items: center;
  padding: 0 60px;
  color: #ffffff;
}

/* optional but recommended */
.hero-text {
  max-width: 700px;
}

.hero-btns button {
  margin-right: 12px;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  background: #c40000;
  color: #fff;
  font-size: 15px;
}

.hero-btns .outline {
  background: transparent;
  border: 1px solid #fff;
}
 /* to fix phone view */
.grid,
.product-grid,
.gallery-grid,


.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
body {
  position: relative;
  overflow-x: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(2,6,23,0), #020617);
}
/* ================= STATS SECTION ================= */

.stats-section {
  position: relative;
  background: #020617;
  padding: clamp(70px, 8vw, 110px)
           clamp(20px, 6vw, 70px);
  overflow: hidden;
}

/* Subtle technical grid */
.stats-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  z-index: 0;
}

/* Layout */
.stats-container {
  position: relative;
  z-index: 1;

  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;

  text-align: center;
}

/* Card */
.stat-card {
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(6px);

  padding: 42px 25px;
  border-radius: 18px;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.04);

  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(34,197,94,0.15);
  border-radius: 50%;

  font-size: 22px;
}

/* Number */
.stat-card h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #22c55e;
}

/* Label */
.stat-card p {
  font-size: 14px;
  color: #cbd5f5;
  letter-spacing: 0.3px;
}

/* Highlight */
.stat-card.highlight h3 {
  color: #4ade80;
}

/* Mobile cleanup */
@media (max-width: 600px) {
  .stat-card h3 {
    font-size: 34px;
  }

  .stats-bg {
    background-image: none;
  }
}

/* ================= LEADERSHIP / DIRECTORS ================= */

.team-section {
  background: #f8fafc;
  padding: clamp(80px, 10vw, 120px)
           clamp(20px, 6vw, 70px);
}

.team-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Section title */
.team-section h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #475569;
}

/* Sub headings */
.team-title {
  font-size: 26px;
  font-weight: 700;
  margin: 60px 0 30px;
  color: #111827;
}

/* ===== GRID LAYOUT ===== */
.director-row,
.co-director-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Managing Director center */
.md-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* ===== CARD ===== */
.leader-card {
  background: #ffffff;
  border-radius: 18px;
  width: 280px;              /* 🔥 FIXED WIDTH */
  padding: 22px;

  text-align: center;

  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

/* ===== IMAGE FIX (MOST IMPORTANT) ===== */
.leader-card img {
  width: 100%;
  height: 260px;             /* 🔥 FORCE SAME HEIGHT */
  object-fit: cover;         /* SMART CROPPING */
  border-radius: 14px;
  margin-bottom: 18px;
}

/* Name */
.leader-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

/* Role */
.leader-card span {
  font-size: 14px;
  font-weight: 600;
  color: #c40000;
}

/* Managing Director highlight */
.md-card {
  border: 2px solid #c40000;
  transform: scale(1.05);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 600px) {
  .leader-card {
    width: 100%;
    max-width: 320px;
  }

  .leader-card img {
    height: 240px;
  }
}
/* ================= ABOUT SECTION (FIXED) ================= */

.about-section {
  background: #ffffff;
}

/* balanced split layout */
.split {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;   /* 🔥 balanced */
  gap: 80px;

  align-items: center;
}

/* TEXT BLOCK */
.about-text {
  max-width: 520px;                /* 🔥 KEY FIX */
}

.about-text h2 {
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #111827;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}

/* IMAGE */
.image-box {
  width: 100%;
  height: 360px;

  border-radius: 22px;

  background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
    url("1.png") center / cover no-repeat;

  box-shadow: 0 25px 45px rgba(0,0,0,0.18);
}

/* ================= MOBILE FIX ================= */

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    max-width: 100%;
  }

  .image-box {
    height: 260px;
  }
}
/* FORCE ABOUT TEXT VISIBLE (AOS FIX) */
#about [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}
/* ================= ABSOLUTE ABOUT FIX ================= */

#about {
  position: relative;
  background: #ffffff;
}

/* lock text visibility */
#about .about-text {
  position: relative;
  z-index: 2;

  color: #111827;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* force paragraph color */
#about .about-text p {
  color: #374151 !important;
}

/* push image behind text safely */
#about .image-box {
  position: relative;
  z-index: 1;
}


/* ================= ABOUT TEXT FORCE FIX ================= */

#about p,
#about .about-text p {
  color: #374151 !important;   /* dark gray */
  opacity: 1 !important;
  visibility: visible !important;
}



/* ================= ABOUT SECTION ================= */

.about-section {
  background: #ffffff;
  padding: 100px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* TEXT */
.about-content {
  flex: 1;
  max-width: 520px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111827;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}

/* IMAGE */
.about-image {
  flex: 1;
  height: 400px;

  border-radius: 24px;

  background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
    url("images/back.jpg") center / cover no-repeat;

  box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-image {
    height: 260px;
    width: 100%;
  }

  .about-content {
    max-width: 100%;
  }
}
/* ================= ABOUT SECTION CLEAN ================= */

.about-section {
  background: #f8fafc;
  padding: 120px 20px;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* TEXT SIDE */
.about-left h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #111827;
}

.about-left p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}

/* IMAGE SIDE */
.about-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-right img {
  width: 100%;
  max-width: 480px;
  border-radius: 28px;
  box-shadow: 0 40px 70px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
}

.about-right img:hover {
  transform: translateY(-8px);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-left h2 {
    font-size: 36px;
  }

  .about-right img {
    max-width: 100%;
  }
}
/* ================= PRODUCT ASSURANCE ================= */

.product-assurance {
  background: #f8fafc;
  padding: 120px 20px;
}

.assurance-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.product-assurance h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111827;
}

.assurance-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.7;
  color: #374151;
}

/* Battery features */
.battery-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111827;
}

.feature-card p {
  font-size: 15px;
  color: #4b5563;
}

.feature-card.highlight {
  border: 2px solid #0f766e;
}

/* Warranty grid */
.warranty-heading {
  font-size: 28px;
  margin-bottom: 40px;
  color: #111827;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 80px;
}

.warranty-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  font-size: 15px;
  color: #374151;
}

.warranty-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #0f766e;
}

/* Dealer callout */
.dealer-callout {
  background: #0f172a;
  color: #ffffff;
  padding: 50px;
  border-radius: 20px;
}

.dealer-callout h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.dealer-callout p {
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-highlight {
  font-weight: 700;
  color: #22c55e;
}

.contact-names {
  font-size: 14px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 900px) {
  .dealer-callout {
    padding: 30px;
  }
}
/* ================= PRODUCT POWER SECTION ================= */

.product-power {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #ffffff;
  padding: 130px 20px;
  position: relative;
  overflow: hidden;
}

.power-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.power-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.power-subtitle {
  font-size: 18px;
  color: #cbd5f5;
  margin-bottom: 80px;
}

/* BATTERY CARDS */

.battery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-bottom: 90px;
}

.battery-card {
  background: rgba(255,255,255,0.05);
  padding: 35px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.battery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.battery-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.battery-card p {
  font-size: 15px;
  color: #cbd5f5;
}

.lithium {
  border: 2px solid #22c55e;
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #22c55e;
  color: #020617;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
}

/* WARRANTY */

.warranty-title {
  font-size: 30px;
  margin-bottom: 50px;
}

.warranty-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 90px;
}

.warranty-box {
  background: rgba(255,255,255,0.04);
  padding: 28px;
  border-radius: 14px;
  font-size: 15px;
  color: #cbd5f5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.warranty-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #22c55e;
}

/* DEALER CTA */

.dealer-cta {
  background: #111827;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.dealer-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.dealer-cta p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #cbd5f5;
}

.cta-numbers {
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 12px;
}

.cta-names {
  font-size: 14px;
  opacity: 0.8;
}

/* MOBILE */

@media (max-width: 900px) {
  .power-title {
    font-size: 36px;
  }

  .dealer-cta {
    padding: 35px;
  }
}
.warranty-card-visual img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
/* ===== WARRANTY GRID ===== */

.warranty-grid-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin: 80px 0;
}

/* ===== CARD STYLE ===== */

.warranty-card-visual {
  background: #0f172a;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.warranty-card-visual:hover {
  transform: translateY(-8px);
}

/* ===== IMAGE STYLE ===== */

.warranty-card-visual img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 10px;
}

/* ===== TEXT ===== */

.warranty-card-visual strong {
  font-size: 18px;
  color: #22c55e;
  margin-bottom: 6px;
}

.warranty-card-visual span {
  font-size: 14px;
  color: #cbd5f5;
}
/* ===== WARRANTY SECTION ===== */

.warranty-section {
  background: #020617;
  padding: 100px 60px;
  text-align: center;
}

.warranty-container {
  max-width: 1100px;
  margin: auto;
}

.warranty-main-title {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 15px;
}

.warranty-subtitle {
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 15px;
}

/* ===== FORCE 2 PER ROW ===== */

.warranty-grid-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* 🔥 THIS FIXES IT */
  gap: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .warranty-grid-visual {
    grid-template-columns: 1fr;
  }
}
/* ================= WHY SECTION ================= */

.why-section {
  background: #f8fafc;
  padding: 100px 60px;
  text-align: center;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-title {
  font-size: 38px;
  margin-bottom: 15px;
  color: #0f172a;
}

.why-subtitle {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.why-icon {
  font-size: 34px;
  margin-bottom: 18px;
}

.why-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #0f172a;
}

.why-card p {
  font-size: 14px;
  color: #64748b;
}
.call-btn {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.call-btn:hover {
  background: #ffffff;
  color: #000;
}
.gst-link {
  margin-left: 20px;
  padding: 6px 12px;
  background: #0f766e;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s ease;
}

.gst-link:hover {
  background: #0d5f58;
}
.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .logo img {
    height: 40px;
  }
}
/* ================= PRODUCTS SECTION ================= */

.products-section {
  padding: 100px 60px;
  background: #f8fafc;
  text-align: center;
}

.products-container {
  max-width: 1200px;
  margin: auto;
}

.products-section h2 {
  font-size: 38px;
  margin-bottom: 60px;
  color: #0f172a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 25px;
}

.product-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f172a;
}

.product-content p {
  font-size: 14px;
  color: #64748b;
}

.director-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Mobile */
@media (max-width: 900px) {
  .director-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .director-row {
    grid-template-columns: 1fr;
  }
}
.team-section {
  padding: 100px 60px;
  background: #f8fafc;
}

.team-container {
  max-width: 1200px;
  margin: auto;
}

.team-main-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}

.team-section {
  padding: 100px 20px;
  background: #f4f6f9;
}

.team-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* ===== TITLE ===== */
.team-main-title {
  font-size: 38px;
  margin-bottom: 70px;
}

/* ===== MD ===== */
.md-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.md-card {
  width: 320px;
}

/* ===== ROW FIX ===== */
.team-row {
  display: flex;
  justify-content: center;   /* 🔥 THIS FIXES CENTER ISSUE */
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* ===== CARD ===== */
.leader-card {
  width: 300px;              /* fixed width for clean look */
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.leader-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.leader-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.leader-card span {
  font-size: 15px;
  font-weight: 600;
  color: #dc2626;
}

/* Hover effect */
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .leader-card {
    width: 90%;
  }
}
/* ===== GOOGLE MAP PROFESSIONAL STYLE ===== */

.map-container{
    width:100%;
    height:320px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.18);
    margin-top:15px;
}

.map-container iframe{
    width:100%;
    height:100%;
    border:0;
}
