@import url("https://fonts.cdnfonts.com/css/sf-pro-display");
:root {
  --btn-background: #c31b21;
  --banner-background: linear-gradient(
    to right,
    rgba(255, 210, 212, 1),
    rgba(248, 248, 248, 1),
    rgba(255, 255, 255.1)
  );
  --common-text-color: #252525;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "SF Pro Display", sans-serif;
}

body {
  overflow-x: hidden; /* Hide horizontal scroll */
  overflow-y: auto; /* Allow vertical scroll */
}

@media (max-width: 768px) {
  /* Adjust this based on your mobile breakpoint */
  body,
  html {
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    overflow-y: auto; /* Ensure vertical scroll works */
  }
}
input:focus, input:active,
textarea:focus,
textarea:active {
  outline: 1px solid var(--btn-background) !important;
}

a {
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}
a:hover {
  transform: scale(0.97) !important;
}

.swiper-wrapper {
  cursor: pointer;
}

p,
h4,
h3,
h5 {
  color: #252525 !important;
}

@media (max-width: 768px) {
  h4 {
    font-size: large !important;
  }
}

@media (max-width: 768px) {
  h5 {
    font-size: large !important;
  }
}

@media (max-width: 768px) {
  h3 {
    font-size: large !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: x-large !important;
  }
}

@media (max-width: 768px) {
  p {
    font-size: small !important;
  }
}

@media (max-width: 768px) {
  a {
    font-size: 14px !important;
    padding: 0.4rem 1rem !important;
  }
}

header {
  width: 100%;
  background: var(--banner-background); /* Adjust background if needed */
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 1rem;
  padding-bottom: 5rem;
}

nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Align items to the left */
  padding: 1rem 5rem;
  transition: all 0.3s ease;
  z-index: 9999;
}
nav.navbar.navbar-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Align items to the left */
  padding: 1rem 5rem;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
@media (max-width: 1086px) {
  nav.navbar.navbar-scrolled {
    padding: 1rem 3rem !important;
  }
}
@media (max-width: 991px) {
  nav.navbar.navbar-scrolled {
    padding: 1rem 1rem !important;
  }
}
@media (max-width: 917px) {
  nav.navbar.navbar-scrolled {
    padding: 1rem 4rem !important;
  }
}
@media (max-width: 500px) {
  nav.navbar.navbar-scrolled {
    padding: 1rem 2rem !important;
  }
}
@media (max-width: 287px) {
  nav.navbar.navbar-scrolled {
    padding: 1rem 0.5rem !important;
  }
}
@media (max-width: 1086px) {
  nav.navbar {
    padding: 0 3rem;
  }
}
@media (max-width: 991px) {
  nav.navbar {
    padding: 0 1rem;
  }
}
@media (max-width: 917px) {
  nav.navbar {
    padding: 0 4rem;
  }
}
@media (max-width: 500px) {
  nav.navbar {
    padding: 0 2rem;
  }
}
@media (max-width: 287px) {
  nav.navbar {
    padding: 0 0.5rem !important;
  }
}

.nav-logo img {
  height: 60px; /* Adjust size as per logo dimensions */
  margin-right: 2rem; /* Add space between the logo and the links */
}

.nav-links {
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 917px) {
  .nav-links {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100vh;
    top: 0;
    right: -10000px;
    background-color: #ffece9;
    padding-top: 4rem;
    gap: 1rem;
    z-index: 9999;
  }
  .nav-links ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .nav-links ul li a {
    color: #000000 !important;
  }
  .nav-links .call-now-btn {
    background-color: var(--btn-background);
    color: ffffff;
    margin-top: 1rem;
  }
}

.nav-links ul {
  display: flex !important;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 2rem;
}

.nav-links ul li {
  padding-left: 2rem; /* Space between menu items */
}

.nav-links ul li a {
  color: #333; /* Default color for menu items */
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  transition: all 0.5s ease;
}
.nav-links ul li a:hover {
  color: var(--btn-background);
}

.nav-links ul li a.active {
  color: #d32727 !important; /* Color for active menu item */
}

.nav-links ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1.5px;
  background-color: #d32727; /* Underline color */
}
@media (max-width: 917px) {
  .nav-links ul li a.active::after {
    background-color: #d32727;
  }
}

