@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}

.sec-sub-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: #e6830b;
}

.section-para {
  color: black;
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background-color: #e6830b;
  color: #ffffff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2509803922);
}
#topbar i {
  padding-right: 6px;
  line-height: 0;
}
#topbar .header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#topbar .header-left ul {
  display: flex;
  margin-bottom: 0px;
}
#topbar .header-left ul li {
  margin-right: 15px;
  color: #fff;
  list-style: none;
}
#topbar .header-left ul li a {
  color: #fff;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 9907;
  top: 0px;
  position: fixed;
  width: 100%;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid #fff;
}

#header.position-relative-header {
  position: unset;
}
#header.position-relative-header .navbar a,
#header.position-relative-header .navbar a:focus {
  color: #000000;
}

header.scrolled {
  background-color: #ffffff;
  color: #000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.301);
  top: 0px;
  position: fixed !important;
}
header.scrolled #topbar {
  display: none;
}
header.scrolled .navbar a {
  color: #000;
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}
#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .social-contact {
  margin: auto;
  justify-content: center;
  display: flex;
}

#header .social-contact i {
  font-size: 28px !important;
}

#header .social-contact i:hover {
  color: #e6830b;
}

#header .mobile-btn {
  border: none;
  background-color: #e6830b;
  color: #fff;
  padding: 7px 14px;
  border-radius: 25px;
  font-size: 16px;
  padding: 10ox 20px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
  transition: 0.5s;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  transition: 0.5s;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 16px !important;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.5s;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e6830b;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover:before,
.navbar li:hover > a:before {
  visibility: visible;
  transform: scaleX(0.7);
}

.navbar a:hover,
.navbar li:hover > a {
  color: #e6830b;
}

.hamburger {
  display: none;
}

.mobile-btn {
  display: none;
}

