
.about-section {
  display: flex;
  flex-wrap: wrap; /* Stack on smaller screens */
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px; /* Space between image and text */
}

/* Image column */
.about-left {
  flex: 1 1 40%;
  text-align: center;
}

.illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Content column */
.about-right {
  flex: 1 1 50%;
}

.section-label {
  color: #FF4D00;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.main-title {
  font-size: 2.5rem;
  color: #1E3A8A;
  margin: 15px 0 25px;
}
.s-title {
  font-size: 2.0rem;
  color:#FEBE10;
  margin: 15px 0 25px;
}
p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.intro {
  font-weight: bold;
}

.contact-btn {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #FEBE10;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-btn span {
  font-weight: bold;
  margin-left: 10px;
}

.contact-btn:hover {
  background-color: #0b2953;
}

/* Responsive layout */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-right, .about-left {
    flex: 1 1 100%;
  }

  .main-title {
    font-size: 2rem;
  }
}

/* core values */
.core-values-section {
  background-color: #f9fbfd;
  padding: 60px 30px;
  text-align: center;
}

.core-values-header .highlight {
  color: #f9b000;
  background-color: #f9fbfd;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.core-values-header h2 {
  font-size: 2.5rem;
  color: #2d2d2d;
  margin: 10px 0;
}

.core-values-header .subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 40px;
}

.values-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.value-card {
  background-color: white;
  width: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.badge {
  display: inline-block;
  background-color: #e8f0ff;
  color: #2b55d4;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
}

/* core values ended */


/* team */
.team-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.team-heading {
  font-size: 2.5rem;
  color: #1d2b5f;
  margin-bottom: 10px;
}

.team-subheading {
  color: #5f5f5f;
  font-size: 1rem;
  margin-bottom: 50px;
}

.team-container {
  display: flex;
  flex-wrap: nowrap;           /* Prevent wrapping */
  overflow-x: auto;            /* Enable horizontal scroll */
  gap: 40px;
  justify-content: flex-start; /* Align items to the start */
  padding: 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;     /* Smooth scrolling */
}

.team-card {
  flex: 0 0 auto;               /* Maintain fixed width */
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  scroll-snap-align: start;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.team-name {
  color: #1447e6;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.team-role {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.team-socials a {
  margin: 0 6px;
  color: #1447e6;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.team-socials a:hover {
  color: #0d2ab4;
}

/* Swipe hint text */
.swipe-hint {
  font-size: 0.8rem;
  color: #999;
  margin-top: -30px;
  margin-bottom: 30px;
  display: block;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .team-section {
    padding: 40px 10px;
  }

  .team-heading {
    font-size: 2rem;
  }

  .team-subheading {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .team-container {
    padding: 10px;
    gap: 20px;
  }

  .team-card {
    width: 200px;
    padding: 20px 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  }

  .team-photo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .team-name {
    font-size: 1rem;
  }

  .team-role {
    font-size: 0.85rem;
  }

  .team-socials a {
    font-size: 1rem;
  }
}
/* team ended */


/* clients */
.clients-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.clients-heading {
  font-size: 2.5rem;
  color: #1d2b5f;
  margin-bottom: 10px;
}

.clients-subheading {
  color: #5f5f5f;
  font-size: 1rem;
  margin-bottom: 40px;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
}

.client-logo {
  flex: 0 1 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.05);
}

.client-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .clients-heading {
    font-size: 2rem;
  }

  .clients-subheading {
    font-size: 0.95rem;
  }

  .client-logo {
    flex: 0 1 100px;
  }
}
/* clients ended */