/* Adjust Call Now button placement and size */
.call-now-btn {
  background-color: #d32727; /* Red button color */
  color: #ffffff;
  padding: 0.5rem 2rem; /* Reduce padding for better sizing */
  font-size: 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
@media (max-width: 1086px) {
  .call-now-btn {
    padding: 0.4rem 1.5rem;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .call-now-btn {
    padding: 0.3rem 1.3rem;
    font-size: 14px;
  }
}

.call-now-btn a:hover {
  background-color: var(--btn-background);
}

#nav-opener {
  font-size: 25px;
  color: var(--btn-background);
  display: none;
}
@media (max-width: 917px) {
  #nav-opener {
    display: block;
  }
}

#nav-close {
  font-size: 25px;
  color: var(--btn-background);
  position: absolute;
  top: 3%;
  left: 4%;
  display: none;
}
@media (max-width: 917px) {
  #nav-close {
    display: block;
  }
}

.hero-sec {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .hero-sec {
    padding-top: 5rem;
  }
}
.hero-sec .banner-left-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.hero-sec .banner-left-sec p {
  margin: 0;
}
.hero-sec .banner-left-sec a {
  background-color: var(--btn-background);
  color: #ffffff;
  padding: 0.5rem 2rem;
  margin-top: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  font-size: 20px;
}
.hero-sec .banner-left-sec h4 {
  font-weight: 400;
}
.hero-sec .banner-left-sec h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-sec .banner-right-sec img {
  max-width: 863px;
  width: 117.5%;
  height: 586px;
}
@media (min-width: 991px) and (max-width: 1093px) {
  .hero-sec .banner-right-sec img {
    width: 117%;
  }
}
@media (max-width: 991px) {
  .hero-sec .banner-right-sec img {
    width: 100%;
    height: auto;
  }
}

.second-sec {
  padding-top: 8rem;
  padding-bottom: 5rem;
}
.second-sec .container .row div:nth-child(1) {
  display: flex;
  justify-content: center;
}
@media (max-width: 500px) {
  .second-sec .container .row div:nth-child(1) img {
    width: 100%;
    height: 100%;
  }
}
.second-sec .container .row div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.second-sec .container .row div:nth-child(2) h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  max-width: 500px;
}
.second-sec .container .row div:nth-child(2) a {
  background-color: var(--btn-background);
  color: #ffffff;
  padding: 0.5rem 2rem;
  margin-top: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  font-size: 20px;
}
@media (max-width: 991px) {
  .second-sec .container .row div:nth-child(2) {
    padding-top: 3rem;
  }
}

.third-sec .container .row > div {
  margin-bottom: 3rem;
}
.third-sec .container .row > div .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.third-sec .container .row > div .content p {
  text-align: center;
  margin: 0;
  max-width: 200px;
  width: 100%;
}

.fourth-sec {
  background-color: #ffece9;
  padding: 4rem 0;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .fourth-sec {
    margin: 0;
    padding: 2rem 0;
  }
}
.fourth-sec .container .row div:nth-child(1) .first-div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}
.fourth-sec .container .row div:nth-child(1) .first-div .heading-div h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.fourth-sec .container .row div:nth-child(1) .first-div .list-div {
  display: flex;
  flex-direction: column;
}
.fourth-sec .container .row div:nth-child(1) .first-div .list-div p {
  padding-left: 1.5rem;
}
@media (max-width: 991px) {
  .fourth-sec .container .row div:nth-child(1) .first-div .list-div {
    margin: 1rem 0;
  }
}
@media (max-width: 768px) {
  .fourth-sec .container .row div:nth-child(1) .first-div .list-div {
    margin: 0.5rem 0;
  }
}
.fourth-sec .container .row div:nth-child(2) {
  display: flex;
  justify-content: center;
}
@media (max-width: 500px) {
  .fourth-sec .container .row div:nth-child(2) img {
    width: 100%;
    height: 100%;
  }
}

.featured-products {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .featured-products {
    padding: 2rem 0;
  }
}
.featured-products .container .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.featured-products .container .heading h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.featured-products .container .heading p {
  max-width: 700px;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}
