@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  /* font-family: "Roboto", sans-serif; */
  font-family: "Poppins", sans-serif;
}

:root {
  --blue: #015ab3;
  --dark-blue: #1614a1;
  --white: #fff;
  --black: #000;
  --red: #d9151f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}
p {
  margin-bottom: 0px;
}
h1 {
  margin-bottom: 0px;
}

h2,
h3 {
  margin-bottom: 0px;
}

/* fixed icons css start */
.fix-icons .whatsapp-icon {
  position: fixed;
  top: 80%;
  right: 2%;
  z-index: 999999;
}
.fix-icons .phone-icon {
  position: fixed;
  top: 80%;
  left: 2%;
  z-index: 999999;
}
.fix-icons .whatsapp-icon a {
  color: #fff;
  font-size: 24px;
  background: #000;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: rgba(255, 21, 31, 0.967) 0px 0px 5px 5px;
}
.fix-icons .phone-icon a {
  color: #fff;
  font-size: 24px;
  background: #000;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: rgba(255, 21, 31, 0.967) 0px 0px 5px 5px;
}

@media screen and (max-width: 767px) {
  .fix-icons .whatsapp-icon a {
    font-size: 16px;
    padding: 6px 10px;
  }
  .fix-icons .phone-icon a {
    font-size: 16px;
    padding: 7px 10px;
  }
}

/* end of fixed icons css */

/* section css */
section {
  padding: 50px 0px;
}
.section-head {
  text-align: center;
  margin-bottom: 80px;
}
.section-head .heading {
  font-size: 35px;
  font-weight: 500;
  position: relative;
  color: var(--dark-blue);
}
.section-head .heading span {
  color: #ff6a01;
}
.section-head .heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 46%;
  height: 3px;
  width: 8%;
  background-color: var(--red);
}

@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }
  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head .heading {
    font-size: 24px;
  }

  .section-head .heading::after {
    left: 40%;
    height: 2px;
    width: 20%;
    bottom: -10px;
  }
}
/* section css */

/* footer css */
.footer {
  padding: 50px 50px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}
/* footer css */

/* top button css start here */

.top {
  display: none;
  color: gray;
  font-size: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999999;
}
.top:hover {
  color: #000;
}

/* top button css end here */

/* custom css */

/* ---------- top-bar css start ---------- */
.top-bar {
  background: linear-gradient(
    to right,
    rgba(200, 7, 16, 0.948),
    #e72121e5,
    rgba(200, 7, 16, 0.934)
  );
  /* background: linear-gradient(
    to right,
    rgba(226, 76, 11, 0.949),
    #f36a09c3,
    rgba(226, 76, 11, 0.949)
  ); */
}
.top-bar .info {
  display: flex;
  justify-content: space-between;
  padding: 5px 50px;
}
.top-bar .info li {
  color: #fff;
}
.top-bar .info li a {
  color: #fff;
}

/* responsive css */

@media screen and (max-width: 767px) {
  .top-bar .info {
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .top-bar .info li {
    color: #000;
    font-size: 12px;
    font-weight: 500;
  }
  .top-bar .info li a {
    color: #000;
  }
}
/* responsive css */

/* ---------- top-bar css end ----------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 0;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
  width: 100%;
  height: 100px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #000;
  font-weight: 600;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--red);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

/* first dropdown start */

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .dropdown-menu {
  padding-bottom: 0;
}

.dropdown .dropdown-item:hover {
  color: #000;
  font-weight: 500;
}

.dropdown .dropdown-menu li a {
  border-bottom: 1px solid #e61111c8;
  display: inline-block;
}

.dropdown .dropdown-menu li i {
  color: var(--red);
  margin-right: 10px;
}

/* first dropdown end */

/* sub-dropdown */
/* 1) Keep the top‑level dropdown open on hover */
/* .nav-item.dropdown:hover > .dropdown-menu {
  display: block;
} */

/* 2) Position & hide all nested submenus by default */
.dropdown-menu .dropdown-submenu {
  position: relative;
}
.dropdown-menu .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -8px;
  display: none;
  border-radius: 0 6px 6px 6px;
}

/* 3) Show the nested submenu on hover */
.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu .dropdown-submenu .dropdown-item .fa-caret-right {
  margin-left: 5px;
}

