@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400..800&display=swap");
:target {
  scroll-margin-top: 100px;
}

.fancybox__container {
  z-index: 1999;
}

.fancybox__track,
.fancybox__content,
.carousel__track {
  direction: ltr !important;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background: #3A8F46;
  height: 300px;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Rubik", sans-serif;
}

a {
  text-decoration: none;
}

html[lang=ar] {
  direction: rtl;
}
html[lang=ar] input[type=email],
html[lang=ar] input[type=tel] {
  direction: rtl;
}

html[lang=en] {
  direction: ltr;
}
html[lang=en] main .car-section .swiper-button-prev::after, html[lang=en] main .car-section .swiper-button-next::after {
  transform: rotate(180deg);
}

body {
  background-color: #F9F9F9;
  overflow-x: hidden;
  position: relative;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button,
input,
textarea {
  border: none;
  outline: none;
  background: none;
}

.row {
  margin: 0;
  padding: 0;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  color: #2c3e50;
}
.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  margin: 10px auto 0;
}

.custom_btn {
  position: relative;
  padding: 10px 26px;
  border: none;
  border-radius: 30px;
  background-color: #3C61AD;
  color: #fff;
  font-weight: 600;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease;
}
.custom_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #2f4c87;
  transition: all 0.4s ease;
  border-radius: 30px;
  z-index: 0;
}
.custom_btn span {
  position: relative;
  z-index: 1;
}
.custom_btn:hover {
  color: #fff;
}
.custom_btn:hover::before {
  left: 0;
}

.preloader {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader .preloaderImg {
  width: 100px;
  height: 100px;
  -webkit-mask-image: url("../images/logo.png");
          mask-image: url("../images/logo.png");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .preloader .preloaderImg {
    width: 80px;
    height: 80px;
  }
}
.preloader .preloaderImg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  z-index: 2;
  background-color: #3C61AD;
  transform: translateY(100%);
  animation: slide-up 1.5s forwards;
}
@media screen and (max-width: 1024px) {
  .preloader .preloaderImg::after {
    width: 80px;
    height: 80px;
  }
}
.preloader .preloaderImg::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1) opacity(0.2);
}
@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

header {
  position: fixed;
  background-color: white;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  header {
    padding: 8px;
  }
}
header ul {
  margin-bottom: 0;
}
header nav {
  padding: 15px 0 !important;
  border-radius: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
header nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .logo img {
  height: 57px;
}
@media screen and (max-width: 768px) {
  header nav .logo img {
    height: 32px;
  }
}
header nav .nav_links {
  gap: 36px;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .nav_links a {
  color: black;
  font-size: 1.2rem;
  text-decoration: none;
}
header nav .nav_links a.active {
  right: -16px;
  color: #3C61AD;
}
header nav .nav_links a:hover {
  color: #3C61AD;
}
@media screen and (max-width: 768px) {
  header nav .nav_links {
    position: absolute;
    top: -16px;
    bottom: -16px;
    right: calc(-50% - 16px);
    height: calc(100vh + 16px);
    flex-direction: column;
    background: white;
    width: 50%;
    padding: 48px 32px;
    align-items: start;
    justify-content: start;
  }
  header nav .nav_links a {
    color: black;
  }
  header nav .nav_links.active {
    right: -16px;
    color: #3C61AD;
  }
}
header nav .actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
header nav .actions button {
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
}
header nav .actions .toggler {
  display: none;
  color: #3C61AD;
}
@media screen and (max-width: 768px) {
  header nav .actions .toggler {
    display: flex;
  }
}
header nav .actions .language-dropdown {
  position: relative;
}
header nav .actions .language-dropdown .lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}
header nav .actions .language-dropdown .lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  min-width: 120px;
  z-index: 10;
}
header nav .actions .language-dropdown .lang-menu li a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
header nav .actions .language-dropdown .lang-menu li a:hover {
  background: #f1f1f1;
}
header nav .actions .language-dropdown:hover .lang-menu {
  display: block;
}
header nav .actions .custom-user-dropdown {
  position: relative;
  display: inline-block;
}
header nav .actions .user-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin-top: 6px;
  display: none;
  min-width: 160px;
  z-index: 1000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
header nav .actions li a {
  display: block;
  padding: 10px 15px;
  color: #2c3e50;
  text-decoration: none;
}
header nav .actions li a:hover {
  background-color: #f8f9fa;
}
header nav .actions .user-menu.show {
  display: block;
}
header nav .actions .custom_btn {
  position: relative;
  padding: 10px 26px;
  border: none;
  border-radius: 30px;
  background-color: #3C61AD;
  color: #fff;
  font-weight: 600;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  header nav .actions .custom_btn {
    padding: 5px 20px;
  }
}
header nav .actions .custom_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #2f4c87;
  transition: all 0.4s ease;
  border-radius: 30px;
  z-index: 0;
}
header nav .actions .custom_btn span {
  position: relative;
  z-index: 1;
}
header nav .actions .custom_btn:hover {
  color: #fff;
}
header nav .actions .custom_btn:hover::before {
  left: 0;
}

