

.hero .container h1{
  font-family: "Great Vibes",serif;
  /* font-weight: bold; */
  font-size: 3rem;
}

.hero .container p{
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 170px;
}

/* About us */

.welcome-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin: 100px 0;
} 

.welcome-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.welcome-section .content-card {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 30px 40px;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 14px 6px  rgba(0, 0, 0, 0.1);
}

.welcome-section .content-card h1 {
  color: #4a4a4a;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: normal;
}

.welcome-section .content-card p {
  color: #666;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
}

.welcome-section .content-card.read-more {
  display: inline-block;
  padding: 8px 20px;
  background-color: #9e9e9e;
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.welcome-section .content-card.read-more :hover {
  background-color: #858585;
} 

@media (max-width: 768px) {
  .welcome-section {
      height: 500px;
  }

  .welcome-section.content-card {
      padding: 20px;
      bottom: 30px;
  }

  .welcome-section.content-card h1 {
      font-size: 24px;
  }

  .welcome-section.content-card p {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .welcome-section {
      height: 400px;
  }

  .welcome-section.content-card {
      bottom: 20px;
      padding: 15px;
  }

  .welcome-section.content-card h1 {
      font-size: 20px;
      margin-bottom: 15px;
  }
}

/* why choose us */

.why-choose-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: #00A6E6;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-header h1 {
  color: #002B5B;
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.section-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #00A6E6;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.features-left, .features-right {
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-box {
  background-color: #03c4eb;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.feature-item i {
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
}

.feature-content h3 {
  color: #002B5B;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.feature-content p {
  color: #666;
  font-size: 14px;
}

/* Hover Effect on Entire Box */
.feature-item:hover .icon-box {
  background-color: white;
  border: 1px solid #03c4eb;
}

.feature-item:hover i {
  color: #03c4eb;
  transform: rotate(180deg);
}

.feature-item:hover h3 {
  color: #03c4eb;
}

.center-image {
  max-width: 300px;
  width: 100%;
}

.center-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .content-wrapper {
      flex-direction: column;
  }

  .features-left, .features-right {
      width: 100%;
  }

  .feature-item {
      margin-bottom: 30px;
  }

  .section-header h1 {
      font-size: 28px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
      padding: 15px;
  }

  .section-header h1 {
      font-size: 24px;
  }

  .feature-content h3 {
      font-size: 18px;
  }
}

/*  Feature-grid */


.head-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
}

.head-features h1 {

  text-align: center;

}

.feature-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin: 100px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  background-color: white;
  border-radius: 8px;

  padding: 20px;
}

.check-icon {
  color: #00A6E6;
  font-size: 40px;
  font-weight: bold;
  margin-right: 20px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  margin: 0;
  font-size: 1.5rem;
}

.feature-description {
  color: #555;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .feature-container {
    grid-template-columns: repeat(2, 1fr);
    margin: 50px;
  }
}

@media (max-width: 800px) {
  .feature-container {
    grid-template-columns: 1fr;
    margin: 20px;
  }

  .check-icon {
    font-size: 30px;
  }

  .feature-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 500px) {

  .head-features p {
    font-size: 0.8rem;
    margin-left: 20px;
    text-align: center;
  }

  .check-icon {
    font-size: 24px;
  }

  .feature-title {
    font-size: 0.9rem;
  }

  .feature-description {
    font-size: 0.7rem;
  }
}

