* {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
}

/* Hero section */

.hero-section {
  /* margin-top: 60px; */
  padding: 20px 100px;
  background-color: #001542;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  height: 60vh;
}

.left-section,
.right-section {
  width: 50%;
}

.left-section h1 {
  font-size: 38px;
}

.left-section p {
  margin: 25px 0;
}

.left-section a {
  background-color: #fff;
  color: #333;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 4px;
}

.right-section img {
  width: 500px;
  border-radius: 8px;
}

/* Hero Section Mobile Responsive  */
@media (max-width: 480px) {
  .hero-section {
    padding: 20px;
    flex-direction: column;
    height: auto;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .hero-section h1 {
    font-size: 24px;
  }

  .hero-section p {
    font-size: 14px;
  }

  .hero-section a {
    font-size: 14px;
    padding: 5px 15px;
  }

  .hero-section img {
    width: 340px;
  }
}

/* // // // */

.our-values {
  padding: 20px 100px;
  margin-top: 50px;
}

.values-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.values-header h3 {
  font-size: 32px;
  font-weight: 600;
}

.values-header p {
  font-size: 14px;
  color: #444;
}

.values-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.value-card {
  background-color: #fff;
  border-radius: 4px;
  border: 1x solid #ccc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  width: 250px;
  height: 200px;
  margin-top: 50px;
}

.value-card i {
  font-size: 28px;
  background-color: #001542;
  color: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  padding: 10px;
}

.value-card h4 {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}

.value-card p {
  font-size: 14px;
  color: #444;
}

/* Our values Mobile Responsive */
@media (max-width: 480px) {
  .our-values {
    padding: 20px;
  }

  .values-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .values-header h3 {
    font-size: 28px;
  }

  .values-cards {
    flex-direction: column;
  }

  .value-card {
    margin: 0;
  }
  .value-card i {
    font-size: 24px;
  }

  .value-card h4 {
    font-size: 16px;
  }
}

/* // // // */

.story-section {
  padding: 20px 100px;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 50px;
  background-color: #b4b3b3;
  margin-top: 100px;
}

.left-story-images,
.right-story-section {
  width: 50%;
  margin-top: 100px;
}

.left-story-images .second-image {
  width: 300px;
  border-radius: 4px;
  position: relative;
  top: -150px;
  left: 220px;
}

.left-story-images .main-image {
  width: 500px;
  border-radius: 8px;
}

.right-story-section h4 {
  font-size: 28px;
  font-weight: 600;
}

.right-story-section p {
  color: #444;
  margin-bottom: 20px;
}

.right-story-section a {
  background-color: #001542;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
}

/* story section Mobile Responsive */
@media (max-width: 480px) {
  .story-section {
    padding: 20px;
    flex-direction: column;
  }

  .left-story-images,
  .right-story-section {
    width: 100%;
    /* margin-top: 100px; */
  }

  .left-story-images .second-image {
    width: 180px;
    top: -50px;
    left: 160px;
  }

  .left-story-images .main-image {
    width: 330px;
  }

  .right-story-section {
    margin-top: -40px;
  }

  .right-story-section p {
    font-size: 14px;
  }

  .right-story-section a {
    font-size: 14px;
  }
}

/* // // // */
.who-we-are-section {
  padding: 20px 100px;
  margin-top: 100px;
}

.who-we-are-header {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  margin-bottom: 60px;
}

.who-we-are-header h3 {
  font-size: 32px;
  font-weight: 600;
}

.who-we-are-header p {
  font-size: 14px;
  color: #444;
}

.who-we-are-content {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 50px;
}

.who-we-left-side img {
  width: 500px;
  border-radius: 8px;
}

.who-we-are-content .award-box {
  background-color: #001542;
  color: #fff;
  width: fit-content;
  padding: 20px;
  border-radius: 4px;
  position: relative;
  top: -100px;
  left: 300px;
}

.award-box i {
  font-size: 24px;
}

.award-box h4 {
  font-weight: 600;
  font-size: 16px;
}

.award-box p {
  font-size: 14px;
}

.who-we-right-side .passion,
.favourite,
.award {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
}

.who-we-are-content .passion i,
.favourite i,
.award i {
  font-size: 22px;
  background-color: #001542;
  color: #fff;
  padding: 10px;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.who-we-right-side .passion h4,
.favourite h4,
.award h4 {
  font-size: 18px;
  font-weight: 600;
}

.who-we-right-side .passion p,
.favourite p,
.award p {
  font-size: 14px;
  color: #444;
}

/* who we are Mobile Responsive  */
@media (max-width: 480px) {
  .who-we-are-section {
    padding: 20px;
  }

  .who-we-are-header {
    text-align: center;
  }

  .who-we-are-header h3 {
    font-size: 28px;
  }

  .who-we-left-side img {
    width: 330px;
  }

  .who-we-are-content .award-box {
    top: -50px;
    left: 160px;
  }

  .who-we-are-content {
    flex-direction: column;
    /* margin-top: -200px; */
  }

  .who-we-are-content .passion i,
  .favourite i,
  .award i {
    font-size: 18px;
    width: 15px;
    height: 15px;
  }

  .who-we-right-side .passion h4,
  .favourite h4,
  .award h4 {
    font-size: 16px;
  }

  .who-we-right-side {
    margin-top: -30px;
  }
}

/* // // // */

.team-section {
  padding: 20px 100px;
  margin-top: 100px;
}

.team-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: -40px;
}

.team-header h3 {
  font-size: 32px;
  font-weight: 600;
}

.team-header p {
  font-size: 14px;
  color: #444;
}

.team-cards {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.team-card {
  width: 350px;
}

.team-card .team-image img {
  width: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
}

.team-image .experiance {
  background-color: #001542;
  color: #fff;
  width: fit-content;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  position: relative;
  top: -200px;
  left: 190px;
}

.team-info {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0 0 8px 8px;
  padding: 20px;
  margin-top: -30px;
  box-sizing: border-box;
}

.team-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-info p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.team-info .passion {
  margin-bottom: 10px;
}

.team-info h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.specialist {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 10px;
}

.specialist p {
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 12px;
}

/* Team Section Mobile Responsive */
@media (max-width: 480px) {
  .team-section {
    padding: 20px;
  }

  .team-header {
    text-align: center;
  }

  .team-header h3 {
    font-size: 28px;
  }

  .team-cards {
    flex-direction: column;
    /* padding: 50px; */
  }

  .team-card {
    width: 330px;
  }

  .team-image .experiance {
    left: 220px;
  }

  .specialist p {
    padding: 5px 7px;
  }
}

/* // // // */
.testimonial-section {
  padding: 20px 100px;
  margin-top: 100px;
  overflow: hidden;
  position: relative;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial-header h3 {
  font-size: 32px;
  font-weight: 600;
}

.testimonial-header p {
  font-size: 14px;
  color: #444;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  transition: transform 0.5s ease;
  margin-top: 50px;
}

.testimonial-card {
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.rating i {
  color: #ffb30d;
  font-size: 18px;
}

.testimonial {
  color: #333;
  margin: 15px 0;
}

.client {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.client-info {
  margin-right: 40px;
}

.client-info h5 {
  font-size: 14px;
  font-weight: 500;
}

.client-info p {
  font-size: 12px;
}

.testimonial-icons i {
  background-color: #fff;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: 28px;
  border-radius: 50%;
}

.uil-angle-left {
  position: relative;
  top: 220px;
  left: -50px;
  z-index: 999;
}

.uil-angle-right {
  position: relative;
  top: 190px;
  left: 1200px;
  z-index: 999;
}

/* testimonails section responsive */
@media (max-width: 480px) {
  .testimonial-section {
    padding: 20px;
  }

  .testimonial-header {
    text-align: center;
  }

  .testimonial-header h3 {
    font-size: 28px;
  }

  .testimonial-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .testimonial-card {
    min-width: 75%;
  }

  .testimonial-card .client {
    justify-content: start;
    gap: 20px;
  }
}

/* // // // */

.contact-info-section {
  padding: 20px 100px;
  margin-top: 150px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-header h3 {
  font-size: 32px;
  font-weight: 600;
}

.contact-header p {
  font-size: 14px;
  color: #444;
}

.contact-info-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 70px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.contact-right,
.contact-left {
  width: 50%;
}

.contact-left h4 {
  font-size: 24px;
  font-weight: 600;
}

.address-box,
.phone-box,
.envelope-box,
.time-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.address-box {
  margin-top: 30px;
}

.address-box i,
.phone-box i,
.envelope-box i,
.time-box i {
  font-size: 16px;
  background-color: #001542;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
}

.address-box h5,
.phone-box h5,
.envelope-box h5,
.time-box h5 {
  font-size: 14px;
  font-weight: 600;
}

.address-box p,
.phone-box p,
.envelope-box p,
.time-box p {
  font-size: 14px;
  color: #444;
}

.envelope-box a {
  text-decoration: none;
  font-size: 14px;
  color: #444;
}
.transportation {
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 80%;
  padding: 10px 0 0 10px;
  margin-bottom: 20px;
}

.transportation-title {
  font-size: 16px;
  font-weight: 600;
}

.transportation-list {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
  margin-bottom: 30px;
}

.transportation-list p {
  font-size: 14px;
  color: #444;
}

.appoinment-btn {
  background-color: #001542;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 4px;
}

.contact-right img {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.find-us-box {
  position: relative;
  top: -150px;
  left: 5px;
  z-index: 99;
  background-color: #fff;
  border: 1px solid #ccc;
  width: fit-content;
  padding: 10px;
  border-radius: 8px;
}

.find-us-box i {
  color: #001542;
  font-size: 24px;
}

.find-us-box h4 {
  font-size: 16px;
  font-weight: 600;
}

.find-us-box p {
  color: #333;
  font-size: 14px;
  margin-bottom: 20px;
}

.find-us-box a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 14px;
}

/* contact info Mobile Responsive */
@media (max-width: 480px) {
  .contact-info-section {
    padding: 20px;
  }

  .contact-header {
    text-align: center;
  }

  .contact-header h3 {
    font-size: 28px;
  }

  .contact-info-content {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left h4 {
    font-size: 20px;
  }

  .transportation {
    width: 90%;
  }

  .appoinment-btn {
    padding: 5px 15px;
  }

  .contact-right img {
    width: 330px;
    height: 400px;
  }

  .find-us-box {
    width: 280px;
    left: 15px;
    top: -160px;
    /* top: 10px; */
  }
}

/* // // // */
