/* Color Palette */
:root {
  --primary-color: #2e8b57; /* Green */
  --accent-color: #ffcc00;  /* Yellow */
  --text-color: #555;       /* Muted grey for paragraphs */
  --heading-color: #222;    /* Darker grey for headings */
  --bg-light: #f9f9f9;      /* Light grey background */
  --highlight-color: rgba(255, 204, 0, 0.2); /* Subtle yellow highlight */
}

/* Basic Styling */
body {
  font-family: 'Inter', sans-serif;
  background-color: #e7e7e7;
  color: var(--text-color);
  margin: 0;
  line-height: 1.7;
}

.container-new {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.container-new:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Section Heading */
.section-heading {
  color: var(--accent-color);
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Headings */
h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 1.5rem;
  /* border-left: 4px solid var(--accent-color); */
  padding-left: 10px;
  /* background-color: var(--highlight-color); */
}

h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 600;
}

/* Paragraphs */
p {
  margin: 0.5rem 0;
  /* color: var(--text-color); */
  line-height: 1.6;
}

strong {
  font-weight: 600;
  color: var(--heading-color);
}

/* Lists */
ul {
  list-style: disc inside;
  margin: 1rem 0;
  padding-left: 1rem;
  /* background-color: var(--highlight-color); */
  border-radius: 8px;
}

li {
  margin-bottom: 0.5rem;
  padding: 5px 0;
}

/* Highlight containers on hover for better UX */
li:hover {
  background-color: rgba(252, 227, 130, 0.3);
  border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container-new {
    margin: 20px 10px;
    padding: 20px;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1rem;
  }
}

/* Section Spacing */
/* section {
  margin-bottom: 3rem;
} */

/* Add subtle divider between sections */
section:not(:last-child)::after {
  content: "";
  display: block;
  margin: 2rem auto;
  width: 60%;
  height: 2px;
  background: var(--accent-color);
  opacity: 0.2;
}

.two-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.two-columns > div {
  flex: 1 1 45%;
  min-width: 250px;
}

@media (max-width: 768px) {
  .two-columns {
    flex-direction: column;
  }
}
hr {
  border: none;
  border-top: 2px dotted var(--accent-color);;
  margin: 0.5rem 0;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.icon-list li {
  margin-bottom: 1rem;
  /* display: flex; */
  /* align-items: flex-start; */
}

.icon-list i {
  color: var(--primary-color);
  margin-right: 10px;
  min-width: 20px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* *************newly added************ */

.expertise-section {
  padding: 40px 0;
  background-color: var(--bg-light);
}

.expertise-box {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 30px;
  /* background: var(--highlight-color); */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.expertise-box:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.expertise-section .section-heading {
  color: var(--accent-color);
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.expertise-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.expertise-card {
  flex: 1 1 30%;
  min-width: 280px;
  background-color: rgba(240, 233, 209, 0.2);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.expertise-card:hover {
  background-color: var(--highlight-color);
 
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.expertise-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  /* display: flex; */
  text-align: center;
  align-items: center;
  gap: 8px;
  justify-content: center; /* Optional: center icon + heading horizontally */
}

.expertise-card p {
  text-align: justify;
  color: var(--text-color);
}

.center-last {
  margin-left: auto;
  margin-right: auto;
}

    .expertise-card h3 i {
        font-size: 1.2em;
        margin-right: 10px;
        color: #28a745; /* Green tone */
        animation: pulse-glow 2s infinite;
    }

    @keyframes pulse-glow {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.1); opacity: 0.8; }
        100% { transform: scale(1); opacity: 1; }
    }
