/* =========================
   NEXT LEVEL PREMIUM SLIDER
========================= */

.cargo-hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* SLIDES */

.cargo-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.cargo-slide.active {
  display: block;
}

/* IMAGE */

.cargo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  animation: premiumZoom 8s linear infinite;
}

/* ZOOM EFFECT */

@keyframes premiumZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* DARK OVERLAY */

.cargo-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.15)
  );
}

/* CONTENT */

.cargo-content {
  position: absolute;

  top: 50%;
  left: 8%;

  transform: translateY(-50%);

  z-index: 5;

  animation: contentReveal 1s ease;
}

/* ANIMATION */

@keyframes contentReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* TOP LINE */

.cargo-line {
  display: block;

  width: 120px;
  height: 4px;

  background: #fff;

  margin-bottom: 35px;

  border-radius: 20px;

  animation: lineGlow 2s infinite alternate;
}

/* LINE GLOW */

@keyframes lineGlow {
  from {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  to {
    box-shadow:
      0 0 20px rgba(255, 255, 255, 0.9),
      0 0 40px rgba(255, 255, 255, 0.6);
  }
}

/* HEADING */

.cargo-content h1 {
  font-size: clamp(45px, 8vw, 110px);

  line-height: 0.95;

  font-weight: 900;

  letter-spacing: 2px;

  color: #fff;

  text-transform: uppercase;

  text-shadow: 0 8px 25px rgba(0, 0, 0, 0.55);

  animation: textFloat 3s ease-in-out infinite;
}

/* FLOAT EFFECT */

@keyframes textFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* DOTS */

.cargo-dots {
  position: absolute;

  left: 50%;
  bottom: 40px;

  transform: translateX(-50%);

  display: flex;

  gap: 14px;

  z-index: 10;
}

.cargo-dot {
  width: 13px;
  height: 13px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.35);

  cursor: pointer;

  transition: 0.4s ease;
}

.cargo-dot.active {
  width: 45px;

  border-radius: 20px;

  background: #fff;

  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* TABLET */

@media (max-width: 991px) {
  .cargo-content {
    left: 6%;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .cargo-hero-slider {
    height: 85vh;
  }

  .cargo-content {
    left: 5%;
    right: 5%;

    text-align: center;
  }

  .cargo-line {
    margin: 0 auto 25px auto;
  }

  .cargo-content h1 {
    line-height: 1.05;
  }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
  .cargo-hero-slider {
    height: 75vh;
  }

  .cargo-content h1 {
    font-size: 38px;
  }
}
/* ===============================
   CLIENT REVIEW SECTION
================================= */

.client-review {
  /* padding: 100px 0; */
  background: #ffffff;
  position: relative;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 2400px;
  margin: auto;
}

/* ===============================
   HEADING
================================= */

.review-heading {
  text-align: center;
  margin-bottom: 70px;
}

.sec-title__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.sec-title__tagline .line {
  width: 40px;
  height: 2px;
  background: #ff5e14;
}

.sec-title__tagline h4 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff5e14;
}

.sec-title__title {
  font-size: 38px;
  font-weight: 700;
}

.sec-title__title span {
  color: #ff5e14;
}

/* ===============================
   REVIEW GRID
================================= */

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* =========================
   PREMIUM COUNTER SECTION
========================= */

.counter-section {
  background: #1c1f5a;
  padding: 100px 0;
}

.counter-wrapper {
  width: 100%;
  max-width: 2400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.counter-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-card:hover {
  transform: translateY(-10px);
  border-color: #fd5523;
}

.counter-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 20px;
}

.counter-icon svg {
  width: 100%;
  height: 100%;
}

.count {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.counter-card p {
  font-size: 15px;
  color: #cfd8dc;
  letter-spacing: 0.5px;
}

.counter-icon svg path,
.counter-icon svg circle {
  stroke: #ff5a1f;
}

/* ===============================
   ULTRA PREMIUM SERVICES
================================ */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f5f7fa;
}

/* SECTION */
.premium-services {
  padding: 100px 20px;
}

/* CONTAINER */
.container1 {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.premium-header {
  text-align: center;
  margin-bottom: 60px;
}

.premium-header h5 {
  color: #f4b400; /* Yellow */
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.premium-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.premium-header span {
  color: #1e3a8a; /* Dark Blue */
}

/* GRID */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

/* CARD */
.premium-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  position: relative;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(30, 58, 138, 0.2); /* Blue shadow */
}

/* IMAGE */
.premium-img {
  height: 220px;
  overflow: hidden;
}

.premium-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.premium-card:hover .premium-img img {
  transform: scale(1.1);
}

/* CONTENT */
.premium-content {
  padding: 22px;
  text-align: center;
}

.premium-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1e3a8a; /* Dark Blue */
}

.premium-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* FULL CONTENT (READ MORE) */
.full-content {
  display: none;
  text-align: left;
  margin-top: 12px;
  animation: fadeIn 0.3s ease;
}

.full-content p {
  margin-bottom: 10px;
}

.full-content ul {
  padding-left: 18px;
  margin-top: 8px;
}

.full-content li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

/* BUTTON */
.read-more-btn {
  margin-top: 12px;
  padding: 8px 18px;
  border: none;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6); /* Blue gradient */
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
}

