/* Expertise Section */
.expertise-section {
  position: relative;
  background: url('assets/images/expertiseimage.png') no-repeat center center;
  background-size: cover;
 
  padding: 140px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.expertise-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.left h2 {
  font-size: 48px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.left h2 span {
  color: #9a9162; /* Accent color for highlighted text */
  
}

.divider {
  width: 2px;
  height: 120px;
  background-color: #9a9162; /* Accent color for divider */
  margin-top: 20px;
}

.right p {
  max-width: 500px;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0; /* Lighter gray for better contrast on dark background */
}

.container {
  color: #fff; /* White text for consistency */
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff; /* White background for contrast */
}

.why-choose-us h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e2e45; /* Dark blue for headings */
}

.why-choose-us .container {
  max-width: 1240px;
  margin: 0 auto;
}

.why-choose-us ul {
  display: flex;
  justify-content: center;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-us li {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.why-choose-us li img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}

.why-choose-us li h2 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #1e2e45; /* Dark blue for headings */
}

.why-choose-us li p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333; /* Dark gray for readability */
}

/* Fields of Expertise Section */
.fields-of-expertise {
  background-color: #1e2e45; /* Dark blue background */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.fields-of-expertise .container {
  max-width: 900px;
  margin: 0 auto;
}

.fields-of-expertise .title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.fields-of-expertise .title-line span {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #9a9162; /* Accent color for lines */
}

.fields-of-expertise h2 {
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin: 0;
  font-family: Constantia, serif;
  color: #fff;
}

.fields-of-expertise h3 {
  font-size: 0.9rem;
  color: #9a9162; /* Accent color for subheadings */
  letter-spacing: 2px;
  margin: 20px 0;
}

.fields-of-expertise p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0; /* Lighter gray for readability */
}

/* Expansion Grid */
.expansion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px;
  background-color: #fff; /* White background for contrast */
}

.expansion-card {
  flex: 1 1 calc(50% - 30px);
  max-width: calc(50% - 30px);
  border: 1px solid #9a9162; /* Accent color for borders */
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0.2s;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.expansion-card.active {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-color: #9a9162; /* Accent color for active state */
}

.expansion-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.expansion-left {
  flex: 1;
  min-width: 260px;
}

.expansion-right {
  flex: 1;
  min-width: 260px;
}

.expansion-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.expansion-number {
  width: 40px;
  height: 40px;
  color: #1e2e45; /* Dark blue for text */
  border: 1px solid #9a9162; /* Accent color for border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 12px;
}

.expansion-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e2e45; /* Dark blue for titles */
}

.expansion-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.expansion-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expansion-tag {
  display: inline-flex;
  align-items: center;
  background-color: #f3f3f3;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 14px;
  color: #1e2e45; /* Dark blue for text */
}

.expansion-tag::before {
  content: "✓";
  color: #9a9162; /* Accent color for checkmark */
  margin-right: 8px;
}

@media (max-width: 768px) {
  .expansion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .expansion-container {
    flex-direction: column;
  }
}

