/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #222;
  background: #f6f8ff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   FINAL HEADER + NAV (NO DUPLICATES)
========================= */

.header {
  background: #0b214a;
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  height: 50px;
  object-fit: contain;
}

.tagline {
  font-size: 0.9rem;
  color: #b3e5fc;
  margin-top: 6px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* =========================
   NAVIGATION
========================= */

.navbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.2s ease;
  padding: 4px 10px;
}

.navbar a.active,
.navbar a:hover {
  color: #00bcd4;
}

.btn-quote,
.btn-primary {
  background: #00bcd4;
  padding: 12px 26px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-quote:hover,
.btn-primary:hover {
  background: #0097a7;
  transform: translateY(-1px);
}

/* =========================
   RESPONSIVE NAVBAR
========================= */

@media (max-width: 900px) {
  .header .container {
    flex-direction: column;
    text-align: center;
  }

  .navbar {
    justify-content: center;
    margin-top: 8px;
  }

  .navbar a {
    margin: 5px 12px;
  }

  .btn-primary {
    margin-top: 10px;
  }
}

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  height: 65vh; /* 85vh → 65vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero {
    height: 55vh;  /* Mobile mein aur chhota */
  }

  .hero-content h1 {
    font-size: 1.8rem; /* Thoda small mobile ke liye */
  }

  .hero-content p {
    font-size: 0.95rem;
  }
  
  .slide-container img {
    width: 70%;   /* Logo aur chhota */
    max-width: 300px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 550px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  filter: grayscale(40%) opacity(0.55);
}

.slide-container img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 33, 74, 0.65);
  z-index: 1;
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 22px;
  opacity: 0.95;
}

.btn-primary {
  background: #00bcd4;
  padding: 12px 26px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #0097a7;
  transform: translateY(-1px);
}

/* =========================
   OLD WHY CHOOSE SECTION
========================= */
.about-preview {
  padding: 60px 0 65px;
  text-align: center;
}

.about-preview h2 {
  color: #0b214a;
  margin-bottom: 6px;
  font-size: 2rem;
}

.about-preview p {
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0b214a;
  color: #fff;
  padding: 18px 0;
  text-align: center;
  margin-top: 45px;
  font-size: 0.9rem;
}

/* =========================
   INFINITE AUTO SLIDER (3 CENTER + PERFECT ALIGNMENT)
========================= */
.features-section.premium {
  background: linear-gradient(to bottom, #eef4ff, #f9fbff);
  text-align: center;
  padding: 70px 0;
  position: relative;
}

.features-section.premium h2 {
  color: #0b214a;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.features-section.premium p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

/* ✅ Slider Container */
.slider-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 20px;
}

/* ✅ Track Wrapper */
.slider-track-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* ✅ Track */
.slider-track {
  display: flex;
  transition: transform 1.2s ease-in-out;
}

/* ✅ Boxes */
.feature-box {
  flex: 0 0 calc(33.33% - 24px);
  margin: 0 12px;
  background: #fff;
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.feature-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.feature-box:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 188, 212, 0.35);
}

.feature-box:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 15px rgba(0,188,212,0.8));
}

/* ✅ Buttons */
.slider-btn {
  background: white;
  border: 2px solid #00bcd4;
  color: #0b214a;
  font-size: 22px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: #00bcd4;
  color: white;
  transform: scale(1.05);
}

/* ✅ Responsive Fix */
@media (max-width: 900px) {
  .feature-box {
    flex: 0 0 45%;
  }
}

@media (max-width: 600px) {
  .feature-box {
    flex: 0 0 80%;
  }
}

.about-preview .features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.about-preview .feature {
  width: 250px;
  background: #fff;
  padding: 22px 16px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-preview .feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.about-preview .feature-logo img {
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* =========================
   ABOUT PAGE REFINED
========================= */
.about-hero {
  position: relative;
  height: 60vh;
  background: linear-gradient(135deg, #0b214a 0%, #002d5b 100%), url("../images/pattern-overlay.png");
  background-size: cover;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 33, 74, 0.75);
}
.about-hero .hero-content {
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.about-hero p {
  font-size: 1.2rem;
  color: #b3e5fc;
}

/* Story */
.about-story {
  padding: 70px 0;
  text-align: center;
}
.about-story h2 {
  color: #0b214a;
  margin-bottom: 20px;
  font-size: 2rem;
}
.about-story p {
  color: #444;
  max-width: 850px;
  margin: 10px auto;
  font-size: 1rem;
  line-height: 1.8;
}

/* Mission Vision */
.mission-vision {
  background: #eef4ff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 0;
}
.mission, .vision {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 450px;
}
.mission h3, .vision h3 {
  color: #0b214a;
  margin-bottom: 10px;
}
.mission p, .vision p {
  color: #333;
  line-height: 1.7;
}

/* Expertise Section */
.expertise {
  padding: 60px 0;
  text-align: center;
}
.expertise h2 {
  color: #0b214a;
  margin-bottom: 40px;
}
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.expertise-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 25px;
  transition: all 0.4s ease;
}
.expertise-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,188,212,0.25);
}
.expertise-box img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}
.expertise-box h4 {
  color: #0b214a;
  margin-bottom: 8px;
}