/* ACTIVE STATE */
.premium-card.active .full-content {
  display: block;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-header h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .premium-services {
    padding: 70px 15px;
  }

  .premium-header h2 {
    font-size: 26px;
  }

  .premium-content {
    padding: 18px;
  }

  .premium-img {
    height: 180px;
  }

  .premium-content p {
    font-size: 13px;
  }
}
/* =========================
   PREMIUM PROCESS (CUSTOM COLORS)
========================= */

.process-timeline {
  /* padding: 120px 0; */
  background: #1c1f5a;
  color: #fff;
}

.container12 {
  width: 100%;
  max-width: 2000px;
  margin: auto;
}
.timeline-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 20px; */
  flex-wrap: nowrap; /* Force single row */
}

/* Prevent step shrink */
.timeline-step {
  flex: 1;
  min-width: 220px;
  text-align: center;
}

.step-box {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s ease;
}

.timeline-step:hover .step-box {
  border-color: #fd5523;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-10px);
}

/* Badge */

.step-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fd5523;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

/* Icon */

.step-icon svg {
  width: 70px;
  height: 70px;
  color: #fd5523;
}

/* Divider */

.timeline-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 140px;
}

.timeline-divider .line {
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #fd5523,
    #fd5523 6px,
    transparent 6px,
    transparent 12px
  );
}

.timeline-divider svg {
  width: 24px;
  height: 24px;
  color: #fd5523;
}

/* Text */

.timeline-step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-step p {
  font-size: 14px;
  color: #d6d6d6;
}

.process-timeline {
  background: #1c1f5a;
  /* padding: 120px 0 140px; */
  color: #fff;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header h5 {
  color: #fd5523;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 12px;
}

.process-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-header span {
  color: #fd5523;
}

.process-header p {
  color: #d6d6d6;
  font-size: 16px;
}

/* Responsive */

@media (max-width: 992px) {
  .timeline-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .timeline-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .timeline-wrapper::-webkit-scrollbar-thumb {
    background: #fd5523;
    border-radius: 10px;
  }
}

/* powerd bye */

.footer-one__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-powered {
  text-align: center;
}

.footer-powered p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

.footer-powered .neo {
  color: #ffc107; /* Yellow like first image */
  font-weight: 600;
  text-decoration: none;
}

.footer-powered .neo:hover {
  text-decoration: underline;
}

/* =========================
   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: #f4b400;
  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;
  }
}

/* ===============================
   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: #2e3192;
  line-height: 1.3;
  margin-top: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.sec-title__title span {
  color: #ff5a1f;
}

/* ===============================
   GRID
================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ===============================
   CARD
================================= */
/* =========================================
   WHY CHOOSE US SECTION
========================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* =========================================
   CARD DESIGN
========================================= */

.why-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 22px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;

  /* SHADOW */
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.05);

  border: 1px solid #f1f1f1;
}

/* Hover Effect */
.why-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.12),
    0 10px 25px rgba(255, 90, 31, 0.12);

  border-color: #ff5a1f;
}

/* =========================================
   ICON BOX
========================================= */

.why-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #ffb100, #ff8c00);
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  transition: all 0.4s ease;

  box-shadow: 0 8px 20px rgba(255, 177, 0, 0.25);
}

.why-card:hover .why-icon {
  transform: rotate(8deg) scale(1.08);
}

/* ICON IMAGE */

.why-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* =========================================
   TEXT
========================================= */

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 14px;
  line-height: 1.3;
}