.featured-products .container .row {
  margin-top: 2rem;
}
.featured-products .container .row div {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.featured-products .container .row div .content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: #ffece9;
  max-width: 400px;
  width: 100%;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  height: 100%;
  transition: all 0.5s ease;
}
.featured-products .container .row div .content h5 {
  margin-top: 2rem;
  max-width: 200px;
  width: 100%;
}
.featured-products .container .row div .content p {
  margin-top: 0.5rem;
  max-width: 300px;
  width: 100%;
}
.featured-products .container .row div .content a {
  background-color: var(--btn-background);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  margin-top: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .featured-products .container .row div .content h5 {
    margin-top: 1rem;
  }
  .featured-products .container .row div .content p,
  .featured-products .container .row div .content a {
    margin-top: 0;
  }
}
.featured-products .container .row div .content:hover {
  background-color: #343031;
}
.featured-products .container .row div .content:hover a,
.featured-products .container .row div .content:hover p,
.featured-products .container .row div .content:hover h5,
.featured-products .container .row div .content:hover span {
  color: #ffffff !important;
}
@media (max-width: 768px) {
  .featured-products .container .row div {
    display: flex;
    justify-content: center;
  }
}
.featured-products .brand-image {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .featured-products .brand-image {
    padding: 1.5rem 0;
  }
}
.featured-products .brand-image .ourBrandsSlider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-service {
  background-color: #ffece9;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .our-service {
    padding: 2rem 0;
  }
}
.our-service .container .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-service .container .heading h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.our-service .container .heading p {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}
.our-service .service-viewmore {
  display: flex;
  justify-content: center;
}
.our-service .service-viewmore a {
  background-color: var(--btn-background);
  color: #ffffff;
  padding: 0.5rem 2rem;
  margin-top: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .our-service .service-viewmore a {
    margin-top: 0;
  }
}
.our-service .ourServiceSwiper .swiper-wrapper .swiper-slide {
  padding: 1.5rem;
}
.our-service .ourServiceSwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.our-service .ourServiceSwiper .swiper-wrapper .swiper-slide h5 {
  font-weight: 500;
}
@media (max-width: 991px) {
  .our-service .ourServiceSwiper .swiper-wrapper .swiper-slide h5 {
    font-size: large;
  }
}
@media (max-width: 768px) {
  .our-service .ourServiceSwiper .swiper-wrapper .swiper-slide h5 {
    font-size: small;
  }
}
.our-service .ourServiceSwiper .swiper-button-next,
.our-service .ourServiceSwiper .swiper-button-prev {
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 0 1.4rem;
  top: 50%;
  transform: translateY(-65%);
}
@media (max-width: 500px) {
  .our-service .ourServiceSwiper .swiper-button-next,
  .our-service .ourServiceSwiper .swiper-button-prev {
    width: 38px;
    height: 38px;
    padding: 0 0;
  }
}
@media (max-width: 400px) {
  .our-service .ourServiceSwiper .swiper-button-next,
  .our-service .ourServiceSwiper .swiper-button-prev {
    width: 28px;
    height: 28px;
    padding: 0 0;
  }
}
.our-service .ourServiceSwiper .swiper-button-next i,
.our-service .ourServiceSwiper .swiper-button-prev i {
  color: #212b36;
  font-size: small;
  border-radius: 50%;
}
.our-service .ourServiceSwiper .swiper-button-next::after,
.our-service .ourServiceSwiper .swiper-button-prev::after {
  content: "";
}
.our-service .ourServiceSwiper .swiper-button-next {
  right: 0px;
}
@media (max-width: 500px) {
  .our-service .ourServiceSwiper .swiper-button-next {
    right: 5px;
  }
}
@media (max-width: 500px) {
  .our-service .ourServiceSwiper .swiper-button-next {
    right: 10px;
  }
}
.our-service .ourServiceSwiper .swiper-button-prev {
  left: 0px;
}
@media (max-width: 500px) {
  .our-service .ourServiceSwiper .swiper-button-prev {
    left: 5px;
  }
}
@media (max-width: 400px) {
  .our-service .ourServiceSwiper .swiper-button-prev {
    left: 10px;
  }
}

