
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');

/* Base Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}


  .gsk-about { background: #fff; padding: 80px 0; font-family: 'Segoe UI', sans-serif; }
  
  .gsk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .gsk-badge { display: inline-flex; align-items: center; gap: 8px; background: #e8faf3; color: #0f7a55; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
  .gsk-badge span { width: 7px; height: 7px; border-radius: 50%; background: #0f7a55; display: inline-block; }
  .gsk-heading { font-size: 38px; font-weight: 700; line-height: 1.2; color: #111; margin: 0 0 20px; }
  .gsk-heading em { font-style: normal; color: #0f7a55; }
  .gsk-divider {  height: 3px;  border-radius: 2px; margin-bottom: 24px; }
  .gsk-text { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 16px; }
  .gsk-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
  .gsk-feat { display: flex; align-items: flex-start; gap: 12px; }
  .gsk-feat-icon { width: 38px; height: 38px; border-radius: 10px; background: #e8faf3; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .gsk-feat-icon svg { width: 20px; height: 20px; stroke: #0f7a55; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .gsk-feat-text strong { font-size: 14px; font-weight: 600; color: #111; display: block; }
  .gsk-feat-text span { font-size: 13px; color: #888; }
  .gsk-img-wrap { position: relative; }
  .gsk-img-card { border-radius: 20px; overflow: hidden; background: #f0fdf6; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border: 1.5px solid #d1fae5; }
  .gsk-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .gsk-stat-bar { position: absolute; bottom: -18px; left: 24px; right: 24px; background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 14px 20px; display: flex; justify-content: space-around; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
  .gsk-stat { text-align: center; }
  .gsk-stat strong { font-size: 22px; font-weight: 700; color: #0f7a55; display: block; }
  .gsk-stat span { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }
  @media (max-width: 768px) {
    .gsk-row { grid-template-columns: 1fr; gap: 40px; }
    .gsk-img-wrap { order: -1; }
    .gsk-stat-bar { position: static; margin-top: 16px; }
    .gsk-heading { font-size: 28px; }
    .gsk-about { padding: 50px 0; }
    .gsk-features { grid-template-columns: 1fr; }
  }


/*About us*/
/* Optional animation for fade-in effect */
.about-preview {
  animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

h1, h2 {
  color: #004080;
}

ul {
  padding-left: 20px;
}



/* Grid for Services Section (Homepage) */
.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.service {
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
}

/* Map Section */
.map-section iframe {
  border-radius: 8px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/*banner section*/
 .hero-slide {
    /*height: 100vh;*/
    /*background-size: cover;*/
    background-position: center;
    position: relative;
  }

  .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-slide .container-fluid {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-in-out;
  }

  /* Custom Arrows */
  .custom-arrow {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    transition: background-color 0.3s;
  }

  .custom-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .custom-arrow span i {
    font-size: 24px;
    color: white;
  }

  /* Indicators (Dots) */
  .carousel-indicators {
    bottom: 20px;
  }

  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: opacity 0.3s;
  }

  .carousel-indicators .active {
    opacity: 1;
    background-color: #0d6efd;
  }

  /* Fade-in animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /*offer section*/
   .service-box {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }

  .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .icon-box i {
    font-size: 2rem;
  }

  .bg-icon {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.07);
    z-index: 0;
  }

  .card-body {
    z-index: 1;
  }

  .card-title {
    font-size: 1.1rem;
    font-weight: 600;
  }

  /* Gradient Styles */
  .gradient-black {
    background: linear-gradient(to bottom right, #000000, #434343);
    color: white;
  }

  .gradient-green {
    background: linear-gradient(to bottom right, #014421, #046b35);
    color: white;
  }

  .gradient-orange {
    background: linear-gradient(to bottom right, #5c2c00, #bf6b04);
    color: white;
  }

  .gradient-blue {
    background: linear-gradient(to bottom right, #1f3c88, #3f72af);
    color: white;
  }


  /*Locations Section*/
  .upcoming-locations {
  background: #0f0f0f;
  color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #00ff88;
  display: block;
  margin: 10px auto 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
}

.location-card {
  background: linear-gradient(135deg, #1e1e1e, #114d2d);
  color: white;
  border-radius: 20px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease both;
  cursor: default;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.location-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #00ff88;
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.7);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*footer section*/
.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #00ffcc;
  text-decoration: underline;
}


/*offcanves*/
.offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    /* width: var(--bs-offcanvas-width); */
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
    width: 237px !important;
}

.offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow-y: auto;
    background-color: black;
}




/*banner*/
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color);
    }

    .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg);
    }


    /*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}




.ev-card {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }

  .ev-card:hover {
    transform: scale(1.03);
  }

  .ev-card .overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
  }

  .ev-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
  }

  .ev-content {
    position: relative;
    z-index: 2;
  }

  .bg-green { background-color: #10b981; }
  .bg-blue { background-color: #3b82f6; }
  .bg-purple { background-color: #8b5cf6; }
  .bg-orange { background-color: #f97316; }
  .bg-red { background-color: #ef4444; }


  .content-box {
  background-color: transparent;  /* No background */
  padding: 1.5rem 1rem;            /* Comfortable padding */
  color: #222;                    /* Dark text */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.content-box p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.content-box p strong {
  font-weight: 600;
}

