* {
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
}

/* == Header Start == */
nav {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100vw;
  padding: 0 100px;
  position: fixed;
  top: 0;
  z-index: 999;
  box-sizing: border-box;
}

nav .site-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 20px;
}

.site-logo img {
  width: 40px;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-left: 300px;
}

ul li {
  list-style: none;
}

ul li a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}

ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #001542;
  transition: width 0.3s ease;
}

ul li a:hover {
  color: #001542;
}

ul li a:hover::after {
  width: 100%;
}

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.search-icon i {
  font-size: 20px;
  cursor: pointer;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 200px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: #001542;
  padding: 50px;
  height: 25px;
  width: 500px;
  border-radius: 4px;
}

.search-bar input {
  outline: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 75%;
  height: 50px;
  font-size: 14px;
  padding: 0 10px;
  margin-right: 5px;
}

.search-bar .uil-times {
  position: absolute;
  bottom: 90px;
  left: 560px;
  font-size: 14px;
  padding: 0 3px;
}

.search-bar i {
  background-color: #fff;
  padding: 10px;
  border-radius: 4px;
}

nav .site-btn button {
  background-color: #001542;
  color: #fff;
  padding: 7px 25px;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
}

.booking-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 40px;
  width: 450px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid #e0e0e0;
  display: none;
  z-index: 200;
  transition: all 0.3s ease-in-out;
}

.booking-box i {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.booking-box i:hover {
  transform: rotate(90deg);
  color: #001542;
}

.booking-box h4 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.booking-box p {
  font-size: 14px;
  text-align: center;
  color: #555;
  margin-bottom: 25px;
}

.booking-box form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.booking-box .inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.booking-box input[type="text"],
.booking-box input[type="email"],
.booking-box input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.booking-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  resize: none;
  font-size: 14px;
}

.gender-options {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  width: 100%;
}

.gender-option {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.gender-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  vertical-align: middle;
}

.booking-box .requirement-btn {
  background-color: #001542;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  nav {
    padding: 0 40px;
  }

  nav .site-logo a {
    font-size: 18px;
  }
  nav ul {
    margin-left: 100px;
  }

  nav ul li a {
    font-size: 14px;
  }

  nav .site-btn button {
    padding: 7px 15px;
  }

  .booking-box {
    top: 20%;
    left: 38%;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  nav {
    padding: 0 40px;
    width: 100%;
  }

  nav .site-logo a {
    font-size: 16px;
  }

  nav ul {
    margin-left: 50px;
    gap: 10px;
  }

  nav ul li a {
    font-size: 12px;
  }

  nav .site-btn button {
    padding: 5px 15px;
    font-size: 12px;
  }

  .booking-box {
    top: 20%;
    left: 30%;
    width: 350px;
    padding: 20px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  nav {
    padding: 20px;
    width: 100vw;
  }

  .site-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  nav .site-logo a {
    font-size: 16px;
  }

  .site-bar {
    position: absolute;
    right: 25px;
    font-size: 18px;
  }

  nav ul {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    background-color: #fff;
    height: 100vh;
    width: 100%;
    margin-top: 20px;
    position: absolute;
    top: 30px;
    right: 0;
    display: none;
  }

  nav ul li {
    position: relative;
    top: 20px;
    left: 20px;
    margin-bottom: 10px;
  }

  nav .site-btn button {
    position: absolute;
    top: 270px;
    left: 20px;
    display: none;
  }
  
  .search-bar {
    width: 315px;
    height: 40px;
    padding: 15px;
  }

  .search-bar input {
    height: 30px;
  }

  .search-bar i {
    padding: 6px;
    font-size: 14px;
  }

  .booking-box {
    top: 327px;
    left: 187px;
    width: 295px;
    padding: 20px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.25);
  }

  .booking-box h4 {
    font-size: 20px;
  }

  .booking-box .inputs {
    width: 100%;
  }

  .booking-box input[type="text"],
  .booking-box input[type="email"],
  .booking-box input[type="tel"] {
    width: 93%;
  }

  .booking-box textarea {
    width: 93%;
  }

  .booking-box .requirement-btn {
    width: 100%;
    margin-top: -30px;
  }
}

@media (min-width: 480px) {
  .site-bar {
    display: none;
  }
}
/* == Header End == */

/* == Hero Section Start == */
.hero-section {
  padding: 20px 100px;
  background-color: #001542;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  height: 60vh;
  margin-top: 60px;
}

.left-section,
.right-section {
  width: 50%;
}

.left-section h1 {
  font-size: 38px;
  font-weight: 600;
}