.login-modal {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.login-modal a {
  color: #3C61AD;
}
.login-modal .modal-body {
  position: relative;
}
.login-modal .custom-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1056;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  padding: 0.5rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-modal .custom-close:hover {
  background-color: rgb(255, 255, 255);
  transform: scale(1.1);
}
.login-modal .custom-close::before {
  content: "×";
  font-size: 1.5rem;
  color: #000;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .login-modal .custom-close::before {
    color: white;
  }
}
@media screen and (max-width: 768px) {
  .login-modal .custom-close {
    background-color: rgba(65, 64, 64, 0.7);
    width: 1.5rem;
    height: 1.5rem;
  }
}
.login-modal .modal-image img.modal-image-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .login-modal .modal-title {
    text-align: center;
  }
}

.modal-view {
  display: none;
  padding: 10px;
}
.modal-view.active {
  display: block !important;
}

main .hero-section {
  position: relative;
}
main .hero-section .hero {
  position: relative;
  background: url("../images/hero.jpg") no-repeat center center/cover;
  height: 800px;
  overflow: hidden;
  color: white;
  text-align: center;
}
main .hero-section .hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
main .hero-section .hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
main .hero-section .hero .container .hero-content {
  margin-bottom: 60px;
}
main .hero-section .hero .container .hero-content .hero-title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  main .hero-section .hero .container .hero-content .hero-title {
    font-size: 30px;
  }
}
main .hero-section .hero .container .hero-content .hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  main .hero-section .hero .container .hero-content .hero-subtitle {
    font-size: 10px;
  }
}
main .hero-section .hero .container .hero-content .ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #3A8F46;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
main .hero-section .hero .container .hero-content .ui-btn::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  width: 120%;
  height: 0%;
  top: 0;
  left: -10%;
  transform: rotate(45deg);
  transition: all 0.4s ease;
}
main .hero-section .hero .container .hero-content .ui-btn:hover {
  background-color: #2e7038;
  color: white;
}
main .hero-section .hero .container .hero-content .ui-btn:hover::before {
  height: 300%;
}
main .hero-section .hero .container .hero-content .ui-btn i {
  font-size: 18px;
}
main .hero-section .wave-img {
  position: absolute;
  bottom: -21%;
  left: 0;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  main .hero-section .wave-img {
    bottom: -16%;
  }
}
@media screen and (min-width: 1620px) {
  main .hero-section .wave-img {
    bottom: -23%;
  }
}
main .hero-section .wave-img img {
  display: block;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  main .hero-section .wave-img img {
    height: 300px;
  }
}
@media screen and (min-width: 1650px) {
  main .hero-section .wave-img img {
    height: 450px;
  }
}
main .hero-section .location-wrapper {
  width: 330px;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
@media screen and (max-width: 768px) {
  main .hero-section .location-wrapper {
    width: 260px;
    top: 64%;
  }
}
main .hero-section .location-wrapper .marker-img {
  width: 100%;
  display: block;
}
main .hero-section .location-wrapper .marker-content {
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
}
main .hero-section .location-wrapper .marker-content .taxi-img {
  width: 220px;
}
@media screen and (max-width: 768px) {
  main .hero-section .location-wrapper .marker-content .taxi-img {
    width: 160px;
  }
}
main .about-section {
  padding: 60px 0 0 0;
}
@media screen and (max-width: 991px) {
  main .about-section {
    padding-top: 140px;
  }
}
main .about-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}
main .about-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  margin: 15px 0 25px;
  border-radius: 2px;
}
main .about-section .section-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}
main .about-section .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 500px;
}
main .about-section .features-grid .feature-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
main .about-section .features-grid .feature-card:hover {
  transform: translateY(-5px);
}
main .about-section .features-grid .feature-card .feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3498db;
  font-size: 1.3rem;
}
main .about-section .features-grid .feature-card .feature-content {
  display: flex;
  flex-direction: column;
}
main .about-section .features-grid .feature-card .feature-content .feature-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
}
main .about-section .features-grid .feature-card .feature-content .feature-text {
  font-size: 0.9rem;
  color: #7f8c8d;
}
main .about-section .image {
  position: relative;
  overflow: hidden;
  height: auto;
}
main .about-section .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
  margin-top: 30px;
}
main .about-section .image img:hover {
  transform: scale(1.03);
}
main .services-section {
  text-align: center;
  padding: 60px 0;
  background-color: #F9F9F9;
}
main .services-section .service-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
}
main .services-section h4 {
  color: black;
  font-size: 20px;
  margin-top: 20px;
}
main .services-section p {
  margin-top: 10px;
  color: gray;
}
main .services-section .service-card:hover {
  transform: translateY(-8px);
}
main .services-section .icon-circle {
  background-color: #f1f5f9;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
main .services-section .icon-circle img {
  max-width: 45px;
  max-height: 45px;
  z-index: 2;
}
main .services-section .icon-circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #3A8F46;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
main .services-section .service-card:hover .icon-circle::after {
  animation: waveEffect 1s ease-out forwards;
}
@keyframes waveEffect {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  70% {
    transform: scale(1.2);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
main .services-section .icon-circle img {
  max-width: 45px;
  max-height: 45px;
}
main .car-section {
  position: relative;
  background: url("../images/fleet-carousel-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  z-index: 1;
  text-align: center;
  padding: 60px 0;
}
main .car-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 28, 48, 0.836);
  z-index: -1;
}
main .car-section h2 {
  margin-bottom: 40px;
}
main .car-section .swiper-slide img {
  max-height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  main .car-section .swiper-slide img {
    max-height: 160px;
  }
}
main .car-section .custom-nav {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
main .car-section .custom-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
main .car-section .swiper-button-prev::after,
main .car-section .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}
main .car-section .swiper-button-next,
main .car-section .swiper-button-prev {
  position: static !important;
}
main .booking-section {
  background-image: url("../images/fleet-carousel-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  border-radius: 0 0 30px 30px;
}
main .booking-section input {
  cursor: pointer;
  width: 15px;
  height: 15px;
}
main .booking-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
  border-radius: 0 0 30px 30px;
}
main .booking-section .content {
  position: relative;
  z-index: 1;
}
main .booking-section .content h1 {
  margin-top: 40px;
}
main .booking-section .content h1 .truck-icon {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
}
main .booking-section .content .d-flex {
  gap: 20px;
}
main .booking-section .content .d-flex label {
  font-weight: bold;
  margin-right: 8px;
  cursor: pointer;
}
main .booking-form {
  padding: 30px;
  margin-top: 30px;
}
main .booking-form h3 {
  margin-bottom: 25px;
  color: #3A8F46;
}
main .booking-form form .row {
  margin-bottom: 20px;
}
main .booking-form form .row .col-md-6 label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
main .booking-form form .row .col-md-6 .form-select,
main .booking-form form .row .col-md-6 .form-control {
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 10px;
}
main .booking-form form .row .col-md-6 select option {
  padding: 10px;
  font-size: 15px;
  background-color: rgba(179, 191, 214, 0.2196078431);
}
main .booking-form form .row .col-md-6 select option:focus {
  background-color: rgba(106, 180, 110, 0.2196078431);
}
main .booking-form form .row .col-md-6 select option:hover {
  background-color: rgba(106, 180, 110, 0.5333333333);
}
main .booking-form form .later-fields {
  transition: all 0.3s ease;
}
main .booking-form form .later-fields input {
  margin-bottom: 18px;
}
main .booking-form form .custom_btn {
  margin-top: 10px;
}
main .map-box {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
main .testimonials {
  padding: 60px 0;
  text-align: center;
  background-color: white;
}
main .testimonials .swiper {
  padding: 20px 0 50px 0;
}
main .testimonials .swiper-slide {
  display: flex;
  justify-content: center;
}
main .testimonials .testimonial-card {
  position: relative;
  background-color: #F9F9F9;
  border-radius: 8px;
  padding: 25px 30px 30px;
  height: 100%;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
main .testimonials .testimonial-card:before {
  content: "“";
  font-family: "FontAwesome";
  font-size: 50px;
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.15;
}
main .testimonials .testimonial-card:after {
  content: "”";
  font-family: "FontAwesome";
  font-size: 50px;
  position: absolute;
  right: 20px;
  bottom: 0;
  opacity: 0.15;
}
main .testimonials .testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
main .testimonials .testimonial-card .author .client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #3C61AD;
  -o-object-fit: cover;
     object-fit: cover;
}
main .testimonials .testimonial-card .author .client-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
main .testimonials .testimonial-card .author .client-info span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: #666;
  margin-top: 5px;
}
main .testimonials .testimonial-card .message {
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
  text-align: right;
}
main .testimonials .testimonial-card .arrow {
  position: absolute;
  bottom: -12px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #F9F9F9;
}
main .testimonials .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 6px;
  background: #ccc;
  border-radius: 3px;
  opacity: 1;
  transition: all 0.3s ease;
}
main .testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 6px;
  background: #ccc;
  border-radius: 3px;
  opacity: 1;
  transition: all 0.3s ease;
}
main .testimonials .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: #3A8F46;
}
main .our-team-section {
  position: relative;
  padding: 60px 0;
  background-color: #F9F9F9;
}
main .our-team-section .swiper {
  padding: 50px 0px;
}
main .our-team-section .swiper-slide {
  height: auto;
}
main .our-team-section .swiper-button-next,
main .our-team-section .swiper-button-prev {
  color: #212F45;
}
main .our-team-section .swiper-pagination-bullet {
  background: #212F45;
  opacity: 0.5;
}
main .our-team-section .swiper-pagination-bullet-active {
  opacity: 1;
}
main .our-team-section .card-header-wrapper {
  position: relative;
  margin-bottom: -30px;
}
main .our-team-section .card-header-wrapper .card-header {
  background-color: #212F45;
  color: #fff;
  padding: 10px 30px 10px 70px;
  width: 100%;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  position: relative;
}
main .our-team-section .card-header-wrapper .card-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}
main .our-team-section .card-header-wrapper .card-header span {
  font-size: 13px;
  display: block;
  margin-top: 2px;
  opacity: 0.85;
}
main .our-team-section .card-header-wrapper .card-image {
  position: absolute;
  top: 0%;
  transform: translateY(-50%);
  left: 20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  background-color: #fff;
  z-index: 2;
}
main .our-team-section .card-header-wrapper .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .our-team-section .team-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 15px 0px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  min-height: 100%;
}
main .our-team-section .team-card .card-body p {
  font-size: 15px;
  color: #444;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  main .our-team-section .col-lg-3 {
    margin-bottom: 30px;
  }
}
main .contact-section {
  padding: 60px 0;
  background-color: #fff;
}
@media screen and (max-width: 992px) {
  main .contact-section {
    padding: 160px 0 60px 0;
  }
}
main .contact-section .contact_info span {
  color: #fff;
  background-color: #3C61AD;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
}
main .contact-section .contact_info h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
}
@media screen and (max-width: 576px) {
  main .contact-section .contact_info h2 {
    font-size: 28px;
  }
}
main .contact-section .contact_info .blocks {
  margin-top: 24px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
main .contact-section .contact_info .blocks .block {
  background-color: #F9F9F9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
main .contact-section .contact_info .blocks .block:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
main .contact-section .contact_info .blocks .block h6 {
  font-size: 16px;
  font-weight: 600;
  color: #00325a;
  margin-bottom: 10px;
}
main .contact-section .contact_info .blocks .block a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
main .contact-section .contact_info .blocks .block a:hover {
  color: #00325a;
}
main .contact-section .contact_info .blocks .block .socials {
  display: flex;
  gap: 16px;
}
main .contact-section .contact_info .blocks .block .socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #00325a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}
main .contact-section .contact_info .blocks .block .socials a:hover {
  background-color: #f8f9fa;
  color: #00325a;
  border: 1px solid #00325a;
}
main .contact-section form {
  background-color: #F9F9F9;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main .contact-section form .input_field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
main .contact-section form .input_field label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}
main .contact-section form .input_field input,
main .contact-section form .input_field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  resize: vertical;
}
main .contact-section form .input_field input:focus,
main .contact-section form .input_field textarea:focus {
  border-color: #3C61AD;
}
main .contact-section form button {
  border-radius: 10px;
}

footer {
  background-color: #212F45;
  color: white;
  padding: 50px 0;
}
footer .footer-logo {
  width: 150px;
  filter: brightness(0) invert(1);
}
footer h5 {
  color: #3A8F46;
  margin-bottom: 15px;
  font-weight: bold;
}
footer a {
  text-decoration: none;
}
footer p {
  font-size: 14px;
  line-height: 1.7;
}
footer ul {
  padding: 0;
  list-style: none;
}
footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
footer ul li i {
  margin-left: 8px;
  color: #3A8F46;
}
footer .footer-links a {
  color: white;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}
footer .footer-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 2px;
  width: 0;
  color: #3C61AD;
  transition: width 0.3s ease;
}
footer .footer-links a:hover {
  color: #3A8F46;
}
footer .footer-links a:hover::before {
  width: 100%;
}
footer .contact-info a {
  color: white;
}
footer .social-icons a {
  color: white;
  margin-left: 12px;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s, color 0.3s;
}
footer .social-icons a:hover {
  color: #3A8F46;
  transform: translateY(-3px);
}
footer hr {
  border-color: rgba(255, 255, 255, 0.363);
  margin: 30px 0;
}
footer .footer-bottom {
  font-size: 13px;
}
@media (max-width: 768px) {
  footer .footer-content {
    text-align: center;
  }
  footer .footer-content .footer-logo {
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */