@import url('https://fonts.googleapis.com/css2?family=Anek+Devanagari:wdth,wght@100.7,500&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Slab:wght@100..900&family=Tagesschrift&display=swap');


body {
  font-family: "Anek Devanagari", sans-serif;
  font-style: normal;
  /* font-variation-settings:
    "wdth" 100.7; */

}

.loader-wrap {
  position: fixed;
  z-index: 100;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  flex-direction: column;
  overflow: hidden;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  z-index: 1;
  fill: rgb(0, 0, 91);
}

.loader-wrap-heading {
  z-index: 2;
  text-align: center;
}

.loader-wrap-heading img {
  width: 120px;
  margin-bottom: 10px;
}

.loader-wrap-heading h1 {
  font-size: 70px;
  color: darkblue;
  /* Changed to dark blue */
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

/* ------ */
@media (max-width: 767px) {
  .loader-wrap svg {
    width: 200vw;
    margin-left: -50vw;
  }

  .loader-wrap-heading h1,
  .container h1 {
    font-size: 50px;
  }

  .loader-wrap-heading img {
    width: 80px;
  }
}

/* <!-- nav start ------  --> */

/* .navbar-brand img{
  height: 15% !important;
} */

.social-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #002c6c;
  border-radius: 50%;
}

.call-info small {
  font-size: 12px;
  color: #555;
}

.call-info strong {
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: center;
  }

  .right-section {
    margin-top: 15px;
    flex-direction: column;
    gap: 1rem;
  }
}

/* <!-- nav end ------  -->  */

/* <!-- hero section start --> */

.hero {
  background: url('image/bg2.png') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.023);
  /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 15px;
}

.hero-content h5 {
  font-weight: 500;
  margin-bottom: 30px;
  /* font-weight: 700; */

  font-size: small;
}
.prod-club-img {
  height: 230px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .prod-club-img {
    height: 300px;
  }
}


.hero-content h1 {
  font-size:5.5rem !important;
  margin-bottom: 20px;
  line-height: 1;
}

@media (max-width: 568px) {
  .hero-content h1{
    font-size: 3.5rem !important;
  }
}

.highlight-yellow {
  color: #ffc107;
  font-weight: 900;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.no-decoration {
  text-decoration: none;
  color: inherit; 
}

.btn-green-1 {
  background-color: #28a745;
  color: white;
  padding: 10px 25px;
  border: none;
  margin-top: 40px;
  font-weight: 600;
  border-radius: 5px;
}

.btn-green-1:hover {
  background-color: #218838;
}

@media (max-width: 568px) {
  .btn-green-1{
    margin-top:30% !important;
  }
}

.btn-green {
  background-color: #28a745;
  color: white;
  padding: 10px 25px;
  border: none;
  /* margin-top: 40px; */
  font-weight: 600;
  border-radius: 5px;
}


.btn-green:hover {
  background-color: #218838;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}

.btn-outline-white:hover{
  border: 1px solid !important;
  color: #fff !important;
}

/* <!-- hero section end --> */

/* <!-- Slogan Section start--> */

.slogan {
  font-size: 3rem;
  font-weight: 900;
  color: #002f6c;
  text-align: center;
  margin-top: 10px;
  padding: 0 10px;
}

.intro-section {
  padding: 60px 15px;
}

.intro-text {
  max-width: 600px;
}

.cta-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #218838;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  object-fit: cover;
}

.sub-img {
  position: absolute;
  bottom: -30px;
  left: 15vh;
  width: 190px;
  border: 2px solid white;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .sub-img {
    width: 100px;
    bottom: -20px;
    left: 7vh;
  }

  .main-img {
    max-width: 300px;
  }

  .slogan {
    font-size: 1.4rem;
  }

  .vision {
    margin-bottom: 30px;
  }

  .mission-vision-content {
    height: 100vh;
  }
}

/* <!-- Slogan Section end--> */

/* <!-- Why Choose Us Section start--> */


.why-choose-section {
  background-color: #003380;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.why-choose-section h2 {
  font-weight: 700;
  margin-bottom: 40px;
}

.why-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: white;
}

.why-item {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .why-item {
    padding: 0 20px;
  }
}

/* <!-- Why Choose Us Section end--> */

/* mission-vision-section start  */

.carousel-container {
  position: relative;
  height: 50vh;
  /* top: 30%; */
  align-items: center !important;
  overflow: hidden;
}