/* Trust Highlights */
.trust-highlights {
  background: #f9fbff;
  padding: 70px 0;
  text-align: center;
}
.trust-highlights h2 {
  color: #0b214a;
  margin-bottom: 15px;
}
.trust-highlights p {
  color: #555;
  margin-bottom: 40px;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 180px;
  padding: 20px;
  transition: all 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,188,212,0.3);
}
.stat-box h3 {
  color: #00bcd4;
  font-size: 2rem;
}
.stat-box p {
  color: #333;
  font-size: 0.95rem;
}

/* =========================
   ABOUT PAGE HERO SECTION (Light Background + Image Visible)
========================= */
.about-hero {
  position: relative;
  height: 65vh;
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
              url("../images/about-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: lighten; /* ✅ ensures light gradient blends softly */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fafbfc; /* dark text for visibility */
}

.about-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-hero p {
  font-size: 1.1rem;
  color: #fafafa; /* subtle blue */
  max-width: 600px;
}

/* 🌟 Mission & Vision Full Image Section */
.mission-vision-section {
  background: #f6f8ff;
  padding: 60px 0;
  text-align: center;
}

.mission-vision-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-vision-img {
  width: 100%;
  max-width: 1000px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.mission-vision-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

/* 🌟 Mission & Vision Full Width Section */
.mission-vision {
  width: 100%;
  background: #f6f8ff;
  padding: 60px 0;
}

.mission,
.vision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 40px auto;
  gap: 40px;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover,
.vision:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 188, 212, 0.25);
}

.mission .text,
.vision .text {
  flex: 1;
}

.mission .image,
.vision .image {
  flex: 1;
}

.mission img,
.vision img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* Alternate direction for visual balance */
.vision {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 900px) {
  .mission,
  .vision {
    flex-direction: column;
    text-align: center;
  }
  .mission .image,
  .vision .image {
    order: -1;
  }
}

.about-mission-vision {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f8ff;
  padding: 80px 0;
}

.about-mission-vision .image {
  position: relative;
  width: 88%; /* slightly reduced for perfect centering */
  max-width: 1200px;
  margin-left: auto;   /* ✅ perfect center alignment */
  margin-right: auto;  /* ✅ equal spacing both sides */
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-vision .image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.about-mission-vision .image:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 35px rgba(0, 188, 212, 0.25);
}

section,
div,
img {
  margin-left: 0;
  margin-right: 0;
}

/* =========================
   PRODUCTS PAGE DESIGN
========================= */
.products {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.products h2 {
  color: #0b214a;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.products .subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* ============================
   FEATURES & DOCUMENTS SECTION
============================ */
#features-docs {
  background: #f8f9fa;
  padding: 60px 0;
  text-align: center; /* added - pura doc-list center me laye */
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(11, 33, 74, 0.06);
  color: #0b214a;
  min-height: 140px;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11, 33, 74, 0.08);
}

.feature-card h4 {
  color: #0b214a;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: #234;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Documents list - perfect one-line alignment */
.doc-list {
  list-style: none;
  margin: 40px auto;
  padding: 25px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(11, 33, 74, 0.08);
  width: fit-content;
  display: flex;
  flex-direction: column;   /* vertical alignment */
  align-items: center;      /* center horizontally */
  gap: 14px;                /* equal vertical spacing */
}

.doc-list li {
  font-size: 1rem;
  color: #0b214a;
  font-weight: 500;
  text-align: center;       /* center text */
  white-space: nowrap;      /* prevent wrapping */
}

.phone-prefix {
  background: #fff;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 6px 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  height: 45px;
}

.phone-input {
  border: none;
  border-radius: 0 6px 6px 0;
  height: 45px;
}

/* =========================
   FIX: Equal Height Product Cards (Know More Alignment)
========================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  max-width: 320px;
  position: relative;
  overflow: hidden;

  /* 👇 NEW FIX */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px; /* sab card ek height me */
}

.product-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 20px;
  transition: transform 0.4s ease;
}

.product-card h3 {
  font-size: 1.1rem;
  color: #0b214a;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1; /* text length change hone par bhi button same rahe */
}

.product-card a.btn {
  background-color: #00bcd4;
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  border: none;
  margin-top: auto; /* 👈 ensures button stays at bottom */
  align-self: center;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.product-card a.btn:hover {
  background-color: #0097a7;
  transform: translateY(-2px);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 188, 212, 0.25);
}

html {
  scroll-behavior: smooth;
}

/* TRUSTED SECTION FIXED EQUAL LAYOUT */
.trusted-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 60px 0;
}

.trusted-image {
  flex: 1;
}

.trusted-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.trusted-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trusted-text h2 {
  font-size: 2.5rem;
  color: #0b214a;
  margin-bottom: 10px;
  font-weight: 700;
}

.trusted-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.75;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .trusted-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .trusted-text h2 {
    font-size: 2rem;
  }
}

/* ABOUT PAGE – TWO COLUMN IMAGE + TEXT */
.about-two-column {
  padding: 80px 0;
  background: #eef7fa;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.about-left img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-right {
  flex: 1;
}

.about-right h2 {
  font-size: 2.4rem;
  color: #0b214a;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-right p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Responsive */
@media(max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}
