.justifyalign {
  text-align: justify !important;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,500;1,700;1,800&display=swap");

:root {
  --color-primary: #666633;
  --color-light: #fff;
  --color-dark: #252525;
  --bg-color: #f6f6f6;
  --color-grey: #878787;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style: none;
  font-family: "Poppins", sans-serif;

}
a{
  text-decoration: none;
}
::selection {
  color: var(--color-light);
  background: var(--color-primary);
}
::-webkit-scrollbar {
  /* display: none; */
}
body {
  background-color: var(--bg-color);
}
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
}
.navbar {
  padding: 10px 0;
  position: relative;
  top: 0;
  z-index: 9999;
  background: var(--color-light);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  text-align: center;
}
.navbar-toggler {
  box-shadow: none !important;
}
.navbar-nav li {
  padding: 0 20px;
}
.navbar-nav {
  padding-right: 20px;
}
.navbar-nav .nav-link {
  color: var(--color-primary);
  position: relative;
}
.navbar-nav .nav-link.active {
  color: var(--color-primary);
}
.navbar-nav .nav-link:hover{
  color: var(--color-dark);
}
.navbar-nav .nav-link.active:hover{
  color: var(--color-primary);
}
.navbar-nav .nav-link.active.nav-link::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: var(--color-primary);
  transform: scaleX(1);
  animation: 0.5s Animate linear;
}
@keyframes Animate {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 993px) {
  .nav-link::after {
    display: none;
  }
  .navbar-nav .nav-link.active {
    background-color: var(--color-primary);
    color: var(--color-light);
  }
  .navbar-collapse {
    padding-top: 20px;
  }
  .navbar-nav li {
    padding: 0 0;
  }
  .navbar-nav {
    padding-right: 0;
  }
}
.navbar-brand {
  width: 75px;
  height: 75px;
  padding: 0;

  margin: 0;
  margin-left: 50px;
}
.navbar-brand img {
  width: 100%;
}

/* navbar ends */

/* section starts */

.banner-image {
  height: calc(100vh - 95px);
  background-image: url("{{ asset('../website/Images/Banner/1.jpg')}}");
  background-position: bottom;

  background-size: cover;
  color: var(--color-light);
  position: relative;
}

@media screen and (max-width: 767px) {
  .banner-image {
    height: 50vh;
  }
  .banner-image h3 {
    width: 200px !important;
    font-size: 1rem;
    bottom: 5px !important;
  }
}
.banner-image div {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  /* background: #25252558; */
  width: 400px;
  height: 100px;
  border-radius: 50%;
  padding: 20px;
  filter: blur(30px);
}
.banner-image h3 {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 500px;
  transform: translate(-50%, 0);
  text-transform: uppercase;
  text-align: center;
}
.gradient-text {
  font-size: 3.5rem;
  background: linear-gradient(to right, #00c9ff, #92fe9d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: 8s ColorChange linear infinite;
}
@keyframes ColorChange {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
.carousel-item p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: capitalize;
}
.carousel-item img {
  height: calc(100vh - 120px);
}
@media screen and (max-width: 993px) {
  .carousel-item img {
    height: 300px;
  }
  .carousel-item p {
    font-size: 1rem;
  }

  .gradient-text {
    margin-top: 50px;
    font-size: 2rem;
  }
  .company-overview-content {
    margin-top: 20px;
    text-align: center;
  }
  .company-overview-content h1 {
    font-size: 1.5rem;
  }
  .company-overview-content p {
    font-size: 0.9rem;
  }
  .change-direction {
    flex-direction: column-reverse;
  }

  .footer {
    text-align: center;
  }
  .footer-title {
    text-align: left;
  }
  .second_text {
    text-align: center;
  }
}

/* Section 2 */
.company-overview {
  /* min-height: 100vh; */
  overflow: hidden;
  padding: 20px;
  background: var(--color-dark);
  color: var(--color-light);
  display: grid;
  place-items: center;
}
.change-direction {
  flex-direction: row-reverse;
}
.change-direction2{
  flex-direction: row;
}

/* footer */
.footer {
  background-color: var(--color-light);
  padding-top: 50px;
}
.footer .copy-rights {
  background: var(--color-primary);
  padding: 10px;
  color: var(--color-light);
  text-align: center;
  font-size: 0.8rem;
}
.footer .copy-rights a {
  color: var(--color-light);
  text-decoration: none;
  transition: 0.5s;
}
.footer .copy-rights a:hover {
  color: var(--color-dark);
}
.footer-logo-content P {
  font-size: 0.75rem;
  margin-top: 20px;
}
.footer-title {
  position: relative;
  display: inline-block;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 75px;
  height: 3px;
  background-color: var(--color-primary);
}
.icons-div svg {
  cursor: pointer;
  transition: 0.5s;
}
.icons-div svg:hover {
  filter: brightness(50%);
}
.reach-us-content {
  margin-top: 20px;
}
.reach-us-content p{
 display: flex;
 align-items: center;
 justify-content: start;
}
.reach-us-content p span {
  padding: 0 10px;
}

.footer-link {
  color: var(--color-primary);

  text-decoration: none;
  line-height: 2.5rem;
}
.footer-link:hover {
  color: var(--color-dark);
}
@media screen and (max-width: 767px) {
  .footer-title {
    text-align: center;
  }
  .footer-title::after {
    width: 100%;
  }
  .reach-us-content p{
    justify-content: center;
  }
}

.client-section {
  background: var(--color-primary);
  color: var(--color-light);
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.client-section .client-text {
  font-size: 2rem;
  font-weight: 400;
}
span.counter-value {
  font-size: 2rem;
  font-weight: 600;
}
.services-section {
  min-height: 100vh;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.icon-card {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
}
.service-card {
  position: relative;
  padding: 20px;
  padding-top: 60px;
  border-radius: 10px;
  transition: 0.5s;
  height: 100%;
  border: none;
  cursor: pointer;
}
.service-card h5 {
  text-align: center;
  color: var(--color-primary);
  transition: 0.5s;
}
.service-card p {
  margin-top: 10px;
  text-align: center;
  color: var(--color-grey);
  transition: 0.5s;
  font-size: 0.8rem;
  font-weight: 600;
}
.service-card:hover p {
  color: var(--color-dark);
  transition: 0.5s;
}
.service-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
/* .ScrollSmoother-wrapper{
  top:95px !important;
} */

