* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans 3";
}

body {
  background: #fff;
  color: #222;
}

.services-header {
  padding: 40px 80px 20px;
}

.services-header h1 {
  font-size: 42px;
  font-weight: 700;
}

.services-header h1 span {
  color: #CD684A;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 14px;
  color:#243A5E;
}

.breadcrumb span {
  color: #CD684A;
}

.breadcrumb a{
  color: #243A5E;
  text-decoration:none;
}

.underline{
  display: block;
  margin-top: 7px;
  width: 120px;
  height: 2px;
  background:#243A5E; 
}

/* HERO */
.services-hero {
  padding: 0 80px;
}

.services-hero img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.services-title {
  text-align: center;
  margin: 60px 0 40px;
}

.services-title small {
  color: #CD684A;
  letter-spacing: 1px;
}

.services-title h2 {
  font-size: 32px;
  margin-top: 12px;
}

.service-underline{
  display: block;
  width: 140px;
  height: 2.5px;
  background: #243a5e;
  margin: 2px auto 20px auto; 
}

.services-title h2 span {
  color: #243A5E;
}

/* Cards */
.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 100px 100px;
}

.service-card {
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card {
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-box {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 250px;
}

.service-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card h3 {
  margin-top: 14px;
  font-size: 18px;
  color: #222;
}

.service-card:hover .service-box {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-header,
  .services-hero,
  .services-cards {
    padding: 20px;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.arrow {
  cursor: pointer;
  font-size: 12px;
  user-select: none;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  z-index: 1000;
}

.dropdown-item {
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
}

.dropdown-item:hover {
  background: #f4f6fb;
}

/* dropdown */
.dropdown-menu.show {
  display: block;
}

/* Why choose us */
.why-choose-us {
  background: #223a5e;
  padding: 80px 60px;
  color: #fff;
}


.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 4px;
}

.why-left h2 {
  font-size: 36px;
  line-height: 1.3;
}

.underline-text {
  position: relative;
}

.why-desc {
  margin: 24px 0;
  line-height: 1.7;
  color: #e3e8ef;
}

.know-more-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  color: #223a5e;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
}

/* right */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  position: relative;
  background: #fff;
  color: #222;
  display: flex;
  align-items: center;
  padding: 22px 26px 22px 80px;
  border-radius: 18px;
}

/* half circle */
.feature-card::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 50%;
  transform: translateY(-50%);
  width: 88px;
  height: 88px;
  background: #fff;
  border-radius: 50%;
}

/* icons */
.feature-icon {
  position: absolute;
  left: -22px;
  width: 44px;
  height: 44px;
  /* background: #f47b52; */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.feature-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 28px;
  }
}

.why-left small {
  color: #f47b52;
  letter-spacing: 1px;
}

.why-left h2 span {
  color: #f47b52;
}

.why-left p {
  margin: 20px 0;
  line-height: 1.6;
}


/* Stats */
.stats {
  background: #fff;
  padding: 40px 30px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 180px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}


/* Stats card */
.stat-box {
  background: #CD684A;         
  padding: 24px 28px;
  border-radius: 10px;
  text-align: center;
  max-width: 180px;
}

.stat-box h3 {
  color: #fff;               
  font-size: 28px;
  margin: 0;
  font-weight: 600;
}

.stat-box p {
  font-size: 12px;
  color: #555;                 
  opacity: 0.9;
}


.consultation {
  padding: 60px 60px;
  background: #fff;
}

.consultation-container {
  max-width: 1360px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.consultation-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 18px;
}

/* left card */
.consultation-card {
  background: #f1f3f5;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 56px;
  min-height: 580px;
}

.consultation-text {
  text-align: center;
  max-width: 520px;
}

/* next step*/
.section-labels {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #243A5E;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-labels::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  background: #223a5e;
  margin: 8px auto 0;
}

.consultation-text h2 {
  font-size: 32px;
  line-height: 1.35;
  margin-bottom: 18px;
  color: #222;
}

/* content*/
.consultation-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.consultation-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn-primary {
  background: #223a5e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid #223a5e;
  background: #fff;
  color: #223a5e;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-container,
  .consultation-container {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .feature-card {
    padding-left: 60px;
  }

  .feature-card::before {
    width: 64px;
    height: 64px;
    left: -32px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    left: -22px;
  }
}
