@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background-color: #FFF;
  /* Background color for the entire website, including individual sections */
  --default-color: #0E0E0E;
  /* Default color used for the majority of the text content across the entire website */
  --logo-color: #57A696;
  --white-color: #ffffff;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: Inter, serif;
  text-decoration: none;
  outline: none;
}

.text-color {
  color: var(--logo-color);
}

.bg-color {
  background-color: var(--logo-color);
}


.contact-link {
  transition: color 0.3s ease;
  cursor: pointer;
}

.contact-link:hover {
  color: lightgray !important;
}

/* Social icons hover effect */
.social-icon {
  transition: color 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  color: lightgray !important;
}

.brand-container {
  width: 100%;
  /* height: calc(100vh - 120px); */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropdown-menu{
  right: -200px;
  background: #FFF !important;
}
.bhagva {
  color: #37a794;
  transition: 0.5s;
}


.brand-img {
  width: 100%;
  /* height: 540px; */
  object-fit: cover;
}

.abt-img {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  /*border: 2px solid black;*/
}

.category-img {
  object-fit: cover;
}

.brand-container2 {
  width: 100%;
  /* height: 400px; */
  /* 100% viewport height minus 120px */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* // testimonial */

.testimonial-card {
  background-color: #FFF;
  border-radius: 25px;
  border: 2px solid;
}

.image-circle img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 100%;
}

.rating {
  color: #fbc02d;
  /* Yellow stars */
  font-size: 20px;
}

/* Description Styling */
.description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

#prevBtn,
#nextBtn {
  font-size: 32px;
  transition: all 0.3s ease;
  border: none;
  background-color: transparent;
  color: rgb(108, 105, 105);
}

#prevBtn:hover,
#nextBtn:hover {
  color: gray;
}

.bg-success {
  background-color: #57A696 !important;
}

.text-success {
  color: #57A696 !important;
}

.blog-card {
  border: 1px solid #57A696;
  border-radius: 10px;
  padding: 15px;
  background-color: #FFF;
}

.footer-logo {
  width: 10%;
  /*filter: drop-shadow(2px 4px 6px black);*/
}

.lgnbtn {
  color: rgb(255, 255, 255);
  background: rgb(51, 0, 115);
}

@keyframes float {
  0% {
    transform: translateY(0);
    /* Start position */
  }

  50% {
    transform: translateY(-10px);
    /* Move up */
  }

  100% {
    transform: translateY(0);
    /* Return to start position */
  }
}

.whatapp-img {
  position: fixed;
  width: 100px;
  bottom: 20px;
  right: 0px;
  z-index: 1000;
  cursor: pointer;
  padding: 10px 15px;
  animation: 2s ease-in-out 0s infinite normal none running float;
}

.blog-banner {
  height: 400px;
  background-image: url('../imges/blogs.svg');
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  background-size: contain;
}

.blogs-images {
  object-fit: cover;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  border: 1px solid black;
}

.social-icon {
  cursor: pointer;
}

.card {
  cursor: pointer;
}

.footer-logo,
.col-md-2 {
  cursor: pointer;
  color: #ffffff !important;
}


.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-card button {
  margin-top: 10px;
}

.navbar {
  background-color: #FFF;
}

.navbar-nav li:hover>ul.dropdown-menu {
  display: block;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
}

.dropdown-menu>li>a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
}

.navbar-nav .nav-link {
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 600;
}

.navbar-nav li:hover a {
  opacity: 0.8;
}










body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

.row>.column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 11111;
  padding-top: 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  z-index: 1;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.buy_img {
  width: 100%;
  object-fit: cover;
}

.open-slider {
  width: 100% !important;
  height: 100vh !important;
  object-fit: contain;
  background: black;
}
.pro_details {
  padding-left: 50px;
}
.p-mrp {
  color: #37a794;
}
.contactPageForm input {
  width: 100%;
  border: 1px solid black;
  outline: none;
  padding: 15px 10px;
  color: black !important;
}
.contactPageForm select {
  width: 100%;
  border: 1px solid black;
  outline: none;
  padding: 17px 10px;
  color: black !important;
  background-color: transparent;
}
.contactPageForm input {
  width: 100%;
  border: 1px solid black;
  outline: none;
  padding: 15px 10px;
  color: black !important;
}
.contactPageForm button {
  display: block;
  width: 100%;
  padding: 10px 10px;
  border: none;
  border: 1px solid black;
  background: black;
  color: white;
}
.contactPageForm textarea {
  display: block;
  width: 100%;
  border: 1px solid black;
  outline: none;
  padding: 0px 10px;
}
.heera button {
  padding: 8px 30px;
  border: none;
  background: #37a794;
  color: white;
  transition: 0.5;
}
.accordion-button {
  background-color: #FFF !important;
}
.accordion-body{
  background-color: #FFF !important;
}
















/* // contact us  */

::placeholder {
  color: rgb(97, 95, 95) !important;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: rgb(161, 155, 155) !important;
}

::-moz-placeholder {
  color: rgb(179, 157, 157) !important;
}

:-ms-input-placeholder {
  color: rgb(155, 140, 140) !important;
}

@media only screen and (max-width: 600px) {
  .brand-container {
    /* height: 50vh; */
  }

  .brand-container2 {
    /* height: 40vh; */
  }
}

@media (max-width: 576px) {
  .blog-banners {
    padding-top: 20px !important;
  }
}