/* ====================================
   HOME PAGE BASE STYLES
==================================== */
:root {
  --home-primary: #214f99;
  --home-primary-dark: #183c75;
  --home-secondary: #5e832a;
  --home-text: #111827;
  --home-muted: #5f6b7a;
  --home-light: #f5f7fa;
  --home-border: #dfe5ec;
  --home-white: #ffffff;
  --home-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --home-shadow-hover: 0 18px 42px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ====================================
   SCROLL REVEAL
==================================== */

.scroll-reveal {
  opacity: 1;
}

@supports (animation-timeline: view()) {
  .scroll-reveal {
    view-timeline-name: --reveal;
    view-timeline-axis: block;
    animation-name: homeFadeUp;
    animation-fill-mode: both;
    animation-timeline: --reveal;
    animation-range: entry 10% cover 30%;
  }
}

/* ====================================
   COMMON SECTION STYLES
==================================== */

.section-tag,
.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  background: #eef3f9;
  border: 1px solid #d8e3f1;
  border-radius: 6px;
  color: var(--home-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading h2 {
  margin: 18px 0;
  color: var(--home-text);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.18;
}

.section-heading p {
  margin: 0;
  color: var(--home-muted);
  font-size: 18px;
  line-height: 1.8;
}

/* ====================================
   HERO SECTION
==================================== */

.hero-row {
  min-height: 600px;
}

.hero-section {
  padding: 15px 0 10px;
  margin: 0;
  background: var(--home-light);
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
  margin: 0;
  animation: homeFadeUpEnter 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content h1 {
  margin: 0 0 12px;
  color: var(--home-text);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.08;
}

.hero-content p {
  margin: 0 0 20px;
  color: var(--home-muted);
  font-size: 20px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.hero-btn-primary {
  background: var(--home-primary);
  border: 2px solid var(--home-primary);
  color: var(--home-white);
}

.hero-btn-secondary {
  background: transparent;
  border: 2px solid var(--home-primary);
  color: var(--home-primary);
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover {
  transform: translateY(-2px);
}

.hero-btn-primary:hover {
  background: var(--home-secondary);
  border-color: var(--home-secondary);
  color: var(--home-white);
}

.hero-btn-secondary:hover {
  background: var(--home-primary);
  color: var(--home-white);
}

.hero-image {
  margin: 0;
  padding: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
  animation: homeFadeUpEnter 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}
/* ====================================
   TRUST BAR SECTION
==================================== */

.trust-bar {
  padding: 18px 0;
  background: var(--home-primary);
}

.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-items span {
  color: var(--home-white);
  font-weight: 700;
}

/* ====================================
   ABOUT SECTION
==================================== */

.about-section {
  padding: 110px 0;
  background: var(--home-white);
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.about-content h2,
.global-content h2 {
  margin: 0 0 24px;
  color: var(--home-text);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
}

.about-content p,
.global-content p {
  margin: 0 0 20px;
  color: var(--home-muted);
  font-size: 18px;
  line-height: 1.8;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  padding: 14px 30px;
  background: var(--home-primary);
  border-radius: 6px;
  color: var(--home-white);
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  background: var(--home-secondary);
  color: var(--home-white);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 76px;
}

.stat-box {
  padding: 34px 20px;
  background: var(--home-light);
  border: 1px solid var(--home-border);
  border-radius: 8px;
  text-align: center;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-box h3 {
  margin: 0 0 8px;
  color: var(--home-primary);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.stat-box p {
  margin: 0;
  color: var(--home-text);
  font-weight: 700;
}

/* ====================================
   JOURNEY SECTION
==================================== */

.journey-section {
  padding: 110px 0;
  background: var(--home-light);
}

.journey-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.journey-item {
  width: 180px;
  text-align: center;
}

.journey-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: var(--home-primary);
  border-radius: 50%;
  color: var(--home-white);
  font-size: 20px;
  font-weight: 800;
  transition: 0.3s ease;
}

.journey-item:hover .journey-icon {
  transform: scale(1.08);
}

.journey-item h3 {
  margin: 20px 0 8px;
  color: var(--home-text);
  font-size: 22px;
  font-weight: 700;
}

.journey-item p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.7;
}

.journey-arrow {
  padding-top: 18px;
  color: var(--home-primary);
  font-size: 28px;
  font-weight: 800;
}

/* ====================================
   SERVICES SECTION
==================================== */

.services-section {
  padding: 110px 0;
  background: var(--home-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--home-shadow);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  background: linear-gradient(
    to top,
    rgba(8, 15, 28, 0.86),
    rgba(8, 15, 28, 0.18)
  );
}

.service-overlay h3 {
  margin: 0 0 12px;
  color: var(--home-white);
  font-size: 32px;
  font-weight: 700;
}

.service-overlay p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.service-overlay a {
  color: var(--home-white);
  font-weight: 700;
  text-decoration: none;
}

.service-card:hover img {
  transform: scale(1.06);
}



/* ====================================
   INDUSTRIES SECTION
==================================== */

.industries-section {
  padding: 110px 0;
  background: var(--home-white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.industry-card {
  padding: 38px 24px;
  background: var(--home-primary);
  border-radius: 8px;
  color: var(--home-white);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  text-align: center;
  transition: 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  background: var(--home-secondary);
  box-shadow: var(--home-shadow-hover);
}

/*====================================
NETWORK SECTION
====================================*/

.network-map-section{

    padding:110px 0;

    background:#f8fafc;

}

.network-full{

    width:100%;

}

.network-full h2{

    font-size:48px;

    font-weight:800;

    color:#173f7a;

    line-height:1.2;

    margin:18px 0 25px;

}

.network-intro{

    max-width:920px;

    font-size:18px;

    line-height:1.9;

    color:#5f6773;

    margin-bottom:60px;

}

/*====================================
GRID
====================================*/

.network-details{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:30px;

}

/*====================================
CARD
====================================*/

.network-card{

    display:flex;

    align-items:center;

    gap:22px;

    background:#ffffff;

    border:1px solid #e4e9ef;

    border-left:5px solid #214f99;

    border-radius:18px;

    padding:28px;

    min-height:145px;

    transition:all .35s ease;

    box-shadow:0 8px 22px rgba(0,0,0,.05);

}

.network-card:hover{

    transform:translateY(-8px);

    border-left-color:#5e832a;

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

/*====================================
HQ CARD
====================================*/

.network-card.hq{

    border-left-color:#5e832a;

}

/*====================================
ICON
====================================*/

.network-icon{

    width:72px;

    height:72px;

    min-width:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#214f99;

    color:#fff;

    font-size:28px;

    transition:.35s;

}

.network-card:hover .network-icon{

    transform:scale(1.08);

    background:#5e832a;

}

.network-card.hq .network-icon{

    background:#5e832a;

}

/*====================================
CONTENT
====================================*/

.network-content{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.network-content h3{

    margin:0 0 8px;

    font-size:24px;

    font-weight:700;

    line-height:1.35;

    color:#173f7a;

}

.network-content p{

    margin:0;

    font-size:15px;

    color:#666;

    line-height:1.6;

}

/*====================================
INTERNATIONAL
(Same Style)
====================================*/

.network-card.international{

    background:#fff;

    border:1px solid #e4e9ef;

    border-left:5px solid #214f99;

}

.network-card.international .network-icon{

    background:#214f99;

    color:#fff;

}

.network-card.international .network-content h3{

    color:#173f7a;

}

.network-card.international .network-content p{

    color:#666;

}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:1200px){

    .network-details{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:991px){

    .network-map-section{

        padding:90px 0;

    }

    .network-full h2{

        font-size:40px;

    }

    .network-intro{

        font-size:17px;

    }

}

@media(max-width:767px){

    .network-details{

        grid-template-columns:1fr;

        gap:20px;

    }

    .network-full h2{

        font-size:34px;

    }

    .network-intro{

        font-size:16px;

    }

    .network-card{

        padding:22px;

        min-height:auto;

    }

    .network-icon{

        width:60px;

        height:60px;

        min-width:60px;

        font-size:22px;

    }

    .network-content h3{

        font-size:21px;

    }

    .network-content p{

        font-size:14px;

    }

}

/* ====================================
   WHY CHOOSE SECTION
==================================== */

.why-choose-section{

    padding:110px 0;

    background:#ffffff;

}

.why-grid{

    display:grid !important;

    grid-template-columns:repeat(3,minmax(0,1fr)) !important;

    gap:30px !important;

    margin-top:60px;

    width:100%;

    align-items:stretch;

}

.why-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-top:5px solid #214f99;

    border-radius:16px;

    padding:40px 30px;

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    min-height:340px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.why-card:hover{

    transform:translateY(-10px);

    border-top-color:#5e832a;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.why-icon{

    width:82px;

    height:82px;

    border-radius:50%;

    background:#214f99;

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    transition:.35s;

    flex-shrink:0;

}

.why-icon i{

    font-size:34px;

    color:#ffffff;

    line-height:1;

}

.why-card:hover .why-icon{

    background:#5e832a;

    transform:scale(1.08);

}

.why-card h3{

    font-size:28px;

    font-weight:700;

    color:#173f7a;

    line-height:1.35;

    margin:0 0 18px;

}

.why-card p{

    margin:0;

    font-size:16px;

    line-height:1.9;

    color:#666;

}

/* ====================================
   Tablet
==================================== */

@media(max-width:991px){

    .why-grid{

        grid-template-columns:repeat(2,minmax(0,1fr)) !important;

    }

}

/* ====================================
   Mobile
==================================== */

@media(max-width:767px){

    .why-grid{

        grid-template-columns:1fr !important;

        gap:22px;

    }

    .why-card{

        min-height:auto;

        padding:30px 24px;

    }

    .why-icon{

        width:70px;

        height:70px;

    }

    .why-icon i{

        font-size:28px;

    }

    .why-card h3{

        font-size:24px;

    }

}

/* ====================================
   STATISTICS SECTION
==================================== */

.statistics-section {
  padding: 110px 0;
  background: var(--home-primary);
}

.statistics-section .section-tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--home-white);
}

.statistics-section h2 {
  color: var(--home-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 66px;
}

.stat-item {
  padding: 38px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  text-align: center;
  backdrop-filter: blur(5px);
}

.counter {
  margin-bottom: 14px;
  color: var(--home-white);
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.stat-item h3 {
  margin: 0;
  color: var(--home-white);
  font-size: 20px;
}

/* ====================================
   CTA SECTION
==================================== */

.cta-section {
  position: relative;
  padding: 135px 0;
  background: url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 28, 0.78);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-tag {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--home-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.cta-content h2 {
  margin: 0 0 24px;
  color: var(--home-white);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.18;
}

.cta-content p {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 34px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.cta-btn-primary {
  background: var(--home-primary);
  border: 2px solid var(--home-primary);
  color: var(--home-white);
}

.cta-btn-secondary {
  background: transparent;
  border: 2px solid var(--home-white);
  color: var(--home-white);
}

.cta-btn-primary:hover,
.cta-btn-secondary:hover {
  transform: translateY(-2px);
}

.cta-btn-primary:hover {
  background: var(--home-secondary);
  border-color: var(--home-secondary);
  color: var(--home-white);
}

.cta-btn-secondary:hover {
  background: var(--home-white);
  color: var(--home-primary);
}

/* ====================================
   RESPONSIVE FIXES
==================================== */

@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .india-network-map,
  .india-map-wrapper {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 15px;
  }

  .network-list {
    grid-template-columns: 1fr;
  }

  .marker {
    width: 18px;
    height: 18px;
  }

  .marker span {
    font-size: 12px;
    padding: 7px 12px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .india-network-map,
  .india-map-wrapper {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 10px;
  }

  .marker {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .marker span {
    top: -40px;
    font-size: 11px;
    padding: 6px 10px;
  }

  .network-item,
  .network-card {
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .india-network-map,
  .india-map-wrapper {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 5px;
  }

  .marker {
    width: 14px;
    height: 14px;
  }

  .marker span {
    top: -34px;
    font-size: 10px;
    padding: 5px 8px;
  }

  .network-list {
    gap: 15px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
  }
}

/* ====================================
   ANIMATION INTERNALS
==================================== */

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeFadeUpEnter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -40;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform-origin: center;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform-origin: center;
    transform: scale(1.8);
  }
}

/* ====================================
   RESPONSIVE - 1200PX
==================================== */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 60px;
  }

  .section-heading h2,
  .global-content h2 {
    font-size: 44px;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .stats-row,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .counter {
    font-size: 54px;
  }
}

/* ====================================
   RESPONSIVE - 991PX
==================================== */

@media (max-width: 991px) {
  .hero-section,
  .about-section,
  .journey-section,
  .services-section,
  .global-reach-section,
  .industries-section,
  .network-map-section,
  .why-choose-section,
  .statistics-section {
    padding: 80px 0;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 44px;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .about-content h2,
  .global-content h2,
  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .industries-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    min-height: 350px;
  }

  .service-overlay {
    padding: 30px;
  }

  .service-overlay h3 {
    font-size: 27px;
  }

  .global-map,
  .network-svg {
    margin-top: 38px;
  }

  .cta-section {
    padding: 100px 0;
  }

  .cta-content h2 {
    font-size: 46px;
  }

  .scroll-reveal {
    animation: none;
  }
}

/* ====================================
   RESPONSIVE - 768PX
==================================== */

@media (max-width: 768px) {
  .hero-section,
  .about-section,
  .journey-section,
  .services-section,
  .global-reach-section,
  .industries-section,
  .network-map-section,
  .why-choose-section,
  .statistics-section {
    padding: 60px 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-primary,
  .hero-btn-secondary,
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
  }

  .trust-items {
    justify-content: center;
    text-align: center;
  }

  .trust-items span {
    width: calc(50% - 10px);
    font-size: 14px;
  }

  .about-image {
    margin-bottom: 34px;
  }

  .about-content h2,
  .global-content h2,
  .section-heading h2 {
    font-size: 34px;
  }

  .about-content p,
  .global-content p,
  .section-heading p {
    font-size: 16px;
  }

  .stats-row {
    margin-top: 48px;
  }

  .stats-row,
  .stats-grid,
  .services-grid,
  .industries-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .journey-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .journey-item {
    width: 100%;
    max-width: 320px;
  }

  .journey-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .service-card {
    min-height: 320px;
  }

  .service-overlay {
    padding: 25px;
  }

  .service-overlay h3 {
    font-size: 25px;
  }

  .industry-card {
    padding: 30px 20px;
    font-size: 19px;
  }

  .why-card {
    padding: 28px;
  }

  .stats-grid {
    margin-top: 44px;
  }

  .counter {
    font-size: 48px;
  }

  .cta-section {
    padding: 80px 15px;
  }

  .cta-content h2 {
    font-size: 38px;
  }

  .cta-content p {
    font-size: 17px;
    line-height: 1.65;
  }

  .network-svg text {
    font-size: 14px;
  }
}

/* ====================================
   RESPONSIVE - 480PX
==================================== */

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .about-content h2,
  .global-content h2,
  .section-heading h2 {
    font-size: 29px;
  }

  .hero-tag,
  .section-tag,
  .cta-tag {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .trust-items {
    flex-direction: column;
  }

  .trust-items span {
    width: 100%;
  }

  .service-card {
    min-height: 280px;
  }

  .service-overlay {
    padding: 20px;
  }

  .stat-box h3 {
    font-size: 34px;
  }

  .counter {
    font-size: 42px;
  }

  .cta-content h2 {
    font-size: 31px;
  }
}

/* ====================================
   FINAL MAP RESPONSIVE FIX
   (KEEP ONLY THIS VERSION)
==================================== */

@media (max-width: 991px) {
  .india-network-map,
  .india-map-wrapper {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 15px;
  }

  .marker {
    width: 20px;
    height: 20px;
  }

  .marker span {
    font-size: 12px;
    padding: 6px 10px;
    top: -42px;
  }
}

@media (max-width: 768px) {
  .india-network-map,
  .india-map-wrapper {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 10px;
  }

  .india-network-map img,
  .india-map-wrapper img {
    width: 100%;
    min-width: 550px;
  }

  .marker {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
  }

  .marker span {
    font-size: 11px;
    padding: 5px 10px;
    top: -40px;
  }
}

@media (max-width: 480px) {
  .india-network-map,
  .india-map-wrapper {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 5px;
  }

  .india-network-map img,
  .india-map-wrapper img {
    width: 100%;
    min-width: 650px;
  }

  .marker {
    width: 22px;
    height: 22px;
  }

  .marker span {
    font-size: 10px;
    padding: 4px 8px;
    top: -36px;
  }
}
