a {
  text-decoration: none;
  color: #0077b6;
}
h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #003049;
}
p {
  margin-bottom: 15px;
}
.container {
  max-width: 1200px;
  /* padding: 0 20px; */
  margin: auto;
}

/* Hero Section */
.about-hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(to right, #e3f2fd, #cde7ff);
}
.about-hero h1 {
  font-size: 2.5rem;
  color: #0077b6;
}

/* About Intro */
.about-intro {
  /* display: flex; */
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 60px 0;
}
.about-intro .text,
.about-intro .image {
  flex: 1;
}
.about-intro .image img {
  width: 100%;
  border-radius: 10px;
}

/* Tabs Section */
.tabs {
  position: relative;
  margin-bottom: 20px;
}

.tab-buttons-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  border-bottom: 2px solid #ccc;
  max-width: 600px;
  margin: auto;
}

.tab-button {
  flex: 1;
  padding: 15px;
  border: none;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #333;
  position: relative;
  transition: color 0.3s;
}

.tab-button.active {
  color: #003049;
  font-weight: 600;
}

.tab-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background-color: #003049;
  transition: left 0.3s ease, width 0.3s ease;
}

.tab-content {
  display: none;
  text-align: center;
}

.tab-content.active {
  display: block;
  font-size: 1.1rem;
  padding: 10px 20px;
}


/* What Makes Us Different */
.difference-grid {
  padding: 60px 0;
  /* background: #f0f8ff; */
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 188, 212, 0.2);
}
.feature-box h3 i {
  margin-right: 8px;
  color: #00bcd4;
}

/* What We Do Best */
.what-we-do {
  padding: 60px 0;
}
.what-we-do ul {
  list-style: none;
  padding-left: 0;
}
.what-we-do li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}
.what-we-do li::before {
  content: '\f058';
  font-family: 'Poppins', 'Segoe UI', 'Roboto', sans-serif;
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #00bcd4;
}

@media (max-width: 1024px) {

  .tab-content.active p {
    font-size: 1rem !important;
}


h1, h2, h3, h4, h5, h6 {
  font-size: 1.5rem; /* 24px */
}

p, li, span, a {
  font-size: 1rem; /* 16px */
}


  .about-hero {
    padding: 80px 20px 50px;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-intro {
    flex-direction: row;
    gap: 30px;
  }

  .tab-buttons-wrapper {
    flex-direction: row;
    max-width: 600px;
  }

  .features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

 .about-intro, .tabs-section, .difference-grid, .what-we-do {
  padding: 20px 20px;
}

}