.nav-btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 22px;
  line-height: 2em;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background-color: #e6830b;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(129, 129, 129, 0.19), 0 6px 6px rgba(206, 206, 206, 0.23);
}
.nav-btn:hover {
  background-color: #ff6633;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .navbar a {
    font-size: 14px;
    padding: 8px 12px;
  }
}
@media (max-width: 1023px) {
  .navbar a {
    font-size: 14px !important;
    padding: 8px 12px;
  }
}
@media (max-width: 990px) {
  .hamburger {
    display: block;
    border: 1px solid #000000;
    padding: 5px 13px;
    /* margin-left: 20px; */
  }
  .bar {
    display: block;
    background-color: rgb(0, 0, 0);
    width: 25px;
    height: 2px;
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
  }
  .navbar {
    position: relative;
  }
  .navbar a {
    font-size: 16px;
  }
  .navbar.active {
    /* top: 20%; */
    /* left: 10px; */
    width: 30%;
  }
  .navbar ul {
    flex-direction: column;
    text-align: center;
    transition: 0.5s;
    display: none;
    justify-content: center;
    border-radius: 10px;
    /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2); */
  }
  .navbar ul li {
    padding: 5px 0;
    margin: 5px 0;
  }
  .navbar ul.active {
    display: block;
    background-color: white;
    top: 100%;
    position: absolute;
    transition: 0.5s;
    margin-left: -30px;
    width: 400px;
    right: 0;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #hero.active {
    margin-top: 310px;
  }
}
/*--------------------------------------------------------------
#  Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(../images/hero.webp) center bottom;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}
#hero::after {
  content: "";
  background: url(../images/shape.webp);
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100px;
}

#hero::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.637) 0%, rgba(14, 14, 14, 0.555) 100%);
  background-size: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.hero-subtitle {
  font-size: 20px;
  color: #e6830b;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  padding: 0px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-radius: 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
}
.hero-content .hero-subtitle {
  font-size: 20px;
  color: #e6830b;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-radius: 20px;
}
.hero-content h2 {
  font-size: 76px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  text-align: start;
  position: relative;
  z-index: 2;
}
.hero-content p {
  font-size: 23px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  text-align: start;
  position: relative;
  z-index: 2;
}

.hero-btn-container {
  position: relative;
  z-index: 2;
}
.hero-btn-container .btn-get-started {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 20px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background-color: #fe7310;
  text-decoration: none;
  border: 2px solid #fe7310;
  position: relative;
  z-index: 2;
}
.hero-btn-container .btn-get-started:hover {
  background-color: #fff;
  color: #e6830b;
}
.hero-btn-container .hero-btn-outline {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 20px;
  transition: 0.5s;
  margin: 10px;
  color: #e6830b;
  text-decoration: none;
  border: 2px solid #e6830b;
  position: relative;
  z-index: 2;
}
.hero-btn-container .hero-btn-outline:hover {
  background-color: #e6830b;
  color: #fff;
}

.swiper {
  width: 90%;
  height: 100%;
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 3;
}

.swiper-slide img {
  display: block;
  width: 100%;
  border-radius: 30px;
  border: 5px solid #e6830b;
  position: relative;
  z-index: 2;
}

.search-box {
  position: absolute !important;
  top: 73%;
  left: 17%;
  display: flex;
}

.form-control {
  padding: 12px 30px !important;
  cursor: pointer;
}

.form-control option {
  font-size: 18px !important;
}

.search-button {
  position: absolute !important;
  top: 25%;
  left: 60%;
}

.search-button i {
  font-size: 20px;
  color: rgb(0, 0, 0);
  padding: 5px 10px;
}

.searchh .form-group {
  width: 100% !important;
}

.section-title {
  color: black;
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us {
  padding: 3em 0;
}

.about-us-list {
  margin-left: 0;
  padding-left: 0;
}
.about-us-list li {
  list-style: none;
  margin: 10px 0;
  color: black;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
}
.about-us-list li i {
  margin-right: 10px;
  color: #e6830b;
}

@media (max-width: 992px) {
  .about-us .container {
    padding: 10px 10px;
  }
}
.about-us .content h3 {
  color: black;
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  font-weight: 600;
}

.about-us .content p {
  color: black;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
}

.about-us .content .about-us-btn {
  color: white;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: #e6830b;
  text-decoration: none;
  border: 1px solid #e6830b;
}

.about-us .content .about-us-btn:hover {
  background: #ffffff;
  color: black;
}

.about-us .img {
  position: relative;
  height: 100% !important;
}
.about-us .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-us .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}

.about-us .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}

.about-us .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}

/*----------------------------------------------
# mission vision
----------------------------------------------*/
.mission-vision {
  padding: 3em 0;
  background-color: rgb(0, 0, 0);
}
.mission-vision .mission-vision-card {
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
}
.mission-vision .mission-vision-card img {
  height: 70px;
  margin-bottom: 30px;
}
.mission-vision .mission-vision-card h3 {
  color: #000;
  font-family: "DM Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.mission-vision .mission-vision-card p {
  color: black;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  text-align: center;
}

.product-services-sec {
  padding: 3em 0;
}
.product-services-sec .product-services-card {
  display: flex;
  flex-direction: column;
  background-color: #e6830b;
  height: 100%;
  border-radius: 27px;
}
.product-services-sec .product-services-card:hover img {
  clip-path: polygon(0% 0%, 100% 0, 100% 54%, 60% 100%, 0% 100%) !important;
}
.product-services-sec .product-services-card .product-service-img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  position: relative;
  background-color: #e6830b;
}
.product-services-sec .product-services-card .product-service-img img {
  transition: 0.6s;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 60% 100%, 0% 100%);
  z-index: 1;
  position: relative;
}
.product-services-sec .product-services-card .product-service-img i {
  position: absolute;
  bottom: -15px;
  left: 78%;
  color: #ffffff;
  font-size: 40px;
  z-index: 0;
  cursor: pointer;
  padding: 40px;
}
.product-services-sec .product-services-card .product-service-content {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
}
.product-services-sec .product-services-card .product-service-content h3 {
  color: rgb(255, 255, 255);
  font-family: "DM Sans", sans-serif;
  font-size: 23px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.product-services-sec .product-services-card .product-service-content p {
  color: rgb(255, 255, 255);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  text-align: center;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  padding: 50px 30px 30px 30px;
  margin: 20px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: white;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 15px;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: #e6830b;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  top: -36px;
  left: 0;
  border: 6px solid white;
}

#services .service-item .details h3 {
  color: black;
  font-weight: 600;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  text-align: start;
}

