@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap");
@import url("./about.css");
@import url("./contact.css");
@import url("./content.css");
@import url("./mobile.css");

:root {
  --primary-color: #247ef3;
  --secondary-color: #ed6d17;
  --white-color: #fff;
  --black-color: #000000;
  --dark-color: #161616;
  --light-color: #f1f2f6;
}

body {
  font-family: "Comfortaa", sans-serif !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
  z-index: 9999;
}

#preloader img {
  height: 60px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#topbar {
  background: var(--black-color);
  padding: 10px 0;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white-color);
}

.topbar-container .left {
  display: flex;
  gap: 20px;
}

.top-icon-box {
  display: flex;
  gap: 5px;
  align-items: center;
}

.top-icon-box .icon {
  background: var(--primary-color);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-color);
  border-radius: 4px;
}

.top-icon-box h6 {
  font-size: 16px;
  margin: 3px 0 0;
}

.topbar-container .social-icons i {
  color: #3d3d3d;
}

#navbar {
    /* padding: 5px 0; */
    position: fixed;
    z-index: 99;
    /* background: rgba(0, 0, 0, 0.3); */
    background: #fff;
    color: #fff;
    width: 100%;
}

.fixed-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-container h3 {
  margin: 0;
}

.navbar-container .menu {
  display: flex;
  gap: 10px;
}

.logo {
  font-size: 30px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav .menu {
  display: flex;
  gap: 25px;
}

.menu-link {
  color: var(--primary-color);
  font-size: 18px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.4s linear;
}

.menu-link:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.sidenav {
  display: none;
}

.sidenav {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: #fff;
  z-index: 99;
  transform: translateX(-280px);
  transition: 0.4s linear;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sidenav.active {
  transform: translateX(0);
}

.icon-box {
  display: flex;
  gap: 10px;
  padding: 10px;
  /* background: var(--secondary-color); */
  margin: 10px 0;
  /* border-top: 2px solid var(--light-color); */
  border-bottom: 2px solid var(--light-color);
  /* border-radius: 5px; */
}

.hamburger {
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  display: none;
}
.hamburger .line {
  background: var(--primary-color);
  height: 3px;
  width: 100%;
  transition: 0.3s linear;
}

.hamburger.active .line-2 {
  display: none;
}

.hamburger.active .line-1 {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--secondary-color) !important;
}

.hamburger.active .line-3 {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--secondary-color) !important;
}

#hero-section {
  position: relative;
}

#form {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 70px;
  z-index: 80;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  color: var(--white-color);
  border-radius: 10px;
  border: 2px solid var(--secondary-color);
  overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
  background: var(--primary-color);
  opacity: 1;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  margin-top: 300px;
}

#why-us {
  background: var(--light-color);
  padding: 80px 0;
}

.why-us-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  background: var(--white-color);
  width: 360px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px 0 100px 0;
  height: 360px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.why-us-icon-box::before {
}
.why-us-icon-box .icon {
  font-size: 30px;
  background: var(--light-color);
  border-radius: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us-icon-box.primary {
  background: var(--primary-color);
  color: var(--light-color);
}

.why-us-icon-box.primary .icon {
  color: var(--dark-color);
}

#planning {
  padding: 80px 0;
}

.img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  /* border: 2px solid var(--dark-color); */
  height: 430px;
  border-radius: 10px;
  background: var(--light-color);
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background: var(--primary-color);
  transition: 0.3s linear;
}

.img-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: var(--secondary-color);
  transition: 0.3s linear;
}

.img-box:hover::before {
  left: 50%;
  /* transform: translateX(-50%); */
}

.img-box:hover::after {
  right: 50%;
}

.img-box .img {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  overflow: hidden;
  position: relative;
}

.img-box .img::before {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  color: var(--white-color);
}

.img-box .img-1::before {
  content: "01";
}

.img-box .img-2::before {
  content: "02";
}

.img-box .img-3::before {
  content: "03";
}

#cta {
  padding: 160px 0 100px 0;
  background: var(--secondary-color);
  color: var(--white-color);
  clip-path: polygon(0 14%, 100% 0%, 100% 86%, 0% 100%);
}

#marquee {
  background: var(--secondary-color);
  padding: 40px 0 20px 0;
  text-transform: capitalize;
  color: var(--white-color);
  font-weight: 600;
}

#services {
  /*background: url("./../images/bg-5.png");*/
  background: var(--light-color);
  /*background-repeat: repeat;*/
  padding: 80px 0;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.service-wrapper {
  background: var(--white-color);
  /* overflow: hidden; */
  cursor: pointer;
  border-radius: 10px;
  padding: 20px;
}

.service-wrapper .body {
  margin-top: 20px;
}

.service-wrapper h4 {
  text-transform: capitalize;
}

.service-wrapper p {
  font-size: 14px;
  text-transform: capitalize;
}

.service-wrapper .img img {
  width: 150px;
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3); */
  transition: 0.4s linear;
}

#footer {
  background: var(--dark-color);
  padding: 120px 0 80px 0;
  /* margin-top: -100px; */
  color: var(--white-color);
}

.btn-footer {
  display: inline-block;
  color: var(--white-color);
  text-decoration: none;
  width: 40%;
}

.social-icons {
  display: flex;
  gap: 10px;
  /* justify-content: space-evenly; */
}
#copyright {
  background: var(--black-color);
  color: var(--white-color);
  text-align: center;
  padding: 12px 0;
}