.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 Responsive ==  */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .hero-section {
    padding: 20px 40px;
    height: 40vh;
  }

  .right-section img {
    width: 400px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .hero-section {
    padding: 20px 40px;
    height: 50vh;
  }

  .right-section img {
    width: 350px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .hero-section {
    padding: 50px 20px;
    flex-direction: column;
    height: 80vh;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section p {
    font-size: 14px;
  }

  .hero-section a {
    font-size: 14px;
    padding: 5px 15px;
  }

  .hero-section img {
    width: 340px;
  }
}
/* == Hero Section End == */

/* == Our Values Section Start == */
.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 Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .our-values {
    padding: 20px 40px;
  }

  .value-card {
    height: 280px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .our-values {
    padding: 20px 40px;
  }

  .values-header {
    text-align: center;
  }

  .value-card {
    height: 300px;
  }

  .value-card h4 {
    font-size: 16px;
  }
}

/* == 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;
    height: 200px;
    width: 290px;
  }

  .value-card i {
    font-size: 24px;
  }

  .value-card h4 {
    font-size: 16px;
  }
}

/* == Our Values Section End == */

/* == Story Section Start == */
.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 Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .story-section {
    padding: 20px 40px;
    gap: 75px;
  }

  .left-story-images .main-image {
    width: 450px;
  }

  .left-story-images .second-image {
    width: 200px;
    top: -100px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .story-section {
    padding: 20px 40px;
    padding-bottom: 50px;
  }

  .left-story-images .main-image {
    width: 400px;
  }

  .left-story-images .second-image {
    width: 150px;
    top: -70px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .story-section {
    padding: 20px;
    flex-direction: column;
  }

  .left-story-images,
  .right-story-section {
    width: 100%;
  }

  .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;
  }
}

/* == Story Section End == */

/* == Who We Are Section Start == */
.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 Responsive ==  */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .who-we-are-section {
    padding: 20px 40px;
  }

  .who-we-are-header {
    text-align: center;
  }

  .who-we-left-side img {
    width: 400px;
  }

  .who-we-are-content .award-box {
    left: 250px;
  }

  .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;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .who-we-are-section {
    padding: 20px 40px;
  }
}

/* == 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;
  }

  .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;
  }
}
/* == Who We Are Section End == */

/* == Team Section Start == */
.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 Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .team-section {
    padding: 20px 40px;
  }

  .team-header {
    text-align: center;
  }

  .team-info {
    height: 380px;
  }

  .specialist {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .specialist p {
    padding: 5px 25px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .team-info {
    height: 420px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .team-section {
    padding: 20px;
  }

  .team-header {
    text-align: center;
  }

  .team-header h3 {
    font-size: 28px;
  }

  .team-info {
    height: 350px;
  }

  .team-cards {
    flex-direction: column;
  }

  .team-card {
    width: 330px;
  }

  .team-image .experiance {
    left: 220px;
  }

  .specialist {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .specialist p {
    padding: 5px 25px;
    text-align: start;
  }
}
/* == Team Section End == */

/* == Testimonial Section Start == */
.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;
  min-width: calc((100% - 60px) / 4);
  height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rating i {
  color: #ffb30d;
  font-size: 18px;
}

.testimonial {
  color: #333;
  margin: 15px 0;
}

.client {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.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;
}

/* == Testimonail Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .testimonial-section {
    padding: 20px 40px;
  }

  .testimonial-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .client {
    gap: 15px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 20px 40px;
  }

  .client {
    gap: 10px;
  }
}

/* == Mobile 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;
  }
}
/* == Testimonial Section End == */

/* == Contact Info Section Start == */
.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;
}

@media (max-width: 1024px) {
  .contact-info-section {
    padding: 20px 40px;
  }

  .address-box,
  .phone-box,
  .envelope-box,
  .time-box {
    gap: 20px;
  }

  .find-us-box {
    top: -160px;
    width: 368px;
  }
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 20px 40px;
  }

  .contact-header {
    text-align: center;
  }
}

/* contact info Mobile Responsive */
@media (max-width: 480px) {
  .contact-info-section {
    padding: 20px;
    margin-top: 50px;
    margin-bottom: -130px;
  }

  .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; */
  }
}

/* == Contact Info Section End == */

/* === */
.footer-section {
  background-color: #001542;
  padding: 50px 100px;
  display: flex;
  justify-content: space-around;
  align-items: start;
  gap: 40px;
  height: 40vh;
}

.footer-intro,
.footer-contact,
.footer-pages {
  width: 33.3%;
}

.footer-intro a {
  text-decoration: none;
}

.footer-section h5 {
  color: #fff;
  font-size: 18px;
}

.footer-intro p {
  color: #fff;
  font-size: 14px;
  margin: 10px 0 20px 0;
}

.footer-intro .social-icons {
  display: flex;
  gap: 5px;
}

.footer-intro .social-icons i {
  color: #001542;
  background-color: #ffb30d;
  padding: 5px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.footer-contact i {
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
}

.footer-contact a,
.time p {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: a 0.3s ease;
}

.footer-contact a:hover {
  color: #ffb30d;
}

.footer-call {
  margin-bottom: 10px;
}

.footer-pages ul li a {
  color: #fff;
  font-size: 14px;
  transition: a 0.3s ease;
}

.footer-pages ul li a:hover {
  color: #ffb30d;
  font-size: 14px;
}

.footer-pages ul,
.footer-contact .contacts {
  margin-top: 10px;
}

.copyright {
  background-color: #001542;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding-bottom: 20px;
}

/* == Footer Section Responsive == */

@media (min-width: 1024px) {
  .footer-section {
    width: 100vw;
  }
}

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .footer-section {
    height: 20vh;
  }

  .copyright {
    margin-top: -10px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .footer-section {
    height: 40vh;
  }

  .copyright {
    width: 100vw;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .footer-section {
    padding: 20px;
    flex-direction: column;
    height: auto;
  }

  .footer-intro,
  .footer-contact,
  .footer-pages {
    width: 100%;
  }
}
