:root {
  /* --primary: #894825;
  --secondary: #CEAE93; */

  --primary: #0A4D9E;
  --secondary: #02234d;
  --darkprimary: #355716;
  --lightprimary: #5fb100;
  --darksecondary: #cfaa17;
  --red: #da251c;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: 0.3s all ease-in-out;
  /* background-color: red; */
}

html,
body {
  overflow-x: hidden;
  background-color: #fbfdff;
}

.section {
  padding: 100px 0;
}


/* main-btn start */
.main-btn {
  background-color: white;
  /* Base background */
  padding: 10px 18px;
  border-radius: 5px;
  position: relative;
  /* border: 1px solid #000; */
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--red);
  color: var(--red);
}

/* TEXT WRAPPER */
.main-btn span {
  position: relative;
  z-index: 2;
  /* Text sabse upar */
  color: black;
  font-weight: 600;
  transition: color 0.4s ease;
}

/* AFTER = Animated Overlay */
.main-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  z-index: 1;
  /* Background se upar, text se neeche */
  transition: width 0.5s ease;
}

/* Hover Effect */
.main-btn:hover::after {
  width: 100%;
  /* Left → Right fill */
}

.main-btn:hover span {
  color: white;
  /* Text turns white */
}

.main-btn:hover {
  border: 1px solid black;
  color: white;
}

/* main-btn end */

/* sec-btn start */
.sec-btn {
  background-color: var(--red);
  /* Base background */
  padding: 10px 18px;
  border-radius: 5px;
  position: relative;
  /* border: 1px solid #000; */
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  color: white;
  border: none;
}

/* TEXT WRAPPER */
.sec-btn span {
  position: relative;
  z-index: 2;
  /* Text sabse upar */
  color: white;
  font-weight: 600;
  transition: color 0.4s ease;
}

/* AFTER = Animated Overlay */
.sec-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: black;
  /* Background se upar, text se neeche */
  transition: width 0.5s ease;
}

/* Hover Effect */
.sec-btn:hover::after {
  width: 100%;
  /* Left → Right fill */
}

.sec-btn:hover span {
  color: white;
  /* Text turns white */
}

/* sec-btn end */


/* thir-btn start */

.thir-btn {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 500;
}

.thir-btn i {
  color: var(--secondary);
}

/* thir-btn end */


/* four-btn start */
.four-btn {
  background-color: transparent;
  /* Base background */
  padding: 10px 18px;
  border-radius: 5px;
  position: relative;
  /* border: 1px solid #000; */
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  color: red;
  border: 1px solid red;
}

/* TEXT WRAPPER */
.four-btn span {
  position: relative;
  z-index: 2;
  /* Text sabse upar */
  color: red;
  font-weight: 600;
  transition: color 0.4s ease;
}

/* AFTER = Animated Overlay */
.four-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: rgb(230, 31, 31);
  z-index: -1;
  /* Background se upar, text se neeche */
  transition: width 0.5s ease;
}

/* Hover Effect */
.four-btn:hover::after {
  width: 100%;
  /* Left → Right fill */
}

.four-btn:hover span {
  color: white;
  /* Text turns white */
}

/* four-btn end */



a {
  text-decoration: none;
}

.section {
  padding: 60px 0;
}

.popular {
  color: var(--secondary);
}

/* body {
  font-size: 18px;
  color: #555;
} */

.heading {
  color: red;
  text-transform: uppercase;
  font-weight: 500;
  font-family: serif;
}

.sub-head {
  color: black;
  padding-top: 10px;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 20px;
  font-family: popins;
}

.sub-head span {
  color: red;
}

/* Header */

.header .nav-last {
  display: flex;
}

.header .dropdown-item a {
  color: var(--primary);
}

header .navbar-toggler i {
  color: black;
}

header {
  position: relative;
  /* background-color: var(--primary); */
  z-index: 9999;
  width: 100vw;
}