.inner-banner {
    padding: 100px 0;
    background: url("../images/About/inner-bg.jpg");
    background-position: top;
    background-size: cover;
    position: relative;
    color: white;
}
.about-title {
    font-size: 60px;
    line-height: 1 !important;
}
.about-img {
    position: relative;
}

/*services section*/


/*banner section*/
/* ── WRAPPER ── */
.banner-section {
  width: 100%;
  position: relative;
}

/* ── CAROUSEL ── */
#carouselExampleFade {
  width: 100%;
}

/* ── SLIDES ── */
.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── Gradient overlay ── */
.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
 /* background: linear-gradient(
    to right,
    rgba(20, 10, 5, 0.50) 0%,
    rgba(20, 10, 5, 0.10) 55%,
    transparent 100%
  );*/
  pointer-events: none;
}

/* ── NAV BUTTONS ── */
.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 1;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  margin: 0 14px;
}

.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  /*background: rgba(201, 135, 59, 0.80);*/
  border-color: rgba(201, 135, 59, 1);
  transform: translateY(-50%) scale(1.08);
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 16px;
  height: 16px;
  /*filter: brightness(0) invert(1);*/
}

/* ── INDICATORS / DOTS ── */
.carousel-indicators {
  bottom: 16px;
  gap: 6px;
  margin: 0;
  align-items: center;
}

.carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 4px !important;
  /*background: rgba(255, 255, 255, 0.45) !important;*/
  border: none !important;
  opacity: 1 !important;
  transition: width 0.3s ease, background 0.3s ease !important;
  padding: 0 !important;
}

.carousel-indicators button.active {
  width: 28px !important;
  background: #c9873b !important;
}