.testimonial {
  padding: 5rem 0;
}
.testimonial .container-fluid {
  padding-left: 9rem;
}
@media (max-width: 1174px) {
  .testimonial .container-fluid {
    padding-left: 7rem;
  }
}
@media (max-width: 1098px) {
  .testimonial .container-fluid {
    padding-left: 5rem;
  }
}
@media (max-width: 576px) {
  .testimonial .container-fluid {
    padding-left: 0;
    padding: 1rem;
  }
}
.testimonial .testimonialSwiper .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial .testimonialSwiper .heading h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.testimonial .testimonialSwiper .heading p {
  margin-top: 1rem;
  max-width: 510px;
  width: 100%;
}
.testimonial .testimonialSwiper .swiper-wrapper {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide {
  position: relative;
  padding: 2.5rem 1.5rem;
  background-color: #fff;
  border-radius: 20px;
  z-index: 1;
  border: 1px solid;
  transition: all 0.3s ease;
}
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide:hover {
  background-color: #343031;
}
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide:hover p,
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide:hover span {
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .testimonial .testimonialSwiper .swiper-wrapper .swiper-slide {
    padding: 2rem 1rem;
  }
}
@media (max-width: 576px) {
  .testimonial .testimonialSwiper .swiper-wrapper .swiper-slide {
    padding: 1rem 0.5rem;
  }
}
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #252525, #c21c22);
  border-radius: 15px;
  z-index: -1;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide p {
  font-size: 13px;
}
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide div {
  margin-top: 2rem;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1rem;
}
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide div img {
  width: 46px;
  height: 46px;
}
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide div span {
  font-weight: 600;
}
.testimonial .testimonialSwiper .swiper-wrapper .swiper-slide div span p {
  font-weight: 400;
}
.testimonial .testimonialSwiper .swiper-button-next::before, .testimonial .testimonialSwiper .swiper-button-next::after,
.testimonial .testimonialSwiper .swiper-button-prev::before,
.testimonial .testimonialSwiper .swiper-button-prev::after {
  content: "";
}
.testimonial .testimonialSwiper .swiper-button-next {
  top: 100px;
  right: 10%;
}
.testimonial .testimonialSwiper .swiper-button-prev {
  top: 100px;
  left: 83%;
}
@media (max-width: 1300px) {
  .testimonial .testimonialSwiper .swiper-button-next {
    right: 8%;
  }
  .testimonial .testimonialSwiper .swiper-button-prev {
    left: 80%;
  }
}
@media (max-width: 991px) {
  .testimonial .testimonialSwiper .swiper-button-next {
    right: 5%;
  }
  .testimonial .testimonialSwiper .swiper-button-prev {
    left: 80%;
  }
}
@media (max-width: 768px) {
  .testimonial .testimonialSwiper .swiper-button-next {
    right: 3%;
    display: none;
  }
  .testimonial .testimonialSwiper .swiper-button-prev {
    left: 70%;
    display: none;
  }
}
.testimonial .testimonialSwiper .swiper-pagination {
  bottom: 0;
}
.testimonial .testimonialSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 4px;
  border-radius: 5px !important;
  background-color: #d54735 !important;
}
.testimonial .testimonialSwiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px !important;
  height: 4px;
  background-color: var(--btn-background) !important;
}

