.igloo-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scroll {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  cursor: grab;
  scrollbar-width: none; 
}

.hero-scroll::-webkit-scrollbar {
  display: none;
}

.hero-scroll:active {
  cursor: grabbing;
}

.hero-img {
  height: 100%;
  width: auto;
  user-select: none;
  pointer-events: none;
    border-radius: 0 !important;

}

.slider-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;

}

.slider-track {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width:100%;
  height: 48px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.drag-btn {
  pointer-events: auto;
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 6px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  cursor: grab;
  z-index: 5;
  transition: left 0.05s linear;
}

.drag-btn.dragging {
  cursor: grabbing;
  transform: translateY(1px);
}

.slider-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 18px;
  width: 100%;
  border-radius: 999px;
}

.drag-btn.dragging {
  cursor: grabbing;
  transform: translateY(1px);
}
.hero-outline {
  position: absolute;
  top: 67%;
  left: 40px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 300px; 
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 1); 
  letter-spacing: 25px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
  opacity: 0.9;
}


@media (max-width: 768px) {
  .hero-outline {
    bottom: 40px;
    left: 20px;
    font-size: 440px;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .slider-track {
    left: 20px;
    bottom: 20px;
    width: 100%;
  }
}


.section {
  max-width: 1220px;
  margin: 130px auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.left {
  flex: 1;
}

.left h2 {
  font-size: 55px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #55555573;
}

.left h2 span {
  color: #009EE0;
  font-weight: 700;
}

.switch {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.switch-icon-img {
  width: 140px;
  height: 40px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  margin-right: 20px;
}

.switch-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-top: -18px;
}

.switch-text .top-line {
  font-size: 55px;
  font-weight: 400;
  color: rgba(85, 85, 85, 0.45);
}

.switch-text .bottom-line {
  font-size: 55px;
  font-weight: 400;
  color: rgba(85, 85, 85, 0.45);
  position: absolute;
  left: 0;
  top: 40px;
}

.left p {
  font-size: 16px;
  line-height: 1.7;
  color: black;
  justify-content: center;
  max-width: 850px;
  margin-top: 80px;
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.feature-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-right: 10px;
  vertical-align: middle;
}

.feature h3 {
  margin: 0;
  color: #009EE0;
  font-size: 30px;
  font-weight: 500;
}

.feature p {
  margin: 4px 0 0 0;
  color: black;
  font-size: 16px;
  line-height: 1.4;
}

.divider {
  height: 1px;
  background: #050404ee;
  margin: 10px 0;
}
.blue-cards {
  background: linear-gradient(180deg, #009EE0 0%, 60%, #000000 100%);
  color: #fff;
  padding: 48px 16px 64px;
}

.blue-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}

.blue-title {
  font-weight: 700;
  font-size: 62px;
  margin: 6px 0 78px 0;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);

}

.blue-logo {
  width: 70px;
  height: auto;
}
.cards {
  display: flex;
  gap: 42px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  -ms-overflow-style: none;  
  scrollbar-width: none;     
}

.cards::-webkit-scrollbar {
  display: none; 
}
.card {
  flex: 0 0 360px; 
  height: 420px;   
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}


.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.28) 40%, rgba(0, 0, 0, 0.6) 100%);
}

.card-overlay h3 {
  margin: 0 0 6px 0;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.card-overlay p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}
.blue-inner {
  position: relative; 
}

.arrow-buttons {
  position: absolute;
  top: 20%;   
  right: 40px; 
  display: flex;
  gap: 15px;
  z-index: 10;
}

.arrow-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  
}

.arrow-btn img {
  width: 40px !important;  
  height: auto !important;
  display: block;
  max-width: none !important;
}



.blue-inner {
  position: relative; 
}

.why-igloo {
  background: #fff;
  padding: 100px 16px;
}

.why-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: start;
}

.why-left {
  min-width: 0;
}

.why-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 18px;
}

.why-small {
  color: #ff7b00f1;
  font-weight: 500;
  font-size: 76px;
  letter-spacing: -8.5px;
  margin-bottom: 5px;
}

.igloo {
  color: #0096ff;
  font-weight: 600;
  font-size: 200px;
  line-height: 0.9;
  letter-spacing: -11.5px;
  margin: 0;
}

.left-cards {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 85px 0 20px 0;
  flex-wrap: nowrap;
}