header .nav-link.active,
header .nav-link:hover {
  color: var(--red) !important;
}

header .nav-link.active,
header .nav-link:hover {
  color: var(--red) !important;
}

header .nav-link {
  font-size: 18px;
}

header .nav-link {
  color: black;
}

header .nav-link i {
  color: #da251c;
}

header .dropdown-menu {
  /* background-color: #000000b0; */
  background-color: black;
}

header .dropdown-menu a {
  color: var(--primary);
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--secondary);
  background-color: black;
}

.navbar-nav .nav-link.show {
  color: var(--secondary);
}

.navbar-toggler {
  border: none !important;
  outline: 0;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover .dropdown-menu {
  display: block;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--secondary);
}

.dropdown-item .nav-item .nav-link {
  color: var(--light-primary);
}

/* home-banner section start */

.carousel-control-next-icon {
  background: var(--primary);
  border-radius: 50%;
}

.carousel-control-prev-icon {
  background: var(--primary);
  border-radius: 50%;
}

.carousel-indicators {
  display: none
}

#home-banner .home-banner-1 {
  display: block;
}

#home-banner {
  position: relative;
}

.home-banner .carousel-inner .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  height: fit-content;
}

.home-banner .carousel-inner .first {
  background-image: url(../img/home-banner.jpg);
  background-position: center;
  background-size: cover;
  height: 87vh;
  background-repeat: no-repeat;
}

/* .home-banner .carousel-inner .second {
  background-image: url("../img/banner-2.jpg");
  background-position: center;
  background-size: cover;
  height: 80vh;
  background-repeat: no-repeat;
}

.home-banner .carousel-inner .third {
  background-image: url("../img/banner");
  background-position: center;
  background-size: cover;
  height: 80vh;
  background-repeat: no-repeat;
} */


.home-banner .carousel-inner .first .carousel-caption {
  text-align: end;

}

.home-banner .carousel-inner .second .carousel-caption {
  text-align: start;
}

.home-banner .carousel-inner .carousel-caption p {
  font-size: 52px;
  color: var(--secondary);
  font-weight: 600;
  color: white;
  font-family: popins;
  font-weight: bold;
}

.home-banner .carousel-inner .carousel-caption p span {
  color: #1a72dc;
}

.home-banner .carousel-inner .first .carousel-caption p:nth-child(2) {
  font-size: 20px;
  font-weight: normal;
  color: white;
  margin-left: 30%;

}

.home-banner .carousel-inner .second .carousel-caption p:nth-child(2) {
  margin-right: 30%;
  margin-left: 0;
  margin-bottom: 25px;
}


.home-banner .carousel-inner .third .carousel-caption p:nth-child(2) {
  margin-left: 30%;
}

.home-banner .carousel-inner .carousel-caption .calling {
  background-color: white;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin-left: 10px;
  text-align: end;
}

.home-banner .carousel-inner .carousel-caption .calling a i {
  color: var(--primary);
}

.home-banner .carousel-inner .carousel-caption h5 {
  color: var(--primary);
}



@keyframes call-ani {
  from {
    height: 20%;
    width: 16px;
  }

  to {}
}



/* home-banner section end */

/* about section start */
#about-sec {
  background-color: #0a4d9e0a;
}

.about-sec {
  height: fit-content;
}

.about-sec .left {
  position: relative;
  overflow: hidden;
}

.about-sec .left .img-box img {
  border-radius: 10px;
}


.about-sec h4 {
  color: var(--darkprimary);
  margin-left: 30px;
}

.about-sec .third-head {
  position: relative;
  margin: 20px 0;
}

.about-sec .third-head::after {
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 20px;
  background-color: var(--secondary);
  width: 10px;
  border-radius: 5px;
}

.about-sec .content p {
  margin-bottom: 30px;
}

.about-sec .content .list-item i {
  font-size: 18px;
  margin: 2px;
  margin-right: 8px;
  background-color: var(--lightprimary);
  color: white;
  padding: 2px;
  border-radius: 50%;
}

