/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* ============================================= */
/* Heading Typography Overrides                  */
/* ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter Display', sans-serif !important;
  color: #222222 !important;
}

h1 {
  font-weight: 600 !important;  /* Semi Bold */
}

h2 {
  font-weight: 600 !important;  /* Semi Bold */
}

h3 {
  font-weight: 500 !important;  /* Medium */
}

h4 {
  font-weight: 400 !important;  /* Regular */
}

h5, h6 {
  font-weight: 400 !important;  /* Regular */
}

/* ============================================= */
/* Paragraph Typography                          */
/* ============================================= */
p {
  font-family: 'Inter Display', sans-serif !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
  color: #222222 !important;
  letter-spacing: 0 !important;
}

.hs-solution-item {
  display: flex;
  align-items: flex-start;
  column-gap: 12px;       /* space between icon and text column */
}

.hs-solution-icon {
  flex: 0 0 auto;
  margin-top: 2px;        /* nudge to visually center with first line */
}

.hs-solution-icon img {
  width: 30px;
  height: auto;
  display: block;
}

.hs-solution-content {
  flex: 1 1 auto;
}

.hs-solution-title {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.hs-solution-description {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: rgba(243, 244, 246, 0.7); /*grey background */  
  color: #6B7280;             /* grey text */
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;        /* key: makes it a pill */
  line-height: 1;
  white-space: nowrap;        /* prevents wrapping */
}
.pill-label-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: rgba(230, 255, 240, 0.7);  
  color: #01cb55;             /* green text */
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;        /* key: makes it a pill */
  line-height: 1;
  white-space: nowrap;        /* prevents wrapping */
}
.pill-label-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: rgba(255, 242, 230, 0.7);  
  color: #fb8f20;             /* orange text */
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;        /* key: makes it a pill */
  line-height: 1;
  white-space: nowrap;        /* prevents wrapping */
}
.pill-label-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: rgba(230, 230, 255, 0.7);  
  color: #6468ce;             /* purple text */
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;        /* key: makes it a pill */
  line-height: 1;
  white-space: nowrap;        /* prevents wrapping */
}
.pill-label-turquoise {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: rgba(230, 252, 255, 0.7);  
  color: #2cbfd2;             /* turquoise text */
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;        /* key: makes it a pill */
  line-height: 1;
  white-space: nowrap;        /* prevents wrapping */
}
.pill-label-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: rgba(227, 241, 255, 1);
  color: #007AFF;             /* blue text */
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;        /* key: makes it a pill */
  line-height: 1;
  white-space: nowrap;        /* prevents wrapping */
}
/* ========================================== */
/* CLEAN megamenu constrained width + rounded bottom */
/* ========================================== */
.header__mega-menu .megamenu-row {
  max-width: 1160px !important;
  margin: 0 auto !important;
  background-color: #ffffff !important;
  border-radius: 0 0 32px 32px !important;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18) !important;
  overflow: hidden !important;
  width: auto !important;
}

/* Optional: stack on very small screens if needed */

/*hero images */
.hero-image-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 450px;
  background: transparent; /* Force transparent background */
}

.hero-img {
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* Left image - SMALLER */
.hero-img-left {
  width: 328px !important;
  max-width: 328px !important;
  height: auto !important;
  flex-shrink: 0;
}

/* Center image - LARGEST with shadow */
.hero-img-center {
  width: 676px !important;
  max-width: 676px !important;
  height: auto !important;
  flex-shrink: 0;
  z-index: 2;
}

/* Right image - SMALLER */
.hero-img-right {
  width: 328px !important;
  max-width: 328px !important;
  height: auto !important;
  flex-shrink: 0;
}

/* Hide outer images on tablets and mobile */
@media screen and (max-width: 1024px) {
  .hide-on-mobile {
    display: none !important;
  }
  
  .hero-image-stack {
    min-height: 300px;
  }
  
  .hero-img-center {
    width: 90% !important;
    max-width: 600px !important;
  }
}

/* Smaller mobile adjustments */
@media screen and (max-width: 768px) {
  .hero-img-center {
    width: 100% !important;
  }
  
  .hero-image-stack {
    min-height: 250px;
    padding: 0 10px;
  }
}


/*hero images end */


/*Why choose traceair section */
.why-choose-section {
  position: relative;
  background-image: url('https://43853296.fs1.hubspotusercontent-na1.net/hubfs/43853296/drone_view_lots.webp');
  background-size: cover;
  background-position: center;
  padding: 100px 40px 100px 40px; /* Increased top/bottom padding */
  border-radius: 24px;
  margin: 60px auto;
  max-width: 1400px;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15); /* Changed from 0.5 to 0.35 */
  z-index: 1;
}