/*home About*/
       .about-section {
      padding: 80px 0;
      background: #ffffff;
      font-family: 'Segoe UI', sans-serif;
      overflow-x: hidden;
    }

    .circle-wrap {
      position: relative;
      width: 340px;
      height: 340px;
      max-width: 100%;
      margin: 0 auto;
    }

    .circle-outer {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 3px solid #b5d4f4;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .circle-mid {
      width: 87%;
      height: 87%;
      border-radius: 50%;
      border: 3px dashed #85b7eb;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .circle-inner {
      width: 74%;
      height: 74%;
      border-radius: 50%;
      background: #185fa5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      overflow: hidden;
    }

    .circle-inner i {
      font-size: 52px;
      color: rgba(255, 255, 255, 0.9);
    }

    .circle-inner .ci-name {
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      line-height: 1.4;
      padding: 0 18px;
    }

    .corner-badge {
      position: absolute;
      background: #ffffff;
      border: 2px solid #b5d4f4;
      border-radius: 50%;
      width: 68px;
      height: 68px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      box-shadow: 0 4px 12px rgba(24,95,165,0.12);
    }

    .corner-badge i {
      font-size: 22px;
      color: #185fa5;
    }

    .corner-badge span {
      font-size: 10px;
      color: #185fa5;
      font-weight: 600;
    }

    .badge-tl { top: 8px;    left: 8px;    }
    .badge-tr { top: 8px;    right: 8px;   }
    .badge-bl { bottom: 8px; left: 8px;    }
    .badge-br { bottom: 8px; right: 8px;   }

    .content-col {
      padding-left: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #e6f1fb;
      color: #0c447c;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .sec-tag i { font-size: 14px; }

    .ab-heading {
      font-size: 30px;
      font-weight: 700;
      color: #1a1a2e;
      line-height: 1.3;
      margin-bottom: 0;
    }

    .ab-heading span { color: #185fa5; }

    .ab-divider {
      width: 48px;
      height: 3px;
      background: #185fa5;
      border-radius: 3px;
      margin: 16px 0 20px;
    }

    .ab-desc {
      font-size: 15px;
      color: #5a6475;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .ab-list {
      list-style: none;
      padding: 0;
      margin: 0 0 2rem;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ab-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: #4a5568;
    }

    .ab-list li i {
      font-size: 18px;
      color: #185fa5;
      margin-top: 1px;
      flex-shrink: 0;
    }

    .btn-readmore {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #185fa5;
      color: #ffffff;
      border: none;
      padding: 13px 24px;
      border-radius: 7px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s ease;
      width: fit-content;
    }

    .btn-readmore:hover {
      background: #0c447c;
      color: #ffffff;
    }

    .btn-readmore i { font-size: 16px; }

    /* ===== Tablet & Mobile ===== */
    @media (max-width: 767.98px) {
      .about-section { padding: 50px 0; }
      .content-col { padding-left: 0; padding-top: 2rem; }
      .circle-wrap, .circle-outer { width: 270px; height: 270px; }
      .circle-inner i { font-size: 40px; }
      .corner-badge { width: 56px; height: 56px; }
      .corner-badge i { font-size: 18px; }
      .corner-badge span { font-size: 9px; }
      .ab-heading { font-size: 24px; }
    }

    /* ===== Small Mobile (≤480px) ===== */
    @media (max-width: 480px) {
      .circle-wrap, .circle-outer { width: 220px; height: 220px; }
      .circle-inner i { font-size: 34px; }
      .circle-inner .ci-name { font-size: 12px; padding: 0 10px; }
      .corner-badge { width: 46px; height: 46px; }
      .corner-badge i { font-size: 16px; }
      .corner-badge span { font-size: 8px; }
      .badge-tl, .badge-tr, .badge-bl, .badge-br { margin: 0; }
      .ab-heading { font-size: 21px; }
      .ab-desc { font-size: 14px; }
      .ab-list li { font-size: 13px; }
      .btn-readmore { width: 100%; justify-content: center; }
    }

    /* ===== Extra Small (≤360px) ===== */
    @media (max-width: 360px) {
      .circle-wrap, .circle-outer { width: 211px; height: 210px; }
      .corner-badge { width: 40px; height: 40px; }
      .corner-badge i { font-size: 14px; }
      .corner-badge span { display: none; }
    }

    /*our services*/
        /* ── Section ── */
    .svc-section {
      padding: 27px 0;
      background: #f4f7fb;
      font-family: 'Segoe UI', sans-serif;
    }

    /* ── Section Header ── */
    .sec-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #e6f1fb;
      color: #0c447c;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .sec-heading {
      font-size: 30px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
    }

    .sec-heading span {
      color: #185fa5;
    }

    .sec-sub {
      font-size: 15px;
      color: #5a6475;
      margin-bottom: 48px;
    }

    /* ── Card ── */
    .svc-card {
      background: #ffffff;
      border-radius: 16px;
      border: 1.5px solid #e6f1fb;
      padding: 32px 24px 28px;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: border-color 0.25s ease, transform 0.25s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    /* Top accent bar on hover */
    .svc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: #185fa5;
      border-radius: 16px 16px 0 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s ease;
    }

    .svc-card:hover {
      border-color: #378add;
      transform: translateY(-5px);
    }

    .svc-card:hover::before {
      transform: scaleX(1);
    }

    /* ── Icon Box ── */
    .svc-icon-wrap {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: #e6f1fb;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: background 0.25s ease;
    }

    .svc-card:hover .svc-icon-wrap {
      background: #185fa5;
    }

    .svc-icon-wrap i {
      font-size: 28px;
      color: #185fa5;
      transition: color 0.25s ease;
    }

    .svc-card:hover .svc-icon-wrap i {
      color: #ffffff;
    }

    /* ── Card Title ── */
    .svc-title {
      font-size: 16px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    /* ── Card Description ── */
    .svc-desc {
      font-size: 13px;
      color: #5a6475;
      line-height: 1.75;
      margin-bottom: 22px;
      flex: 1;
    }

    /* ── Learn More Link ── */
    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      font-weight: 600;
      color: #185fa5;
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .svc-card:hover .svc-link {
      gap: 10px;
    }

    .svc-link i {
      font-size: 14px;
    }

    /* ── Background Number ── */
    .svc-num {
      position: absolute;
      top: 16px;
      right: 20px;
      font-size: 44px;
      font-weight: 800;
      color: #e6f1fb;
      line-height: 1;
      user-select: none;
      transition: color 0.25s ease;
    }

    .svc-card:hover .svc-num {
      color: #b5d4f4;
    }

    /* ── Mobile ── */
    @media (max-width: 575.98px) {
      .svc-section {
        padding: 50px 0;
      }

      .sec-heading {
        font-size: 24px;
      }
    }

    /*why chooise us */
        /* ── Section ── */
    .wc-section {
      padding: 28px 0;
      background: #f4f7fb;
      font-family: 'Segoe UI', sans-serif;
    }

    /* ── Header ── */
    .wc-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #e6f1fb;
      color: #0c447c;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .wc-heading {
      font-size: 30px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 8px;
    }

    .wc-heading span { color: #185fa5; }

    .wc-sub {
      font-size: 15px;
      color: #5a6475;
      margin-bottom: 0;
    }

    /* ── Left Image ── */
    .wc-img-col {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      min-height: 500px;
      height: 100%;
    }

    .wc-img-col img {
      width: 100%;
      height: 100%;
      min-height: 500px;
      object-fit: cover;
      display: block;
      border-radius: 18px;
    }

    /*
      REAL PHOTO USE CHEYYADANIKI:
      <img src="your-photo.jpg" alt="KSG Team" />
      Unsplash URL ni replace cheyyi
    */

    .wc-img-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 35, 70, 0.58);
      border-radius: 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2.5rem 2rem;
    }

    .wc-img-overlay .ov-icon {
      font-size: 54px;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 14px;
    }

    .wc-img-overlay .ov-title {
      color: #ffffff;
      font-size: 20px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 6px;
    }

    .wc-img-overlay .ov-sub {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      text-align: center;
      margin-bottom: 0;
    }

    .wc-img-stats {
      display: flex;
      gap: 12px;
      margin-top: 26px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .wc-stat-pill {
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 10px;
      padding: 10px 20px;
      text-align: center;
      color: #ffffff;
    }

    .wc-stat-pill strong {
      display: block;
      font-size: 22px;
      font-weight: 700;
    }

    .wc-stat-pill span {
      font-size: 11px;
      opacity: 0.75;
    }

    /* ── Right Items ── */
    .wc-items-col {
      display: flex;
      flex-direction: column;
      gap: 14px;
      justify-content: center;
      height: 100%;
    }

    .wc-item {
      display: flex;
      align-items: center;
      gap: 16px;
      border-radius: 14px;
      padding: 18px 20px;
      border: 1.5px solid transparent;
      transition: transform 0.22s ease;
      cursor: default;
    }

    .wc-item:hover { transform: translateX(6px); }

    /* Mixed colors */
    .wc-item.c1 { background: #fff8e6; border-color: #fac775; }
    .wc-item.c2 { background: #e6f1fb; border-color: #85b7eb; }
    .wc-item.c3 { background: #eaf3de; border-color: #97c459; }
    .wc-item.c4 { background: #fbeaf0; border-color: #ed93b1; }
    .wc-item.c5 { background: #e1f5ee; border-color: #5dcaa5; }
    .wc-item.c6 { background: #faece7; border-color: #f0997b; }

    /* Icon boxes */
    .wc-item-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .c1 .wc-item-icon { background: #fac775; }
    .c2 .wc-item-icon { background: #85b7eb; }
    .c3 .wc-item-icon { background: #97c459; }
    .c4 .wc-item-icon { background: #ed93b1; }
    .c5 .wc-item-icon { background: #5dcaa5; }
    .c6 .wc-item-icon { background: #f0997b; }

    .wc-item-icon i {
      font-size: 24px;
      color: #ffffff;
    }

    .wc-item-title {
      font-size: 14px;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 3px;
    }

    .wc-item-desc {
      font-size: 12px;
      color: #5a6475;
      line-height: 1.6;
      margin: 0;
    }

    /* ── Mobile ── */
    @media (max-width: 767.98px) {
      .wc-section { padding: 50px 0; }
      .wc-img-col, .wc-img-col img { min-height: 300px; }
      .wc-heading { font-size: 24px; }
    }


    /*projects*/
  /* ---------- Section ---------- */
    .upcoming-locations{
    padding: 70px 0;
    background-color: #fff;
  }

  /* ---------- Heading ---------- */
  .wc-label{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#378ADD;
    background:rgba(55,138,221,.08);
    padding:6px 16px;
    border-radius:30px;
  }
  .wc-heading{
    font-size:36px;
    font-weight:700;
    color:#111;
    margin:14px 0 10px;
    letter-spacing:-0.5px;
  }
  .wc-heading span{
    color:#378ADD;
    position:relative;
    display:inline-block;
  }
  .wc-heading span::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;
    width:100%;
    height:3px;
    background:#378ADD;
    border-radius:2px;
  }
  .wc-sub{
    font-size:15px;
    color:#666;
    max-width:520px;
    margin:0 auto;
    line-height:1.6;
  }

  /* ---------- EV / Location Card ---------- */
  .ev-card{
    position:relative;
    display:block;
    height:270px;
    border-radius:16px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    background-color:#dfe6ec; /* fallback while image loads / if missing */
    box-shadow:0 6px 18px rgba(17,17,17,.08);
    transition:transform .35s ease, box-shadow .35s ease;
  }
  .ev-card:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 30px rgba(17,17,17,.18);
  }
  .ev-card:hover .ev-card-img{
    transform:scale(1.08);
  }

  .ev-card-img{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transition:transform .5s ease;
  }

  /* gradient overlay: photo readable up top, text readable at bottom */
  .ev-card .overlay{
    position:absolute;
    inset:0;
    opacity:.9;
  }

  .ev-content{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:18px;
  }

  .ev-icon-circle{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#fff;
    background:rgba(255,255,255,.16);
    border:1.5px solid rgba(255,255,255,.55);
    backdrop-filter:blur(2px);
  }

  .ev-text h5{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin:0 0 2px;
    letter-spacing:.2px;
  }
  .ev-text span{
    color:rgba(255,255,255,.85);
    font-size:12.5px;
    letter-spacing:.04em;
    text-transform:uppercase;
  }

  /* signature: a color-coded bar that ties every card back to the legend */
  .ev-accent{
    position:absolute;
    left:0; right:0; bottom:0;
    height:5px;
    z-index:3;
  }

  /* Overlay / accent colors per location */
  .bg-green   .overlay{ background:linear-gradient(180deg, rgba(15,110,86,.15) 0%, rgba(15,110,86,.55) 55%, rgba(15,110,86,.92) 100%);}
  .bg-blue    .overlay{ background:linear-gradient(180deg, rgba(24,95,165,.15) 0%, rgba(24,95,165,.55) 55%, rgba(24,95,165,.92) 100%);}
  .bg-purple  .overlay{ background:linear-gradient(180deg, rgba(83,74,183,.15) 0%, rgba(83,74,183,.55) 55%, rgba(83,74,183,.92) 100%);}
  .bg-orange  .overlay{ background:linear-gradient(180deg, rgba(186,117,23,.15) 0%, rgba(186,117,23,.55) 55%, rgba(186,117,23,.92) 100%);}
  .bg-red     .overlay{ background:linear-gradient(180deg, rgba(163,45,45,.15) 0%, rgba(163,45,45,.55) 55%, rgba(163,45,45,.92) 100%);}
  .bg-teal    .overlay{ background:linear-gradient(180deg, rgba(18,113,117,.15) 0%, rgba(18,113,117,.55) 55%, rgba(18,113,117,.92) 100%);}
  .bg-skyblue .overlay{ background:linear-gradient(180deg, rgba(74,169,224,.15) 0%, rgba(74,169,224,.55) 55%, rgba(74,169,224,.92) 100%);}

  .accent-green   { background:#0F6E56; }
  .accent-blue    { background:#185FA5; }
  .accent-purple  { background:#534AB7; }
  .accent-orange  { background:#BA7517; }
  .accent-red     { background:#A32D2D; }
  .accent-teal    { background:#127175; }
  .accent-skyblue { background:#4AA9E0; }

  @media (max-width:575px){
    .ev-card{ height:230px; }
  }