@keyframes example {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* about section end */

/* product-sec start */
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 18px !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 18px !important
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  background: var(--primary);
  padding: 20px;
  color: white;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  background: var(--primary);
  padding: 20px;
}

#product-sec {
  background-color: #0a4d9e0a;
}

.product-sec {
  position: relative;
  ;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
}

.product-sec .card-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-sec .card-text i {
  color: #f6c629;
}

.product-sec .card {
  border: none;
  border-radius: 10px;
  position: relative;
}
.swiper-button-next, .swiper-button-prev{
  background-color: black !important;
}
.product-sec .card .sec-btn {
  position: absolute;
  left: 50%;
  top: 100%;
  opacity: 0;
  transform: translateX(-50%);
  transition: 0.5s;
}

.product-sec .card:hover .sec-btn {
  left: 50%;
  top: 50%;
  opacity: 1;
}

.product-sec .card-title {
  font-size: 22px;
  text-align: center;
  font-family: popins;
  font-weight: bold;
}

/* .product-sec .card:hover {
  transform: translateY(-10px);
  transition: 0.5s;
} */

.product-sec button {
  width: 100%;
}

/* product-sec end */



/* sub-banner section start */
#sub-banner {
  background-image: url("../img/sub2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 924px;
}

#sub-banner .sub-banner {
  height: 100%;
  width: 100%;
  background-color: #355716c7;
}

.sub-banner .content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sub-banner .content h1 {
  color: white;
}

.sub-banner .content p {
  color: rgb(218, 216, 216);
}

/* sub-banner section end */


/* gallery section start */
.gallery {
  margin-top: 750px;

}

.gallery .main-box {
  display: flex;
  flex-wrap: wrap;


}

.gallery .main-box .box {
  overflow: hidden;
  flex: 1 1 calc(20% - 16px);
  min-width: 250px;
  max-width: 100%;
}

.gallery .main-box .box img {
  height: 100%;
  width: 100%;
}

.gallery .main-box .box:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}

.gallery .main-box .box:hover img:hover {
  opacity: 0.8;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  justify-content: center;
}

.gallery-item {
  position: relative;
  flex: 1 1 calc(25% - 16px);
  min-width: 250px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  border-radius: 4px;
}

.caption span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.caption h4 {
  margin-top: 2px;
  font-size: 1rem;
}

/* gallery section end */

/* testimonial section start */
/* testimonial start */
#testimonial {
  /* background-color: #f2f6fb; */
  background-size: cover;
}

#testimonial .right {
  background-color: white;
  border-radius: 20px;
}

#testimonial .fa-solid {
  color: #ffffff !important;
  background: black;
  border-radius: 50%;
  padding: 10px 12px;
}

#testimonial .left .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

#testimonial .heading-second::before {
  content: "Testimonial";
  top: -130%;
  color: transparent;
  font-size: 140px;
  position: absolute;
  z-index: -1;
  -webkit-text-stroke: 2px var(--secondary);
  font-family: popins;
  opacity: 0.6;
  left: 50%;
  transform: translateX(-50%);

}

#testimonial .per-name {
  color: var(--red);
  font-size: 24px;
  font-weight: bold;
  font-family: popins;

}

#testimonial .carousel-inner .main-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 100px;
}

#testimonial .carousel-inner .main-box .img-box {
  height: 120px;
  width: 120px;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

#testimonial .carousel-inner .main-box .img-box img {
  height: 100%;
  width: 100%;
}

#testimonial .carousel-inner .main-box .text {
  text-align: center;
  margin-bottom: 30px;
}

#testimonial .carousel-inner .main-box .name {
  margin-bottom: 30px;
  font-size: 18px;
  font-family: popins;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--secondary) !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  margin-left: 6 !important;
  margin-right: 6 !important;
}

.carousel-indicators {
  bottom: -10px !important;
}

