:root {
  --bg-black: #262626;
  --color-black: #262626;
  --bg-primary: #EA5C1E;
  --color-primary: #EA5C1E;
  --bg-secondary: #00A859;
  --color-secondary: #00A859;
  --bg-white: #FFFFFF;
  --color-white: #FFFFFF;
}

/* Font */
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* EndFond */

/* Start Header */
* {
  font-family: Poppins;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  transition: all 300ms linear 0s;
}

.btn-primary {
  background: var(--bg-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  color: var(--color-white) !important;
  background: var(--bg-primary);
  border: 1px solid var(--color-primary);
}

.black-bg {
  background: var(--bg-black);
}

.black-color {
  color: var(--color-black);
}

.primary-color {
  color: var(--color-primary);
}

.primary-bg {
  background: var(--bg-primary)
}

.secondary-color {
  color: var(--color-secondary);
}

.secondary-bg {
  background: var(--bg-secondary);
}

.header-topbar {
  height: 60px;
  display: flex;
  align-items: center;
  background-color: var(--bg-black);
}

@media(min-width:1200px) {
  header-topbar {
    display: block;
  }
}

.container-fluid {
  padding-right: 50px;
  padding-left: 50px;
}

.header-topbar .contact-list li .bi {
  margin-right: 8px;
}

.header-topbar .contact-list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-right: 30px;
  margin-bottom: 0;
}

.header-topbar .contact-list li a {
  color: var(--bg-white);
}

.header-topbar .contact-list li a:hover {
  color: var(--color-primary);
}

.office {
  padding-left: 8px;
}

.header-topbar .contact-list li i {
  color: var(--color-primary);
}

.social-nav li a {
  font-size: 16px;
  color: var(--bg-white);
  padding: 3px 6px;
  text-align: center;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  margin-left: 15px;
}

.social-nav li a:hover {
  background-color: var(--bg-primary);
}

/* Main Navigation */
.navbar .navbar-brand {
  line-height: 50px;
  width: 50%;
}

@media (min-width:768px) {
  .navbar .navbar-brand {
    width: 25%;
    line-height: 70px;
  }

  .navbar .navbar-brand img {
    width: 65%;
  }
}

.navbar-nav .nav-item .nav-link {
  font-size: larger;
  font-weight: normal;
  color: var(--color-black);
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--color-primary);
}

.btn-style {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-style:hover {
  color: var(--color-white);
  background: var(--bg-primary);
  transition: all 300ms linear 0s;
}

.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  border-bottom: 0 !important;
  height: 100px;
  max-height: 100px !important;
  background: var(--color-white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  animation: headerAnimation 1s;
}

@keyframes headerAnimation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .element {
  clip-path: url(#curve-left);  
} */
/* End Header */

/* Banner */
.carousel-item {
  height: 20rem;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media (min-width:768px) {
  .carousel-item {
    height: 30rem;
  }
}

/* End Banner */


/* Main */
.text-justify {
  text-align: justify;
}

.features .point-icon .bi {
  color: var(--color-primary);
}

/* Services */
.services-bg {
  background: url("../images/service-banner.webp");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
  z-index: 10;
}

.service-head {
  margin-top: -150px;
  position: relative;
  z-index: 20;
}

.service-head-content {
  background: var(--bg-primary);
  padding: 30px 15px 115px;
}

.service-slider {
  position: relative;
  margin-top: -120px;
  z-index: 21;
}

.service-content {
  background: #F6FAFF;
}

.service-content .description,
.service-content .tag {
  color: #9593B9;
}

@media (min-width:768px) {
  .services-bg {
    background: url("../images/service-banner.webp");
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    z-index: 10;
  }

  .service-head-content {
    background: var(--bg-primary);
    padding: 50px 15px 135px;
  }

}


/* Our Clients */
.our-client {
  position: relative;
}

.client-content-btn {
  padding: 10px 20px;
  background: none;
  border-radius: 0;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.client-content-btn:hover {
  background: var(--bg-primary);
  border-radius: 0;
  border: 2px solid var(--color-primary);
  color: var(--color-white);
}

.our-client::before {
  content: "";
  background-image: url("../images/service-banner.webp");
  background-size: cover;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
  /* background-repeat: no-repeat;
  background-attachment: fixed; */
}

.contents-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0px;
  line-height: 1;
  background-color: white;
  box-shadow: rgba(51, 104, 198, 0.05) 0px 13px 25px 15px;
  padding: 10px 15px;
  transition: 0.3s;
  border: none;
}

@media (min-width:768px) {
  .contents-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 1;
    background-color: white;
    box-shadow: rgba(51, 104, 198, 0.05) 0px 13px 25px 15px;
    padding: 20px 40px;
    transition: 0.3s;
    border: none;
  }

  .contents-body {
    padding: 15px 30px;
    color: #9593B9;
  }
}

.contents-button::after {
  content: "+";
  right: 50px;
  width: 0px;
  height: 0px;
  font-size: 18px;
  display: flex;
  align-items: center;
  position: absolute;
  transition: none;
}

.contents-button:hover {
  background: var(--bg-primary);
  color: var(--bg-white);
}

.contents-body {
  padding: 10px 20px;
  color: #9593B9;
}

/* Client Logos */
.logo-box {
  padding: 15px;
}

.logo-box .content {
  padding: 10px;
  height: 120px;
  width: auto;
  display: flex;
  justify-content: center;
  /* border: 1px solid #9593B9; */
  background: var(--bg-white);
  box-shadow: 5px 5px 10px grey;
}

@media (min-width:768px) {
  .logo-box .content {
    padding: 10px;
    height: 100px;
    width: auto;
    display: flex;
    justify-content: center;
    /* border: 1px solid #9593B9; */
    background: var(--bg-white);
    box-shadow: 5px 5px 10px grey;
  }
}

/* End Main */
/* Contact Footer */
.contact-footer {
  background: var(--bg-primary);
}

.contact-footer .btn-contact {
  background: none;
  border: 2px solid white;
  color: white;
  border-radius: 0;
  padding: 10px 20px;
}

.contact-btn {
  display: flex;
  /* justify-content: right; */
}

/* Footer */
.footer-banner {
  position: relative;
}

.footer-banner::before {
  content: "";
  background: url("../images/whyus-image.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .10;
}

.description {
  font-weight: 400;
  font-size: 14px;
}

.f-size {
  font-size: 20px;
  color: var(--color-white);
  padding: 3px 6px;
  border-radius: 50%;
}

.f-size:hover {
  background: var(--bg-primary);
  color: var(--bg-white);
}

.footer-link {
  position: relative;
  color: var(--color-white);
  display: inline-block;
  line-height: 1.5rem;
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #EA5C1E;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--bg-primary);
}

.news-letter .form-control {
  margin-bottom: 0;
}


@media(min-width:768px) {
  .f-size {
    font-size: 18px;
  }
}

/* End Footer */

/* Curve Shape */
.curve-top-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  transform: rotate(180deg);
}

.curve-top-shape .curve-svg {
  height: 48px;
  width: 100%;
  fill: white;
}

/* BreamCrumb Saperator */
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--color-white);
}

