/*navigation bar*/
  body {     font-family: 'Segoe UI', Arial, sans-serif;
            background: #fcfcfc;
        }
        .navbar {
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        }
        .vision-logo img {
            height: 42px;
        }
        .hero-content {
            position: absolute;
            top: 40%;
            left: 50%;
            width: 100%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            text-shadow: 0 4px 16px rgba(0,0,0,0.3);
        }
        .hero-content h1 {
            font-size: 3rem;
            font-weight: bold;
        }
        .hero-content h3 {
            font-size: 1.7rem;
            font-weight: 600;
        }
        .btn-vision {
            background: #1ab6f9;
            color: #fff;
            border-radius: 30px;
            font-size: 1.1rem;
            padding: 0.7rem 2rem;
            border: none;
            margin-top: 1.5rem;
            box-shadow: 0 2px 10px rgba(26,182,249,0.16);
        }
        .carousel-inner img {
            max-height: 480px;
            object-fit: cover;
            width: 100%;
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content h3 {
                font-size: 1.1rem;
            }
            .carousel-inner img {
                max-height: 260px;
            }
        }




/* eleborate your style */

 body.main-header{
      margin: 0;
      font-family: 'Montserrat', Arial, sans-serif;
      background: #fcfcfc;
      color: #181818;
    }
    .main-header {
      text-align: center;
      margin-top: 32px;
      font-size: 2.3rem;
      font-weight: 800;
    }
    .subtitle {
      text-align: center;
      margin-top: 10px;
      margin-bottom: 38px;
      font-size: 1.13rem;
      color: #656565;
      font-weight: 400;
    }
    .card-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 38px;
      max-width: 1500px;
      margin: 0 auto 36px auto;
    }
    .card {
      background: transparent;
      border-radius: 18px;
      box-shadow: 0 10px 36px 0 rgba(46,37,38,0.07);
      padding: 0 0 18px 0;
      width: 380px;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: box-shadow 0.18s;
      position: relative;
    }
    .card-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 11;
      overflow: hidden;
      border-radius: 17px;
      box-shadow: 0 6px 28px 0 rgba(168,105,58,0.11);
      background: #fff7f2;
      transition: box-shadow 0.18s;
      position: relative;
    }
    .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 17px;
      transition: transform 0.45s cubic-bezier(.22,1.12,.6,.98);
    }
    .card:hover .card-img,
    .card-img-wrap:active .card-img {
      transform: scale(1.12);
    }
    .card:active .card-img {
      transform: scale(1.09);
    }
    /* Mobile zoom on tap */
    @media (hover: none) and (pointer: coarse) {
      .card-img:active, .card-img:focus {
        transform: scale(1.12);
        transition: transform 0.23s cubic-bezier(.22,1.12,.6,.98);
      }
    }
    .card-title {
      margin-top: 18px;
      font-weight: 700;
      font-size: 1.35rem;
      letter-spacing: 0.02em;
      text-align: center;
      text-transform: uppercase;
      color: #161616;
    }

    @media (max-width: 1100px) {
      .card-row { gap: 30px; }
      .card { width: 310px;}
    }
    @media (max-width: 780px) {
      .main-header { font-size: 1.35rem; }
      .subtitle { font-size: 0.98rem;}
      .card-row { flex-direction: column; gap: 27px; align-items: center;}
      .card { width: 98vw; max-width: 420px; }
    }
    @media (max-width: 480px) {
      .card-img-wrap { aspect-ratio: 1.2/1; }
      .card-title { font-size: 1rem;}
    }


/* aboutus */

body.main-section{
      margin: 0;
      font-family: 'Montserrat', Arial, sans-serif;
      background: #fffefe;
      color: #595959;
    }
    .main-section {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 0 40px 40px;
      min-height: 90vh;
      box-sizing: border-box;
    }
    .left-content {
      flex: 1 1 420px;
      max-width: 54%;
      min-width: 320px;
    }
    .left-content h1 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 32px;
      color: #171717;
      margin-top: 0;
      line-height: 1.1;
    }
    .left-content p {
      font-size: 1.13rem;
      line-height: 1.58;
      color: #676e75;
    }
    .img-container {
      position: relative;
      flex: 0 0 46%;
      min-width: 340px;
      max-width: 580px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 430px;
      overflow: hidden;
      margin-left: auto;
      border-radius: 10px;
    }
    .slide-img {
      position: absolute;
      right: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center right;
      border-radius: 0 0 18px 0;
      opacity: 0;
      transform: translateY(80px);
      animation: imgSlide 1.05s cubic-bezier(.41,1.15,.95,1.02) .1s forwards;
      /* Smooth in and upwards */
    }
    @keyframes imgSlide {
      from {
        opacity: 0;
        transform: translateY(80px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive for Tablet screens */
    @media (max-width: 980px) {
      .main-section {
        flex-direction: column;
        padding: 24px 0 24px 0;
        align-items: stretch;
      }
      .left-content, .img-container { max-width: 100%; }
      .img-container { height: 310px; min-width: unset; margin-top: 28px; }
    }

    /* Responsive for Mobile screens */
    @media (max-width: 600px) {
      .main-section { padding: 9px 0 10px 0; }
      .left-content h1 { font-size: 1.3rem; margin-bottom: 13px;}
      .left-content p { font-size: 0.97rem; }
      .img-container { height: 175px; }
      .slide-img {
        border-radius: 0 0 9px 0;
        animation-duration: 0.7s;
      }
    }



    




/* Subtle image hover for highlight */
.image-bg:hover {
  box-shadow: 0 10px 40px rgba(240,140,90,0.18);
}

.domain-flow-section{
justify-content: center;
text-justify: auto;
align-items: center;

}

.domain-flow-desc:p{
 padding-left: 15px;
 padding-right: 15px;
 font-weight: 500px;
text-align: center;
justify-content: center;

}

/*client */

.slider-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 30px 0 28px 0;
  letter-spacing: 0.02em;
}
.client-slider img {
  max-width: 160px;
  max-height: 70px;
  margin: 0 auto;
  display: block;
  border-radius: 9px;
  transition: transform 0.3s;
  background: #fff;
}
.client-slider img:hover { transform: scale(1.11); }







/* Testimonials Section */

.testimonial-section {
  background: #192b3a;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.slider-container {
  overflow: hidden;
  max-width: 990px;
  margin: 0 auto;
}
.slider-track {
  display: flex;
  transition: transform 0.5s;
}
.slider-card {
  flex: 0 0 33.3333%;
  padding: 15px;
  box-sizing: border-box;
}
.slider-card img {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.slider-dots {
  margin-top: 14px;
}
.dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.4;
  margin: 0 5px;
  cursor: pointer;
}
.dot.active {
  background: #1fb6ff;
  opacity: 1;
}

/* Responsive styles */
@media(max-width: 768px) {
  .slider-card { flex: 0 0 100%; }
  .slider-track { transition: transform 0.5s; }
}



.slide-in-image-container {
  /* Optional: adjust as per page layout */
  display: flex;
  justify-content: flex-end;
}

.slide-in-image {
  width: 480px;      /* image ko bada dikhayen */
  max-width: 95vw;   /* mobile par overflow na ho */
  border-radius: 18px;
  box-shadow: 0 4px 40px 0 #ffecd280;
  opacity: 0;
  transform: translateX(80px) scale(0.92);
  transition: all 0.8s cubic-bezier(.23,1.02,.34,1) 0.1s;
}

/* Jab class active milegi, tab slide in hoga */
.slide-in-image.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}












/*   */


.features-section {
  width: 100%;
  background: #fff;
  text-align: center;
  padding-bottom: 32px;
}
.features-banner {
  background: #09aaf7;
  color: #fff;
  border-radius: 14px;
  max-width: 1200px;
  margin: 40px auto 32px auto;
  padding: 32px 20px 26px 26px;
}
.features-banner h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.08;
  color: black;
}
.features-subline {
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 17px;
}
.features-btn {
  display: inline-block;
  margin: 10px auto 0 auto;
  background: #fff;
  color: #098ddf;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 22px;
  padding: 12px 32px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(9,170,247,0.08);
}