.mini-card {
  width: 360px;
  height: 250px;
  border-radius: 30px;
  overflow: hidden;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-card {
  position: relative;
  width: 300px;
  height: 250px;
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-card .card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.center-number {
  font-weight: 800;
  font-size: 26px;
}

.center-sub {
  font-weight: 600;
  font-size: 18px;
  margin-top: 60px;
}

.left-note {
  margin-top: 10px;
  color: #4b4b4b;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.6;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eaf6ff;
  color: #0096ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.feature-text h4 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

.feature-text h4 .muted {
  color: #8a8a8a;
  font-weight: 600;
  font-size: 24px;
}

.feature-text p {
  margin: 6px 0 0;
  color: black;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 50ch;
}

.igloo-hero3 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.igloo-hero3__bg {
  position: absolute;
  inset: 0;
  background-image: url('../../public/images/home/full-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.igloo-hero3__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.igloo-hero3__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.igloo-hero3__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 2rem 2rem;
  box-sizing: border-box;
}

.igloo-hero3__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.5rem;
}

.igloo-hero3__left {
  color: #fff;
  text-align: left;
}

.igloo-hero3__title {
  margin: 0 0 .5rem 0;
  font-size: 65px;
  font-weight: 500;
  line-height: 1.05;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.igloo-hero3__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.6;
  max-width: 850px;
}

/* right side button */
.igloo-hero3__right {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}

.igloo-hero3__cta {
  display: inline-flex;
  align-items: start;
  margin-bottom: 30px;
  justify-content: start;
  padding: 15px 42px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
  transition: transform .15s ease, box-shadow .15s ease;
    /* -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px); */


}
.igloo-hero3__highlight {
  color: rgba(255, 255, 255, 0.55);

}

:root {
  --clients-max: 1230px;
  --clients-gutter: 20px;
  --accent-orange: #f57c00;
  --accent-teal: #00a9e0;
  --accent-purple: #9b4dff;
  --card-radius: 18px;
  --logo-box-h: 86px;
  --logo-box-padding: 28px;
}

.clients-section {
  width: 100%;
  background: #fff;
  padding: 100px 20px;
  box-sizing: border-box;
}

.clients-container {
  max-width: var(--clients-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--clients-gutter);
  align-items: center;
}

.clients-left {
  grid-column: 1 / span 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.clients-igloo {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 100px;
  margin: 0;
}

.clients-title {
  color: var(--accent-teal);
  font-weight: 600;
  font-size: 150px;
  line-height: 1.1;
  margin: 0;
}

.clients-right {
  grid-column: 7 / span 6;
  padding: 18px;
  border-radius: 12px;
  box-sizing: border-box;
  
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.clients-card {
  background: #fff;
  border-radius: var(--card-radius);
  min-height: var(--logo-box-h);
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 2px solid #efefefc0; */
}

.clients-card img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  display: block;
}

.clients-testimonials-area {
  grid-column: 1 / span 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  align-items: start;
  max-width: var(--clients-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.clients-testimonials-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.clients-our {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 70px;
  margin: 0 0 2px 0;
  line-height: 1.1;
}

.clients-testimonials {
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 70px;
  line-height: 1.1;

}

.clients-testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.clients-testimonial {
  background: #fff;
  border-radius: 5px;
  padding: 18px;
  border: 2px solid #f0f0f0;
  min-height: 110px;
}

.clients-meta {
  font-weight: 600;
  font-size: 19px;
  color: var(--Color-Scheme-1-Text, rgba(11, 8, 4, 1));
  ;
}

.clients-testimonial p {
  margin: 8px 0 0;
  color: rgba(11, 8, 4, 1);
  font-size: 14px;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.testi-avatar {
  width: 54px;
  height: 54px;
  object-fit: cover;
  flex: 0 0 54px;
}

.meta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-name {
  font-weight: 600;
  font-size: 18px;
  color: #292929;
}

.meta-loc {
  font-size: 14px;
  color: #292929;
}

.clients-testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
}

.testimonial-controls.under-first {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  grid-column: 1 / 2;
  justify-self: start;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.arrow-btn img {
  width: 30px;
  height: 30px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-left: 8px;
  align-items: end;
}

.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfcfcf;
  display: inline-block;
}

.testimonial-dots .dot.active {
  background: #000;
}
.clients-scroll-wrap {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.clients-scroll-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.clients-scroll-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  align-items: stretch;
}
.clients-card {

  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.clients-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.clients-scroll-wrap:hover .clients-scroll-col {
  animation-play-state: paused;
}
.col-left {
  animation: scrollDown 16s linear infinite;
}
.col-right {
  animation: scrollUp 16s linear infinite;
}

/* Keyframes */
@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scrollDown {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {

  .clients-scroll-wrap {
    max-height: 400px;
  }
  .clients-card {
    height: 70px;
  }
}

.faq-inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: left;
  display: block;
}

.faq-eyebrow {
  color: #9aa0a6;
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 5px;
}

.faq-heading {
  font-weight: 400;
  font-size: 60px;
  letter-spacing: -0.1px;
  text-align: center;
  margin: 2px 0 28px;
  color: #9aa0a6;
}

.faq-heading .faq-letter {
  color: #00a9e0;
  font-size: 90px;
  font-weight: 700px;
  margin-right: .15rem;
}
.faq-list {
  margin-top: 6px;
}

.faq-item {
  border-top: 1px solid rgba(0, 0, 0, 1);
  padding: 42px 0;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  color: #111;
  line-height: 1.15;
  transition: color .18s ease;
}

.faq-question {
  display: block;
  flex: 1 1 auto;
  font-weight: 400;
  font-size: 25px;
}

.faq-icon {
  flex: 0 0 28px;
  text-align: center;
  font-weight: 700;
  color: rgba(0, 0, 0, 1);
  ;
  font-size: 20px;
  transition: transform .18s ease, color .18s ease;
}

.faq-panel {
  margin-top: 12px;
  color: #a09d9d;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  padding-right: 8px;
  max-width: 880px;
  transition: max-height .28s ease, opacity .2s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 169, 224, 0.12);
  border-radius: 6px;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  color: #00a9e0;
  transform: rotate(0deg);
}

.faq-panel p {
  margin: 0;
}
.igloo-contact-section {
  background: linear-gradient( rgba(7, 89, 133, 1) 50%, #046fa8 100%);
  color: #fff;
  padding: 80px 20px;
  box-sizing: border-box;
}

.igloo-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.igloo-hero {
  position: relative;
  background: url('../../public/images/home/blue-card.png') center/cover no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  margin-bottom: 60px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 60px;
  max-width: 540px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-title {
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 100%;
}
.hero-btn {
  background: rgba(255, 255, 255, 0.247);
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s ease;
}
.contact-header{ text-align:start; margin-bottom:28px; }
.contact-title{
  font-size: 70px; 
  margin: 0 0 8px;
  font-weight:500;
  line-height:1.05;
}
.contact-sub{
  margin:0;
  font-size:24px;
  color: #fff;
  text-align: center;
}
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 380px;  
}

.contact-left{ padding-top:20px; } 
.contact-list{ list-style:none; padding:40px; margin:0; }


.map-wrap img{ width:100%; height:auto; display:block; object-fit:cover; }
.contact-item {
  display: flex;
  flex-direction: column;      
  align-items: flex-start;     
  gap: 2px;                   
  text-align: left;   
    margin-bottom:12px;
         
}
.icon {
  width: 35px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #eaf6ff;
  flex-shrink: 0;
  margin-bottom: 2px;                  
}

.icon svg {
  color: #eaf6ff;
  width: 18px;
  height: 18px;
}

.ci .ci-label {
  font-weight: 700;
  color:  var(--Color-Scheme-2-Text, rgba(255, 255, 255, 1));
  font-size: 18px;
  margin-bottom: 6px;
}

.ci .ci-help {
  font-size: 18px;
  color:var(--Color-Scheme-2-Text, rgba(255, 255, 255, 1));
  margin-bottom: 6px;
}
.ci .ci-value,
.ci .ci-value a {
  color: var(--Color-Scheme-2-Text, rgba(255, 255, 255, 1));

}

.contact-right {
  display: flex;
  justify-content: flex-end;
}

.map-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
}
@media (max-width: 980px) {
  .test{
    height: 400px !important;
  }
  .contact-title {
    font-size: 46px; 
    line-height: 1.04;
  }

  .contact-sub {
    font-size: 18px;
    text-align: center; 
  }

  .contact-grid {
    grid-template-columns: 1fr 320px; 
    gap: 28px;
  }

  .contact-list {
    padding: 28px;
  }

  .map-wrap {
    margin-top: 80px; 
  }

  .icon { width: 34px; height: 30px; }
  .icon svg { width: 16px; height: 16px; }

  .ci .ci-label { font-size: 15px; }
  .ci .ci-help  { font-size: 14px; }
  .ci .ci-value { font-size: 13px; }
}
@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-right {
    order: 2;          
    justify-content: center; 
    width: 100%;
  }

  .contact-left {
    order: 1;
    width: 100%;
    padding-top: 0;
  }
  .contact-header { text-align: center; }
  .contact-title { font-size: 34px; }
  .contact-sub   { font-size: 14px; }

  .icon {
    margin-bottom: 6px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .icon svg { width: 20px; height: 20px; }

  .ci .ci-label { font-size: 15px; }
  .ci .ci-help  { font-size: 14px; }
  .ci .ci-value { font-size: 14px; }

  .contact-list { padding: 12px 8px; }

}

@media (max-width: 420px) {
  .igloo-hero{
    height: 300px !important;
  }
  .contact-title { font-size: 28px; }
  .contact-sub   { font-size: 13px; }

  .icon { width: 40px; height: 40px; }
  .icon svg { width: 18px; height: 18px; }

  .ci .ci-label { font-size: 14px; }
  .ci .ci-help  { font-size: 13px; }
  .ci .ci-value { font-size: 13px; }

  .contact-list { padding: 6px 6px; }
}
@media (max-width: 880px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-inner::after{ margin-top:24px; }
  .contact-right{ justify-content:center; order:2; margin-top:18px; }
  .contact-left{ order:1; text-align:left; }
  .contact-title{ font-size: clamp(28px, 7vw, 36px); }
  .icon{ width:36px; height:36px; }
}
/* ===== Responsive ===== */
@media (max-width: 992px) {
  .igloo-hero {
    min-height: 260px;
  }

  .hero-content {
    padding: 30px;
  }

  .hero-title {
    font-size: 26px;
  }

  .contact-row {
    flex-direction: column;
    gap: 32px;
  }

  .contact-right {
    justify-content: center;
  }

  .contact-right img {
    max-width: 320px;
  }
}

@media (max-width: 576px) {
  .igloo-hero {
    min-height: 220px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .contact-heading {
    font-size: 20px;
    text-align: center;
  }

  .contact-sub {
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info strong {
    width: auto;
    display: block;
    font-weight: 700;
  }

  .contact-right img {
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  .faq-inner {
    padding: 0 8px;
  }

  .faq-heading {
    font-size: 16px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-panel {
    font-size: 14px;
  }

  .faq-item {
    padding: 14px 0;
  }
}

@media (max-width: 420px) {
  .faq-heading {
    font-size: 16px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-icon {
    font-size: 18px;
    width: 26px;
  }
}

@media (max-width:980px) {
  .clients-testimonial-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-controls.under-first {
    grid-column: 1 / -1;
    justify-self: center;
    margin-left: 8px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .clients-container {
    grid-template-columns: repeat(8, 1fr);
  }

  .clients-left {
    grid-column: 1 / span 8;
    text-align: center;
  }

  .clients-right {
    grid-column: 1 / span 8;

  }

  .clients-testimonials-area {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px;
  }

  .clients-testimonials-head {
    align-items: center;
    text-align: center;
  }

  .clients-testimonial-cards {
    grid-template-columns: 1fr;
  }

  .clients-title {
    font-size: 60px;
  }

  :root {
    --logo-box-h: 74px;
    --logo-box-padding: 18px;
  }
}

@media (max-width: 520px) {
  .clients-section {
    padding: 60px 12px;
  }

  .clients-title {
    font-size: 44px;
  }

  .clients-igloo {
    font-size: 20px;
  }

  .clients-testimonials {
    font-size: 22px;
  }

  :root {
    --logo-box-h: 64px;
    --logo-box-padding: 14px;
  }
}


/* Phone: <= 520px */
@media (max-width: 520px) {
  :root {
    --right-grid-w: 330px;
  }

  .clients-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .clients-left {
    grid-column: 1 / span 4;
    text-align: center;
    padding-left: 0;
  }

  .clients-right {
    grid-column: 1 / span 4;
    justify-content: center;
    padding-top: 10px;
  }

  .clients-grid {
    width: var(--right-grid-w);
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on phones */
    gap: 12px;
  }

  .clients-title {
    font-size: clamp(30px, 10vw, 54px);
    text-align: center;
  }

  .clients-igloo {
    font-size: clamp(18px, 6vw, 28px);
  }

  .clients-card {
    height: 100px;
    padding: 8px;
  }

  .clients-card img {
    max-height: calc(var(--outer-card-h, 100px) - 12px);
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .testimonial-controls.under-first {
    grid-column: 1 / -1;
    justify-self: center;
    margin-left: 0;
  }
}

/* responsive behavior */
@media (max-width: 992px) {
  .igloo-hero3__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .igloo-hero3__right {
    justify-content: center;
  }

  .igloo-hero3__cta {
    font-size: .9rem;
    padding: 10px 18px;
  }
}

@media (max-width: 576px) {
  .igloo-hero3 {
    min-height: 55vh;
  }

  .igloo-hero3__title {
    font-size: 1.4rem;
  }

  .igloo-hero3__subtitle {
    font-size: .9rem;
  }

  .igloo-hero3__cta {
    padding: 8px 14px;
    border-radius: 20px;
  }

  .igloo-hero3__play {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 880px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 24px;
  }

  .why-head {
    align-items: center;
  }

  .why-small {
    font-size: 42px !important;
    letter-spacing: -3px !important;
    margin-bottom: 6px;
  }

  .igloo {
    font-size: 72px !important;
    letter-spacing: -4px !important;
    line-height: 0.95;
  }

  .left-cards {
    justify-content: center;
    gap: 14px;
    margin: 18px 0 12px;
  }

  .mini-card {
    width: 180px;
    height: 120px;
    border-radius: 18px;
  }

  .center-card {
    width: 170px;
    height: 120px;
    transform: translateY(-4px);
  }

  .why-right {
    padding-left: 0;
  }

  .icon-circle {
    width: 36px;
    height: 36px;
  }

  .icon-circle svg {
    width: 14px;
    height: 14px;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text h4 .muted {
    font-size: 15px;
  }

  .feature-text p {
    font-size: 14px;
    max-width: 56ch;
  }
}

/* Compact layout for phones */
@media (max-width: 576px) {
  .why-igloo {
    padding: 36px 12px;
  }

  .why-inner {
    padding: 0 16px;
    gap: 20px;
  }

  .why-small {
    font-size: 28px !important;
    letter-spacing: -1px !important;
  }

  .igloo {
    font-size: 48px !important;
    letter-spacing: -2px !important;
  }

  .mini-card,
  .center-card {
    width: 140px;
    height: 96px;
    border-radius: 14px;
  }

  .center-number {
    font-size: 18px;
  }

  .center-sub {
    font-size: 13px;
  }

  .icon-circle {
    width: 32px;
    height: 32px;
  }

  .icon-circle svg {
    width: 12px;
    height: 12px;
  }

  .feature-text h4 {
    font-size: 15px;
  }

  .feature-text h4 .muted {
    font-size: 14px;
  }

  .feature-text p {
    font-size: 13px;
    line-height: 1.5;
    max-width: 100%;
  }

  .left-note {
    font-size: 14px;
    max-width: 100%;
  }
}

/* Very small devices — prevent overflow */
@media (max-width: 360px) {
  .igloo {
    font-size: 40px !important;
  }

  .why-small {
    font-size: 22px !important;
  }

  .mini-card,
  .center-card {
    width: 120px;
    height: 84px;
  }
}


/* --- Responsive Layout --- */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 240px;
  }

  .card-overlay {
    padding: 16px;
  }

  .card-overlay h3 {
    font-size: 18px;
  }

  .card-overlay p {
    font-size: 14px;
  }

  .blue-title {
    font-size: 26px;
    text-align: left;
  }
}

/* --- Simple Responsive Fix --- */
@media (max-width: 992px) {
  .section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 30px auto;
    gap: 10px;
  }

  .left,
  .right {
    width: 100%;
  }

  .switch {
    justify-content: center;
  }

  .feature {
    justify-content: center;
    text-align: start;
  }
}

@media (max-width: 576px) {
  .left h2 {
    font-size: 32px;
  }

  .switch-text {
    font-size: 22px;
  }

  .feature h3 {
    font-size: 20px;
  }

  .left p.feature p {
    font-size: 18px;
    justify-content: center;
    text-align: start;
  }
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .switch {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .switch-text .top-line {
    font-size: 42px;
    margin-top: 14px;

  }

  .switch-text .bottom-line {
    position: static;
    font-size: 42px;
    margin-top: 4px;
  }
}
