@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/freestyle-script");
body {
  font-family: "Montserrat", sans-serif;
}

* {
  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,
h4 {
  margin-bottom: 0px;
}

:root {
  --black: #000;
  --white: #fff;
  --sky-blue: #2e4480;
  --blue: #20305c;
  --dark-blue: #226e80;
  --light-blue: #2fa5c3;
}

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .heading {
  font-size: 35px;
  font-weight: 500;
  position: relative;
  color: var(--blue);
}

.section-head .heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  display: flex;
  height: 2px;
  z-index: -1;
  background: linear-gradient(to right, #21225b, #fff, #fff, #21225b);
}

@media screen and (max-width: 767px) {
  .section-head .heading::after {
    background: linear-gradient(to right, #21225b, #fff, #fff, #fff, #21225b);
  }

  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head .heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .section-head .heading {
    font-size: 16px;
  }
}

/* section css */

/* footer css */
.footer {
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}

/* footer css */

/* custom css start */


/* 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 */


/* 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: var(--blue);
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: rgb(47, 165, 195) 0px 0px 5px 5px;
}
.fix-icons .phone-icon a {
  color: #fff;
  font-size: 24px;
  background: var(--blue);
  padding: 10px 13px;
  border-radius: 50%;
  box-shadow: rgb(47, 165, 195) 0px 0px 5px 5px;
}

@media screen and (max-width: 767px) {
  .fix-icons .whatsapp-icon a {
    font-size: 16px;
    padding: 7px 9px;
  }
  .fix-icons .phone-icon a {
    font-size: 16px;
    padding: 7px 9px;
  }
}

/* end of fixed icons css */

/* ---------- top-bar css start ---------- */
.top-bar {
  background: var(--blue);
}

.top-bar .info {
  display: flex;
  justify-content: space-evenly;
  padding: 2px 50px;
}

.top-bar .info li {
  font-size: 14px;
  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 {
    font-size: 10px;
    font-weight: 500;
  }
}

/* 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: 100px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: #000;
  font-weight: 600;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--dark-blue);
}

.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(--dark-blue);
  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;
}

.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(--blue);
  box-shadow: none;
}

/* responsive navbar */

@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .navbar .logo {
    width: 80px;
  }
  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
}

/* --------------- 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(--blue);
  color: #fff;
  margin-bottom: 2px;
}
.sub-banner h1 {
  font-size: 32px;
}
.sub-banner p {
  margin-top: 10px;
  align-items: center;
}
.sub-banner p a {
  color: #fff;
}

@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 {
  display: flex;
  justify-content: center;
  height: 100%;
}

.about-us .about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-us .about-text h3 {
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 32px;
}

.about-us .about-text .text p {
  text-align: justify;
  margin-bottom: 20px;
}

.about-us .about-text .text .read-more {
  display: inline-block;
  background: var(--blue);
  border: 1px solid var(--blue);
  padding: 5px 15px;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}
.about-us .about-text .text .read-more a {
  color: var(--white);
  font-weight: 500;
  transition: .5s ease-in-out;
}

.about-us .about-text .text .read-more:hover {
  background: none;
}
.about-us .about-text .text .read-more:hover a {
  color: var(--blue);
}

/* responsive css */

@media screen and (max-width: 991px) {
  .about-us .about-text .text p {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .about-us .about-text .wlcm {
    margin-bottom: 5px;
  }
  .about-us .about-text h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .about-us .about-text .text p {
    margin-bottom: 10px;
  }
  .about-us .about-text .text .read-more {
    padding: 2px 10px;
  }
  .about-us .about-text .text .read-more a {
    font-size: 14px;
  }
}

@media screen and (max-width:575px) {
  .about-us .about-text h3 {
    font-size: 18px;
  }
}

/* responsive css */

/* about us section :- swiper css start */

.about-us .swiper-slide .product-card .product-text h3 {
  color: var(--white);
  text-align: center;
  background: var(--dark-blue);
  font-size: 18px;
  padding: 10px 0px;
  font-weight: 600;
}

.about-us .swiper-slide .product-card {
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 10px 0px;
}

.about-us .swiper-slide .product-card .product-img {
  position: relative;
}

.about-us .swiper-slide .product-card .more p i {
  background: var(--white);
  color: var(--blue);
  padding: 5px;
  border-radius: 50%;
}

.about-us .swiper-slide .product-card .more {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.about-us .swiper-slide .product-card:hover .more {
  opacity: 1;
  bottom: 50%;
  left: 0;
  transition: 0.5s ease-in-out;
}

.about-us .swiper-slide .product-card .more p {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 5px 10px;
  text-align: center;
   border-radius: 5px;
}

/* responsive css */

@media screen and (max-width: 991px) {
  .about-us .swiper-slide .product-card .product-text h3 {
    font-size: 14px;
    padding: 8px 0px;
  }
}
@media screen and (max-width: 767px) {
  .about-us .swiper-slide .product-card .product-text h3 {
    font-size: 12px;
    padding: 5px 0px;
  }
}

/* responsive css */

/* about us section:- swiper css end */

/* ----------------------- end of about us css here ---------------------- */

/* ----------------------- product category css start here ------------------------ */

.products-category{
  background: linear-gradient(#ebe9e98e);
}

.products-category .category-card {
  text-align: center;
  border-radius: 5px;
  padding: 10px 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 20px;
  overflow: hidden;
}
.products-category .category-card .product-img img {
  position: relative;
  transition: 0.5s ease-in-out;
}
.products-category .category-card:hover .product-img img {
  transform: scale(0.9);
}
.products-category .category-card .product-img img {
  margin-bottom: 10px;
}

.products-category .category-card .product-name p {
  display: inline-block;
  padding: 5px 20px;
  background: var(--dark-blue);
  color: var(--white);
  border-radius: 15px;
  font-weight: 500;
  font-size: 16px;
}

.products-category .category-card .click-here button {
  padding: 5px 20px;
  border: none;
  outline: none;
  background: var(--dark-blue);
  color: var(--white);
  font-weight: 600;
}

/* responsive css */

@media screen and (max-width: 1200px) {
  .products-category .category-card .product-name p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .products-category .category-card .product-name p {
    padding: 3px 10px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .products-category .category-card .product-name p {
    padding: 3px 10px;
    font-size: 18px;
  }
}

/* responsive css */

/* ----------------------- end of product category css here ----------------------- */

/* ------ blogs css start ------- */

.blogs .blog-card {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  padding: 10px;
  margin-bottom: 20px;
}

.blogs .blog-card .blog-card-img {
  margin-bottom: 20px;
}

.blogs .blog-card .blog-card-img img {
  width: 100%;
  background: rgba(241, 240, 240, 0.911);
}

.blogs .blog-card .blog-card-text .text-1,
.text-2 {
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blogs .blog-card .blog-card-text .text-3 {
  color: #303030;
  font-size: 14px;
  margin-bottom: 10px;
}

.blogs .blog-card .blog-card-text p {
  margin: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blogs .blog-card .blog-card-text .text-1 p {
  color: var(--blue);
  font-size: 16px;
}

.blogs .blog-card .blog-card-text .text-1 i {
  margin-right: 5px;
}

.blogs .blog-card .blog-card-text .text-2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
}

.blogs .blog-card:hover .text-2 {
  color: var(--blue);
  transition: 0.4s ease-in-out;
}

.blogs .blog-card .blog-card-text .text-1 span {
  background-color: var(--blue);
  padding: 2px 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
}

.blogs .blog-card .blog-card-text span {
  color: var(--black);
}

.blogs .blog-card .blog-card-text .text-2 span {
  transition: 0.3s ease-in-out;
}

.blogs .blog-card:hover .blog-card-text .text-2 span {
  color: var(--blue);
  transition: 0.3s ease-in-out;
}

.blogs .blog-card {
  position: relative;
}

.blogs .blog-card::after {
  content: "";
  position: absolute;
  bottom: 2%;
  left: 0;
  border: 1px solid var(--blue);
  width: 0%;
  transition: 0.5s ease-in-out;
  opacity: 0;
}

.blogs .blog-card:hover::after {
  content: "";
  position: absolute;
  border: 1px solid var(--blue);
  width: 100%;
  /* margin: 30px 0px; */
  opacity: 1;
}

/* blog responsive css */
@media screen and (max-width: 991px) {
  .blogs .blog-card .blog-card-img {
    margin-bottom: 5px;
  }

  .blogs .blog-card .blog-card-text .text-2 {
    font-size: 16px;
  }

  .blogs .blog-card {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .blogs .blog-card .blog-card-img {
    margin-bottom: 5px;
  }

  .blogs .blog-card .blog-card-text .text-2 {
    font-size: 14px;
  }

  .blogs .blog-card .blog-card-text .text-3 {
    font-size: 12px;
  }
}

/* end of blog responsive css */

/* ------------------------ end of blog css ------------------------ */

/* ------------- testimonial section css start here --------------- */

.testimonials {
  background: #f6f6f6;
}

.testimonials .testimonial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.644), rgba(34, 111, 128, 0.719), rgb(34, 111, 128));
  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(--dark-blue);
  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 -------------- */

/* ---------------- contact us css start here ----------------- */

.contact-us {
  background: linear-gradient(
      to right,
      rgba(214, 209, 209, 0.88),
      rgba(206, 205, 205, 0.88)
    ),
    url(../img/logo/ambica-sales-corporation.png) no-repeat center
      center/contain;

  background-attachment: fixed;
  backdrop-filter: blur(20px);
  color: #000;
}

.contact-us .contact-detail h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.contact-us .contact-detail h5 {
  margin-bottom: 30px;
  font-weight: 400;
}

.contact-us .contact-detail p {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-us .contact-detail p i {
  font-size: 40px;
  margin-right: 20px;
  color: var(--dark-blue);
}

.contact-us .contact-detail p a {
  color: var(--black);
}

.contact-us .contact-form h3 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}
.contact-us .contact-form h3 span {
  color: var(--dark-blue);
}

.contact-us .contact-form .form-control {
  background-color: transparent;
  font-size: 16px;
  padding: 5px 5px !important;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0px;
  color: #000 !important;
}

.contact-us .contact-form .form-control:focus {
  color: #000;
  box-shadow: none;
  border-color: #000;
  background-color: transparent;
}

.contact-us .contact-form .form-control::placeholder {
  color: #000;
}

.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(--blue);
  border: 1px solid var(--blue);
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.contact-us .form-btn button:hover {
  background: none;
  color: var(--blue);
}

/* responsive css  */

@media screen and (max-width: 1200px) {
  .contact-us .contact-detail h3 {
    font-size: 32px;
  }
  .contact-us .contact-detail h5 {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .contact-us .contact-detail {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .contact-form h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .contact-us .form-btn button {
    font-size: 14px;
  }
}

/* end of responsive */

/* ------------------------- captcha css start ------------------- */

.captchasep1 {
  display: flex;
}

.contact-us .contact-form .captchasep1 .form-floating label {
  color: #000;
}

.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: #000;
}

.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(--blue);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.captchasep1 .border {
  border: 1px solid #000 !important;
}

/* 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 --------------------------- */

/* ------------------------ latest product css start here --------------------------- */

.latest-products .latest-product-card {
  margin: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 1px solid rgba(231, 228, 228, 0.893);
}

/* ------------------------ end of latest product css ------------------------------- */

/* ------------------ footer css start here ------------------- */

.footer .part .head h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer .part-1 .location,
.mail,
.phone {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer .part-1 p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.footer .part-1 i {
  color: var(--green);
}

.footer .part-1 a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.footer .part-2 .links li {
  margin-bottom: 15px;
}

.footer .part-2 .links a {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

.footer .part-2 .links a:hover {
  color: var(--blue);
}

.footer .part-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.footer .part-3 .footer-logo img {
  width: 150px;
  margin-bottom: 20px;
}

.footer .part-3 .footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer .part-3 .footer-icons img {
  width: 30px;
}

.footer-widget {
  padding: 5px 0px;
  color: #fff;
  background: var(--blue);
}

.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 {
  font-weight: 600;
}

.footer-widget .widget-text a {
  color: #fff;
}

/* responsive css */

@media screen and (max-width: 991px) {
  .footer .part {
    margin-bottom: 40px;
  }

  .footer .part-3 .footer-logo img {
    width: 150px;
    margin-bottom: 10px;
  }
  .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 .part {
    margin-bottom: 20px;
  }

  .footer .part .head h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer .part-1 .location,
  .mail,
  .phone {
    gap: 10px;
    margin-bottom: 10px;
  }

  .footer .part-1 p {
    font-size: 12px;
  }

  .footer .part-1 a {
    font-size: 12px;
  }

  .footer .part-2 .links li {
    margin-bottom: 5px;
  }

  .footer .part-2 .links a {
    font-size: 14px;
  }

  .footer .part-3 .footer-logo img {
    width: 100px;
    margin-bottom: 10px;
  }

  .footer-widget .widget-text .t-4-a {
    margin-top: 10px;
  }
}

@media screen and (max-width: 460px) {
  .footer-widget .widget-text p {
    font-size: 10px;
  }
}

/* responsive css */

/* ------------------ end of footer css here ------------------ */

/* ===================================================================================================== */
/* ===================================================================================================== */

/* --------------------------- why choose us css start here ------------------------------ */

.why-us {
  background: linear-gradient(#f6f6f669);
}

.why-us .why-us-card {
  padding: 20px 5px;
  color: #fff;
  text-align: center;
  background: var(--sky-blue);
  margin-bottom: 20px;
}
.why-us .why-us-card i {
  font-size: 32px;
  margin-bottom: 10px;
}

.why-us .why-us-card h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

/* responsive css start */

@media screen and (max-width: 767px) {
  .why-us .why-us-card {
    padding: 10px 3px;
    margin-bottom: 10px;
  }
  .why-us .why-us-card i {
    font-size: 22px;
  }
  .why-us .why-us-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/* responsive css end */
/* --------------------------- why choose us css ends here ------------------------------ */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* ------------------------ about page css start here --------------------------- */

.about-us .about-para {
  margin-top: 20px;
}
.about-us .about-para p {
  margin-bottom: 10px;
  text-align: justify;
}

.quality {
  background: rgba(240, 238, 238, 0.753);
  text-align: justify;
}
.quality h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
}
.quality p {
  margin-bottom: 10px;
}

.journey {
  text-align: center;
}
.journey .journey-text p {
  margin-bottom: 20px;
}

.about-why-us {
  background: rgba(240, 238, 238, 0.753);
}

@media screen and (max-width: 991px) {
  .about-us .about-para {
    margin-top: 5px;
  }
  .quality .quality-img {
    display: none;
  }
  .quality p {
    margin-bottom: 10px;
  }
  .journey {
    text-align: justify;
  }
  .journey .journey-text p {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .quality h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .quality p {
    margin-bottom: 5px;
  }
  .journey .journey-text p {
    margin-bottom: 5px;
  }
}

/* ------------------------ about page css ends here ---------------------------- */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* =================== contact page css start =================== */

.map-location,
.map-location iframe {
  width: 100%;
  height: 100%;
  height: 400px;
  border: 1px solid #bdbbbb80;
}

@media screen and (max-width: 767px) {
  .map-location,
  .map-location iframe {
    height: 200px;
  }
}

/* ======================== contact page css end ======================== */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* ----------------------------- product detail page css start here ------------------------ */

/* product detail css start here  */

.product-detail {
  padding: 30px 0px;
}

.product-detail .product-img {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.product-detail .product-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.product-detail .product-text p {
  text-align: justify;
  margin-bottom: 10px;
}

.detail {
  padding-bottom: 30px;
  padding-top: 0px;
}

.detail .product-detail-text p{
  text-align: justify;
}

.detail .product-detail-text h3 {
  margin-bottom: 20px;
}
.detail .product-detail-text ul li {
  margin-bottom: 10px;
  text-align: justify;
}

.product-detail-page .products-category {
  background: linear-gradient(#e7e6e698);
}

.product-detail-page .products-category .category-card{
  margin: 5px 5px 10px;
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .product-detail {
    padding: 20px 0px;
  }
  .detail {
    padding-bottom: 20px;
  }

  .product-detail .product-img {
    margin-bottom: 15px;
  }
  .detail .product-detail-text h3 {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .product-detail .product-img {
    margin-bottom: 10px;
  }

  .product-detail .product-text p {
    margin-bottom: 5px;
  }
  .detail .product-detail-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .detail .product-detail-text ul li {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

/* responsive css end */

/* end of product detail css */

.product-detail-page .products-category .category-card {
  margin: 15px 0px;
}

/* 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: var(--dark-blue) !important;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

/* Active dot style */
.owl-dots .owl-dot.active span {
  background: var(--blue) !important;
}

@media screen and (max-width: 991px) {
  .product-detail-page .products-category .category-card {
    margin: 5px 2px;
  }
}

@media screen and (max-width: 767px) {
  .related-product-category-carousel .owl-dots {
    display: none;
  }
  .product-detail-page .products-category .category-card {
    margin: 5px 5px;
  }
}

/* owl carousel dots css end */

/* ----------------------------- product detail page css ends here ------------------------ */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* -------------------------- products page css start here --------------------------- */

.products .product-card {
  text-align: center;
  border-radius: 5px;
  padding: 10px 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.products .product-card .product-img img {
  position: relative;
  transition: 0.5s ease-in-out;
}
.products .product-card:hover .product-img img {
  transform: scale(1.1);
}
.products .product-card .product-img img {
  margin-bottom: 10px;
}

.products .product-card .product-name p {
  display: inline-block;
  padding: 5px 20px;
  background: var(--dark-blue);
  color: var(--white);
  border-radius: 15px;
  font-weight: 500;
}

.products .product-card .product-card-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  padding: 0px 10px;
  opacity: 0;
  transition: 0.5s ease-in-out;
  background: linear-gradient(
    rgba(25, 26, 25, 0.568),
    rgba(227, 230, 229, 0.842)
  );
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.products .product-card .product-card-text p {
  border: none;
  outline: none;
  background: var(--dark-blue);
  color: var(--white);
  padding: 5px 15px;
  font-weight: 600;
  font-size: 18px;
  transition: 0.5s ease-in-out;
}

.products .product-card .product-card-text p:hover {
  background: var(--blue);
}

.products .product-card:hover .product-card-text {
  top: 0;
  opacity: 1;
}


.products-page .products-category .category-card {
  
  margin: 5px 5px 10px;
}

/* responsive css */

@media screen and (max-width: 1320px) {
  .products .product-card .product-name p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .products .product-card .product-name p {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .products .product-card .product-name p {
    padding: 3px 10px;
    font-size: 14px;
  }
}

@media screen and (max-width: 819px) {
  .products .product-card .product-name p {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .products .product-card .product-name p {
    padding: 3px 10px;
    font-size: 12px;
  }
}

/* responsive css */

/* -------------------------- products page css end here ----------------------------- */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* ------------------------- blog detail page css start here --------------------------- */

.blog-detail .blog-detail-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-detail .blog-detail-text .date {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 5px 15px;
  margin-bottom: 20px;
}
.blog-detail .blog-detail-text .blog-detail-img {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  padding: 10px;
  margin-bottom: 20px;
}

.blog-detail .blog-detail-text h4 {
  margin-bottom: 5px;
}
.blog-detail .blog-detail-text p {
  margin-bottom: 20px;
  text-align: justify;
}

/* responsive css start */

@media screen and (max-width: 767px) {
  .blog-detail .blog-detail-text h2 {
    font-size: 22px;
  }
  .blog-detail .blog-detail-text .date {
    font-size: 14px;
  font-weight: 500;
  padding: 3px 10px;
  margin-bottom: 15px;
  }
  .blog-detail .blog-detail-text h4 {
    font-size: 16px;
  }
  .blog-detail .blog-detail-text p {
  margin-bottom: 15px;
}
}

/* responsive css end */

/* ------------------------- blog detail page css end here --------------------------- */



/* ======================================================================================================== */
/* ======================================================================================================== */



/* ------------------------- blog page css end here --------------------------- */
.blog-page .blogs{
  background: linear-gradient(#ebe9e98e);
}
/* ------------------------- blog page css end here --------------------------- */