@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,300;0,500;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --main-transition: 0.3s;

  --section-bachground: #ececec;
  --header-height: 3.5rem;
  --body-color: hsl(0, 0%, 100%);
  --z-fixed: 100;
  --title-color: hsl(140, 4%, 12%);
  --body-color: hsl(0, 0%, 100%);
  --font-semi-bold: 600;
  --main-padding-top: 60px;
  --main-padding-bottom: 60px;
  --section-background: #f4f4f9;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none !important;
}
input,
button {
  border: none;
  outline: none;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 786px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: box-shadow 0.4s, background-color 0.4s;
}

.nav {
  height: 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo,
.nav__toggle,
.nav__close {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.nav__logo {
  font-size: calc(var(--h3-font-size) * 16px);
  column-gap: 4px;
}

.nav__logo img {
  width: 110px;
}
.nav__toggle,
.nav__close {
  font-size: 20px;
  cursor: pointer;
}
.nav__list .nav__item .book {
  background-color: #ddd;
  padding: 10px 20px;
  border-radius: 15px;
  color: #042351;
  font-size: 16px;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: #042351;
    width: 100%;
    box-shadow: 0 2px 16px hsl(0, 0%, 0%, 0.1);
    padding-block: 30px;
    transition: top 0.4s;
  }
  .nav__logo img {
    width: 80px;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 40px;
  font-size: 15px;
}

.nav__link {
  color: #fff;
  font-weight: bold;
  transition: color 0.4s;
}

.nav__close {
  position: absolute;
  top: 16px;
  right: 24px;
}

/* Show menu */
.show-menu {
  top: 0;
}

/* Add shadow header */
.scroll-header {
  background-color: #163058;
}
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 32px);
    column-gap: 64px;
  }

  .nav__close,
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    margin-left: auto;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 64px;
    margin: 20px;
  }
}
/* =====home===== */
.home {
  position: relative;

  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #163058ab;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.home__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 0 20px;
  color: white;
}
.home__text {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
}
.home .home__title {
  padding: 30px 0;
}

.home__p {
  font-size: 40px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: bold;
}

.bt-home {
  background-color: #042351;
  color: #fff;
  font-size: 20px;
  padding: 15px 30px;
  border-radius: 15px;
  margin-top: 20px;
  transition: 0.2s;
}

.bt-home a {
  color: #fff !important;
  margin: auto 20px;
}

@media (max-width: 768px) {
  .home {
    height: 100%;
    padding: 100px 0;
  }
  .home__container {
    padding-top: 0;
    width: 100%;
  }
  .home .home__p {
    width: 100%;
    font-size: 22px;
    margin-top: 25px;
  }
  .home .home__text {
    font-size: 35px;
    margin-bottom: 5px;
  }
  .home .home__title {
    padding-top: 0;
    font-size: 18px;
  }
  .bt-home {
    font-size: 1.2rem;
    padding: 12px 20px;
  }
  .bt-home a {
    padding: 8px 15px;
    font-size: 20px;
    margin: auto 20px;
  }
  .nav__list .nav__item .book {
    position: absolute;
    width: 90%;
    bottom: 10px;
    left: 21px;
  }
  .nav__logo {
    padding-left: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .home {
    height: auto;
    padding: 100px 0;
  }
  .home__container {
    padding-top: 0;
  }
  .home .home__text {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .home .home__p {
    font-size: 25px;
  }
  .home .home__img {
    width: 400px;
    margin: 20px auto 0;
  }
  .nav__list .nav__item .book {
    position: absolute;
    width: 90%;
    bottom: 10px;
    left: 21px;
  }
  .home .home__img img {
    width: 100%;
    display: block;
    border-radius: 8px;
  }
  .home .home__title {
    padding: 0;
  }
}
/* ======icons===== */

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.logo-slide-track {
  display: flex;
  width: calc(250px * 10);
  gap: 30px;
  transition: transform 0.1s linear;
}

.logo-slide {
  width: 250px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  flex-shrink: 0;
  color: #333;
}

.logo-slider i {
  font-size: 3rem;
  margin-right: 10px;
}
.logo-slider span {
  font-size: 1.1rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  .logo-slide i,
  .logo-slide span {
    font-size: 18px;
  }
}
/* ====client===== */

.client {
  background-color: #ddd;
}

.card {
  background-color: #ffffff;
  border-radius: 1.5rem !important;
  box-shadow: 11px 17px 50px -16px rgba(0, 0, 0, 0.4);
  max-width: 80% !important;
  padding: 0 !important;
}
.client .container .row {
  margin-left: 75px !important;
}
.client-card {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.client-info {
  height: 80% !important;
  width: 100%;
}

.client-img {
  width: 50%;
  padding-left: 0 !important ;
  /* border-radius: 1.5rem 0 0 1.5rem; */
}

.card-title {
  font-size: 1.8rem;
  font-weight: 600;
}
.client-info {
  padding: 10px !important;
}
.client__p {
  font-size: 1.2rem;
}

.img-fluid {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .card {
    margin: 0 auto !important;
    border-radius: 1rem;
    box-shadow: 8px 12px 30px -10px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .client .container .row {
    margin-left: 35px !important;
  }
  .card-title {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .client__p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .img-fluid {
    width: 100%;
    height: auto;
    border-radius: 1rem 1rem 0 0;
    margin-bottom: 1rem;
  }

  .client .container .card {
    padding: 0 !important;
  }

  .client .container .client-img {
    padding-right: 0 !important;
    padding-left: 0 !important;
    border-radius: 0 !important;
    text-align: center;
  }
}

/* ============services=============== */
.services {
  background-color: var(--section-background);
}
.services .box {
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.services .image img {
  width: 100%;
  height: auto;
  display: block;
}

.services .box h3 {
  padding: 5px;
}

.services .box h4 {
  padding: 5px 20px;
}

.services .box p {
  padding: 15px 20px;
  margin: 0;
  font-size: 1.2rem;
}
.btn-serv {
  padding: 20px !important;
  font-size: 18px !important;
  border-radius: 15px !important;
}
/* Media Query for Mobile */
@media (max-width: 767px) {
  .box-serv {
    width: 300px !important;
    margin: 0 auto !important;
  }
  .services .box {
    font-size: 0.9rem;
  }

  .services .box h3 {
    padding: 5px;
    font-size: 1.1rem;
  }

  .services .box h4 {
    padding: 0 5px;
    font-size: 1rem;
  }

  .services .box p {
    font-size: 0.85rem;
  }

  .main-title {
    font-size: 1.5rem;
  }
  .btn-serv {
    padding: 10px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }
}

/* ==================about========= */
.about {
  position: relative;
  background-image: url("/imgs/business-people-casual-meeting.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-title {
  color: #fff;
  font-weight: bold;
}

.about-description {
  font-size: 2.1rem;
  color: #ddd;
}

/* //////////////footer/////// */
/* Footer Grid */
.footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.footer__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer__link {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
  font-size: 1.2rem;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.footer__social-link {
  font-size: 1.8rem;
}

.footer__logo img {
  max-width: 100%;
}

.footer__description {
  font-size: 1.3rem;
  margin-top: 15px;
}
.footer__social i:hover {
  color: #2588c6;
}
.list-unstyled li:hover a {
  color: #2588c6 !important;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 15px;
  }
  .footer__social {
    justify-content: left;
  }
  .footer__title {
    font-size: 1.1rem;
  }

  .footer__social-link {
    font-size: 1.25rem;
  }
  .about-description {
    font-size: 1.1rem;
  }
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: hsl(0, 0%, 85%);
}
::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: #042351;
}