.services .details p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
  text-align: start;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: black;
}

.services .service-item:hover .details h3 {
  color: #e6830b;
}

.services .service-item:hover .details .icon {
  background: white;
  border: 2px solid #e6830b;
}

.services .service-item:hover .details .icon i {
  color: #e6830b;
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

.services .btn-viewmore {
  padding-top: 25px;
}

.services .btn-viewmore a {
  font-size: 18px;
  background-color: #e6830b;
  color: white;
  padding: 10px 28px;
  text-decoration: none;
  border: 1px solid #e6830b;
  border-radius: 5px;
}

.services .btn-viewmore a:hover {
  color: black;
  background-color: white;
}

/*--------------------------------------------------------------
# Offers Section
--------------------------------------------------------------*/
.offers {
  /* padding-bottom: 0; */
}

#myCarousel {
  margin: 0;
}

.carousel-item {
  border: 1px solid #e6830b;
  padding: 20px;
}

.carousel-item h4 {
  color: #e6830b;
  margin-top: 15px;
}

.col-center {
  margin: 0 auto;
  float: none !important;
}

.carousel {
  margin: 50px auto;
  padding: 0 70px;
}

.carousel-item {
  color: #000000;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  min-height: 290px;
}

.carousel .item .img-box {
  width: 100%;
  /* height: 135px; */
  margin: 0 auto;
  padding: 5px;
  /* border: 1px solid #ddd; */
  /* border-radius: 50%; */
}

.carousel .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.3);
}

.carousel .testimonial {
  padding: 30px 0 10px;
}

.carousel .carousel-control {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  top: 50%;
  background: none;
}

.carousel-control i {
  font-size: 68px;
  line-height: 42px;
  position: absolute;
  display: inline-block;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}

.carousel .carousel-indicators {
  bottom: -40px;
}

.carousel-indicators li,
.carousel-indicators li.active {
  width: 10px;
  height: 10px;
  margin: 1px 3px;
  border-radius: 50%;
}

.carousel-indicators li {
  background: #999;
  border-color: transparent;
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}

.carousel-indicators li.active {
  background: #555;
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* Middle section */
.middle-section {
  background: url(../images/middle-bg.webp);
  background-position: top;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 7em 0;
}
.middle-section:after {
  content: "";
  background: url(../images/shape.webp);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50px;
}
.middle-section::before {
  content: "";
  background: url(../images/shape.webp);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50px;
  transform: rotate(180deg);
}
.middle-section .middle-section-content {
  background-color: rgba(0, 0, 0, 0.178);
  padding: 20px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  height: 100%;
  border-bottom: 7px solid #fff !important;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.middle-section .middle-section-content i {
  font-size: 35px;
  margin-bottom: 20px;
  background-color: #e6830b;
  color: #fff;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.middle-section .middle-section-content h3 {
  color: #fff;
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}
.middle-section .middle-section-content p {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url(../images/glass-img-8.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.contact:after {
  content: "";
  background: rgba(0, 0, 0, 0.5764705882);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.contact::before {
  content: "";
  background: url(../images/shape.webp);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  height: 60px;
  transform: rotate(180deg);
}
.contact ::-moz-placeholder {
  color: black;
  opacity: 1;
  font-size: 16px;
}
.contact ::placeholder {
  color: black;
  opacity: 1;
  font-size: 16px;
}

.contact .info {
  padding: 40px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.0784313725);
  border-radius: 28px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
  color: #e6830b;
}

.contact .info p {
  color: black;
  margin-bottom: 30px;
  font-size: 19px;
  font-weight: 600;
}

.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.contact .info-item i {
  font-size: 24px;
  color: #e6830b;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #e6830b;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 17px;
  color: #ffffff;
}

.contact .php-email-form {
  width: 100%;
  padding: 40px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea {
  border-radius: 20px;
  box-shadow: none;
  font-size: 14px;
  background-color: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: none;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form textarea:focus {
  border-color: #e6830b;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel] {
  height: 48px;
  padding: 10px 15px;
  border-radius: 20px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 170px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: white;
  font-size: 14px;
  background: rgb(19, 19, 19);
  padding: 3em 0;
}

.footer .footer-content {
  padding: 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

.footer .footer-content .footer-info h3 span {
  color: #e6830b;
}

.footer .footer-content .footer-info p {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 0;
  color: white;
}

.footer .footer-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e6830b;
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  font-size: 16px;
}

.footer .footer-content .footer-links ul a:hover {
  color: white;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-bottom: 30px;
  text-align: center;
  font-size: 13px;
}

#footer .credits a {
  padding-top: 10px;
  text-align: center;
  font-size: 16px !important;
  text-decoration: none;
  color: #ffffff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e6830b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #fff;
  color: #e6830b;
  text-decoration: none;
}

@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  /* visibility: hidden; */
  /* opacity: 0; */
  right: 16px;
  bottom: 16px;
  z-index: 996;
  background: #e6830b !important;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  transition: all 0.4s;
  text-decoration: none;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

/* our clients */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1750px);
  }
}
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: 3500px;
}
.slider .slide {
  height: 100px;
  width: 250px;
}
.slider .slide img {
  filter: grayscale(30%);
}

