@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;
  background: #ebebed;
}

* {
  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;
  --red: #dd2c1c;
  --green: #2bbc33;
  --orange: #f5811e;
  --blue: #20305c;
}

/* 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 */

/* 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 */

/* 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(--blue);
}

.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 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}
/* footer css */

/* custom css */

/* ---------- top-bar css start ---------- */
.top-bar {
  background: var(--blue);
}
.top-bar .info {
  display: flex;
  justify-content: space-between;
  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 {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navbar img {
  width: 200px;
}

.navbar .navbar-nav {
  background: var(--blue);
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: rgba(3, 3, 3, 0.527) 0px 5px 15px;
}

.navbar .navbar-nav .nav-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  padding: 5px 10px;
}

.navbar .navbar-nav .nav-link:hover {
  color: var(--white);
}

.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(--white);
  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;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}
.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--red);
  box-shadow: none;
}

/* responsive css */

@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 20px 0px;
  }
}

@media screen and (max-width: 767px) {
  .navbar img {
    width: 120px;
  }
  .navbar .navbar-nav {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  .navbar .navbar-nav .nav-link {
    margin-bottom: 10px;
    display: inline-block;

    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
    padding: 2px 8px;
  }
}

/* responsive css */

/* first dropdown start */

.dropdown .dropdown-menu {
  padding-bottom: 0;
  position: absolute;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown .dropdown-item:hover {
  background: var(--blue);
  color: var(--white);
  font-weight: 500;
}

.dropdown .dropdown-menu li a {
  display: inline-block;
}

.dropdown .dropdown-menu li i {
  color: var(--red);
  margin-right: 10px;
}

.dropdown .dropdown-menu .dropdown-submenu .dropdown-item:hover i {
  color: var(--white);
}

.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;
}

@media screen and (max-width: 767px) {
  .dropdown .dropdown-menu {
    position: static;
  }
}

/* ------------- end of navbar css here ---------------- */

/* ---------------- down-bar css start here --------------- */

.down-bar {
  padding: 5px 0;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scrolling-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scrolling-wrapper {
  display: flex;
  animation: scroll-left 30s linear infinite;
  width: fit-content;
}

.scrolling-inner {
  display: flex;
  gap: 100px;
}

.taste {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
}

.taste img {
  background: #fff;
  border-radius: 50px;
  padding: 2px;
  width: 25px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* responsive css */

@media screen and (max-width: 767px) {
  .taste {
    font-size: 12px;
  }
  .taste img {
    padding: 2px;
    width: 18px;
  }
}

/* responsive css */

/* --------------------- down-bar css ends here ------------------- */

/* banner css start here */

.carousel-indicators {
  margin-bottom: 15px;
}
.carousel-indicators [data-bs-target] {
  width: 20px;
  height: 5px;
  border: none;
  background: var(--red) !important;
}

.carousel-indicators button {
  border-radius: 20px;
}

@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);
  /* background: linear-gradient(to top, #ff6a01, #000000a4); */
  color: #fff;
}
.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-text h3 {
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 20px;
}

.about-us .about-text p {
  text-align: justify;
  margin-bottom: 20px;
}

.about-us .about-text span {
  color: var(--red);
}

.about-us .about-text .read-more {
  display: inline-block;
  background: var(--red);
  padding: 5px 10px;
  border-radius: 5px;
}
.about-us .about-text .read-more:hover {
  background: var(--blue);
}

.about-us .about-text .read-more a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.about-us .about-text .read-more a i {
  background: var(--white);
  color: var(--red);
  padding: 5px;
  border-radius: 50%;
}

/* responsive css */

@media screen and (max-width: 1200px) {
  .about-us .about-text h3 {
    margin-bottom: 15px;
    text-align: justify;
  }
}

@media screen and (max-width: 991px) {
  .about-us .about-text {
    margin-bottom: 20px;
  }

  .about-us .about-text p {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .about-us .about-text h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .about-us .about-text {
    margin-bottom: 10px;
  }

  .about-us .about-text p {
    margin-bottom: 5px;
  }
  .about-us .about-text .read-more {
    padding: 2px 5px;
    border-radius: 5px;
  }
  .about-us .about-text .read-more a {
    gap: 5px;
    font-size: 14px;
  }
  .about-us .about-text .read-more a i {
    padding: 3px;
  }
}

/* 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(--red);
  font-size: 18px;
  padding: 10px 0px;
  font-weight: 600;
}

.about-us .swiper-slide .product-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
}

.about-us .swiper-slide .product-card .product-img {
  position: relative;
}

.about-us .swiper-slide .product-card .more p i {
  background: var(--white);
  color: var(--red);
  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;
}

/* 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 ---------------------- */

/* ----------------------- products css start here ------------------------- */

.mobile-products {
  display: none;
}

.products-category .product-card {
  text-align: center;
  padding: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
}

.products-category .product-card .product-img {
  position: relative;
  margin-bottom: 20px;
}
.products-category .product-card .product-img img {
  width: 100%;
  border-radius: 20px;
}
.products-category .product-card .product-img .pic1 {
  transition: all 0.3s ease 0s;
}
.products-category .product-card:hover .pic1 {
  transform: translateX(110%);
}

.products-category .product-card .product-img .pic2 {
  width: 100%;
  height: 100%;
  transform: translateX(-110%);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease 0s;
}

.products-category .product-card:hover .pic2 {
  transform: translateX(0);
}

.products-category .product-card .product-text h3 {
  font-size: 18px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 10px;
  transition: 0.5s ease-in-out;
}

.products-category .product-card .product-text h3:hover {
  color: red;
  transition: 0.5s ease-in-out;
}

.products-category .product-card .product-text p {
  color: #ff0000e0;
}

.products-category .product-card .product-text p:hover {
  color: rgb(245, 132, 27);
}

@media screen and (max-width: 991px) {
  .products-category .product-card {
    padding: 10px 5px;
  }
  .products-category .product-card .product-img {
    margin-bottom: 10px;
  }

  .products-category .product-card .product-text h3 {
    font-size: 14px;
  }

  .products-category .product-card .product-text p {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .products-category .product-card .product-img {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 480px) {
  .products-category .product-card {
    padding: 5px 2px;
  }

  .products-category .product-card .product-text h3 {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

/* ----------------------- end of products css here ------------------------- */

/* -------------------- featured products css start here ------------------ */

.featured {
  background: #ebebeccc;
}

.featured .product-card {
  position: relative;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
  margin-top: 150px;
  margin-bottom: 80px;
}

.featured .product-card .product-img {
  position: relative;
  perspective: 1000px;
  border-radius: 20px;
}

.featured .product-card .product-img .img-1 {
  transition: 0.5s ease-in-out;
  border-radius: 20px;
  position: relative;
}

.featured .product-card .product-img:hover .img-1 {
  transform-style: preserve-3d;
  transform: rotateX(25deg);
}

/* img 2 */

.featured .product-card .product-img {
  position: relative;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured .product-card .product-img .sticker {
  position: absolute;
  bottom: 5%;
  transition: 0.5s ease-in-out;
}

.featured .product-card .product-img .sticker .sticker-img {
  width: 100px;
  transition: 0.5s ease-in-out;
}

.featured .product-card .product-img:hover .sticker-img {
  width: 200px;
}

.featured .product-card .product-img .item {
  position: absolute;
  opacity: 0;
  bottom: 0%;
  transition: 0.5s ease-in-out;
}

.featured .product-card .product-img .item .item-img {
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.featured .product-card .product-img:hover .item {
  opacity: 1;
  bottom: 30%;
}

.featured .product-card .product-img:hover .item .item-img {
  opacity: 1;
}

/* blank over */
.featured .product-card .product-img .blank-over {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: linear-gradient(
    #ebebecf1,
    #ebebece8,
    #ffffff10,
    #00000002,
    #00000002
  );
  transition: opacity 0.5s ease-in-out;
  border-radius: 20px;
}

.featured .product-card .product-img:hover .blank-over {
  opacity: 1;
}

/* blank over */

.active-card .product-card .product-img .sticker-img {
  width: 200px !important;
}

.active-card .product-card .product-img .item {
  opacity: 1;
  bottom: 30%;
}

.active-card .product-card .product-img .item .item-img {
  opacity: 1;
}

.active-card .product-card .product-img .img-1 {
  transform-style: preserve-3d;
  transform: rotateX(25deg);
}

.active-card .product-card .product-img .blank-over {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .featured .product-card {
    padding: 0px 50px;
    margin-top: 100px;
  }
}

/* -------------------- end of featured products css here ------------------ */

/* ------------------------ brands css start here --------------------------- */

.brands .brand-card .brand-img {
  margin: 20px 5px;
}

.brands .brand-card .brand-img img {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.brands .brand-card .brand-card-text {
  text-align: center;
  font-size: 14px;
  color: var(--blue);
}

/* ------------------------ end of brands css ------------------------------- */

/* ---------------------- why choose us css start here --------------------------- */

.why-choose-us .why-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.why-choose-us .why-text .text-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.why-choose-us .why-text .text-head h3 {
  font-size: 100px;
  color: #fbb600;
  line-height: 1;
}

.why-choose-us .why-text .text-head .para {
  background: var(--blue);
  color: var(--white);
  padding: 5px 10px;
}
.why-choose-us .why-text .text-head .para p {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
}

.why-choose-us .why-text .why-card .card-content {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--red);
  color: var(--white);
  padding: 30px 20px;
  text-align: justify;
}

.why-choose-us .why-text .why-card .card-content i {
  background: #fff;
  border-radius: 50px;
  padding: 10px;
  font-size: 50px;
  color: var(--blue);
}

.why-choose-us .why-text .why-card .card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.why-choose-us .why-text .why-card .card-content p {
  font-size: 12px;
  color: #e2d5d5ea;
}

/* responsive css */

@media screen and (max-width: 1280px) {
  .why-choose-us .why-text .why-card .card-content h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .why-choose-us .why-text .why-card .card-content p {
    font-size: 11px;
  }
}

@media screen and (max-width: 1200px) {
  .why-choose-us .why-text .text-head {
    margin-bottom: 10px;
  }
  .why-choose-us .why-text .text-head h3 {
    font-size: 40px;
  }
  .why-choose-us .why-text .text-head .para p {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .why-choose-us .why-text .why-card .card-content {
    gap: 10px;
    padding: 10px;
  }

  .why-choose-us .why-text .why-card .card-content i {
    padding: 10px;
    font-size: 40px;
  }
  .why-choose-us .why-text .why-card .card-content h3 {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .why-choose-us .why-text .why-card .card-content p {
    font-size: 10px;
  }
}

@media screen and (max-width: 991px) {
  .why-choose-us .why-image {
    display: none;
  }

  .why-choose-us .why-text .text-head {
    margin-bottom: 0px;
  }
  .why-choose-us .why-text .text-head h3 {
    font-size: 80px;
  }

  .why-choose-us .why-text .text-head .para p {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .why-choose-us .why-text .why-card .card-content {
    gap: 15px;
    padding: 15px 10px;
  }

  .why-choose-us .why-text .why-card .card-content i {
    padding: 5px;
    font-size: 30px;
  }

  .why-choose-us .why-text .why-card .card-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .why-choose-us .why-text .why-card .card-content p {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .why-choose-us .why-image {
    margin-bottom: 5px;
  }
  .why-choose-us .why-text .text-head {
    gap: 10px;
    margin-bottom: 5px;
  }

  .why-choose-us .why-text .text-head h3 {
    font-size: 32px;
  }

  .why-choose-us .why-text .text-head .para {
    padding: 5px;
    width: 100%;
    text-align: left;
  }
  .why-choose-us .why-text .text-head .para p {
    font-size: 14px;
  }

  .why-choose-us .why-text .why-card .card-content {
    gap: 10px;
    padding: 10px;
  }

  .why-choose-us .why-text .why-card .card-content i {
    padding: 5px;
    font-size: 20px;
  }

  .why-choose-us .why-text .why-card .card-content h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .why-choose-us .why-text .why-card .card-content p {
    font-size: 10px;
  }
}

/* responsive css */

/* ---------------------- end of why choose us css ---------------------- */

/* -------------------------- quality css start here ---------------------- */

.quality {
  background: var(--blue);
  color: var(--white);
}

.quality .quality-text {
  background: #16456eb3;
  border-radius: 20px;
  padding: 10px 0px;
}

@media screen and (max-width: 1200px) {
  .quality .quality-text img {
    width: 100px;
  }
}

@media screen and (max-width: 991px) {
  .quality .quality-text {
    margin-bottom: 10px;
  }
  .quality .quality-text img {
    width: 80px;
  }
}

@media screen and (max-width: 767px) {
  .quality .quality-text {
    padding: 5px 0px;
    margin-bottom: 10px;
  }
  .quality .quality-text img {
    width: 40px;
  }
}

/* -------------------------- end of quality css here ------------------------ */

/* ------------------------- blogs css start here ------------------------ */

.blogs .blog-card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
  margin: 10px;
  margin-bottom: 40px;
  border-radius: 20px;
}
.blogs .blog-card .blog-img {
  border-radius: 20px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.blogs .blog-card .blog-img img {
  border-radius: 20px;
  width: 100%;
  transition: 0.5s ease-in-out;
}
.blogs .blog-card .blog-img:hover img {
  transform: scale(1.1);
  transition: 0.5s ease-in-out;
}

.blogs .blog-card .blog-text h3 {
  font-size: 18px;
  color: var(--blue);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogs .blog-card .blog-text .date {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 2px 10px;
  border-radius: 5px;
}

.blogs .blog-card .blog-text p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  font-size: 14px;
}
.blogs .view-more {
  display: flex;
  justify-content: end;
}
.blogs .view-more a {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0px 10px;
}

.blogs .view-more a i {
  background: var(--white);
  color: var(--red);
  padding: 5px;
  border-radius: 50%;
}

@media screen and (max-width: 991px) {
  .blogs .blog-card .blog-text h3 {
    font-size: 14px;
  }
  .blogs .blog-card .blog-text p {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .blogs .blog-card {
    margin-bottom: 15px;
  }

  .blogs .view-more a {
    font-size: 14px;
    padding: 3px 5px;
    gap: 5px;
  }

  .blogs .view-more a i {
    padding: 3px;
  }
}

/* ------------------------- end of blog css here ------------------------- */

/* ------------------------ contact us css start here --------------------- */

.contact-us .center-form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact-us .contact-form {
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
  border-radius: 20px;
  width: 100%;
}

.contact-us .contact-form .form-head h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-us .contact-form .form-control::placeholder {
  color: var(--blue);
}
.contact-us .contact-form .form-control:focus {
  box-shadow: none;
}

.contact-us .contact-form .form-btn {
  display: flex;
  justify-content: center;
}

.contact-us .contact-form .form-btn button {
  border: none;
  outline: none;
  background: var(--red);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-us .contact-form .form-btn button i {
  background: var(--white);
  color: var(--red);
  padding: 5px;
  border-radius: 50%;
}

.contact-us .contact-form .form-btn button:hover {
  background: var(--blue);
}
.contact-us .contact-form .form-btn button:hover i {
  color: var(--blue);
}

/* responsive css start here */

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 991px) {
  .contact-us .left-side {
    display: none;
  }
  .contact-us .contact-form {
    border-radius: 5px;
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .contact-form .form-head h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .contact-us .contact-form .form-btn button {
    padding: 3px 7px;
    font-size: 12px;
    gap: 5px;
  }
  .contact-us .contact-form .form-btn button i {
    padding: 3px;
  }
}

/* end of responsive css */

/* -------------- 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: 1.625rem !important;
  padding-bottom: 0.625rem !important;
}

.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;
  background: #fff;
}

.captchasep1 .captcha-codes-sec p {
  letter-spacing: 9px;
  font-style: italic;
  font-size: 24px;
  font-weight: 800;
  color: #163e61;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 24px;
  outline: none;
  height: 100%;
  border: none;
  background: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: #d80d0d;
  color: #fff;
  padding: 5px;
  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;
  }
}

/* end of responsive captcha */

/* ----------- end of captcha css ----------- */

/* ------------------------ end of contact us css --------------------- */

/* ----------------------- testimonial section css start here ------------------------- */

.testimonial .testimonial-card {
  background: var(--blue);
  text-align: center;
  color: var(--white);
  border-radius: 5px;
  padding: 20px 40px;
}

.testimonial .testimonial-card h3 {
  margin-bottom: 50px;
}

.testimonial .testimonial-card .testimonial-text {
  background: var(--white);
  color: var(--black);
  padding: 20px 40px;
  font-style: italic;
  font-size: 14px;
  border-radius: 5px;
}

.testimonial .testimonial-card .testimonial-text .star {
  margin: 20px 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--blue);
}

.testimonial .testimonial-card .testimonial-text h4 {
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
}

/* owl carousel dots css start */

/* Center the dots below the carousel */
.testimonial .owl-dots {
  text-align: center;
  margin-top: 20px;
}

/* Style for each dot */
.testimonial .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #cbc8c8 !important;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

/* Active dot style */
.testimonial .owl-dots .owl-dot.active span {
  background: var(--blue) !important;
}

@media screen and (max-width: 767px) {
  .testimonial .owl-dots {
    display: none;
  }
}
/* owl carousel dots css end */

/* responsive css */

@media screen and (max-width: 991px) {
  .testimonial .testimonial-card {
    padding: 20px;
  }
  .testimonial .testimonial-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .testimonial .testimonial-card .testimonial-text {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial .testimonial-card {
    padding: 10px;
  }
  .testimonial .testimonial-card h3 {
    font-size: 18px;
  }

  .testimonial .testimonial-card .testimonial-text {
    padding: 10px;
    font-size: 12px;
  }
  .testimonial .testimonial-card .testimonial-text .star {
    margin: 10px 0px 5px;
    gap: 5px;
  }
  .testimonial .testimonial-card .testimonial-text h4 {
    font-size: 18px;
  }
}

/* responsive css */

/* ----------------------- end of testimonial section css here ------------------------- */

/* ----------------- footer css start here  ---------------- */
/* .footer {
   background: #dcdcddd7;
} */

.footer .part .head h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* part-1 css */

.footer .part-1 img {
  width: 250px;
}

.footer .part-1 .read-btn {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  padding: 10px 20px;
  margin-top: 20px;
  transition: 0.5s ease-in-out;
}

.footer .part-1 .read-btn:hover {
  background: #e35252ee;
  transition: 0.5s ease-in-out;
}

/* part-1 css */

/* part-2 part-3 css */

.footer .part ul li a {
  color: var(--black);
  line-height: 2;
  font-size: 14px;
}

.footer .part ul li a:hover {
  color: #ff0000;
}

.footer .part ul li i {
  font-size: 15px;
  margin-right: 10px;
}

/* part-2 part-3 css */

/* part-4 css start */
.footer .part-4 .head h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer .part-4 p span {
  color: var(--black);
  font-weight: 600;
}

.footer .part-4 p {
  color: var(--black);
  margin-bottom: 10px;
}

.footer .part-4 p a {
  color: var(--black);
}

.footer .part-4 h3 {
  font-size: 20px;
  margin-top: 20px;
}

.footer .part-4 .social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-top: 20px;
}

.footer .part-4 .social-links a i {
  font-size: 18px;
}

.footer .part-4 .social-links a {
  color: var(--white);
  background: var(--red);
  padding: 12px 16px;
  border-radius: 50px;
  text-align: center;
}

/* part-4 css end */

@media screen and (max-width: 1200px) {
  .part {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  .footer .part .head h2 {
    margin-bottom: 15px;
  }

  .footer .part-1 img {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }

  .footer .part .head h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  /* part-1 css */

  .footer .part-1 .head {
    text-align: center;
  }

  .footer .part-1 img {
    width: 150px;
  }

  .footer .part-1 p {
    font-size: 12px;
    text-align: justify;
  }

  .footer .part-1 .read-btn {
    padding: 5px 10px;
    margin-top: 10px;
  }

  /* part-1 css */

  /* part-4 css */
  .footer .part-4 .head h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer .part-4 h3 {
    font-size: 16px;
    margin-top: 10px;
  }

  .footer .part-4 .social-links a i {
    font-size: 16px;
  }

  .footer .part-4 .social-links a {
    padding: 7px 12px;
  }

  /* part-4 css end */
}

/* ----------------- footer css end here----------------- */

/* ------------------ footer widget css end here --------------- */

.footer-widget {
  padding: 10px 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-size: 16px;
  font-weight: 500;
}

.footer-widget .widget-text a {
  color: #fff;
}

@media screen and (max-width: 460px) {
  .footer-widget .widget-text p {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer-widget .widget-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-widget .widget-text .t-4-a {
    margin-top: 20px;
  }
}

/* ----------------- end of footer widget css here ------------------- */

/* =================================================================================================================== */
/* =================================================================================================================== */

/* ================================= about page css start here ================================== */

/* ------------------- our values css start here ---------------- */
.about-us .new-text p {
  text-align: justify;
  margin-bottom: 20px;
}

.values .value-card {
  background: #d1d0d05d;
  text-align: center;
  padding: 20px 10px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.values .value-card h4 {
  margin: 10px 0px;
  color: var(--red);
}

/* responsive css */

@media screen and (max-width: 1200px) {
  .values .value-card p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .about-us .new-text p {
    margin-bottom: 10px;
  }
  .values .value-card {
    padding: 10px 5px;
    margin-bottom: 15px;
  }
  .values .value-card img {
    width: 50px;
  }
  .values .value-card h4 {
    font-size: 18px;
    margin: 10px 0px;
  }
}

@media screen and (max-width: 767px) {
  .values .value-card {
    margin-bottom: 10px;
  }
  .values .value-card img {
    width: 30px;
  }
  .values .value-card h4 {
    font-size: 16px;
    margin: 5px 0px;
  }
}
/* responsive css */

/* ------------------- end of our values css here -------------------- */

/* -------------- mission vision css start here ------------- */

.mission-vision {
  background: linear-gradient(rgba(15, 15, 15, 0.933)),
    url(../img/contact/contactbg.jpg) no-repeat center center/cover;
  backdrop-filter: blur(10px);
  color: #fff;
}

.mission-vision .mission-border {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 20px 0px;
  margin-bottom: 20px;
}

.mission-vision .vision-border {
  border-bottom: 2px solid #fff;
  padding: 20px 0px;
}

.mission-vision .mission-vision-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.mission-vision h2 {
  margin-bottom: 10px;
}

.mission-vision p {
  text-align: justify;
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .mission-vision img {
    margin-bottom: 10px;
  }
  .mission-vision .mission-border {
    margin-bottom: 0px;
  }
}
/* end of responsive */

/* -------------- end of mission vision css ----------------- */

/* ================================= end of about page css here ================================== */

/* ============================================================================================================== */
/* ============================================================================================================== */

/* ---------------------------------- contact us page css start ------------------------------- */

.contact-address .addr {
  text-align: center;
  margin-bottom: 30px;
  background: #d1d0d05d;
  border-radius: 20px;
  padding: 20px 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-address .addr img {
  margin-bottom: 10px;
}

.contact-address .addr h3 a {
  color: #000;
  font-size: 20px;
}

.contact-address .addr h3 {
  font-weight: 400;
  color: #000;
  font-size: 20px;
}

.map-section .map iframe {
  width: 100%;
  height: 450px;
  margin: 0;
}

.map-section .row > * {
  padding: 0px !important;
}

@media screen and (max-width: 991px) {
  .contact-address .addr {
    border-radius: 5px;
  }
  .contact-address .addr img {
    width: 40px;
  }
  .contact-address .addr h3 a {
    font-size: 16px;
  }
  .map-section .map iframe {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .contact-address .addr {
    margin-bottom: 10px;
    padding: 10px 5px;
  }

  .contact-address .addr img {
    width: 30px;
    margin-bottom: 5px;
  }

  .contact-address .addr h3 a {
    font-size: 12px;
  }

  .contact-address .addr h3 {
    font-size: 14px;
  }

  .map-section .map iframe {
    height: 200px;
  }
}

/* --------------------------------- end of contact us page css ------------------------------- */

/* ================================================================================================= */
/* ================================================================================================== */

/* ----------------------- products page css start here ----------------------------- */

/* products css start */

.products .product-card {
  text-align: center;
  padding: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
}
.products .product-card .product-img {
  position: relative;
  margin-bottom: 10px;
}
.products .product-card .product-img img {
  width: 100%;
  border-radius: 20px;
}

.products .product-card .product-name h3 {
  font-size: 18px;
  color: var(--blue);
  font-weight: 700;
}

.products .product-card .product-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.products .product-card:hover .product-text {
  opacity: 1;
  transition: 0.5s ease-in-out;
}

.products .product-card .product-text p {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 10px;
  align-items: center;
}
.products .product-card .product-text p i {
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  color: var(--red);
}

/* responsive css */

@media screen and (max-width: 991px) {
  .products .product-card {
    padding: 10px 10px;
    border-radius: 10px;
  }
  .products .product-card .product-img {
    margin-bottom: 10px;
  }
  .products .product-card .product-img img {
    border-radius: 10px;
  }

  .products .product-card .product-name h3 {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .products .product-card .product-img {
    margin-bottom: 5px;
  }

  .products .product-card .product-text p {
    padding: 5px 10px;
    font-weight: 500;
    border-radius: 5px;
    font-size: 12px;
  }

  .products .product-card .product-text p i {
    padding: 3px;
  }
}

@media screen and (max-width: 480px) {
  .products .product-card {
    padding: 5px 3px;
  }

  .products .product-card .product-name h3 {
    font-size: 12px;
  }
}

/* responsive css */

/* products css end */

.products-category .category-theme .product-card {
  margin: 10px;
}

/* owl carousel dots css start */

/* Center the dots below the carousel */
.products-category-theme .owl-dots {
  text-align: center;
  margin-top: 20px;
}

/* Style for each dot */
.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #163e61a7 !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: 767px) {
  .products-category-theme .owl-dots {
    display: none;
  }
}
/* owl carousel dots css end */

/* ----------------------- products page css ends here  ----------------------------- */

/* ===================================================================================================== */
/* ===================================================================================================== */

/* ------------------------------- enquiry page css start here ---------------------------- */
.enquiry .enquiry-text {
  text-align: justify;
}
.enquiry .enquiry-text p {
  margin-bottom: 20px;
}
.enquiry .enquiry-text ol {
  padding: 0px;
}
.enquiry .enquiry-text ol {
  padding-left: 10px;
}

.enquiry .product-img img {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.enquiry-detail .card h3 {
  color: var(--blue);
}

/* enquiry button css start */

.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: var(--blue);
  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 */

/* enquiry button css end */

/* responsive css start */

@media screen and (max-width: 1200px) {
  .enquiry .enquiry-text p {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .enquiry .enquiry-text h3 {
    font-size: 18px;
  }
  .enquiry .enquiry-text ol li {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .enquiry .product-img img {
    margin-bottom: 15px;
  }
  .enquiry .enquiry-text p {
    margin-bottom: 10px;
  }
  .enquiry-detail .card .card-body p {
    text-align: justify;
  }
}

@media screen and (max-width: 767px) {
  .enquiry .enquiry-text p {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .enquiry .product-img img {
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .enquiry .enquiry-text ol li {
    font-size: 12px;
  }

  .enquiry-detail .card h3 {
    font-size: 18px;
  }

  .enquire-btn {
    margin-top: 10px;
  }

  .enquire-btn button {
    font-size: 14px;
    padding: 3px 8px;
  }
}

/* responsive css ends here  */

/* -------------------------------  enquiry page css end here  ---------------------------- */

/* ================================================================================================================= */
/* ================================================================================================================= */

/* ------------------------- blog detail page css start here ----------------------- */

/* .blog-detail .blog-img img{
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 20px;
}

.blog-detail .blog-text .date{
  display: inline-block;
  background: var(--red);
  padding: 5px 15px;
  color: var(--white);
  margin-bottom: 10px;
  border-radius: 5px;
}

.blog-detail .blog-text h3{
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--blue);
}

.blog-detail .blog-text .para{
  margin-bottom: 10px;
  text-align: justify;
} */

/* blog text css start */

.blog-detail-img img {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog-detail .blog-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blog-detail .blog-text h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 400;
  text-align: justify;
}

.blog-detail .blog-text .date {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 5px 15px;
  margin: 20px 0px;
  border-radius: 5px;
}

.blog-detail .blog-text p {
  text-align: justify;
  margin-bottom: 10px;
}

/* responisive css */

@media screen and (max-width: 1200px) {
  .blog-detail .blog-text .date {
    margin: 10px 0px;
  }
}

@media screen and (max-width: 767px) {
  .blog-detail-img img {
    border-radius: 5px;
  }
  .blog-detail .blog-text h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .blog-detail .blog-text h3 {
    text-align: justify;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .blog-detail .blog-text .date {
    margin: 10px 0px;
  }
}
/* 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-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.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: 10px 0px;
}

/* 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-radius: 5px;
  }

  .blog-detail .recent-blog .recent-card .recent-text .date {
    margin-top: 5px;
  }
}
/* responsive css end */

/* end of recent blog css */

/* ------------------------- end of blog detail page css here ----------------------- */