.contact-sec {
  padding-bottom: 3rem;
}
.contact-sec .container .row div:nth-child(1) .heading h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.contact-sec .container .row div:nth-child(1) .heading p {
  max-width: 450px;
  width: 100%;
}
.contact-sec .container .row div:nth-child(1) .heading div {
  margin-top: 5rem;
}
@media (max-width: 991px) {
  .contact-sec .container .row div:nth-child(1) .heading div {
    margin-top: 3rem;
  }
}
@media (max-width: 991px) {
  .contact-sec .container .row div:nth-child(1) .heading div {
    margin-top: 1rem;
  }
}
.contact-sec .container .row div:nth-child(1) .heading .list-div {
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .contact-sec .container .row div:nth-child(1) .heading .list-div {
    margin: 1rem 0;
  }
}
.contact-sec .container .row div:nth-child(1) .heading .list-div a {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-sec .container .row div:nth-child(1) .heading .list-div a p {
  max-width: 300px;
  width: 100%;
  margin: 0;
  font-size: 16px;
}
.contact-sec .container .row div:nth-child(1) .heading .list-div a img {
  width: auto;
}
.contact-sec .container .row .form-sec {
  background-color: #ffece9;
  padding: 3rem 3rem;
  border-radius: 20px;
}
.contact-sec .container .row .form-sec form {
  width: 100%;
  height: 100%;
}
.contact-sec .container .row .form-sec form .row {
  margin-top: 2rem;
}
.contact-sec .container .row .form-sec form .row div {
  margin-bottom: 1rem;
}
.contact-sec .container .row .form-sec form .row div input {
  width: 100%;
  height: 48px;
  border-radius: 5px;
  border: 1px solid #ac9a9a;
  background-color: #ffece9;
  color: #ac9a9a;
  padding-left: 2rem;
}
.contact-sec .container .row .form-sec form .row div input::-moz-placeholder {
  color: #ac9a9a;
}
.contact-sec .container .row .form-sec form .row div input::placeholder {
  color: #ac9a9a;
}
.contact-sec .container .row .form-sec form .row div textarea {
  width: 100%;
  height: 96px;
  border-radius: 5px;
  border: 1px solid #ac9a9a;
  background-color: #ffece9;
  color: #ac9a9a;
  padding-left: 2rem;
  padding-top: 0.5rem;
}
.contact-sec .container .row .form-sec form .row div textarea::-moz-placeholder {
  color: #ac9a9a;
}
.contact-sec .container .row .form-sec form .row div textarea::placeholder {
  color: #ac9a9a;
}
.contact-sec .container .row .form-sec form a {
  background-color: var(--btn-background);
  color: #ffffff;
  padding: 0.7rem 2rem;
  border-radius: 5px;
}

.footer {
  background-color: #ffd8d3;
}
.footer .container {
  padding: 5rem 0;
}
.footer .container .row {
  width: 100%;
}
.footer .container .row div ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .container .row div ul li {
  padding-bottom: 1rem;
}
.footer .container .row div ul li a {
  color: #000;
}
.footer .container .row div ul li a:hover {
  color: var(--btn-background);
}
.footer .container .row div ul li a.active {
  color: #d32727; /* Color for active menu item */
}
.footer .container .row .third-div {
  display: flex;
  justify-content: end;
}
@media (max-width: 768px) {
  .footer .container .row .third-div {
    justify-content: start;
    margin-top: 2rem;
  }
}
.footer .container .row .last-div {
  display: flex;
  justify-content: end;
}
.footer .container .row .last-div .content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .container .row .last-div .content .inner-content .icons {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}
.footer .container .row .last-div .content .inner-content .icons a {
  color: #000;
  font-size: x-large;
}
.footer .container .row .last-div .content .inner-content .icons a:hover {
  transform: rotate(20deg) !important;
}
.footer .container .row .last-div .content .bottom-div {
  margin-bottom: 1rem;
}
.footer .container .row .last-div .content .bottom-div form {
  position: relative;
}
.footer .container .row .last-div .content .bottom-div form input {
  width: 90%;
  height: 48px;
  background-color: #ffffff;
  border: none;
  border-radius: 5px;
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.footer .container .row .last-div .content .bottom-div form .newsletter-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  right: 13%;
  color: #ffffff;
  background-color: var(--btn-background);
  padding: 0.3rem 0.5rem;
  font-size: x-small;
  margin: 0;
  border: none;
}
@media (max-width: 991px) and (min-width: 768px) {
  .footer .container .row .last-div {
    justify-content: center;
  }
  .footer .container .row .last-div .content {
    align-items: center;
  }
  .footer .container .row .last-div .content .inner-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
  }
  .footer .container .row .last-div .content .bottom-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .container .row .last-div .content .bottom-div form {
    width: 100%;
  }
  .footer .container .row .last-div .content .bottom-div form input {
    width: 100%;
  }
  .footer .container .row .last-div .content .bottom-div form .newsletter-btn {
    right: 2%;
  }
}
@media (max-width: 768px) {
  .footer .container .row .last-div {
    justify-content: flex-start;
    margin-top: 2rem;
    padding-left: 2rem;
  }
  .footer .container .row .last-div .content {
    width: 100%;
  }
  .footer .container .row .last-div .content .inner-content .icons {
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  .footer .container .row .last-div {
    justify-content: center;
  }
  .footer .container .row .last-div .content {
    align-items: center;
  }
  .footer .container .row .last-div .content .inner-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
  }
  .footer .container .row .last-div .content .bottom-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .container .row .last-div .content .bottom-div form {
    width: 100%;
  }
  .footer .container .row .last-div .content .bottom-div form input {
    width: 100%;
  }
  .footer .container .row .last-div .content .bottom-div form .newsletter-btn {
    right: 2%;
  }
}
.footer .copy-write {
  background-color: #fec5be;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 0.1rem 0;
}
.footer .copy-write p {
  color: #343031 !important;
  text-align: center;
}
.footer .copy-write p a {
  color: #343031 !important;
  padding: 0 !important;
}