.head-icons {
  /* background: rgb(14, 13, 13); */
  padding: 8px 10px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-icons img {
  width: 25px;

  /* box-shadow: rgba(239, 58, 8, 0.825) 0px 2px 3px 3px; */
  border-radius: 10px;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}
.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--red);
  box-shadow: none;
}

/* responsive navbar */

@media screen and (max-width: 767px) {
  .navbar .logo {
    width: 100%;
    height: 80px;
  }
}

/* --------------- end of navbar css here ------------- */

/* banner css start here */


.carousel-indicators{
  margin-bottom: 5px;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border: none;
  background: var(--blue) !important;
}

.carousel-indicators button {
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  .carousel-indicators [data-bs-target] {
    width: 5px;
    height: 5px;
  }
}

/* end of banner css here */

/* ------------------------------ sub-page banner css start here ----------------------------- */

.sub-banner {
  padding: 40px 0px;
  background: var(--red);
  /* background: linear-gradient(to top, #ff6a01, #000000a4); */
  color: #fff;
}
.sub-banner h1 {
  font-size: 32px;
}
.sub-banner p {
  margin-top: 10px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .sub-banner {
    padding: 10px 0px;
  }
  .sub-banner h1 {
    font-size: 20px;
  }
  .sub-banner p {
    margin-top: 5px;
  }
}

/* ------------------------------ end of sub-page banner css here ----------------------------- */

/* ----------- about-us css start here ------------- */

.about-us .about-img .mobile-img {
  display: none;
}

.about-us .about-head h2 {
  color: var(--red);
}

.about-us .about-head p {
  font-size: 20px;
  margin-bottom: 10px;
}

.about-us .about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#welcm {
  opacity: 1;
  transition: 0.7s ease-in-out;
}

.about-us .about-content .content-head p {
  font-size: 12px;
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 5px;
}

.about-us .about-content h2 {
  color: var(--red);
  margin-bottom: 20px;
}
.about-us .about-content p {
  text-align: justify;
  margin-bottom: 20px;
}

.about-us .about-content .read-more a {
  font-size: 14px;
  color: #fff;
  background: var(--red);
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.about-us .about-content .read-more a:hover {
  color: #fff;
  background: #000;
  transition: 0.5s ease-in-out;
}

.exp-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: #e9e6e6;
  margin-bottom: 20px;
}

.about-us .about-content .experience {
  color: #555454;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
  display: inline-block;
  white-space: nowrap;
  width: 100%;
  animation: scrollLeftRight 2s linear infinite alternate;
}
.about-us .about-content .experience span {
  font-weight: 800;
  font-size: 24px;
}

@keyframes scrollLeftRight {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(70%);
  }
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .about-us .about-img .mobile-img {
    display: block;
  }
  .about-us .about-img .desktop-img {
    display: none;
  }
  .about-us .about-img {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .about-us .about-head p {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .about-us .about-content h2 {
    margin-bottom: 10px;
  }
  .about-us .about-content p {
    margin-bottom: 10px;
  }

  .about-us .about-content .experience {
    font-size: 14px;
  }
  .about-us .about-content .experience span {
    font-size: 14px;
  }
}

@media screen and (max-width: 420px) {
  @keyframes scrollLeftRight {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(55%);
    }
  }
}

@media screen and (max-width: 360px) {
  @keyframes scrollLeftRight {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(47%);
    }
  }
}
/* end of responsive css */

/* ----------- end of about us css here ----------- */

/* ------------ products css start here ------------- */

.products {
  background: rgba(243, 241, 241, 0.801);
}

.products .product-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.products .product-card .product-img {
  position: relative;
  overflow: hidden;
}

.products .product-card .product-img img {
  width: 100%;
}

.products .product-card .product-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.842)
  );
}

.products .product-card .product-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  opacity: 1;
  transition: 0.5s ease-in-out;
  z-index: 2;
}

.products .product-card .product-text h3 {
  font-size: 22px;
  margin-bottom: 0px;
  padding-bottom: 10px;
  color: #fff;
  text-align: center;
}

.products .product-card .product-card-text {
  position: absolute;
  z-index: 2;
  bottom: -100%;
  left: 0;
  padding: 0px 10px;
  opacity: 0;
  transition: 0.5s ease-in-out;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  height: 0%;
  padding-top: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.715), rgba(0, 0, 0, 0.718));
  backdrop-filter: blur(5px);
}

.products .product-card .product-img {
  transition: 0.5s ease-in-out;
}