/* testimonial end */

/* faq section start */

.faq {
  padding: 80px 0;
  background-color: var(--tolightwhite);
  position: relative;
  margin-top: 200px;
}

.faq .content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
}

.faq .content .accordion-item i {
  margin-right: 20px;
  font-size: 20px;
}

.faq .content .accordion-item .accordion-button {
  font-size: 18px;
  color: var(--darksecondary);
  background-color: transparent;
}

.faq .content .accordion-item .accordion-body {
  font-size: 18px;
}

.faq .content .accordion-item .accordion-button:focus {
  box-shadow: unset;
  border: none;
}

.faq .right {
  position: relative;
  overflow: hidden;
  position: relative;
}

.faq .right .img-box-1 {
  position: absolute;
  width: 90%;
  height: auto;
  top: 0;
  right: 0;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.faq .right .img-box-1 img {
  height: 100%;
  width: 100%;
  /* animation: example 1s linear ;
  animation-iteration-count:1 ; */
  border: 10px solid white;
  border-radius: 2px;
}

.faq .right .img-box-2 {
  position: absolute;
  width: 60%;
  height: auto;
  bottom: 0;
  left: 0;
  border: 10px solid white;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.faq .right .img-box-2 img {
  height: 100%;
  width: 100%;
  /* animation: example 1.5s linear ;
    animation-iteration-count:1 ; */
  border-radius: 2px;
}

/* faq section end */

/* contact section start */
#contact-sec {
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-sec {
  padding: 80px 0;
}

/* .contact-sec .cont-sty {
  flex-wrap: wrap-reverse;
} */


.contact-sec .form h4 {
  font-size: 28px;
  font-weight: 500;
}

.contact-sec .form input {
  padding: 14px 12px;
  border-radius: 3px;
  border: 1px solid rgba(128, 128, 128, 0.274);
  width: 100%;
}

.contact-sec .form input:focus-visible {
  outline: 1px solid var(--primary-color);
}

.contact-sec .form textarea {
  padding: 12px;
  border-radius: 4px;
  width: 100%;
  border: none;
  border-radius: 3px;
  border: 1px solid rgba(128, 128, 128, 0.274);
}

.contact-sec .form textarea:focus-visible {
  outline: 1px solid var(--primary-color);
}

.contact-sec .right p {
  color: var(--gray);
}

.contact-sec .right .btn {
  margin-bottom: 20px;
  margin-top: 20px;
}

.contact-sec .right h4 {
  margin-top: 40px;
}

.contact-sec .right .add {
  font-size: 18px;
  color: var(--gray);
}

.contact-sec .right .cont {
  font-size: 18px;
  color: var(--gray);
}

.contact-sec .right .cont a {
  color: var(--gray);
  text-decoration: none;
  list-style: none;
}

.contact-sec .right .cont a:hover {
  color: var(--primary-color);
  transform: 0.5s;
}

.contact-sec .icon-box a {
  font-size: 18px;
  display: inline-block;
  background: #ffc107;
  color: white;
  line-height: 1;
  padding: 13px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 46px;
  height: 46px;
  transition: 0.3s;
}

.contact-sec .icon-box a:hover {
  background: var(--lightprimary);
  transition: all 0.5s ease;
}

/* contact section end */
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: black;
  font-size: 14px;
}

.footer .footer-content {
  background: #faf6e9;;
  padding: 60px 0 30px 0;

}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--primary);
}

.footer .footer-content .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: black;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: black;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}