.about-hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-hero h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.mission {
  padding: 4rem 0;
  padding-bottom: 5.5rem;
}
@media (max-width: 500px) {
  .mission {
    padding-bottom: 2rem;
  }
}
.mission .container .row div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .mission .container .row div:nth-child(1) img {
    width: 100%;
    height: auto;
  }
}
.mission .container .row div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.mission .container .row div:nth-child(2) .mission-div,
.mission .container .row div:nth-child(2) .vission-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mission .container .row div:nth-child(2) .mission-div h1,
.mission .container .row div:nth-child(2) .vission-div h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.mission .container .row div:nth-child(2) .mission-div p,
.mission .container .row div:nth-child(2) .vission-div p {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .mission .container .row div:nth-child(2) {
    padding-top: 3rem;
  }
}

.message-ceo {
  padding: 5rem 0;
}
.message-ceo .container .row div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .message-ceo .container .row div:nth-child(1) img {
    width: 100%;
    height: auto;
  }
}
.message-ceo .container .row div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.message-ceo .container .row div:nth-child(2) .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.message-ceo .container .row div:nth-child(2) .content h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .message-ceo .container .row div:nth-child(2) .content h1 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .message-ceo .container .row div:nth-child(2) .content h1 {
    margin-top: 2rem;
  }
}

.two-image .container .row div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.two-image .container .row div:nth-child(1) {
  display: flex;
  justify-content: center;
}
.two-image .container .row div:nth-child(1) img {
  margin-left: 7.5rem;
}
@media (max-width: 1399px) {
  .two-image .container .row div:nth-child(1) img {
    margin-left: 1rem !important;
  }
}
@media (max-width: 1199px) {
  .two-image .container .row div:nth-child(1) img {
    margin-left: 0rem !important;
  }
}
.two-image .container .row div:nth-child(2) {
  display: flex;
  justify-content: center;
}
.two-image .container .row div:nth-child(2) img {
  margin-right: 7.5rem;
}
@media (max-width: 1399px) {
  .two-image .container .row div:nth-child(2) img {
    margin-right: 1rem !important;
  }
}
@media (max-width: 1199px) {
  .two-image .container .row div:nth-child(2) img {
    margin-right: 0rem !important;
  }
}
@media (max-width: 768px) {
  .two-image .container .row div:nth-child(2) img {
    margin-top: 2rem;
  }
}
@media (max-width: 991px) {
  .two-image .container .row div img {
    width: 100%;
    height: 100%;
  }
}

.service-hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-hero h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.main-service {
  padding: 7rem 0;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .main-service {
    padding: 5rem 0;
    padding-bottom: 2rem;
  }
}
.main-service .container .row div {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .main-service .container .row div {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .main-service .container .row div {
    margin-bottom: 0;
  }
}
.main-service .container .row div .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-service .container .row div .content p {
  font-size: 24px;
  font-weight: 500;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .main-service .container .row div .content p {
    font-size: 20px !important;
  }
}
@media (max-width: 1200px) {
  .main-service .container .row div .content img {
    width: 100%;
    height: auto;
  }
}

.service-detail-hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-detail-hero h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.service-details {
  padding-top: 7rem;
}
@media (max-width: 768px) {
  .service-details {
    padding-top: 3rem;
  }
}
.service-details .container .heading h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.service-details .container .row div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .service-details .container .row div:nth-child(1) img {
    width: 100%;
    height: auto;
  }
}
.service-details .container .row div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-details .container .row div:nth-child(2) h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
}
.service-details .container .row div:nth-child(2) p {
  font-size: 16px;
}
@media (max-width: 991px) {
  .service-details .container .row div:nth-child(2) {
    margin-top: 2rem;
  }
}