.products .product-card:hover .product-img {
  transform: scale(1.3);
  transition: 0.8s ease-in-out;
}

.products .product-card:hover .product-card-text {
  color: #fff;
  bottom: 0%;
  opacity: 1;
  transition: 0.5s ease-in-out;
  height: 100%;
}

.products .product-card:hover .product-text {
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.products .product-card .product-card-text h4 {
  font-size: 20px;
}

.products .product-card .product-card-text p {
  font-size: 14px;
  line-height: 1.3;
}

.products .product-card-text .learn-more {
  margin-top: 10px;
}

.products .product-card-text .learn-more a {
  color: #fff;
  background: gray;
  padding: 5px 10px;
}

/* ------------ end of products css here ------------- */

/* --------------- blog section css start here ------------- */

.blog-section .blog-card {
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
  margin: 20px 0px;
}

.blog-section .blog-card .blog-img {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.blog-section .blog-card .blog-img img {
  width: 100%;
  transition: 0.5s ease-in-out;
}

.blog-section .blog-card .blog-img:hover img {
  transform: scale(1.2);
  transition: 0.5s ease-in-out;
}

.blog-section .blog-card .blog-text h3 {
  font-size: 18px;
  color: #181717;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-section .blog-card .blog-text p {
  font-size: 14px;
  margin-bottom: 0px;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
  color: #d01922d5;
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .blog-section .blog-card .blog-text h3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .blog-section .blog-card {
    margin-bottom: 20px;
  }

  .blog-section .blog-card .blog-text h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .blog-section .solution-heading p {
    font-size: 12px;
  }

  .blog-section .blog-card {
    margin-bottom: 20px;
  }

  .blog-section .blog-card .blog-text h3 {
    font-size: 16px;
  }

  .blog-section .blog-card .blog-text p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

/* responsive css end */

/* ----------- end of blog section css here ------------ */

/* ---------------- contact us css start here ----------------- */

.contact-us {
  background: linear-gradient(rgba(0, 0, 0, 0.689), rgba(0, 0, 0, 0.799)),
    url(../img/contact/contactbg1.jpeg) no-repeat center center/cover;

  background-attachment: fixed;
  backdrop-filter: blur(20px);
}

.contact-us .section-head {
  margin-bottom: 40px;
  text-align: center;
}

.contact-us .contact-head h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

.contact-us .head-para {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.contact-us .contact-form .form-control {
  background-color: transparent;
  font-size: 16px;
  padding: 5px 5px !important;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0px;
  color: #fff !important;
}

.contact-us .contact-form .form-control:focus {
  color: #fff;
  box-shadow: none;
  border-color: #fff;
  background-color: transparent;
}

.contact-us .contact-form .form-control::placeholder {
  color: #fff;
}

.contact-us .form-btn {
  display: flex;
  justify-content: center;
}

.contact-us .form-btn button {
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: var(--red);
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.contact-us .form-btn button:hover {
  color: #fff;
  background: #000;
  transition: 0.5s ease-in-out;
}

/* responsive css  */

@media screen and (max-width: 991px) {
  .contact-us .head-para {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .section-head {
    margin-bottom: 20px;
  }

  .contact-us .contact-head h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0px;
  }
  .contact-us .head-para {
    font-size: 12px;
  }
}

/* end of responsive */

/* ------------------------- captcha css start ------------------- */

.captchasep1 {
  display: flex;
}

.contact-us .contact-form .captchasep1 .form-floating label {
  color: #fff;
}

.contact-us .contact-form .captchasep1 .form-floating .form-control {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #000;
}

.captchasep1 input {
  width: 100% !important;
  height: 40px;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
}

.captchasep1 .captcha-codes-sec p {
  letter-spacing: 9px;
  font-style: italic;
  font-size: 32px;
  font-weight: 800;
  padding: 5px;
  height: 100%;
  color: #fff;
}

.captchasep1 .captcha-codes-sec {
  margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  height: 100%;
  border: none;
  background: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: var(--red);
  color: #000;
  padding: 10px;
  border-radius: 5px;
}

/* responsive captcha */
@media screen and (max-width: 767px) {
  .captchasep1 .captcha-codes-sec p {
    letter-spacing: 2px;
    font-size: 18px;
    width: 60% !important;
  }

  .captchasep1 .captcha-codes-sec button {
    font-size: 12px;
  }

  .contact-form .captchasep1 .form-floating label {
    font-size: 14px;
    padding: 5px;
  }

  .form-floating .form-control,
  .form-floating .form-select {
    height: 2.5rem;
    line-height: 1.25;
  }
}

/* -----------captcha css end here ------------ */

/* -------------------- end of contact us css here --------------------------- */

/* ----------------- why choose us section start here ---------------- */

.why-choose-us .why-us-card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  min-height: 200px;
  max-height: 200px;
}

.why-choose-us .why-us-card h3 {
  font-size: 22px;
  margin: 5px 0px;
  color: var(--red);
}

@media screen and (max-width: 1200px) {
  .why-choose-us .why-us-card p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .why-choose-us .why-us-card {
    min-height: 165px;
    max-height: 165px;
    padding: 5px;
  }
}

@media screen and (max-width: 767px) {
  .why-choose-us .why-us-card h3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 420px) {
  .why-choose-us .why-us-card {
    min-height: 210px;
    max-height: 210px;
  }
}

/* ----------------- end of why choose us section here --------------- */

/* ------------------ brands we deal in css start here ---------------------- */

.brands-we-deal {
  background: rgba(243, 241, 241, 0.801);
}
.brands-we-deal .brand-img {
  margin: 10px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ----------- end of brands we deal in css here -------------- */

/* ------------ FAQ's section css start --------------- */
.faq {
  background: linear-gradient(#00000010);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.faq .accordion .accordion-item .accordion-body p {
  color: #000;
}

.faq .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion .accordion-item .accordion-header .accordion-button {
  color: #000;
  font-size: 18px;
  transition: 0.5s ease-in-out;
}

.faq .accordion .accordion-item .accordion-body p {
  font-size: 16px;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--red);
}

.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  content: "+";
  font-size: 2rem;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 2.25rem;
  transition: transform 0.2s ease-in-out;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "-";
  font-size: 2rem;
  /* Same size for consistency */
  color: white;
  background-image: none;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}

/* responsive css start */
@media screen and (max-width: 981px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    padding: 10px;
    font-size: 14px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 10px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 12px;
  }
}

/* responsive css end */

/* --------------------- end of FAQ's section css ----------------------- */

/* ------------- testimonial section css start here --------------- */

.testimonials {
  background: #f6f6f6;
}

.testimonials .testimonial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: var(--red);
  padding-left: 20px;
}

.testimonials .testimonial-text p {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.testimonials .testimonial-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  min-height: 250px;
}

.testimonial-card .testimonial-card-text .star-icon {
  margin-bottom: 20px;
}

.testimonial-card .testimonial-card-text .star-icon i {
  color: var(--red);
  font-size: 12px;
}

.testimonial-card .testimonial-card-text p {
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
  color: rgb(154, 149, 149);
  line-height: 2;
}

.testimonial-card .testimonial-card-text h3 {
  font-size: 18px;
  font-weight: 350;
  color: var(--blue);
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .testimonials .testimonial-text h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .testimonials .testimonial-text {
    margin-bottom: 10px;
  }
  .testimonials .testimonial-text p {
    font-size: 16px;
    margin-bottom: 0px;
  }

  .testimonials .testimonial-text h2 {
    font-size: 20px;
  }
}

/* responsive css end */

/* ----------- end of testimonial section here -------------- */

/* --------------------- footer css start here ------------------------ */

.footer {
  /* background: #000000bc; */
  background: var(--blue);
  /* background: linear-gradient(
    to right,
    rgba(226, 76, 11, 0.949),
    #f36a09c3,
    rgba(226, 76, 11, 0.949)
  ); */
}

.footer .footer-logo img {
  background: #fff;
  width: 150px;
}

.footer .footer-logo {
  text-align: center;
  margin-bottom: 40px;
}

.footer .part .head {
  /* display: inline-block; */
  border-bottom: dashed 1px #fff;
  margin-bottom: 10px;
}
.footer .part .head h2 {
  font-size: 28px;
}

.footer .part-1 .links ul li a {
  color: #fff;
  line-height: 2;
  margin-left: 20px;
  transition: 0.4s ease-in-out;
}

.footer .part-1 .links ul li a:hover {
  /* color: #000; */
  color: #000;
  letter-spacing: 2px;
  transition: 0.4s ease-in-out;
}

.footer .part-1 .social-icons .footer-icons {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

.footer .part-1 .social-icons .footer-icons img {
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  width: 40px;
}

.footer .part-2 {
  margin: 0px 20px;
}

.footer .part-2 .location {
  margin-bottom: 10px;
}

.footer .part-2 .location iframe {
  border: 2px solid #fff;
  width: 100%;
}

.footer .part-2 .address {
  border-bottom: 1px solid #fff;
}

.footer .part-2 .address h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.footer .part-2 .detail {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer .part-2 .detail a {
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.footer .part-3 ul li a {
  color: #fff;
  line-height: 2;
  margin-left: 20px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
}

.footer .part-3 ul li a:hover {
  /* color: #000; */
  color: #000;
  letter-spacing: 2px;
  transition: 0.5s ease-in-out;
}

.footer-widget {
  padding: 10px 0px;
  color: #fff;
  background: var(--red);
}

.footer-widget .widget-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-widget .widget-text p {
  font-size: 14px;
  margin-bottom: 0px;
}
.footer-widget .widget-text p span {
  color: #000;
  font-weight: 600;
}

.footer-widget .widget-text a {
  color: #fff;
}

/* responsive footer css start here */

@media screen and (max-width: 1200px) {
  .footer .part .head h2 {
    font-size: 24px;
  }

  .footer p {
    font-size: 12px;
  }

  .footer .part-2 .detail a {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}

@media screen and (max-width: 991px) {
  .footer .part-2 {
    margin: 0px 0px;
  }
  .footer .part-2 {
    margin-top: 20px;
  }

  .footer .part-3 {
    margin-top: 20px;
  }

  .footer-widget .widget-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-widget .widget-text .t-4-a {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer .footer-logo img {
    background: #fff;
    width: 80px;
  }

  .footer .footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer .part-1 .links ul li {
    margin-bottom: 10px;
  }

  .footer .part-1 .links ul li a {
    line-height: 1;
    margin-left: 10px;
    font-size: 14px;
  }

  .footer .part-1 .social-icons .footer-icons {
    margin-top: 10px;
    gap: 15px;
  }

  .footer .part-1 .social-icons .footer-icons img {
    width: 30px;
  }

  .footer .part-2 {
    margin: 0px 0px;
  }
  .footer .part-2 {
    margin-top: 20px;
  }

  .footer .part-2 .location {
    margin-bottom: 5px;
  }

  .footer .part-2 .address h3 {
    font-size: 18px;
  }

  .footer .part-3 ul li {
    margin-bottom: 10px;
  }

  .footer .part-3 ul li a {
    line-height: 1;
    margin-left: 10px;
    font-size: 14px;
  }

  .footer-widget .widget-text .t-4-a {
    margin-top: 20px;
  }
}

@media screen and (max-width: 460px) {
  .footer-widget .widget-text p {
    font-size: 10px;
  }
}

/* responsive footer css end */

/* ------------------- end of footer css here --------------------- */

/* ================================================================================================================ */
/* ================================================================================================================ */

/* ---------------------------------------- about-us page css start here -------------------------------------- */

/* about section css start here */

.about-us-about-content p {
  margin-bottom: 20px;
  text-align: justify;
}

/* end of about section css here */

/* mission vision section css start here */
.mission-vision {
  background: var(--red);
  /* background: #F5F4F4; */
  text-align: center;
}

.mission-vision p {
  color: rgb(120, 116, 116);
}
/* end of mission vision section css here */

/* values section css start here */
.values .value-card {
  /* box-shadow: rgba(0, 0, 0, 0.35) 1px 0px 8px 1px; */
  text-align: center;
  border: 1px solid rgba(190, 186, 186, 0.693);
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 20px;
}

.values .value-card h3 {
  margin: 10px 0px;
  color: var(--red);
}

/* responive css start */

@media screen and (max-width: 767px) {
  .values .value-card {
    margin-bottom: 10px;
  }
  .values .value-card p {
    text-align: justify;
  }
}
/* end of responsive css */

/* end of values section here */

/* ---------------------------------------- end of about-us page css here -------------------------------------- */

/* ================================================================================================================ */
/* ================================================================================================================ */

/* ---------------------------------------- contact-us page css start here --------------------------------------  */

/* contact-page section css start here */

.map-location,
.map-location iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 1px solid #bdbbbb80;
}

.contact-page .left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.contact-page .address {
  text-align: center;
  margin-bottom: 20px;
}

.contact-page .address h3 {
  margin: 5px 0px;
}

.contact-page .contact-detail {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.contact-page .contact-detail img {
  margin-bottom: 10px;
}

.contact-page .contact-detail p a {
  color: #000;
  font-size: 20px;
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .contact-page .left-side .address p {
    font-size: 14px;
  }

  .contact-page .left-side img {
    width: 50px;
  }

  .contact-page .contact-detail p a {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .contact-page .left-side {
    margin-bottom: 40px;
  }

  .contact-page .address {
    margin-bottom: 5px;
  }

  .contact-page .left-side img {
    width: 40px;
  }

  .contact-page .contact-detail p a {
    font-size: 14px;
  }
}
/* responsive css end here */

/* end of contact-page css here */

/* ---------------------------------------- end of contact-us page css here --------------------------------------  */

/* ================================================================================================================ */
/* ================================================================================================================ */

/* ---------------------------------------- Product Page css start here ------------------------------------------- */

/* --------------- desktop-product css start --------------------*/

.desktop-product .desktop-product-card {
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 15px;
}

.desktop-product .desktop-product-card::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(#0000000f, #0000000f, #0000000f, #000000c6);
}

.desktop-product .desktop-product-card .desktop-product-img {
  position: relative;
  transition: 0.5s ease-in-out;
}
.desktop-product .desktop-product-card .desktop-product-img img {
  width: 100%;
}

.desktop-product .desktop-product-card .desktop-card-text {
  position: absolute;
  bottom: 4%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  color: #fff;
  z-index: 1;
  transition: 0.5s ease-in-out;
}

/* for 3 cards in a row */
.desktop-product .desktop-product-card .desktop-card-text h3 {
  font-size: 20px;
}
/* for 3 cards in a row */

.desktop-product .desktop-product-card .desktop-product-text {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  padding: 0px 10px;
  opacity: 0;
  transition: 0.5s ease-in-out;
  background: linear-gradient(rgba(0, 0, 0, 0.715), rgba(0, 0, 0, 0.718));
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.desktop-product .desktop-product-card:hover .desktop-product-text {
  bottom: 0%;
  opacity: 1;
  transition: 0.5s ease-in-out;
}
.desktop-product .desktop-product-card:hover .desktop-card-text {
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.desktop-product .desktop-product-card:hover .desktop-product-img {
  transform: scale(1.1);
  transition: 0.5s ease-in-out;
}

.desktop-product .desktop-product-card .desktop-product-text h4 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  position: relative;
  color: #ffffff;
  margin-bottom: 20px;
}

.desktop-product .desktop-product-card .desktop-product-text h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 30%;
  height: 2px;
  width: 40%;
  background-color: #f09d19;
}

.desktop-product .desktop-product-card .desktop-product-text p {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.desktop-product-btn button {
  border: none;
  outline: none;
}

.desktop-product-btn button {
  background: #ffffff49;
  font-size: 14px;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  border-radius: 10px;
}

/* responsive css */

@media screen and (max-width: 1200px) {
  .desktop-product .desktop-product-card .desktop-card-text h3 {
    font-size: 18px;
  }
  .desktop-product .desktop-product-card .desktop-product-text h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .desktop-product .desktop-product-card .desktop-product-text p {
    line-height: 1.2;
  }

  .desktop-product .desktop-product-card .desktop-product-text h4::after {
    bottom: -6px;
  }

  .desktop-product-btn button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media screen and (max-width: 991px) {
  .desktop-product .desktop-product-card .desktop-card-text h3 {
    font-size: 20px;
  }
  .desktop-product .desktop-product-card .desktop-product-text h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .desktop-product .desktop-product-card .desktop-product-text p {
    line-height: 1.8;
    margin-bottom: 10px;
  }

  .desktop-product .desktop-product-card .desktop-product-text h4::after {
    bottom: -8px;
  }

  .desktop-product-btn button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 767px) {
  .desktop-product .desktop-product-card .desktop-card-text h3 {
    font-size: 16px;
  }
  .desktop-product .desktop-product-card .desktop-product-text h4 {
    font-size: 20px;
  }
  .desktop-product .desktop-product-card .desktop-product-text p {
    display: none;
  }
}

/* end of responsive css */

/* --------------------------- end of desktop-product css ------------------------------ */

/* owl carousel dots css start */

/* Center the dots below the carousel */
.related-product-category-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

/* Style for each dot */
.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #015ab3a2 !important;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

/* Active dot style */
.owl-dots .owl-dot.active span {
  background:  #0136b3 !important;
}

@media screen and (max-width: 767px) {
  .related-product-category-carousel .owl-dots {
    display: none;
  }
}
/* owl carousel dots css end */

/* ----------------------------------------end of Product Page css here ------------------------------------------- */

/* ================================================================================================================= */
/* ================================================================================================================= */

/* ----------------------------------------enquiry Page css start here ------------------------------------------- */

.product-enquiry .about-product h2 {
  text-align: center;
  font-weight: 600;
  font-size: 38px;
  margin-bottom: 10px;
}

.product-enquiry p {
  text-align: justify;
}

.product-enquiry .product-img {
  border: 1px solid rgba(197, 195, 195, 0.781);
  border-radius: 5px;
}

.product-enquiry .card {
  margin-top: 20px;
}

.product-enquiry .card .card-header {
  background: var(--red);
  color: #fff;
  text-align: center;
}

.product-enquiry .card .card-body th,
.product-enquiry .card .card-body td {
  vertical-align: middle;
  padding: 10px 5px;
}

.enquire-btn {
  margin-top: 20px;
  text-align: center;
}
.enquire-btn button {
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: var(--red);
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.enquire-btn button:hover {
  background: #000;
  transition: 0.5s ease-in-out;
}

/* cross button in modal css start */
.modal .modal-dialog .modal-content .modal-header button {
  color: black;
  padding: 2px 10px;
  font-size: 20px;
  transition: 0.5s ease-in-out;
}
.modal .modal-dialog .modal-content .modal-header button:hover {
  background: rgba(255, 0, 0, 0.885);
  color: #fff;
  transition: 0.5s ease-in-out;
}
/* cross button in modal css end */

/* responsive css */

@media screen and (max-width: 991px) {
  .product-enquiry .product-img {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .product-enquiry .product-img {
    margin-bottom: 10px;
  }
  .product-enquiry .about-product h2 {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .product-enquiry .card {
    margin-top: 10px;
  }

  .product-enquiry .card .card-body {
    padding: 0px;
  }

  .product-enquiry .card .card-body th {
    font-size: 14px;
    font-weight: 500;
  }
  .product-enquiry .card .card-body td {
    font-size: 12px;
    text-align: justify;
  }
}

/* end of responsive css */

/* ----------------------------------------end of enquiry Page css here ------------------------------------------- */

/* ================================================================================================================ */
/* ================================================================================================================ */

/* ---------------------------------------- blog detail Page css start here ------------------------------------------- */

/* blog text css start */
.blog-detail .blog-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blog-detail .blog-text h3 {
  color: #9e9898e3;
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-detail .blog-text .date {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
  margin: 20px 0px;
}

.blog-detail .blog-text p {
  text-align: justify;
  margin-bottom: 10px;
}

.blog-detail-img {
  border: 1px solid #b4b2b2cb;
}

/* responisive css */

@media screen and (max-width: 991px) {
  .blog-detail-img {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .blog-detail .blog-text h3 {
    color: #9e9898e3;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .blog-detail .blog-text .date {
    margin: 10px 0px;
  }
  .blog-detail-img {
    margin-bottom: 20px;
  }
}
/* responsive css end */

/* blog text css end */

/* recent blog css start */
.blog-detail .recent-blog .recent-card {
  display: flex;
  gap: 10px;
}

.blog-detail .recent-blog .recent-card img {
  width: 240px;
  border: 1px solid #bab6b6c1;
}

.blog-detail .recent-blog .recent-card .recent-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
  color: #141463;
}

.blog-detail .recent-blog .recent-card .recent-text .date {
  margin-top: 20px;
  color: var(--red);
}

.blog-detail .recent-blog hr {
  margin-top: 5px;
}

/* responsive css start */

@media screen and (max-width: 767px) {
  .blog-detail .recent-blog h3 {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
  }

  .blog-detail .recent-blog .recent-card {
    display: flex;
    flex-direction: column;
  }

  .blog-detail .recent-blog .recent-card img {
    width: 100%;
    /* border: 1px solid #bab6b6c1; */
  }

  .blog-detail .recent-blog .recent-card .recent-text .date {
    margin-top: 5px;
  }
}
/* responsive css end */

/* end of recent blog css */

.related-blog {
  background: rgba(243, 241, 241, 0.801);
}

/* ---------------------------------------- end of blog Page css here ------------------------------------------- */
