/* =========================================
   Reset & Base Styles
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* =========================================
   Container
========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   Header Banner
========================================= */
.top-banner {
  background-color: #7edfc6;
  padding: 80px 0 60px;
  text-align: center;
  margin-top: -40px;
}

.top-banner h1 {
  font-size: 3.3rem;
  font-weight: 900;
  color: #0b1221;
  margin-bottom: 15px;
}

.breadcrumb {
  font-size: 1.2rem;
  color: #0b1221;
}

.breadcrumb a {
  color: #0b1221;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #f7a323;
}

.breadcrumb span {
  margin: 0 10px;
}

/* =========================================
   Welcome Section
========================================= */
.welcome-section {
  padding: 80px 0;
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.welcome-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1221;
  margin-bottom: 15px;
}

.experience-badge {
  display: inline-block;
  background-color: #f7a323;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}

.welcome-text p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.welcome-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  align-items: center;
}

.welcome-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   Stats Section
========================================= */
.stats-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.stat-card:nth-child(1) .stat-icon {
  background-color: #0b1221;
}

.stat-card:nth-child(2) .stat-icon {
  background-color: #f7a323;
}

.stat-card:nth-child(3) .stat-icon {
  background-color: #64d3c2;
}

.stat-card:nth-child(4) .stat-icon {
  background-color: #ff6b6b;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1221;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

/* =========================================
   Company Strength Section
========================================= */
.strength-section {
  padding: 80px 0;
}

.strength-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.strength-text-content {
  display: flex;
  flex-direction: column;
}

.strength-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1221;
  margin-bottom: 20px;
}

.strength-title span {
  color: #64d3c2;
}

.strength-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Features */
.strength-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #e8f9f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64d3c2;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.2rem;
  color: #0b1221;
  margin-bottom: 5px;
}

.feature-text p {
  color: #555;
  font-size: 0.95rem;
}

/* CEO Signature */
.ceo-signature {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.ceo-name {
  font-weight: 600;
  color: #0b1221;
  margin-bottom: 5px;
}

.ceo-title {
  color: #64d3c2;
  font-size: 0.9rem;
}

/* Image Column */
.strength-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  align-items: center;
}

.strength-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Callback Section
========================================= */
.callback-section {
  background-color: #dbdee1;
  padding: 80px 0;
  text-align: center;
}

.callback-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b1221;
  margin-bottom: 20px;
}

.callback-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-quote-btn {
  background-color: #0b1221;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.about-quote-btn:hover {
  background-color: #f7a323;
  transform: translateY(-3px);
}

/* =========================================
   FAQ Section
========================================= */
.faq-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1221;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background-color: #fff;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0b1221;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-answer {
  background-color: #f9f9f9;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 992px) {
  .welcome-content,
  .strength-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-banner {
    padding: 60px 0 40px;
  }

  .top-banner h1 {
    font-size: 2.5rem;
  }

  .welcome-section,
  .stats-section,
  .strength-section,
  .callback-section,
  .faq-section {
    padding: 60px 0;
  }

  .welcome-text h2 {
    font-size: 2rem;
  }

  .strength-title,
  .section-title {
    font-size: 2rem;
  }

  .callback-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .top-banner h1 {
    font-size: 2rem;
  }

  .welcome-text h2,
  .strength-title,
  .section-title {
    font-size: 1.8rem;
  }

  .callback-title {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