.footer .footer-content .footer-dif {
  color: var(--darksecondary);
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: red;
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer-content .footer-links.footer-cont ul li i {
  font-size: 20px;
  margin-right: 5px;
}

.footer-content .footer-links.footer-cont ul li a {
  line-height: normal;
}

.footer-content .footer-links.footer-cont ul .icon-box a i {
  /* color: white !important; */
  margin: 14px 4px;
  font-size: 20px;
}

.footer-content .footer-links.footer-cont ul .icon-box a {
  padding: 5px;
  margin-right: 5px;
  border-radius: 2px;
}
.footer-content .footer-links.footer-cont ul .icon-box a i{
    display: inline-block;
  transition: transform 0.5s ease;
}
.footer-content .footer-links.footer-cont ul .icon-box a i:hover{
  transform: rotateY(180deg);
}

.footer-content .footer-links.footer-cont ul .icon-box .facebook{
color: #1f7bf2 !important;
}
.footer-content .footer-links.footer-cont ul .icon-box .instagram{
  color: #7720ff !important;
}
.footer-content .footer-links.footer-cont ul .icon-box .youtube{
  color: #ff0808 !important;
}
.footer-content .footer-links.footer-cont ul .icon-box .twitter{
  color: black !important;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li i {
  padding-right: 2px;
  color: var(--red) !important;
  font-size: 13px;
  line-height: 1;
}

.footer .footer-content .footer-cont ul li i{
  padding-right: 2px;
  color: var(--red) !important;
  font-size: 20px;
  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: black;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--red);
  transition: 0.5s;
  letter-spacing: 0.2px;
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: white;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary);
  color: black;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type="submit"]:hover {
  background: rgba(var(--primary), 0.85);
}

.footer .footer-legal {
  padding: 15px 0;
  background: #faf6e9;
      border-top: 1px solid #8080804d;
}

.footer .footer-legal .credits {
  font-size: 16px;
    color: black;
    text-align: end;

}
.footer .footer-legal .copyright {
  font-size:16px;
  text-align: start;
}

.footer .footer-legal .copyright a {
  color: var(--light-primary);
}

.footer .footer-legal .credits a {
  color: var(--light-primary);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--primary);
  text-decoration: none;
}

@media only screen and (max-width: 540px) {
  .footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* whatsapp */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s all ease-in-out;
  border-radius: 50%;
  font-size: 2rem;
  color: white;
  box-shadow: 0 0 0.75rem #18d26e;
  background-color: #18d26e;
  z-index:5;
}

.whatsapp:hover {
  background-color: white;
  color: #18d26e;
}

.call {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  transition: 0.1s all ease-in-out;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2rem;
  color: white;
  background-color: #222222;
  box-shadow: 0 0 0.5rem #eee;
    z-index:5;
}

.call:hover {
  background-color: white;
  color: #222222;
}

/* banner section start */
#banner {
  background-image: linear-gradient(rgb(0 0 0 / 76%), rgb(0 0 0 / 36%)), url("../img/product/prod-banner.jpg");
  background-size: cover;
  height: fit-content;
  background-position: bottom;

}

.banner {
  padding: 250px 0 100px 0;
}

/* #banner .overlay{
  height:100%;
  width: 100%;
  background-color: red;
  position: absolute;

 } */
.banner .content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner .content h1 {
  color: var(--darksecondary);
  text-shadow: 1px 1px black;
  font-size: 65px;

}

.banner .content p {
  color: white;
  text-shadow: 1px 1px black;

}

/* banner section end */

/* product-page start */
.carousel-image {
  display: none;
}

.carousel-image.active {
  display: block;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 9999px;
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}

.dot.active {
  background-color: #4f46e5;
  /* Tailwind indigo-600 */
}

/* product-page end */

/* product-cat start */

.product-cat .img-box {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.product-cat .carousel-control-next-icon {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.74);
}

.product-cat .carousel-control-prev-icon {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.74);
}

hr {
  height: 2px;
  background-color: black;
}

/* product-cat end */



.contact-page .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
  ;
  padding: 2rem;
}

.contact-page .content h4 {
  color: var(--darkprimary);
  margin-top: 20px;
  font-size: 28px;
}

.contact-page .content i {
  color: white;
  background-color: var(--secondary);
  font-size: 3rem;
  padding: 2px 10px;
  border-radius: 5px;

}