.extra-details {
  padding-bottom: 0rem;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .extra-details {
    padding-bottom: 0;
    margin-top: 1rem;
  }
}
.extra-details .container .heading h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.extra-details .container .row div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .extra-details .container .row div:nth-child(1) img {
    width: 100%;
    height: auto;
  }
}
.extra-details .container .row div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.extra-details .container .row div:nth-child(2) h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
}
.extra-details .container .row div:nth-child(2) p {
  font-size: 16px;
}
@media (max-width: 991px) {
  .extra-details .container .row div:nth-child(2) {
    margin-top: 2rem;
  }
}

.explore-more {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .explore-more {
    padding: 0;
    padding-top: 2rem;
  }
}
@media (max-width: 1800px) and (min-width: 1200px) {
  .explore-more {
    padding-left: 4rem;
  }
}
.explore-more .container .heading h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.explore-more .container .exploreMoreService .swiper-wrapper {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .explore-more .container .exploreMoreService .swiper-wrapper {
    padding: 0;
  }
}
.explore-more .container .exploreMoreService .swiper-wrapper .swiper-slide .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.explore-more .container .exploreMoreService .swiper-wrapper .swiper-slide .content p {
  margin-top: 1rem;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 991px) {
  .explore-more .container .exploreMoreService .swiper-wrapper .swiper-slide .content p {
    font-size: small !important;
  }
}
@media (max-width: 1400px) {
  .explore-more .container .exploreMoreService .swiper-wrapper .swiper-slide .content img {
    width: 100%;
    height: auto;
  }
}

.contact-us-hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-us-hero h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.contact-page {
  padding: 7rem 0;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .contact-page {
    padding: 4rem 0;
    padding-bottom: 3rem;
  }
}

.map {
  margin-bottom: 4.5rem;
}
@media (max-width: 768px) {
  .map {
    margin-bottom: 2.5rem;
  }
}
.map .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1400px) {
  .map .container img {
    width: 100%;
    height: auto;
  }
}

.our-brand-hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-brand-hero h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.brand-sec {
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .brand-sec {
    padding: 3rem 0;
  }
}
.brand-sec .container .row div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.brand-sec .container .row div .img-content {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.brand-sec .container .row div .img-content img {
  width: 100%;
  height: 100%;
  border: 1px solid rgb(130, 120, 120);
}

.Client-hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Client-hero h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.Client-sec {
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .Client-sec {
    padding: 3rem 0;
  }
}
.Client-sec .container .row div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.Client-sec .container .row div .img-content {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.Client-sec .container .row div .img-content img {
  width: 100%;
  height: 100%;
  outline : 2px solid rgba(67,67,67,.5);
}

.updates-hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.updates-hero h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.latset-updates {
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .latset-updates {
    padding: 2.5rem 0;
  }
}
.latset-updates .container .latestUpdateSwiper .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.latset-updates .container .latestUpdateSwiper .heading h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.latset-updates .container .latestUpdateSwiper .heading p {
  margin-top: 1rem;
  max-width: 510px;
  width: 100%;
}
.latset-updates .container .latestUpdateSwiper .swiper-wrapper {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}
.latset-updates .container .latestUpdateSwiper .swiper-wrapper .swiper-slide .row {
  display: flex;
  justify-content: space-around;
}
.latset-updates .container .latestUpdateSwiper .swiper-wrapper .swiper-slide .row div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.latset-updates .container .latestUpdateSwiper .swiper-wrapper .swiper-slide .row div:nth-child(1) .date {
  position: absolute;
  top: 0;
  left: 12px;
  background-color: var(--btn-background);
  color: #ffffff;
  padding: 0.3rem;
  border-radius: 5px 0 0 0;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .latset-updates .container .latestUpdateSwiper .swiper-wrapper .swiper-slide .row div:nth-child(1) .date {
    top: 8px;
  }
}
@media (max-width: 1200px) {
  .latset-updates .container .latestUpdateSwiper .swiper-wrapper .swiper-slide .row div:nth-child(1) img {
    width: 100%;
  }
}
.latset-updates .container .latestUpdateSwiper .swiper-wrapper .swiper-slide .row div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 991px) {
  .latset-updates .container .latestUpdateSwiper .swiper-wrapper .swiper-slide .row div:nth-child(2) {
    padding-top: 1rem;
  }
}
.latset-updates .container .latestUpdateSwiper .swiper-wrapper .swiper-slide .row div:nth-child(2) a {
  background-color: var(--btn-background);
  color: #ffffff;
  padding: 0.3rem;
  border-radius: 5px;
}
.latset-updates .container .latestUpdateSwiper .swiper-button-next::before, .latset-updates .container .latestUpdateSwiper .swiper-button-next::after,
.latset-updates .container .latestUpdateSwiper .swiper-button-prev::before,
.latset-updates .container .latestUpdateSwiper .swiper-button-prev::after {
  content: "";
}
.latset-updates .container .latestUpdateSwiper .swiper-button-next {
  top: 100px;
  right: 10%;
}
.latset-updates .container .latestUpdateSwiper .swiper-button-prev {
  top: 100px;
  left: 83%;
}
@media (max-width: 1300px) {
  .latset-updates .container .latestUpdateSwiper .swiper-button-next {
    right: 8%;
  }
  .latset-updates .container .latestUpdateSwiper .swiper-button-prev {
    left: 80%;
  }
}
@media (max-width: 991px) {
  .latset-updates .container .latestUpdateSwiper .swiper-button-next {
    right: 5%;
  }
  .latset-updates .container .latestUpdateSwiper .swiper-button-prev {
    left: 80%;
  }
}
@media (max-width: 768px) {
  .latset-updates .container .latestUpdateSwiper .swiper-button-next {
    right: 3%;
    display: none;
  }
  .latset-updates .container .latestUpdateSwiper .swiper-button-prev {
    left: 70%;
    display: none;
  }
}
.latset-updates .container .latestUpdateSwiper .swiper-pagination {
  bottom: 0;
}
.latset-updates .container .latestUpdateSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 4px;
  border-radius: 5px !important;
  background-color: #d54735 !important;
}
.latset-updates .container .latestUpdateSwiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px !important;
  height: 4px;
  background-color: var(--btn-background) !important;
}