/* About Us Page */

.about-banner {
  position: relative;
}

.about-banner::before {
  content: "";
  background-image: url("../images/page-banner/about-banner.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}

.why-title {
  position: relative;
}

.why-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: var(--bg-primary);
  bottom: -10px;
  left: 0px;
}

.why-us {
  position: relative;
}

.why-us::before {
  content: "";
  background-image: url("../images/banner-3.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .15;
}

.certificte-item {
  padding: 5px;
}

.director-title {
  position: relative;
}

.director-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background: var(--bg-primary);
  bottom: -8px;
  left: 0px;
}

.counter {
  font-size: 60px;
}

@media(min-width:768px) {
  .certificte-item {
    padding: 20px;
  }
}

/* Services Page */

.service-banner {
  position: relative;
}

.service-banner::before {
  content: "";
  background-image: url("../images/page-banner/service-banner.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}

/* Blog Page */

.blog-banner {
  position: relative;
}

.blog-banner::before {
  content: "";
  background-image: url("../images/page-banner/blog-banner.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}

/* Gallery Page */

.gallery-banner {
  position: relative;
}

.gallery-banner::before {
  content: "";
  background-image: url("../images/page-banner/gallery-banner.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}


/* Gallery Styles */
.lightbox {
  z-index: 2000;
}

.gallery-item {
  /* display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
  gap: 10px;
  /* max-width: 1000px; */
  margin: 10px;
}


.gallery-item img {
  width: 100%;
  height: 250px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
  /* Zoom effect on hover */
}

/* Lightbox (zoomed-in view) styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transform: translateY(-50%);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  color: #ddd;
}

.gall-heiht {
  height: 250px;
  width: auto;
}

@media(min-width:768px) {
  .gallery-item {
    margin: 0;
  }

  .gallery-section .col-md-3 {
    padding: 0;
  }
}

/* Contact Us Page */

.contact-banner {
  position: relative;
}

.contact-banner::before {
  content: "";
  background-image: url("../images/page-banner/contact-banner.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  opacity: .2;
}

.request-btn {
  position: relative;
  height: 46px;
  top: 8px;
  padding: 10px 20px 20px 0;
  border-radius: 0 10px 0 0;
  margin-left: 40px;
  color: #262626;
  border: 0;
  background: var(--bg-white);
  transition: 0.3s ease;
}

.request-btn .btn-shape {
  position: absolute;
  width: 45px;
  height: 100%;
  top: 0;
  left: -44px;
  clip-path: url(#curve-left);
  /* color: var(--color-white); */
  background: var(--bg-white);
  transition: 0.3s ease;
}

.request-btn:hover {
  background-color: #EA5C1E;
  color: var(--color-white);
}

.request-btn:hover .btn-shape {
  background-color: #EA5C1E;
  color: var(--color-white);
}