.carousel-item img {
  object-fit: cover;
  height: 100vh;
  width: 100%;
  transition: opacity 1s ease-in-out;
}

.mission-vision-content {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  /* margin: 30px; */
  height: 60vh;
  z-index: 3;
  padding: 20px;
}

.card-custom {
  border-radius: 12px;
  padding: 30px;
  color: white;
  font-size: 1.1rem;
  font-weight: 400;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.mission {
  background-color: rgba(56, 161, 105, 0.95);
  /* green */
}

.mission p {
  margin-top: 73px;
}

.vision {
  background-color: rgba(239, 68, 68, 0.95);
  /* red */
}

.card-custom h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .card-custom {
    margin-bottom: 20px;
  }

  .mission-vision-content {
    top: 50%;
    align-items: center !important;
    /* margin: 70px 0px; */
    height: 80vh;
  }

  .mission{
    margin-top: 20px;
  }

  .mission p {
    margin-top: 5px;
    font-size: small;
  }

  .vision p {
    font-size: small;
  }

  .vision {
    padding-bottom: 50px;
  }

  .carousel-container {
    height: 80vh;
  }
  .pack{
    /* padding: 30px !important; */
    align-items: center !important;
    padding-bottom:20px ;
  }
}

/* mission-vision-section end  */

/* <!-- Explore start  -->  */

.section-title {
  font-weight: 700;
  color: #003366;
}

.product-card {
  border: none;
  /* border-radius: 12px; */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.btn-green {
  background-color: #22c55e;
  border: none;
  color: white;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
}

.btn-green:hover {
  background-color: #16a34a;
}

.card-title {
  font-weight: 600;
  color: #003366;
}

.card-text {
  font-size: 0.9rem;
}

/* <!-- Explore end  -->  */

/* tractor-section start */

/* .tractor-section img {
  height: 60vh;
  width: 100%;
}

@media (max-width: 576px) {
  .tractor-section img {
    height: 30vh;
    width: 100%;
  }
} */

.tractor-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Makes the section cover the entire viewport height */
  overflow: hidden;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes the image fill the container and crop as needed */
}









/* tractor-section end */

/* .organic-section start */

.organic {
  padding: 0px 90px !important;
}

.organic-section {
  background-color: #0f4ca7;
  color: white;
  padding: 60px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.organic-section h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}

.organic-section p {
  font-size: 1rem;
  color: #dbe7ff;
  margin-bottom: 30px;
  padding: 0px 30px;
}

.btn-green {
  background-color: #00c853;
  color: white;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  margin-right: 10px;
}

.btn-outline-white {
  border: 2px solid #dbe7ff;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
}