.why-choose-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.why-choose-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px; /* Changed from 20px to 12px */
  color: white !important;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}


.why-choose-heading {
  font-size: 48px;
  font-weight: 700;
  color: white !important;
  margin-bottom: 20px; /* Increased from 16px */
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-choose-subheading {
  font-size: 18px;
  color: white !important;
  margin-bottom: 80px; /* Reduced from 60px - this was too much space */
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px; /* Increased from 32px for more breathing room */
  margin-top: 0; /* Removed extra margin */
}

.feature-card {
  text-align: left;
  padding: 0 16px; /* Added horizontal padding */
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px; /* Increased from 20px */
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: white !important;
  margin-bottom: 16px; /* Increased from 12px */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .why-choose-section {
    padding: 80px 32px;
  }
  
  .why-choose-features {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .feature-card {
    text-align: center;
    padding: 0;
  }
  
  .feature-icon {
    margin: 0 auto 24px;
  }
  
  .why-choose-heading {
    font-size: 36px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .why-choose-section {
    padding: 60px 24px;
    border-radius: 16px;
  }
  
  .why-choose-heading {
    font-size: 32px;
  }
  
  .why-choose-subheading {
    font-size: 16px;
    margin-bottom: 60px;
  }
  
  .why-choose-features {
    gap: 48px;
  }
}


/*end of why choose traceair */

/* feature icon */
.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* Makes SVG white */
}

/* feature icon end */

/* icon background */
.why-icon {
  width: 56px;           /* Circle diameter */
  height: 56px;          /* Circle diameter */
  border-radius: 50%;    /* Creates perfect circle */
  background-color: rgba(255, 255, 255, 0.12);  /* Semi-transparent white */
  backdrop-filter: blur(8px);  /* Optional: adds subtle blur effect */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;        /* Prevents shrinking in flex containers */
}

.stages-icon {
  width: 56px;           /* Circle diameter */
  height: 56px;          /* Circle diameter */
  border-radius: 50%;    /* Creates perfect circle */
  background-color: rgba(255, 255, 255, 1);  /* Semi-transparent white */
  backdrop-filter: blur(8px);  /* Optional: adds subtle blur effect */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;        /* Prevents shrinking in flex containers */
}

/* end of icon styling */

/* rounded grey container for text highlight */
.text-badge {
  display: inline-block;
  background-color: rgba(128, 128, 128, 0.07);  /* Grey with transparency */
  padding: 8px 16px;                           /* Space around text */
  border-radius: 20px;                         /* Rounded corners */
}

/* end of highlight container */

/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto 40px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  animation: slide 18s infinite ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 10px;
}

.testimonial-content {
  background: #F7F8FA;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-logo {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-logo img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.testimonial-text {
  flex: 1;
}

.testimonial-text blockquote {
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
}

.testimonial-text blockquote p {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
  font-style: normal;
}

.testimonial-text footer {
  margin-top: 16px;
  font-style: normal;
}

.testimonial-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-text span {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #007AFF;
  width: 24px;
  border-radius: 4px;
}

/* Animation */
@keyframes slide {
  0%, 30% { transform: translateX(0); }
  33%, 63% { transform: translateX(-100%); }
  66%, 96% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-content {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }
  
  .testimonial-logo {
    width: 100px;
  }
  
  .testimonial-text blockquote p {
    font-size: 15px;
  }
}

.testimonial-content {
  background: #F7F8FA;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-logo {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-logo img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.testimonial-text {
  flex: 1;
}

.testimonial-text blockquote {
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
}

.testimonial-text blockquote p {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
  font-style: normal;
}

.testimonial-text footer {
  margin-top: 16px;
  font-style: normal;
}

.testimonial-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-text span {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* ========================================
   Utility Classes
   ======================================== */
/* Fix: slick-track overflow causing horizontal scroll on mobile */
.slick-track {
  overflow: hidden !important;
}

/* Fix: prevent horizontal scroll on mobile */
.body-wrapper {
  overflow-x: hidden !important;
}
}