/* About us page */
.inner-page-hero {
  height: 30vh;
  background: url(../images/inner-page-banner.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  width: 100%;
}
.inner-page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.inner-page-hero .section-title {
  color: #fff !important;
  font-size: 60px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.our-expertise-list {
  padding-left: 0px;
}
.our-expertise-list li {
  list-style: none;
  padding: 10px 0px;
  color: #000000;
  font-size: 19px;
  font-family: "Open Sans", sans-serif;
}
.our-expertise-list li i {
  color: #e6830b;
  font-size: 20px;
  margin-right: 10px;
}

/* gallery section */
.gallery-sec .parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 15px;
}
.gallery-sec .parent div {
  overflow: hidden;
}
.gallery-sec .parent div:hover img {
  transform: scale(1.2);
  transition: all ease-in-out 0.3s;
  opacity: 0.7;
}
.gallery-sec .parent div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease-in-out 0.3s;
}
.gallery-sec .div2 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 2;
}
.gallery-sec .div3 {
  grid-row: span 2/span 2;
  grid-column-start: 1;
  grid-row-start: 2;
}
.gallery-sec .div4 {
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 3;
}
.gallery-sec .div5 {
  grid-row: span 3/span 3;
  grid-column-start: 1;
  grid-row-start: 4;
}
.gallery-sec .div6 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 5;
}
.gallery-sec .div7 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 3;
}
.gallery-sec .div8 {
  grid-row: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 1;
}
.gallery-sec .div9 {
  grid-row: span 3/span 3;
  grid-column-start: 5;
  grid-row-start: 1;
}
.gallery-sec .div10 {
  grid-row: span 2/span 2;
  grid-column-start: 5;
  grid-row-start: 4;
}
.gallery-sec .div11 {
  grid-row: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 5;
}

/* Enquiry Page   */
.right_conatct_social_icon {
  background-image: url(../images/customer-support.webp);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact_us {
  background-color: #f1f1f1;
  padding: 120px 0px;
}

.contact_inner {
  background-color: #fff;
  position: relative;
  box-shadow: 20px 22px 44px rgba(204, 204, 204, 0.8);
  border-radius: 25px;
  overflow: hidden;
}

.contact_field {
  padding: 60px;
}

.right_conatct_social_icon {
  height: 100%;
}

.contact_field h3 {
  color: #000;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
}

.contact_field p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 35px;
}

.contact_field .form-control {
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #ccc;
}

.contact_field .form-control:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 2px solid #1325e8;
}

.contact_field .form-control::-moz-placeholder {
  font-size: 13px;
  letter-spacing: 1px;
}

.contact_field .form-control::placeholder {
  font-size: 13px;
  letter-spacing: 1px;
}

.contact_info_sec {
  position: absolute;
  background-color: #e6830b;
  right: 1px;
  top: 18%;
  height: 340px;
  width: 340px;
  padding: 40px;
  border-radius: 25px 0 0 25px;
}

.contact_info_sec h4 {
  letter-spacing: 1px;
  padding-bottom: 15px;
  font-size: 30px;
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-weight: 600;
}

