/* ===============================
   WHY CHOOSE US SECTION
================================= */

.why-choose {
  padding: 100px 0;
  background: #ffffff;
  width: 100%;
  position: relative;
}

.why-container {
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================
   HEADING
================================= */

.why-choose-one__content {
  text-align: center;
  margin-bottom: 70px;
}

.sec-title__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sec-title__tagline .line {
  width: 40px;
  height: 2px;
  background: #ff5a1f;
}

.sec-title__tagline h4 {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
}

.sec-title__title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.sec-title__title span {
  color: #ff1a12;
}

/* ===============================
   GRID
================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ===============================
   CARD
================================= */

.why-card {
  background: #1e56b8;
  padding: 45px 35px;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #ff1a12;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* ===============================
   ICON
================================= */

.why-icon {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.why-card:hover .why-icon {
  transform: rotate(8deg) scale(1.1);
}

/* IMAGE ICON */
.why-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* ===============================
   TEXT
================================= */

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #060606;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
}

/* ===============================
   RESPONSIVE
================================= */

/* Tablet */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sec-title__title {
    font-size: 36px;
  }

  .why-card {
    padding: 35px 25px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .why-choose {
    padding: 80px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sec-title__title {
    font-size: 28px;
  }

  .why-card {
    text-align: center;
    padding: 30px 20px;
  }

  .why-icon {
    margin: 0 auto 20px auto;
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 14px;
  }
}

/* =========================
   PREMIUM COUNTER SECTION
/* SECTION */
.stats-section {
  background: white;
  padding: 80px 20px;
}

/* GRID WITH GAP 🔥 */
.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; /* ✅ MAIN FIX */
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.stat-box {
  background: #1e56b8;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 30px;
  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #ff5a1f22, transparent);
  opacity: 0;
  transition: 0.4s;
}

.stat-box:hover::before {
  opacity: 1;
}

/* ICON */
.stat-icon {
  color: #ff1a12;
  font-size: 32px;
  transition: 0.3s;
}

/* NUMBER */
.stat-number {
  color: #030303;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

/* TEXT */
.stat-text {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

/* HOVER 🔥 */
.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #ff5a1f;
}

.stat-box:hover .stat-icon {
  transform: scale(1.2);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}

/* =========================
  core value
========================= */
.core-values-final {
  padding: 100px 0;
  background: #ffffff;
  color: #000000;
  font-family: "Inter", sans-serif;
}

.values-header {
  text-align: center;
  margin-bottom: 70px;
}

.badge {
  background: rgba(253, 85, 35, 0.15);
  color: #fd5523;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.values-header h2 {
  font-size: 40px;
  margin-top: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.value-card {
  background: #1e56b8;
  backdrop-filter: blur(12px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #fd5523;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 20px;

  /* FIX */
  font-size: 0; /* ❌ font icon hide */
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.value-card h4 {
  margin-bottom: 12px;
}

.value-card p {
  color: #ffffff;
  font-size: 14px;
}

/* Animation Default Visible */
.animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* When not visible */
.animate.hidden {
  opacity: 0;
  transform: translateY(50px);
}

/* ===============================
   GLOBAL
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: "Segoe UI", sans-serif;
  background: #1c1f5a;
  color: #ffffff;
} */

/* ===============================
   SECTION
================================ */

.services-section {
  padding: 120px 40px;
}

.services-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
}

/* ===============================
   CARD STYLE (Screenshot Look)
================================ */

.service-card {
  background: #252a6a;
  padding: 45px 35px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: 0.4s ease;
  position: relative;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  border: 1px solid rgba(255, 90, 31, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* ===============================
   ICON
================================ */

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 90, 31, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.4s ease;
}

/* SVG */
.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: #ff5a1f;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.4s ease;
}

/* Icon hover */
.service-card:hover .service-icon {
  background: #ff5a1f;
}

.service-card:hover .service-icon svg {
  stroke: #ffffff;
}

/* ===============================
   TEXT
================================ */

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffffff;
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #d6d6e6;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .services-section {
    padding: 80px 20px;
  }
}

/* ===============================
   ABOUT DESCRIPTION SECTION
================================ */

/* =========================
   TRACK BOX - FINAL UI
========================= */
.track-box {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 5px 14px;
  border-radius: 14px;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  /* Border Setup */
  border: 2px solid transparent;
  background-clip: padding-box;

  position: relative;
  transition: all 0.3s ease;
}

/* 🔥 Gradient Border Layer */
.track-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;

  background: linear-gradient(135deg, #e31e24, #f4b400);

  -webkit-mask:
    linear-gradient(#892323 0 0) content-box,
    linear-gradient(#7a0000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* Hover Effect */
.track-box:hover {
  box-shadow: 0 0 20px rgba(253, 85, 35, 0.35);
}

/* Focus Effect */
.track-box:focus-within {
  box-shadow: 0 0 0 2px rgba(253, 85, 35, 0.3);
}

/* =========================
   ICON
========================= */
.track-icon {
  display: flex;
  align-items: center;
}

/* =========================
   INPUT
========================= */
.track-box input {
  border: none;
  outline: none;
  background: transparent;

  color: #720000;
  font-size: 15px;
  width: 180px;
}

/* 🔥 UPDATED PLACEHOLDER COLOR */
.track-box input::placeholder {
  color: #fd5523; /* ← yaha change kiya */
}

/* 🔥 CROSS BROWSER SUPPORT */
.track-box input::-webkit-input-placeholder {
  color: #fd5523;
}
.track-box input:-ms-input-placeholder {
  color: #fd5523;
}

/* =========================
   BUTTON
========================= */
.track-box button {
  display: flex;
  align-items: center;
  gap: 5px;

  background: #1e5bb8;
  color: #ffffff;

  border: none;
  padding: 5px 15px;
  border-radius: 10px;

  cursor: pointer;
  font-size: 10px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* Button Hover */
.track-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(219, 14, 14, 0.3);
}

/* Button Click */
.track-box button:active {
  transform: scale(0.95);
}

/* =========================
   SAFETY (CLICK FIX)
========================= */
.main-header-one__bottom-right {
  position: relative;
  z-index: 10;
}

.track-box {
  z-index: 10;
}

.track-box button {
  z-index: 11;
  pointer-events: auto;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .track-box input {
    width: 140px;
  }
}

/* Mobile Hide */
@media (max-width: 768px) {
  .track-box {
    display: none;
  }
}

/* =========================================
   ULTRA PREMIUM VMV SECTION
========================================= */

.shivam-vmv {
  position: relative;
  padding: 120px 20px;

  background: white;

  overflow: hidden;
}

/* =========================================
   GRID
========================================= */

.shivam-vmv .vmv-container {
  max-width: 1350px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* =========================================
   CARD
========================================= */

.shivam-vmv .vmv-card {
  position: relative;

  padding: 55px 40px;

  border-radius: 35px;

  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.35);

  overflow: hidden;

  transition: 0.5s ease;

  box-shadow: 0 20px 60px rgba(30, 86, 184, 0.1);
}

/* TOP PREMIUM BORDER */

.shivam-vmv .vmv-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 7px;

  background: linear-gradient(90deg, #1e56b8 0%, #0b2d6f 40%, #ff1a12 100%);
}

/* SIDE LIGHT */

.shivam-vmv .vmv-card::after {
  content: "";

  position: absolute;
  top: -80px;
  right: -80px;

  width: 180px;
  height: 180px;

  background: radial-gradient(circle, rgba(30, 86, 184, 0.18), transparent 70%);

  border-radius: 50%;
}

/* NEXT LEVEL HOVER */

.shivam-vmv .vmv-card:hover {
  transform: translateY(-15px) scale(1.02);

  box-shadow: 0 35px 80px rgba(30, 86, 184, 0.18);
}

/* =========================================
   ICON
========================================= */

.shivam-vmv .icon {
  position: relative;

  width: 90px;
  height: 90px;

  margin: 0 auto 30px;

  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 46px;

  color: #fff;

  background: linear-gradient(145deg, #1e56b8, #0b2d6f);

  box-shadow: 0 20px 40px rgba(30, 86, 184, 0.3);

  z-index: 2;
}

/* ICON GLOW */

.shivam-vmv .icon::before {
  content: "";

  position: absolute;
  inset: -8px;

  border-radius: 35px;

  border: 2px solid rgba(255, 26, 18, 0.2);
}

/* =========================================
   TITLE
========================================= */

.shivam-vmv h3 {
  position: relative;

  font-size: 42px;
  font-weight: 900;

  text-align: center;

  margin-bottom: 35px;

  letter-spacing: 2px;

  color: #1e56b8;
}

/* RED LINE */

.shivam-vmv h3::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -15px;

  transform: translateX(-50%);

  width: 70px;
  height: 5px;

  border-radius: 20px;

  background: #ff1a12;
}

/* =========================================
   TEXT
========================================= */

.shivam-vmv p {
  font-size: 19px;
  line-height: 2;

  text-align: center;

  color: #4a4a4a;

  font-weight: 500;
}

/* =========================================
   LIST
========================================= */

.shivam-vmv ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shivam-vmv ul li {
  position: relative;

  font-size: 19px;
  font-weight: 600;

  color: #444;

  margin: 22px 0;

  padding-left: 42px;
}

/* CUSTOM CHECK */

.shivam-vmv ul li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: -2px;

  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #ff1a12;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 900;

  box-shadow: 0 8px 18px rgba(255, 26, 18, 0.25);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .shivam-vmv .vmv-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .shivam-vmv {
    padding: 80px 20px;
  }

  .shivam-vmv .vmv-card {
    padding: 45px 25px;
  }

  .shivam-vmv h3 {
    font-size: 32px;
  }

  .shivam-vmv p,
  .shivam-vmv ul li {
    font-size: 16px;
    line-height: 1.8;
  }
}
.shivam-about {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e4fa3, #2c6ed5);
  color: #fff;
  overflow: hidden;
}

/* Layout */
.shivam-about .about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

/* Heading */
.shivam-about h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.shivam-about h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e53935;
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* Text */
.shivam-about p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Highlight */
.about-highlight {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 500;
}

.about-highlight i {
  color: #e53935;
}

/* Right Card */
.about-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Floating Circles */
.about-card .circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -30px;
  right: -30px;
}

.about-card .circle.small {
  width: 70px;
  height: 70px;
  bottom: -20px;
  left: -20px;
}

/* Card Content */
.about-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #e53935;
}

.about-card h3 {
  margin-bottom: 10px;
}

.about-card p {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .shivam-about .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shivam-about h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