.features-headline {
  font-size: 1.42rem;
  font-weight: bold;
  margin: 24px auto 12px auto;
  letter-spacing: 0.01em;
}
.features-desc {
  max-width: 760px;
  margin: 0 auto 38px auto;
  font-size: 1.01rem;
  color: #636363;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 34px 28px;
  max-width: 1040px;
  margin: 0 auto;
  margin-top: 28px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  text-align: left;
  min-height: 62px;
}
.feature-icon {
  font-size: 2.1rem;
  line-height: 1.1;
  min-width: 2.4em;
  margin-top: 2px;
  position: relative;
}
.feature-card b { font-size: 1.05rem; }
.feature-card small { color: #6d6d6d; }

@media (max-width:1000px) {
  .features-grid { grid-template-columns: 1fr 1fr; gap: 22px 24px;}
}
@media (max-width:700px) {
  .features-grid { grid-template-columns: 1fr; gap: 18px 0;}
  .features-banner h2 { font-size: 1.11rem; }
  .features-banner { padding: 20px 8px 14px 8px; }
}

/* Running (slide in left to right/cyclic) animation: */
@keyframes runicon {
  0% { left:-40px; opacity:0;}
  13%{ left:8px; opacity:1;}
  73%{ left:8px; opacity:1;}
  100% {left:52px; opacity:0;}
}
.run1 { animation: runicon 2.2s .1s infinite linear alternate; }
.run2 { animation: runicon 2.5s .2s infinite linear alternate; }
.run3 { animation: runicon 2.5s .35s infinite linear alternate;}
.run4 { animation: runicon 2.1s .4s infinite linear alternate;}
.run5 { animation: runicon 2.3s .53s infinite linear alternate;}
.run6 { animation: runicon 2.6s .61s infinite linear alternate;}
.run7 { animation: runicon 2.15s .13s infinite linear alternate;}
.run8 { animation: runicon 2.5s .29s infinite linear alternate;}
.run9 { animation: runicon 2.8s .22s infinite linear alternate;}
.run10 { animation: runicon 2.1s .31s infinite linear alternate;}
.run11 { animation: runicon 2.3s .39s infinite linear alternate;}
.run12 { animation: runicon 2.4s .47s infinite linear alternate;}
.run13 { animation: runicon 2.7s .28s infinite linear alternate;}
.run14 { animation: runicon 2.32s .22s infinite linear alternate;}
.run15 { animation: runicon 2.14s .33s infinite linear alternate;}

/* walk thrugh*/

.walkthrough-section {
  background: #fff;
  padding: 48px 0 30px 0;
  text-align: center;
}
.walkthrough-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.video-responsive {
  position: relative;
  width: 92vw;
  max-width: 1250px;
  margin: 0 auto;
  padding-bottom: 51.6%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 6px 34px rgba(80,90,120,.13);
  background: #222;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: none;
  border-radius: 20px;
}
@media (max-width:700px) {
  .walkthrough-section h2 { font-size: 1.12rem; }
  .video-responsive { width: 99vw; padding-bottom: 62vw; }
}

/* why choose us section*/

.choose-section {
  display: flex;
  gap: 40px;
  background: #fff;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 95%;
  margin: 0 auto 26px auto;
  justify-content: space-between;
}
.choose-left {
  flex: 1 0 320px;
  max-width: 440px;
  margin: 10px 0 0 2vw;
}
.choose-tagline {
  color: #11a5ea;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.choose-left h2 {
  font-size: 2rem;
  margin: 0 0 18px 0;
  font-weight: bold;
  line-height: 1.19;
  letter-spacing: 0.01em;
}
.choose-desc {
  color: #444;
  font-size: 1.03rem;
  line-height: 1.62;
  margin-bottom: 26px;
}
.choose-btn {
  background: #11a5ea;
  color: #fff;
  border-radius: 28px;
  padding: 13px 34px;
  font-weight: bold;
  font-size: 1.06rem;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(17,165,234,0.10);
  transition: background .18s;
  border: none;
}
.choose-btn:hover { background: #2187bb; }

.choose-features {
  flex: 1 1 560px;
  min-width: 310px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 12px;
}
.feature-highlight {
  background: #eef8fd;
  border-radius: 28px;
  padding: 19px 18px 17px 16px;
  min-width: 210px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  box-shadow: 0 0px 0px rgba(66,188,254,0.07);
  transition: box-shadow .23s, transform .25s, background .18s;
  cursor: pointer;
  position: relative;
}
.ficon {
  background: #cef;
  border-radius: 0.8em;
  font-size: 2.25rem;
  padding: 7px 12px 7px 11px;
  box-shadow: 0 1px 7px rgba(51,170,221,0.08);
  margin-top: 1px;
  transition: background .24s, transform .19s;
}

.feature-highlight:hover,
.feature-highlight:focus {
  box-shadow: 0 6px 22px rgba(87,180,255,0.14),  0 4px 14px #24a5f381;
  background: #d3effe;
  transform: scale(1.038);
  z-index: 2;
}
.feature-highlight:hover .ficon,
.feature-highlight:focus .ficon {
  background: #aee8ff;
  transform: scale(1.2) rotate(-7deg);
}

.feature-highlight b {
  font-size: 1.09rem;
  color: #1b2325;
  font-weight: 700;
}
.feature-highlight p {
  color: #636363;
  font-size: 0.98rem;
  margin-bottom: 0;
  margin-top: 5px;
}
@media (max-width:900px){
  .choose-section { flex-direction: column; width: 99%; gap: 13px; }
  .choose-left { max-width:100%; margin: 0; }
  .choose-features { grid-template-columns: 1fr; gap:13px; }
}

/* frequently asked question*/

.faq-section {
  padding: 54px 0 38px 0;
  text-align: center;
  background: #fff;
}
.faq-section h2 {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 38px;
  letter-spacing: 0.013em;
}
.faq-list {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
.faq-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 10px 18px 17px 8px;
  font-size: 1.14rem;
  box-shadow: 0 2px 10px rgba(36,140,200,0.07);
  transition: background 0.18s, box-shadow 0.22s, transform 0.16s;
  cursor: pointer;
}

.faq-item:hover, .faq-item:focus-within {
  background: #e4f2fb;
  box-shadow: 0 6px 22px rgba(110, 123, 134, 0.16);
  transform: scale(1.018);
  z-index: 2;
}
.faq-toggle {
  border: none;
  background: #e7edfa;
  border-radius: 7px;
  width: 50px;
  height: 38px;
  margin-top: 2px;
  margin-right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: bold;
  color: #444;
  transition: background 0.13s;
}
.faq-item.active .faq-toggle {
  background: #d3ebfa;
}
.faq-question {
  font-weight: bold;
  flex: 1 1 0;
  width: 100%;
  margin-top: 7px;
  color: #162933;
  font-size: 1.14rem;
  text-align: left;

  
}
.faq-answer {
  width: 100%;
  font-size: 1.01rem;
  margin: 12px 0 8px 55px;
  color: #0f0f0f;

}
.faq-item:not(.active) .faq-answer {
  display: none;
}
@media (max-width: 700px) {
  .faq-list {
    width: 99%;
    font-size: 0.98rem;
    padding: 0 1vw;
  }
}

/*enquiry page*/

.enquiry-section {
  display: flex;
  gap: 48px;
  background: #182944;
  color: #fff;
  padding: 56px 0 44px 0;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.enquiry-left {
  flex: 1 1 320px;
  min-width: 310px;
  max-width: 420px;
  padding: 0 12px 0 2vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.enquiry-left h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: bold;
}
.enquiry-left .desc {
  font-size: 1.09rem;
  color: #c9e6fa;
  margin-bottom: 28px;
  line-height: 1.5;
}
.next-block {
  color: #39c1fc;
  font-weight: 600;
  margin-bottom: 18px;
}
.next-block .next-title {
  color: #39c1fc;
  display: block;
  font-weight: bold;
  margin-bottom: 7px;
  font-size: 1.1rem;
}
.next-block ul {
  padding-left: 23px;
  margin: 0;
  list-style: none;
}
.next-block li {
  color: #e5f5ff;
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 1em;
}
.enquiry-call-box {
  margin-top: 30px;
  background: #f4f7fa;
  color: #248cc2;
  border-radius: 9px;
  padding: 17px 22px 15px 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.10rem;
  box-shadow: 0 2px 16px rgba(44,128,188,0.08);
  max-width: 350px;
}
.phone-ico { font-size: 1.55rem; margin-right: 7px;}

.enquiry-form {
  flex: 1 1 350px;
  max-width: 470px;
  min-width: 292px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 2px 13px 0 0;
}
.enquiry-form label {
  color: #fefeff;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 1em;
  display: block;
  letter-spacing: 0.02em;
  text-align: start;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border-radius: 8px;
  border: none;
  font-size: 1.05rem;
  padding: 10px 13px;
  margin-top: 5px;
  outline: none;
  margin-bottom: 3px;
  background: #fff;
  color: #202c36;
  box-shadow: 0 2px 12px #0b161f0e;
  transition: box-shadow 0.22s, border 0.2s;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  box-shadow: 0 5px 24px #39c1fc3f;
  border: 1.8px solid #11a5ea;
}
.textarea-block textarea {
  min-height: 80px;
  resize: vertical;
}

.enquiry-submit {
  background: #11a5ea;
  color: #fff;
  border: none;
  font-size: 1.12rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 13px 0;
  margin-top: 4px;
  cursor: pointer;
  transition: background 0.16s;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 11px rgba(17,165,234,0.10);
}
.enquiry-submit:hover { background: #3796dc; }

@media (max-width:980px){
  .enquiry-section {
    flex-direction: column;
    gap: 10px;
    padding: 40px 0 10px 0;
    align-items: flex-start;
  }
  .enquiry-left,.enquiry-form {
    max-width: 97vw;
    padding: 0 10px;
  }
  .enquiry-submit { width: 100%; }
}


/* footer*/
.site-footer {
  background: #232324;
  color: #ccc;
  padding: 40px 0 0 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  max-width: 1230px;
  margin: 0 auto;
  gap: 20px 34px;
  justify-content: space-between;
  padding: 0 18px;
}
.footer-col {
  flex: 1 1 205px;
  margin-bottom: 28px;
  min-width: 167px;
}
.col-brand {
  flex: 1 1 220px;
  min-width: 160px;
}
.footer-logo img {
  max-width: 110px;
  margin-bottom: 18px;
  margin-top: 7px;
  display: block;
}

.social-img {
  width: 32px;
  height: 32px;
  border-radius: 50%; /* Circular icons */
  margin: 0 8px;
  transition: transform 0.2s;
}
.footer-social a:hover .social-img {
  transform: scale(1.15); /* Zoom effect on hover */
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}


.footer-col h3 {
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 17px;
  letter-spacing: 0.03em;
}
.footer-col a {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 1.04em;
  font-weight: 500;
  transition: color .13s;
}
.footer-col a:hover {
  color: #62B7FA;
}
.col-contact {
  font-size: 1.04rem;
}
.col-contact address {
  color: #b7b7b7;
  font-style: normal;
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 1em;
}
.footer-bottom {
  background: #19191b;
  color: #ccc;
  text-align: center;
  padding: 15px 0 10px 0;
  font-size: 1.07em;
}

@media (max-width: 1050px) {
  .footer-cols { flex-wrap: wrap; }
  .footer-col, .col-brand { min-width: 45vw; }
  .footer-logo img { margin: 0 auto 12px auto; }
}
@media (max-width: 700px) {
  .footer-cols { flex-direction: column; gap: 2px 0; padding: 0 7vw; }
  .footer-col, .col-brand { min-width: 0; margin-bottom: 22px; }
  .footer-logo img { margin: 0 auto 14px auto; }
}

/* gallery*/
.gallery-banner {
  width: 100vw; overflow-x:auto; background: #fff;
  margin: 0; padding: 0;
}
.gallery-row {
  display: flex;
  min-height: 36vw;
  max-height: 62vh;
  width: 100vw;
}
.gallery-img {
  flex: 1 1 0;
  min-width: 0;
  max-width: 12.5vw;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex-basis .45s cubic-bezier(.6,1.6,.3,1), z-index .07s;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.gallery-img img {
  width: 100%;
  height: 36vw;
  max-height: 62vh;
  min-height: 120px;
  object-fit: cover;
  transition: filter .22s, transform .5s cubic-bezier(.4,1.8,.2,1.08);
  filter: brightness(0.72) grayscale(8%);
  z-index: 1;
}
.gallery-label {
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%,-50%) scale(0.95);
  opacity: 0;
  color: #fff;
  font-weight: 700;
  font-size: 2vw;
  background: rgba(20,27,44,0.61);
  padding: 16px 40px 14px 40px;
  border-radius: 16px;
  pointer-events: none;
  box-shadow: 0 2px 20px #0003;
  letter-spacing: 0.035em;
  text-align: center;
  text-shadow: 0 3px 12px #222;
  min-width: 60%;
  z-index: 3;
  transition: opacity .27s, transform .41s cubic-bezier(.2,1.4,.5,1.08);
}

/* HOVER: enlarge this image, darken others, show center label */
.gallery-img:hover,
.gallery-img:focus-within {
  flex-basis: 40vw;
  max-width: 55vw;
  z-index: 2;
}
.gallery-img:hover img,
.gallery-img:focus-within img {
  filter: brightness(1) grayscale(0);
  transform: scaleX(1.21) scaleY(1.03);
}

.gallery-img:hover .gallery-label,
.gallery-img:focus-within .gallery-label {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1.14);
}

.gallery-img:not(:hover):not(:focus-within) {
  flex-basis: 5vw !important;
  max-width: 8vw !important;
  z-index: 1;
}
.gallery-img:not(:hover):not(:focus-within) img {
  filter: brightness(0.45) grayscale(20%);
}
.gallery-row:not(:hover) .gallery-img,
.gallery-row:not(:focus-within) .gallery-img {
  flex-basis: 1 1 0; max-width: 12.5vw; z-index: 1;
}
.gallery-row:not(:hover) .gallery-label {
  opacity: 0;
}

/* Responsive: 2 rows for tablets, 1 col for mobile */
@media (max-width: 900px) {
  .gallery-row { flex-wrap: wrap; min-height: unset; max-height: unset;}
  .gallery-img { flex-basis: 47vw; max-width: 49vw; min-height: 89px;}
  .gallery-img img { height: 24vw; max-height: 140px; min-height: 60px;}
  .gallery-label { font-size: 1.18rem; padding: 9px 10px;}
}
@media (max-width: 600px) {
  .gallery-img { flex-basis: 97vw; max-width: 99vw;}
  .gallery-img img { height: 28vw; max-height: 94px; }
  .gallery-label { font-size: .98rem; }
}

/*about css*/
.main-banner {
  width: 100vw;
  position: relative;
  overflow: hidden;
  height: 45vw;
  max-height: 520px;
  min-height: 220px;
  background: #101c24;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-banner-img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82);
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.main-banner-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3.3vw;
  font-weight: bold;
  z-index: 2;
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: 0 5px 28px #0009, 0 1px 1px #0005;
  white-space: nowrap;
}
@media (max-width:700px){
  .main-banner{ height: 38vw; min-height: 100px; max-height: 190px;}
  .main-banner-title { font-size: 1.5rem; }
}



.aboutus-section {
  display: flex;
  flex-wrap: wrap;
  background: #f9f9fa;
  min-height: 420px;
  align-items: stretch;
  padding: 36px 0 24px 0;
  width: 100%;
}
.aboutus-left {
  flex: 1 1 370px;
  min-width: 290px;
  max-width: 600px;
  padding: 44px 30px 44px 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aboutus-left h2 {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #1c1c1d;
}
.aboutus-left p {
  font-size: 1.18rem;
  color: #746e6b;
  line-height: 1.61;
  margin-bottom: 0;
}
.aboutus-right {
  flex: 1 1 350px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(110deg, #faedeb 81%, #ffe7dd 145%);
  position: relative;
  padding: 32px 0 32px 0;
}
.main-swiper {
  width: 370px;
  max-width: 95vw;
  margin: 0 auto;
  background: transparent;
  border-radius: 18px;
  box-shadow: none;
}
.aboutus-image-zoom {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 7px 28px #cde0f82a;
}
.aboutus-image-zoom img {
  display: block;
  width: 100%;
  max-width: 370px;
  min-height: 220px;
  background: #fff;
  border-radius: 18px;
  object-fit: cover;
  /* Default look */
  transition: transform .38s cubic-bezier(.44,1.41,.27,1.09), box-shadow .23s, filter .21s;
  filter: brightness(.96);
}
.aboutus-image-zoom img:hover,
.aboutus-image-zoom img:focus {
  transform: scale(1.11);
  filter: brightness(1.02);
  box-shadow: 0 14px 34px #c3aee8a3;
  z-index: 2;
}
/* Swiper arrows style override */
.swiper-button-next, .swiper-button-prev {
  color: #d38b45;
  top: 50%;
  width: 34px; height: 34px;
  margin-top: -17px;
}
.swiper-pagination { bottom: 9px !important; }
/* Responsive */
@media (max-width: 900px) {
  .aboutus-section {
    flex-direction: column;
    padding-top: 18px;
  }
  .aboutus-left, .aboutus-right {
    max-width: 99vw;
    padding: 19px 7vw;
  }
  .main-swiper,
  .aboutus-image-zoom img { max-width: 97vw; }
  .aboutus-right { padding-bottom: 28px; }
}


.two-col-vision {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 3vw 0 1vw 0;
  width: 100%;
  background: #fffcfb;
  min-height: 460px;
}

.two-col-left {
  flex: 1 1 370px;
  min-width: 270px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 21px 2vw 21px 7vw;
}

.vision-swiper {
  max-width: 470px;
  min-width: 270px;
  border-radius: 17px;
  background: transparent;
}
.img-zoom-wrap {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 7px 28px #cde0f82a;
  margin: 0 auto;
}
.img-zoom-wrap img {
  width: 100%;
  min-height: 198px;
  max-height: 308px;
  object-fit: cover;
  background: #fff7f7;
  border-radius: 18px;
  transition: transform .4s cubic-bezier(.42,1.23,.48,1), box-shadow .23s, filter .21s;
  filter: brightness(.98);
}
.img-zoom-wrap img:hover,
.img-zoom-wrap img:focus {
  transform: scale(1.10);
  filter: brightness(1.04);
  box-shadow: 0 14px 34px #c3aee8a3;
  z-index: 2;
}
.two-col-right {
  flex: 1 1 420px;
  min-width: 260px;
  padding: 18px 7vw 18px 1vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.two-col-right h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #151315;
}
.two-col-right p {
  font-size: 1.19rem;
  color: #535157;
  line-height: 1.60;
}

/* Swiper nav arrows style */
.swiper-button-next, .swiper-button-prev {
  color: #b29682;
  top: 51%; width: 34px; height: 34px; margin-top: -17px;
}
.swiper-pagination { bottom: 2px !important; }

@media (max-width: 900px) {
  .two-col-vision { flex-direction: column; min-height: unset;}
  .two-col-left, .two-col-right { max-width: 98vw; padding: 21px 5vw;}
  .vision-swiper, .img-zoom-wrap img { max-width: 95vw; }
}

@media (max-width: 570px){
  .two-col-right h2 { font-size: 1.45rem;}
  .two-col-right p { font-size: 1.05rem;}
}


.leadership-section {
  background: #f7f7f8;
  padding: 45px 0 42px 0;
  text-align: center;
}
.leadership-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #19191a;
  letter-spacing: 0.01em;
}
.leadership-desc {
  color: #626367;
  font-size: 1.15rem;
  line-height: 1.54;
  max-width: 820px;
  margin: 0 auto 36px auto;
}
.leaders-row {
  display: flex;
  gap: 60px 60px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1100px;
}
.leader-card {
  background: #fff;
  border-radius: 17px;
  min-width: 265px;
  width: 300px;
  max-width: 94vw;
  margin: 2vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px #bac1d120;
  padding: 28px 19px 26px 19px;
  transition: box-shadow .17s, transform .17s;
}
.leader-card:hover { box-shadow: 0 12px 32px #b9caf93b; transform: translateY(-5px) scale(1.023);}
.leader-img-wrap {
  width: 220px; height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px #a5d7f116;
  background: #e6ecf6;
  transition: box-shadow .2s;
  display: flex; align-items: center; justify-content: center;
}
.leader-img-wrap img {
  width: 220px; height: 220px; object-fit: cover;
  border-radius: 14px;
  transition: transform .48s cubic-bezier(.33,1.43,.28,1.09), filter .21s;
  filter: brightness(.96) grayscale(7%);
}
.leader-img-wrap:hover img,
.leader-card:focus-within .leader-img-wrap img {
  transform: scale(1.14);
  filter: brightness(1.06) grayscale(0);
}
.leader-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 16px 0 2px 0;
  color: #19191a;
}
.leader-title {
  font-size: 1.01rem;
  color: #667;
  margin-bottom: 19px;
}
.leader-socials {
  margin-bottom: 13px;
}
.leader-socials a {
  color: #0a66c2;
  font-size: 1.45rem;
}
.profile-btn {
  background: #12a5fa;
  color: #fff;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  font-size: 1.01rem;
  margin-top: 7px;
  font-weight: 600;
  padding: 10px 21px;
  box-shadow: 0 2px 7px #17b6d649;
  text-decoration: none;
  transition: background .14s, color .14s;
  gap: 7px;
  border: none;
}
.profile-btn:hover {
  background: #007bb5;
  color: #fff;
}

@media (max-width: 860px) {
  .leaders-row { flex-direction: column; gap: 34px 0; }
  .leader-card { margin: 0 auto 28px auto; min-width: 80vw; }
}

.core-values-section {
  background: #14253b;
  color: #fff;
  padding: 50px 0 38px 0;
  text-align: center;
}
.core-values-section h2 {
  color: #24b2fa;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 38px;
  letter-spacing: 0.015em;
}
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 30px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}
.core-value {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  min-width: 160px;
}
.core-icon {
  font-size: 2.3rem;
  margin-top: 2px;
  color: #24b2fa;
  flex-shrink: 0;
  transition: transform .25s;
  animation: icon-pop 2.1s cubic-bezier(.55,1.7,.78,.81) infinite alternate;
}
@keyframes icon-pop {
  0%   { transform: scale(1);}
  80%  { transform: scale(1.16) rotate(-2deg);}
  100% { transform: scale(1);}
}
.core-head {
  color: #24b2fa;
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.core-txt {
  margin-bottom: 0;
  color: #d9eaf7;
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .core-values-grid { grid-template-columns: 1fr 1fr; gap: 22px 15px;}
}
@media (max-width:700px) {
  .core-values-grid { grid-template-columns: 1fr; gap: 12px 0;}
  .core-value { gap: 13px; }
  .core-head  { font-size:1.07rem;}
}

.nirvana-section {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 56px 0 22px 0;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  gap: 18px 4vw;
}
.nirvana-left {
  flex: 1 1 340px;
  min-width: 260px;
  padding: 0 3vw 0 5vw;
}
.why-tag {
  color: #15aaff;
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.nirvana-left h2 {
  font-size: 2.3rem;
  font-weight: bold;
  margin: 0 0 13px 0;
  color: #16171b;
  letter-spacing: 0.01em;
}
.nirvana-main {
  color: #555;
  font-size: 1.17rem;
  line-height: 1.54;
}
.nirvana-detail {
  color: #737374;
  font-size: 1.03rem;
  margin-bottom: 18px;
}
.nirvana-btn {
  display: inline-block;
  padding: 13px 34px 13px 23px;
  background: #15aaff;
  color: #fff;
  border-radius: 23px;
  font-weight: 600;
  font-size: 1.06rem;
  box-shadow: 0 2px 11px #12aaff18;
  text-decoration: none;
  transition: background .14s;
  margin-top: 8px;
}
.nirvana-btn:hover { background: #057acc; color: #fff; }

.nirvana-right {
  flex: 1 1 430px;
  min-width: 280px;
  padding: 0 4vw 0 1vw;
}
.nirvana-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 38px;
  margin-top: 10px;
}
.highlight-card {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #e7f7ff;
  border-radius: 13px;
  box-shadow: 0 2px 9px #09aaff08;
  padding: 14px 15px 15px 14px;
  transition: box-shadow .20s, transform .18s, background .14s;
  cursor: pointer;
  margin-bottom: 0;
}
.highlight-card:hover {
  background: #c3edff;
  box-shadow: 0 8px 28px #0bbaff0f;
  transform: scale(1.045);
  z-index: 2;
}
.highlight-icon {
  background: #c7eaff;
  color: #0baaff;
  font-size: 2.05rem;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
  flex-shrink: 0;
  transition: background .16s;
}
.highlight-card:hover .highlight-icon { background: #a1dcfb; }
.highlight-head {
  color: #119ad2;
  font-size: 1.14rem;
  font-weight: bold;
}
.highlight-txt {
  font-size: 1.04rem;
  color: #34394d;
  margin-bottom: 0;
  font-weight: 500;
}
@media (max-width: 900px) {
  .nirvana-section { flex-direction: column; gap: 11px 0; padding: 26px 0 9px 0;}
  .nirvana-left, .nirvana-right { min-width: 99vw; max-width: 99vw; padding: 0 7vw; }
  .nirvana-points { grid-template-columns: 1fr; gap: 16px 0;}
}

/*blog*/
.paginator-blog-section {
  background: #f8f8fa;
  padding: 32px 0 32px 0;
}
.blog-card-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 24px 20px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px #b6d4ed18;
  transition: box-shadow .24s, transform .21s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.blog-card:hover {
  box-shadow: 0 12px 35px #73cdf433;
  transform: scale(1.025) translateY(-7px);
  z-index: 2;
}
.blog-img-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 144px;
  background: #e7ecfa;
}
.blog-img-box img {
  width: 100%;
  height: 144px;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.4,1.5,.4,1), filter .18s;
  filter: brightness(.92);
}
.blog-card:hover .blog-img-box img {
  transform: scale(1.13);
  filter: brightness(1.04) saturate(1.17);
}
.blog-date {
  position: absolute;
  top: 11px;
  right: 11px;
  background: #151515;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: .95;
  padding: 7px 13px 7px 13px;
  border-radius: 8px;
}
.blog-content {
  padding: 19px 15px 18px 16px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.blog-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #18306A;
  margin-bottom: 8px;
  line-height: 1.16;
  border-bottom: 2.5px solid #06caff;
  display: inline-block;
  padding-bottom: 2px;
  transition: border-bottom .2s, color .14s;
}
.blog-card:hover .blog-title {
  color: #06caff;
  border-bottom: 2.5px solid #1c1c1c;
}
.blog-desc {
  font-size: .98rem;
  color: #68677b;
  margin-bottom: 11px;
  margin-top: 0;
  padding-left: 2px;
  border-left: 4px solid #18bee5;
  background: #e8fafd;
  border-radius: 2px 7px 7px 2px;
  box-shadow: 0 2px 10px #0e8aaf18;
}
.blog-read-btn {
  background: #13c1ef;
  color: #fff;
  border-radius: 8px;
  padding: 9px 18px 9px 16px;
  margin-top: 7px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  box-shadow: 0 2px 8px #2c98cc16;
  text-decoration: none;
  transition: background .17s, color .17s, box-shadow .16s;
}
.blog-read-btn:hover {
  background: #1765bf;
  color: #fff;
}
.blog-read-btn i {
  font-size: 1.12rem;
  margin-left: 8px;
  vertical-align: middle;
  transition: margin-left .12s;
}
.blog-read-btn:hover i { margin-left: 17px; }
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 33px;
}
.blog-pagination a {
  min-width: 38px;
  padding: 9px 16px;
  border-radius: 8px;
  background: #e7fafd;
  color: #13c1ef;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background .13s, color .14s;
  text-align: center;
  border: none;
}
.blog-pagination a.active,
.blog-pagination a:hover {
  background: #13c1ef;
  color: #fff;
}
@media (max-width: 900px) {
  .blog-card-grid { grid-template-columns: 1fr 1fr; gap: 15px 9px;}
}
@media (max-width: 600px) {
  .blog-card-grid { grid-template-columns: 1fr; }
  .blog-card { min-width: 0; width: 98vw;}
}

/*contact*/




.locations-section {
  background: #f7f7fa;
  padding: 55px 0 58px 0;
  text-align: center;
}
.locations-section h2 {
  font-size: 2.22rem;
  font-weight: bold;
  margin-bottom: 41px;
  letter-spacing: 0.01em;
  color: #19191a;
}
.locations-box {
  margin: 0 auto;
  padding: 38px 3vw 44px 3vw;
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 8px 46px #13c1ef1f, 0 0 0 3px #13c1ef44;
  max-width: 1020px;
  transition: box-shadow .18s;
}
.locations-box:hover {
  box-shadow: 0 16px 68px #13c1ef3a, 0 0 0 4px #13c1ef60;
}
.location-cols {
  display: flex;
  gap: 56px 62px;
  justify-content: start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.location-col {
  flex: 1 1 340px;
  min-width: 250px;
  max-width: 430px;
  text-align: left;
}
.loc-head {
  font-size: 1.42rem;
  margin-bottom: 18px;
  font-weight: bold;
  color: #18194a;
  letter-spacing: 0.01em;
}
.loc-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.loc-icon {
  background: #e4f7fd;
  color: #13c1ef;
  border-radius: 50%;
  min-width: 50px; min-height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.07rem;
  margin-top: 2px;
  box-shadow: 0 1px 14px #097ab30b;
}
.loc-row b { font-size: 1.05rem;}
@media (max-width: 860px) {
  .location-cols { flex-direction: column; gap: 32px 0; }
  .location-col { max-width: 98vw;}
  .locations-box { padding: 33px 3vw;}
}


clients-section {
      padding: 44px 0 38px 0;
      text-align: center;
      background: #fff;
      overflow-x: hidden;
      margin: 50px;
    }
    .clients-title {
      font-size: 2em;
      font-weight: 500;
      color: #222;
     text-align: center;
      margin-bottom: 32px;
      letter-spacing: 1.2px;
    
    }
    .slider-viewport {
      width: 100vw;
      overflow: hidden;
      margin: 0 auto 18px auto;
      position: relative;
    }
    .clients-logos-track {
      display: flex;
      align-items: center;
      gap: 36px;
      
      width: max-content;
      animation: logo-scroll-ltr 60s linear infinite;
    }
    .clients-logos-track.reverse {
      animation: logo-scroll-rtl 60s linear infinite;
    }
    .client-logo {
      flex: 0 0 160px;
      width: 160px;
      max-width: 18vw;
      min-width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 7px;
      box-shadow: 0 0 7px #b7b7b72a;
     
    }
    .client-logo img {
      max-width: 100%;
      max-height: 65px;
      object-fit: contain;
      display: block;
    }

    /* Animation for left to right (slides left) */
    @keyframes logo-scroll-ltr {
      0% { transform: translateX(0);}
      100% { transform: translateX(-50%);}
    }
    /* Animation for right to left (slides right) */
    @keyframes logo-scroll-rtl {
      0% { transform: translateX(-50%);}
      100% { transform: translateX(0);}
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .client-logo { flex-basis: 110px; width:110px; }
      .clients-logos-track { gap: 18px; }
    }
    @media (max-width: 700px) {
      .client-logo { flex-basis: 60px; width: 58px; min-width: 36px; max-width: 90px; height: 39px;}
      .client-logo img {max-height: 28px;}
      .clients-title { font-size: 1.1em;}
      .clients-logos-track, .clients-logos-track.reverse {gap: 7px;}
      .slider-viewport { width: 100vw;}
    }clients-section {
      padding: 44px 0 38px 0;
      text-align: center;
      background: #fff;
      overflow-x: hidden;
      margin: 50px;
    }
    .clients-title {
      font-size: 2em;
      font-weight: 500;
      color: #222;
     text-align: center;
      margin-bottom: 32px;
      letter-spacing: 1.2px;
    
    }
    .slider-viewport {
      width: 100vw;
      overflow: hidden;
      margin: 0 auto 18px auto;
      position: relative;
    }
    .clients-logos-track {
      display: flex;
      align-items: center;
      gap: 36px;
      
      width: max-content;
      animation: logo-scroll-ltr 60s linear infinite;
    }
    .clients-logos-track.reverse {
      animation: logo-scroll-rtl 60s linear infinite;
    }
    .client-logo {
      flex: 0 0 160px;
      width: 160px;
      max-width: 18vw;
      min-width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 7px;
      box-shadow: 0 0 7px #b7b7b72a;
     
    }
    .client-logo img {
      max-width: 100%;
      max-height: 65px;
      object-fit: contain;
      display: block;
    }

    /* Animation for left to right (slides left) */
    @keyframes logo-scroll-ltr {
      0% { transform: translateX(0);}
      100% { transform: translateX(-50%);}
    }
    /* Animation for right to left (slides right) */
    @keyframes logo-scroll-rtl {
      0% { transform: translateX(-50%);}
      100% { transform: translateX(0);}
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .client-logo { flex-basis: 110px; width:110px; }
      .clients-logos-track { gap: 18px; }
    }
    @media (max-width: 700px) {
      .client-logo { flex-basis: 60px; width: 58px; min-width: 36px; max-width: 90px; height: 39px;}
      .client-logo img {max-height: 28px;}
      .clients-title { font-size: 1.1em;}
      .clients-logos-track, .clients-logos-track.reverse {gap: 7px;}
      .slider-viewport { width: 100vw;}
    }


    /* map */
    body.map-section{
      background: #f7f7f7;
      margin: 0;
      padding: 0;
      font-family: 'Montserrat', Arial, sans-serif;
    }
    .map-section {
      width: 100vw;
      min-height: 240px;
      box-sizing: border-box;
      padding: 24px 0 0 0;
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }
    .map-container {
      width: 98vw;
      max-width: 100%;
      position: relative;
      min-height: 380px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 22px 0 rgba(44,42,41,0.11);
      background: #fff;
      display: flex;
    }
    .map-info-box {
      position: absolute;
      left: 16px;
      top: 16px;
      z-index: 2;
      background: #fff;
      box-shadow: 0 3px 11px 0 rgba(51,39,38,0.12);
      padding: 18px 17px 14px 17px;
      border-radius: 9px;
      min-width: 285px;
      max-width: 375px;
      font-size: 1rem;
      color: #222;
    }
    .map-info-title {
      font-size: 1.18rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .map-info-rating {
      margin: 8px 0 0 1px;
      font-size: 1.04rem;
      color: #f89b20;
      vertical-align: middle;
      display: inline-block;
    }
    .map-info-rating span {
      color: #222;
      font-weight: 500;
      font-size: 0.97rem;
      margin-left: 7px;
    }
    .map-info-addr {
      margin: 6px 0 2px 0;
      font-size: 0.98rem;
      color: #656565;
      line-height: 1.3;
    }
    .map-link {
      color: #3582dc;
      font-size: 1rem;
      text-decoration: underline;
      margin-top: 7px;
      display: inline-block;
    }
    .map-iframe-container {
      width: 100%;
      height: 423px;
      min-height: 220px;
      background: #eee;
      border-radius: 0 0 10px 10px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .map-iframe {
      width: 100%;
      height: 423px;
      border: 0;
      min-height: 220px;
      min-width: 320px;
      display: block;
    }
    @media (max-width: 900px) {
      .map-info-box {
        min-width: 204px;
        max-width: 92vw;
        font-size: 0.93rem;
        padding: 12px 10px 11px 12px;
      }
      .map-iframe-container, .map-iframe {
        height: 305px;
        min-height: 150px;
      }
      .map-container {
        min-height: 180px;
      }
    }
    @media (max-width:580px){
      .map-info-box {
        top: 6px;
        left: 6px;
        max-width: 94vw;
        font-size: 0.87rem;
        padding: 7px 7px 7px 9px;
      }
      .map-section {
        padding: 7px 0 0 0;
      }
      .map-iframe, .map-iframe-container {
        height: 165px;
      }
      .map-container {
        min-height: 100px;
      }
    }
  