.info_single {
  margin: 30px 0px;
}

.info_single i {
  margin-right: 15px;
  color: #fff;
}

.info_single span {
  font-size: 17px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}

button.contact_form_submit {
  background: #e6830b;
  border: 1.5px solid #e6830b;
  color: #fff;
  padding: 10px 15px;
  width: 50%;
  margin-top: 25px;
  border-radius: 35px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  font-weight: 500;
}
button.contact_form_submit:hover {
  border: 1.5px solid #e6830b;
  background-color: #fff;
  color: #e6830b;
  transform: translateY(-3px);
}

.socil_item_inner li {
  list-style: none;
}

.socil_item_inner li a {
  color: #fff;
  margin: 0px 15px;
  font-size: 14px;
}

.socil_item_inner {
  padding-bottom: 10px;
}

.new-gallery-sec .col-lg-3 {
  overflow: hidden;
  border-radius: 10px;
}
.new-gallery-sec .col-lg-3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
}
.new-gallery-sec .col-lg-3 img:hover {
  transform: scale(1.1);
  transition: all ease-in-out 0.3s;
}

.error-sec .container {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-text h2 {
  color: #000;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 25px 0;
  font-family: "DM Sans", sans-serif;
}
.section-text p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
  line-height: 1.5;
}
.section-text .subheading {
  background-color: #fff8e2;
  display: inline;
  padding: 15px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: #e6830b;
}
.section-text .social-media-icon a {
  font-size: 18px;
  display: inline-block;
  background: #e6830b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 15px;
  border-radius: 25px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.section-text .social-media-icon a:hover {
  color: #000000;
  background-color: #fff;
}

.contact-card {
  padding: 20px;
  background: #FFC31F;
  background: linear-gradient(325deg, rgba(255, 195, 31, 0.25) 0%, rgba(255, 237, 181, 0.46) 100%);
  border-radius: 15px;
  box-shadow: 10px 10px 0px 5px rgba(199, 199, 199, 0.38);
  -webkit-box-shadow: 10px 10px 0px 5px rgba(199, 199, 199, 0.38);
  -moz-box-shadow: 10px 10px 0px 5px rgba(199, 199, 199, 0.38);
  overflow: hidden;
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-card .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-card i {
  font-size: 25px;
  background-color: #e6830b;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25%;
  color: #fff;
}
.contact-card .contact-text {
  margin: 15px 0;
}
.contact-card h6 {
  font-size: 20px;
  font-weight: 700;
}
.contact-card p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.enquiry-blur-card {
  padding: 20px;
  background: #FFF;
  background: linear-gradient(325deg, rgba(255, 255, 255, 0.47) 0%, rgba(255, 237, 181, 0.46) 100%);
}
.enquiry-blur-card h2 {
  font-size: 18px;
  color: #000000;
  text-align: center;
  font-weight: 500;
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeRight 1s ease-out forwards;
  animation-delay: 0.5s; /* starts after typing finishes */
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.final-fade {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease-out;
}

.final-fade.show {
  opacity: 1;
  transform: translateX(0);
}

#hero1 {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}
#hero1::after {
  content: "";
  background: url(../images/shape.webp);
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100px;
}
#hero1::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.637) 0%, rgba(14, 14, 14, 0.555) 100%);
  background-size: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.landing-img {
  margin-top: 35px;
  position: relative;
  z-index: 2;
}
.landing-img img {
  width: 100%;
  height: 485px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  border: 5px solid #fcc10f;
}

.hero-btn-outline1 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 20px;
  transition: 0.5s;
  margin: 10px;
  color: #000000;
  text-decoration: none;
  border: 2px solid white;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}
.hero-btn-outline1:hover {
  background-color: #e6830b;
  border: 2px solid #e6830b;
  color: #fff;
}

#Enclosures {
  scroll-margin-top: 250px;
}

#Patch, #Toughened, #Laminated, #DGU, #Bent, #Blocks, #Facades, #OTS, #Skylights {
  scroll-margin-top: 300px;
}

.footer-address {
  display: flex;
  gap: 15px;
}/*# sourceMappingURL=style.css.map */