.why-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #555555;
  margin: 0;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .why-card {
    padding: 35px 25px;
  }

  .why-card h3 {
    font-size: 20px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    text-align: center;
    padding: 30px 22px;
    border-radius: 18px;
  }

  .why-icon {
    margin: 0 auto 20px auto;
    width: 70px;
    height: 70px;
  }

  .why-icon img {
    width: 34px;
    height: 34px;
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}
/* ===============================
   loder
================================= */

.netflix-loader {
  position: fixed;
  inset: 0;
  background: #5153a0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 999999;
}

/* FLASH EFFECT */
.flash {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgb(194, 144, 58) 0%, transparent 70%);
  opacity: 0;
  animation: flashAnim 0.8s ease forwards;
}

@keyframes flashAnim {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(3);
  }
}

/* CONTENT */
.content12 {
  text-align: center;
  z-index: 2;
}

/* LOGO */
.logo {
  width: 250px;
  margin-bottom: 25px;
  opacity: 0;
  transform: scale(0.5);
  animation: logoReveal 1.5s ease forwards;
  animation-delay: 0.5s;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* TEXT */
.text {
  font-size: 35px;
  letter-spacing: 6px;
  color: #fff;
  opacity: 0;
  animation: textFade 1.5s ease forwards;
  animation-delay: 1.2s;

  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.6),
    0 0 25px rgba(46, 49, 146, 0.5),
    0 0 40px rgba(244, 194, 13, 0.5);
}

@keyframes textFade {
  from {
    opacity: 0;
    letter-spacing: 12px;
  }
  to {
    opacity: 1;
    letter-spacing: 6px;
  }
}

/* EXIT */
.netflix-loader.hide {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s ease;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .logo {
    width: 70px;
  }
  .text {
    font-size: 18px;
  }
}
/* ===============================
   ABOUT US SECTION*/

.about-pro {
  position: relative;
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* BACKGROUND SHAPES */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.shape1 {
  width: 300px;
  height: 300px;
  background: rgba(46, 49, 146, 0.2);
  top: -80px;
  left: -80px;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: rgba(244, 194, 13, 0.2);
  bottom: -80px;
  right: -80px;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* IMAGE */
.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.img-box:hover img {
  transform: scale(1.05);
}

/* FLOAT CARD */
.floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-card h3 {
  color: #2e3192;
}

/* TEXT */
.tag {
  color: #2e3192;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.text-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.feature {
  background: #f9fafc;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.feature:hover {
  background: #2e3192;
  color: #fff;
}

/* BUTTON */
.btn {
  padding: 12px 30px;
  background: #2e3192;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #f4c20d;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .text-box h2 {
    font-size: 28px;
  }
}

/* =========================
   COMPACT VISION MISSION
========================= */

.vision-mission-section {
  padding: 80px 20px;

  background: #ffffff;

  position: relative;

  overflow: hidden;
}

/* HEADER */

.vm-header {
  text-align: center;

  margin-bottom: 45px;
}

.vm-header span {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 40px;

  background: #eef2ff;

  color: #2e3192;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 15px;
}

.vm-header h2 {
  font-size: clamp(28px, 4vw, 48px);

  font-weight: 800;

  color: #111;
}

/* GRID */

.vm-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

/* CARD */

.vm-card {
  background: #fff;

  padding: 28px 24px;

  border-radius: 22px;

  border: 1px solid #edf0f7;

  transition: 0.4s ease;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* HOVER */

.vm-card:hover {
  transform: translateY(-8px);

  border-color: #2e3192;
}

/* ICON */

.vm-icon {
  width: 58px;
  height: 58px;

  border-radius: 16px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  background: linear-gradient(135deg, #2e3192, #5961ff);
}

.vm-icon i {
  font-size: 22px;

  color: #fff;
}

/* TITLE */

.vm-card h3 {
  font-size: 24px;

  font-weight: 700;

  margin-bottom: 15px;

  color: #111;
}

/* TEXT */

.vm-card p {
  font-size: 14px;

  line-height: 1.8;

  color: #555;
}

/* LIST */

.vm-card ul {
  padding-left: 18px;

  margin: 0;
}

.vm-card ul li {
  font-size: 14px;

  line-height: 1.9;

  color: #555;

  margin-bottom: 8px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vision-mission-section {
    padding: 70px 15px;
  }

  .vm-card {
    padding: 24px 20px;
  }
}