.contact-page .content .fa-phone-volume {
  padding: 15px 12px;

}

.contact-page .content p {

  color: gray;
  margin-top: 5px;
  font-size: 18px;
}

.contact-page .content p a {
  text-decoration: none;
  color: gray;
}

.contact-page .content p a:hover {
  color: var(--darksecondary);
  transition: 0.5s;
}



/* contact-page end */

/* gallery page start */
.gallery .img-box {
  position: relative;
  height: fit-content;
  width: auto;
  overflow: hidden;
}

.gallery .img-box:hover .over {
  right: 0;
  bottom: 0;
  transition: 0.5s;
  backdrop-filter: blur(5px);


}

.gallery .img-box img {
  width: 100%;
  height: 100%;
}

.gallery .img-box .over {
  position: absolute;
  background-color: rgba(10, 10, 10, 0.356);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  bottom: 100%;
  right: 100%;
  backdrop-filter: blur(1px);

}

.gallery .img-box .over p {
  position: absolute;
  /* font-size: 22px; */
  font-weight: 700;
  color: var(--primary);
  text-align: center;

}

/* gallery page end */


/* .sub-banner-1 section start */
.sub-banner-1 .container-fluid {
  padding-left: 0;
  padding-right: 0;
}


/* .sub-banner-1 section end */

/* trust section start */
.trust {
  padding: 50px 0;
}

.trust .content p {
  font-size: 18px;
  color: var(--gray);
}

.trust .item-group {
  display: flex;
}

.trust .item-group img {
  width: 150px;
  margin: 20px 60px;
  height: auto;
}


/* trust section end */

/* Categories start */
#categories-sec .category-card {
  /* background-color: white;
  border: 1px solid #00000017; */
  border-radius: 5px;
  padding: 20px 10px;
  position: relative;
  z-index: 2;
  height: 100%;
}

#categories-sec .category-card::after {
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    background: rgba(128, 128, 128, 0.089);
    height: 0%;
    z-index: -1;
    border-radius: 10px;
    transition: 0.3s all ease;
    width: 100%;
}


#categories-sec .category-card .hov-content {
  opacity: 0;
  transform: 0.5s;
  position: relative;
}

#categories-sec .category-card:hover .hov-content{
  opacity: 1;
}

#categories-sec .category-card .hov-content .category-title-2{
  display: block;
}

#categories-sec .category-card .sec-btn{
  opacity: 1;
  position: absolute;
  left: 50%;
  bottom: -120%;
      transform: translatex(-50%);
  white-space: nowrap;
    width: fit-content;
    height: auto;
    height: fit-content;

}

#categories-sec .category-card:hover .sec-btn{
     opacity: 1;
    bottom: 100%;
  
  bottom: -100%;
}


#categories-sec .category-card:hover::after {
    height: 70%;

}

#categories-sec .category-card .category-icon i {
  font-size: 70px;
  color: var(--primary);
}

#categories-sec .category-card .category-text {
  color: black;
}

/* Categories end */

/* why-choose start */
/* #why-choose{
  background-color: #0a4d9e0a;
} */
 #why-choose{
  background-color: white;
 }
.why-choose .form-box {
  background: #0d3b8e;
  color: #fff;
}

.why-choose .form-box p {
  color: #e5e5e5;
}

.why-choose input {
  height: 45px;
  border-radius: 6px;
}

.why-choose .right .box i {
  color: var(--primary);
  font-size: 50px;
  margin-bottom: 20px;

}

#why-choose .wc-box i {
  color:var(--red);
  font-size: 24px;
}

.why-choose .right img{
  border-radius: 10px;
}

/* why-choose end */


/* industries-sec start */
#industries-sec {
  background-color: #0a4d9e0a;
}

#industries-sec .category-card {
  background-color: white;
  border: 1px solid #00000017;
  border-radius: 5px;
  padding: 20px 10px;
}

#industries-sec .category-card .category-icon i {
  font-size: 70px;
  color:#da251c;
}

