@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.header-top-main {
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  /* background-color: chocolate; */
  color: white;
  padding: 5px 20px !important;
  position: relative;
  z-index: 1;
}

.company-info-main {
  display: flex;
  align-items: center;
  gap: 25px !important;
  flex: 2;
}

.company-details-main {
  line-height: 1.2;
}

.company-details-main span {
  font-size: 14px;
  margin-right: 20px;
  color: white;
}
.company-details-main a {
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex: 1;
  position: relative;
  right: 50px;
  justify-content: flex-end;
}

.social-icons a {
  background-color: #f4f4f4;
  font-size: 10px;
  transition: all 0.5s ease;
  padding: 10px;
  border-radius: 30%;
  position: relative;
  overflow: hidden;
}

.social-icons a i {
  font-size: 16px;
}
.social-icons .facebook {
  color: #1877f2;
}
.social-icons .instagram {
  color: #e1306c;
}
.social-icons .linkdin {
  color: #1877f2;
}

.social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: all 0.5s ease;
}

.social-icons a:hover::before {
  left: 100%;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #f39c12, #d35400);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .header-top-main {
    flex-direction: column;
    text-align: center;
  }

  .company-info-main {
    align-items: center;
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
    right: 0;
    top: -10px;
  }
}
/* Nav */

/* Global Styles */

/*Header start*/
/*navbar start*/
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #e3e6f3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}
.logo {
  width: 180px;
  height: 60px;
}
#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}
#navbar li {
  list-style: none;
  padding: 0px 20px;
  position: relative;
}
#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}
/* #navbar li a.active */
#navbar li a:hover {
  color: #088178;
}
/* #navbar li a.active::after, */
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background-color: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}
#navbar #close {
  display: none;
}

@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #e3e6f3;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0px;
  }
  #navbar li {
    margin-bottom: 25px;
  }
  #mobile {
    display: flex;
    align-items: center;
  }
  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    margin-right: 20px;
  }
  #navbar #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }

  #lg-bag {
    display: none;
  }
}

@media (max-width: 477px) {
  #header {
    padding: 10px 30px;
  }
  .company-info-main p {
    display: flex;
    font-size: 10px;
  }

  .company-details-main {
    position: relative;
  }
  .company-info-main .company-details-main span {
    display: block !important;
    font-size: 10px !important;
    columns: auto;
    padding: 5px;
  }
  .company-details-main span {
    font-size: 10px !important;
  }
}

/* Phone Icon (Left Side - Centered) */
.phone-icon {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #28a745;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  animation: bounce 1.5s infinite;
}

.phone-icon:hover {
  transform: translateY(-50%) scale(1.2);
}

/* WhatsApp Icon (Right Side - Centered) */
.whatsapp-icon {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #25d366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  animation: bounce 1.5s infinite;
}

.whatsapp-icon:hover {
  transform: translateY(-50%) scale(1.2);
}

/* Keyframes Animation */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-60%);
  }
}