@media (max-width: 576px) {

  .btn-green,
  .btn-outline-white {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .organic {
    padding: 0px 10px !important;
    /* margin-top: -70%; */
  }
  .organic-a{
    margin-top: -225px;
  }
}

/* .organic-section end  */


.navbar-nav .nav-link {
  color: #000;
  font-weight: 500;
}

.slogan-1 {
  font-size: 18px;
  color: #666;
  border: none;
  text-align: center;
}

.footer {
  background-color: #043d86;
  color: white;
  padding: 15px 0;
}

.footer a {
  color: #ccc;
  margin-left: 15px;
  font-size: 14px;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.social-icons i {
  font-size: 18px;
  margin-left: 15px;
  color: #043d86;
  background: #e0e0e0;
  border-radius: 50%;
  padding: 10px;
}

.logo {
  height: 50px;
}

@media (max-width: 768px) {
  .social-icons {
    margin-top: 10px;
  }
}

/* -------------- */
/* about section  */
/* --------------- */


.about-banner {
  background: linear-gradient(#00000099, rgba(0, 0, 0, 0.124)),
    url('image/nav-img.jpg') no-repeat center center/cover;
  height: 300px;
}

.about-logo {
  width: 60px;
  height: 60px;
}

/* -------- */

.section-title-2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #003366;
}

.about-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

.about-section {
  padding: 60px 0;
}

.illustration-img {
  max-width: 100%;
  height: auto;
}

/* ---------- */

.highlight-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #003366;
}

@media (max-width: 768px) {
  .highlight-title {
    font-size: 2rem;
  }

  .sub-highlight {
    font-size: 0.8rem;
  }
}


.sub-highlight {
  font-size: 1.2rem;
  color: #ff5722;
  font-weight: 600;
}

.section-heading {
  font-weight: 200 !important;
  font-size: 3.5rem;
}

.icon-box {
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  background-color: #f9f9f9;
  transition: 0.3s;
}

.icon-box:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.icon-box h5 {
  font-weight: 600;
  margin-top: 10px;
}

.icon-box p {
  font-size: 0.95rem;
  color: #444;
}

.section {
  padding: 60px 0;
}

.img-fluid.rounded-custom {
  border-radius: 16px;
  height: 70vh;
}

.text {
  color: #092f69;
}

.head {
  margin-right: 230px;
}

.head-1 {
  margin-left: 50px;
}

@media (max-width: 768px) {
  .head {
    display: none;
  }

  .head-1 {
    display: none;
  }
}

.b2b-section {
  background-color: #f04e3e;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.b2b-section img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.b2b-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.b2b-text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.b2b-btn {
  background-color: #00c853;
  color: white;
  font-weight: 600;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
}

.b2b-btn:hover {
  background-color: #00b44c;
}

@media (max-width: 768px) {
  .b2b-heading {
    font-size: 1.8rem;
  }
}

.btn-submit-1{
background-color: #0bb146;
color: white;
width: 100%;
border: none;
padding: 10px;
border-radius: 10px;
}


.btn-submit-1 :hover{
  background-color: #00ff55 ;
  color: white;
  }

/* ------- */

.team-section {
  background-color: #EFF0EF;
  border-radius: 16px;
  padding: 40px 80px;
  margin: 60px auto;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .team-section {
    padding: 40px 30px;
  }

  .team-image-wrapper {
    margin-right: 60px;
  }

}

.team-heading {
  font-size: 28px;
  font-weight: 700;
  color: #202020;
  margin-bottom: 20px;
}

.team-paragraph {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.7;
}

.team-btn {
  background-color: #0bb146;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
}

.team-btn:hover {
  background-color: #08983b;
}

.team-image-wrapper {
  padding: 10px;
}

.team-image {
  width: 100%;
  border-radius: 10px;
  display: block;
}

@media (max-width: 768px) {
  .team-section {
    text-align: center;
    border-radius: 0px;
  }

  .team-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------- */

.Item h1 {
  color: rgba(0, 53, 130, 1);
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.product-card {
  background-color: #fff;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.product-title {
  font-weight: bold;
  font-size: 1.25rem;
  color: rgba(0, 53, 130, 1);
}

.product img {
  width: 100%;
  max-width: 220px;
}

.dosage {
  font-weight: bold;
}

.Bouncer-img img {
  height: 100%;
  width: 35vh;
}

.new-bg {
  background-color: rgba(244, 249, 255, 1) !important;
}


.contact-section-1 {
  background-color: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
}

@media (max-width: 768px) {
  .contact-section-1 {
    padding: 10px;
  }
}

.form-control {
  border-radius: 10px;
  margin-bottom: 15px;
}

.btn-submit {
  background-color: #28a745;
  color: white;
  width: 100%;
  border-radius: 8px;
}

.info-box {
  display: flex;
  align-items: start;
  margin-top: 20px;
}

.info-box img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  margin-top: 4px;
}

.info-content h6 {
  margin: 0;
  font-weight: 800;
  color: black;
}

.info-content p {
  margin: 5px 0 0;
  color: green;
}

.map-embed {
  border-radius: 15px;
  width: 100%;
  min-height: 450px;
  border: none;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 20px;
  }
}

.bg-blue {
  height: 80vh;
}

.image-map {
  width: 100%;
  height: 80vh;
}

.section-title-2{
  font-size: 50px;
}



@media (max-width: 768px) {
  .section-title-2{
    font-size: 25px;
  }
}


/* ==========animation */

.text-left-c {
  text-align: left !important;
}

@media (max-width: 768px) {
  .hero {
    height: 90vh;
    padding: 10px;
  }

  .intro-text h3 {
    margin-top: -90px;
  }

  .slogan {
    font-weight: 900;
    font-size: larger;
  }

  .Terms {
    margin-top: 10px;
  }

  .image-map {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .right-section {
    text-align: center;
    /* align-items: flex-start !important; */
    justify-content: space-around !important;
    gap: 10px !important;
    border-top: 1px solid;
    padding-top: 15px;
  }
}

.product-card{
  box-shadow: none;
}


.circle-border {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-border 2s infinite ease-in-out;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.active{
  border-bottom:4px solid #00b44c;
  padding: 5px ;
  font-weight: 900;
  border-width: 900;
}

.active p{
  margin-bottom: -5px;
  font-weight: 900;
}