#industries-sec .category-card .category-text {
  color: black;
}

/* industries-sec end */


.hero {
  background: rgba(249, 191, 41, 0.1);
  padding: 90px 100px;
  position: relative;
  z-index: 2;
}

.hero h2 {
  color: black;
  font-size: 50px;

}

.hero h2 span {
  color: var(--red);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  z-index: -1;
  background-color: rgb(218 37 28 / 19%);
}

@media (max-width: 768px) {
  .hero::after {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 24px;
  }
}

.hero .product13 {
  position: absolute;
  top: 50px;
  left: -140px;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .hero .product13 {
    max-width: 280px;
    height: 300px;
    top: 50px;
    left: -40px;
  }
}

.hero .product12 {
  position: absolute;
  top: 40px;
  left: 300px;
  width: 350px !important;
  height: 580px;
}

@media (max-width: 768px) {
  .hero .product12 {
    top: 60px;
    left: 180px;
    width: 170px !important;
    height: 250px !important;
  }
}

.hero .product15 {
  position: absolute;
  top: 70%;
  z-index: -1;
  left: 0px;
  width: 300px;
  height: 250px;
  transform: rotateX(90deg);
  transform: rotateY(190deg);
}

@media (max-width: 768px) {
  .hero .product15 {
    width: 200px;
    height: 150px;
    top: 150px;
    left: 0px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 10px !important;
  }
}
@media (max-width: 575px) {
  .hero {
    padding: 60px 5px !important;
  }
}

/* contact page start */
.contact-section {
  background: #fff;
}

.contact-section .custom-input {
  border: 1px solid #0dcaf0;
  padding: 14px !important;
  border-radius: 6px;
  border: 1px solid #00000054 !important;
}

.contact-section .custom-input:focus {
  box-shadow: none;
  border-color: #0bbcd6;
}

.contact-section .send-btn {
  background: #00bcd4;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 6px;
}

.contact-section .send-btn:hover {
  background: #00a4bb;
  color: #fff;
}

.contact-section .icon-box {
     width: 48px;
    height: 48px;
    color: #da251c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 15px;
    background: #f4cfc2;
    flex-shrink: 0;
}
.contact-section .right .contact-info .icon-box i{
  font-size: 20px;
}
.contact-section .right .contact-info h6{
     font-size: 20px;
    font-weight: 600;
}

.contact-section .form-control:focus{
  box-shadow: none !important;
}
.contact-sec .left {
  border-radius: 10px;
}
.contact-sec .form-control:focus{
  box-shadow: none !important;
}

/* contact page end */


/* breadcrumb start */
#breadcrumb{
  background:url(../img/breadcrumb.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
#breadcrumb h2{
 font-size: 32px;
    font-weight: bold;
    color: black;
}
.breadcrumb{
  margin-bottom: 0;
}
.breadcrumb-item.active{
  color: black;
}
.breadcrumb-item a{
  color: black;
  font-size: 16px;
}
.breadcrumb-item a:hover{
  color: var(--red);
}

/* breadcrumb end */

/* product-page start */
#product-page .card{
  border: none;
  position: relative;
  background-color: transparent;
  margin-bottom: 25px;
}
#product-page .card .card-title{
  font-size: 22px;
  font-family: popins;
  font-weight: bold;
  text-align: center;
}
#product-page .card .card-body{
  padding-bottom: 30px !important;
  position: relative;
}

#product-page .card::after {
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    background: rgba(128, 128, 128, 0.089);
    height: 0%;
    z-index: -1;
    border-radius: 10px;
    transition: 0.3s all ease;
    width: 100%;
}


#product-page .card:hover::after {
    height: 70%;

}

#product-page .card .sec-btn{
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;


}
#product-page .card:hover .sec-btn{
    bottom: -25%;
    opacity: 1;

}

#product-page .card:hover .sec-btn{
  
}



/* product-page end */