.header-section {
  text-align: center;
  margin-bottom: 50px;
}

.main-heading {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 20px;
  font-weight: 400;
}

.main-description {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* .content-wrapper {
  display: grid;
  padding: 0px 20px;
  grid-template-columns: 500px 1fr;
  gap: 32px;
  align-items: start;
} */

.service-item {
  padding: 10px;
  margin-bottom: 2px;
  cursor: pointer;
  transition: all 0.1s ease;
  border-bottom: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d9d9d9;
  font-size: 1.2rem;
}

.service-item:hover {
  border-color: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-item.active {
  /* color: var(--color-primary); */
  border-color: var(--color-primary);
  font-weight: 600;

  background: linear-gradient(135deg, var(--primary-blue), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* display: inline-block; */
}

.arrow {
  color: #cbd5e0;
  font-size: 1.5rem;
  transition: 0.3s;
}

.service-item.active .arrow {
  color: var(--color-primary);
}

.content-area {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 40px;
  min-height: 400px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.content-detail {
  display: none;
  animation: fadeIn 0.4s ease-in;
}

.content-detail.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-detail h3 {
  font-size: 1.6rem;
  color: #2d3748;
  margin-bottom: 20px;
}

.content-detail p {
  font-size: 1rem;
  font-weight: 600;
  color: #22262e;
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: #2d3748;

  display: flex;
  align-items: center;
  gap: 16px;
}

/* .feature-list li::before {
  content: '→';
  color: #f56e3f;
  color: #f56e3f;
  font-weight: 600;
} */










.stats-section-two {
  max-width: 1200px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 80px 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.stats-header-two {
  text-align: center;
  margin-bottom: 20px;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4A9EFF 0%, #2D7FDB 100%);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover::after {
  opacity: 1;
}

.stat-number-two {

  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #333333, #a1a1a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label-two {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #666666;
  font-weight: 500;
  line-height: 1.4;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
  margin: 4rem auto;
}

.divider-no-padding {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
  margin: auto;
}

.trust-badge {
  text-align: center;
  margin-top: 60px;
}

.trust-badge p {
  font-size: 14px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}














.seo-section {
  position: relative;
  width: 100%;
  background: #f5f5f5;
}

.section-header {
  text-align: center;
  padding: 80px 20px 40px;
  background: #fff;
}

.primary-heading {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.stats-text {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.8;
  color: #6a6a6a;
  max-width: 1000px;
  margin: 0 auto;
}

/* Grid Container - Full Width */
.images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

/* Image Card - Simple and Sleek */
.image-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16/10;
  border-radius: 16px;
  border: 2px solid rgb(198, 198, 198);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.video-info {
  padding: 32px;
}

.video-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.video-description {
  font-size: 16px;
  color: #5f6368;
  line-height: 1.5;
}

.video-player {
  width: 100%;
  height: 350px;
  background: #000;
  position: relative;
}










.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.3;
}
.component-title-highlight {
    color: #5478d1;
    /* font-weight: var(--font-weight-bold); */
    margin-bottom: 10px;
}
.section-header .highlight {
  color: #6366f1;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 40px 40px 0px 40px;
  flex: 1;
}

.company-logo.bgDark {
  background: #000;
  border-radius: 2px;
}


.company-logo {
  width: 10rem;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;

}

.statsBox {
  display: flex;
}

.statsNauthor {
  /* border: 1px solid #e2e8f0; */
  width: 100%;
}

.clients-section {
 padding:70px 10px;
  background: #f5f5f5;
}


.bold-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: #151921;
  margin-bottom: 10px;
}

.quote {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.4;
  /* margin-bottom: 30px; */
}

.card-bottom {
  display: flex;
  align-items: flex-end;
}

.author-info {
  padding: 0 0 0 40px;
  padding-bottom: 30px;
  flex: 1;
  display: flex;
  gap: 10px;
}
.watch-video {
    display: flex;
    align-items: center;
    padding: 2px 0 2px 15px;
    border: 1px solid #5478d1;
    border-radius: 8px;
    max-width: 137px;
    margin: 10px 0 0;
}
.watch-video img {
    max-width: 25px;
}
.author-details h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-details p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* .stats-details{
  display: flex;
  align-items: center;    
  justify-content: center;
  flex-direction: column;
} */

.stats-details h4 {
  font-size: 2.5rem;
  color: #5478d1;
  font-weight: 800;
  margin-bottom: 2px;
}

.stats-details p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3c414d;
}

.author-image-container {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  position: relative;
}

.author-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.875rem;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .card-content {
    /* padding: 30px; */
    padding: 25px 25px 0px 25px;
  }

  .author-info {
    padding-left: 30px;
    padding-bottom: 20px;
  }

  .author-image-container {
    width: 150px;
    height: 200px;
  }
}

















/* Mobile Responsive */
@media (max-width: 768px) {
  .section-header {
    padding: 60px 15px 30px;
  }

  .images-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .section-header {
    padding: 40px 10px 20px;
  }

  .image-card {
    aspect-ratio: 4/3;
  }
}
















/* Responsive Design */
@media (max-width: 968px) {
  .stats-section {
    padding: 60px 40px;
  }

  .stats-grid {
    gap: 30px;
  }


  .video-player {
    height: auto;
  }
}

@media (max-width: 640px) {
  .stats-section {
    padding: 40px 24px;
    border-radius: 16px;
  }


  .stats-grid {
    grid-template-columns: 2fr 2fr;
    gap: 5px;
  }

  .stat-number-two {
    font-size: 36px;
  }

  .stat-item {
    padding: 10px 8px;
  }

  .divider {
    margin: 40px 0 35px 0;
  }
}










@media (max-width: 968px) {
  .stats-details h4 {
    font-size: 1.5rem;
  }

  .content-area {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .services-container {
    padding: 40px 16px;
  }

  .content-area {
    padding: 24px;
  }

  .service-item {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
}