.updates-detail-hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.updates-detail-hero h1 {
  background: linear-gradient(to bottom, #252525, #c21c22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.update-details {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .update-details {
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}
.update-details .container {
  padding: 1rem 1rem;
  background-color: #ffece9;
  border-radius: 10px;
}
.update-details .container .top-sec .main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.update-details .container .top-sec .main-image img {
  width: 100%;
}
.update-details .container .top-sec .main-image span {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--btn-background);
  padding: 0.3rem;
  color: #ffffff;
  border-radius: 5px 0 0 0;
}
@media (max-width: 600px) {
  .update-details .container .top-sec .main-image span {
    padding: 0.1rem;
    font-size: x-small;
  }
}
.update-details .container .top-sec .secondary-image {
  margin-top: 3rem;
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 768px) {
  .update-details .container .top-sec .secondary-image {
    margin-top: 1rem;
  }
}
@media (max-width: 1200px) {
  .update-details .container .top-sec .secondary-image div {
    padding: 0 1rem;
  }
}
@media (max-width: 1200px) {
  .update-details .container .top-sec .secondary-image div {
    padding: 0 0.5rem;
  }
}
@media (max-width: 1200px) {
  .update-details .container .top-sec .secondary-image div img {
    width: 100%;
  }
}
.update-details .container .bottom-sec {
  padding-top: 2rem;
}
.update-details .container .bottom-sec p {
  color: #746f6f !important;
  margin-top: 1rem;
}

.latset-updates .container .heading h5 {
  background-color: var(--btn-background);
  color: #ffffff !important;
  padding: 0.3rem;
  cursor: pointer;
}

.whatsapp-chat {
  position: fixed;
  bottom: 40px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 999999;
}
.whatsapp-chat i {
  font-size: xx-large;
  color: #ffffff;
  padding: 0.5rem;
  background-color: green;
  border-radius: 50%;
}
@media (max-width: 500px) {
  .whatsapp-chat i {
    position: fixed;
    right: 0px;
    bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */
.Client-sec {
    padding: 7rem 0;
}
.Client-sec .container .row div .img-content {
    width: 240px;
    height: 180px;
}
.brand-image img{
    width: 160px;
    height: 80px;
    border: none;
    object-fit: cover;
}
iframe {
    border-radius: 20px;

}
.contact-sec .container .row .form-sec form button{
    background-color: var(--btn-background);
    color: #ffffff;
    padding: 0.6rem 2rem;
    border-radius: 5px;
    border: none;
    font-size: 14px;
}
.error{
    color:red;
}
