body {
  font-family: 'Roboto', sans-serif;
  background-color: #fdf6e3;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
#about {
  padding: 60px 0;
}
/* Navbar Styles */
.navbar {
  background-color: #212529; /* Dark background for the navbar */
}
.nav-item
{
  font-weight: bold;
}
.navbar-brand {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-nav .nav-link {
  color: #cfd2d6; /* Light gray links */
  font-size: 1rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff; /* White on hover */
}

.donate-btn {
      background-color: hsla(34, 100%, 51%, 0.918) !important; /* Soft donate button */
      text-align: center;
      text-decoration: none;

      align-items: center;
      color: #f1f4f7;
      border-radius: 25px;
      padding: 6px 20px 6px 20px;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
.donate-btn:hover {
  background-color: #212529;
  color: #f8c291;
}

/* Offcanvas Styles */
.offcanvas {
  background-color: #212529 !important; /* Dark background for the offcanvas menu */
}

.offcanvas .nav-link {
  color: #cfd2d6;
  font-size: 1rem;
}

.offcanvas .nav-link:hover {
  color: #ffffff; /* White on hover */
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  color: #5a3714;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2rem;
  color: #5a3714;
  margin-top: 15px;
  margin-bottom: 20px;
}

.about .cta-btn {
  padding: 10px 20px;
  background-color: #a5745c;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-text .cta-btn:hover {
  background-color: #5a3714;
  transform: scale(1.1);
}

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

.cow-image {
  max-width: 100%;
  background-color: #dd944f;
  height: auto;
  border-radius:   29% 71% 37% 63% / 42% 49% 51% 58%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* === Mobile responsiveness === */
@media (max-width: 600px) {
  .hero-section {
    flex-direction: column-reverse; /* Text on top, image below */
    text-align: center;
    padding: 80px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text {
    text-align: center;
  }

  .cta-btn {
    display: inline-block;
    margin-top: 10px;
  }

  .cow-image {
    max-width: 90%;
  }
}
/* About */
/* Root level custom properties for About Section */
:root {
  --about-bg-color: #fdfaf5; /* Light beige background */
  --about-text-color: #333; /* Dark text color */
  --about-heading-color: #5a3714; /* Earthy brown for headings */
  --about-slogan-color: #007bff; /* Bootstrap blue for slogan */
  --about-padding: 100px 0; /* Padding for the About section */
  --about-animation-duration: 1s; /* Duration for animations in About section */
  --about-image-border-radius: 20px; /* Border-radius for the image */
}
/* About Section Styles */
.about {
  padding: 60px 0;
  background: #f9f9f9;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-meta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #5a3714;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color:#333;; /* Heading color */
}

.about-description {
  font-size: 16px;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #5a3714; /* Body text color */
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 14px;
  color: #5a3714; /* Body text color */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-list i {
  font-size: 16px;
  color: #5a3714; /* Icon color */
  margin-right: 10px;
}

.profile {
  display: flex;
  align-items: center;
}

.profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  font-size: 16px;
  font-weight: 600;
  color: #5a3714; /* Heading color */
  margin-bottom: 0;
  margin-top: 15px;
}

.profile-position {
  font-size: 14px;
  color: #5a3714; /* Body text color */
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-info i {
  font-size: 20px;
  color: #5a3714; /* Icon color */
}

.contact-label {
  font-size: 14px;
  color: #5a3714; /* Body text color */
  margin: 0;
  margin-top: 15px;
}

.contact-number {
  font-size: 16px;
  font-weight: 600;
  color: #5a3714; /* Heading color */
}

.image-wrapper {
  position: relative;
}

.image-wrapper .images {
  position: relative;
}

.image-wrapper .main-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.image-wrapper .small-image {
  position: absolute;
  width: 150px;
  top: -40px;
  right: -10px;
  border: 3px solid #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -10px;
  background: #5a3714; /* Badge background color */
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
}

.experience-badge h3 {
  font-size: 20px;
  margin: 0;
}

.experience-badge p {
  font-size: 12px;
  margin: 0;
  color: #ffff;
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .about {
    padding: 40px 0;
  }

  .about-title {
    font-size: 28px;
  }

  .about-description {
    font-size: 14px;
  }

  .image-wrapper .small-image {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}

@media (max-width: 768px) {
  .feature-list-wrapper {
    flex-direction: column;
  }

  .feature-list {
    margin-bottom: 20px;
  }

  .image-wrapper .small-image {
    display: none;
  }
}

/* Features Section */
/* Global Section Titles */
--------------------------------------------------------------*/
.section {
  padding: 60px 0;
  background-color: #f9f9f9;
 
}
 .section-title {
  text-align: center;
  margin-bottom: 40px;
}

 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-top: 30px;
  position: relative;
  padding-bottom: 5px;
}

 .section-title div {
  margin-top: 10px;
  font-size: 18px;
  color: #555;
}

 .section-title .description-title {
  font-weight: 700;
  color: #ff5722; /* Accent color for the title */
}


/* Tabs Navigation */
.nav-tabs {
  border: none;
  justify-content: center;
  gap: 20px;
}

.nav-tabs .nav-item {
  margin: 0;
}

.nav-tabs .nav-link {
  border: none;
  background-color: transparent;
  font-size: 18px;
  color: #34495e;
  padding: 10px 15px;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-tabs .nav-link.active {
  color: #2980b9;
  border-bottom: 3px solid #2980b9;
}

.nav-tabs .nav-link:hover {
  color: #2980b9;
}

/* Tab Content Styling */
.tab-content {
  margin-top: 0px;
}

.tab-content .row {
  align-items: center;
}

.tab-content .col-lg-6 img {
  max-width: 100%;
  height: auto;
}

.tab-content h3 {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
}

.tab-content p {
  color: #6c757d;
}

.tab-content ul {
  padding: 0;
  list-style: none;
}

.tab-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.tab-content ul li i {
  color: #27ae60;
  margin-right: 10px;
}

.fst-italic {
  font-style: italic;
}


/* Tabs Navigation */
.nav-tabs {
  border: none;
  justify-content: center;
  gap: 20px;
  transition: all 0.3s;
}

.nav-tabs .nav-item {
  margin: 0;
}

.nav-tabs .nav-link {
  border: none;
  background-color: transparent;
  font-size: 18px;
  color: var(--about-heading-color);
  padding: 10px 15px;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-tabs .nav-link.active {
  color: #2980b9;
  border-bottom: 3px solid #2980b9;
}

.nav-tabs .nav-link:hover {
  color: #2980b9;
}

/* Tab Content Styling */
.tab-content {
  margin-top: 30px;
}

.tab-content .row {
  align-items: center;
}

.tab-content .col-lg-6 img {
  max-width: 100%;
  height: auto;
}

.tab-content h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--about-heading-color);
}

.tab-content p {
  color: var(--about-heading-color);
}

.tab-content ul {
  padding: 0;
  list-style: none;
}

.tab-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.tab-content ul li i {
  color: #27ae60;
  margin-right: 10px;
}

.fst-italic {
  font-style: italic;
}
/*mobile tap*/
@media (max-width: 768px) {
  /* Tab navigation: stack or scrollable on small screens */
  .nav-tabs {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
  }

  .nav-tabs .nav-link {
    font-size: 16px;
    padding: 8px 12px;
    text-align: center;
    width: 100%;
  }

  .tab-content {
    margin-top: 20px;
    padding: 0 15px;
    text-align: center;
  }

  .tab-content .row {
    flex-direction: column;
  }

  .tab-content .col-lg-6 {
    margin-bottom: 20px;
  }

  .tab-content h3 {
    font-size: 20px;
  }

  .tab-content p,
  .tab-content ul li {
    font-size: 15px;
  }

  .tab-content ul li {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tab-content ul li i {
    margin-right: 5px;
  }
}

/* Counter up */
.counter-section {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.counter-section .container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.counter {
  flex: 1;
  max-width: 200px;
  margin: 20px;
}

.count {
  font-size: 2.5rem;
  color: #d9534f;
  font-weight: bold;
  margin: 10px 0;
}

p {
  font-size: 1.2rem;
  color: #333;

}

/* Service */
/* General Section Styling */
.details {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.details .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.details .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.details .section-title div {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
}

.details .description-title {
  color: #ff5e57;
  font-weight: bold;
  margin-left: 5px;
  
}

/* Features Item Styling */
.details .features-item {
  margin-bottom: 40px;
}

.details .features-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.details .features-item h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.details .features-item p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

.details .features-item ul {
  list-style: none;
  padding: 0;
}

.details .features-item ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: justify;
}

.details .features-item ul li i {
  color: #ff5e57;
  font-size: 20px;
  margin-right: 10px;
}

.details .features-item ul li span {
  font-size: 16px;
  color: #555;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .details .features-item {
    display: flex;
    align-items: center;
  }

  .details .features-item .col-md-5 {
    flex: 0 0 45%;
  }

  .details .features-item .col-md-7 {
    flex: 0 0 55%;
    padding-left: 30px;
  }

  .details .features-item .order-md-1 {
    order: 1 !important;
  }

  .details .features-item .order-md-2 {
    order: 2 !important;
  }
}

/* Animations */
[data-aos="fade-up"] {
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: translateY(20px);
  opacity: 0;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="zoom-out"] {
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(1.2);
  opacity: 0;
}

[data-aos="zoom-out"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

/* Call to action start */

.call-to-action {
  padding: 60px 0;
  background-color: #f0efef;
  text-align: center;
}

.call-to-action h3 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.call-to-action p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.call-to-action .cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #7e5845;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.call-to-action .cta-btn:hover {
  background-color: #b13d03;
}  

/* call to action end */


/* Gallery */
/* General Section Styling */
.gallery {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.gallery .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.gallery .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0;
  position: relative;
  padding-bottom: 10px;
}

.gallery .section-title div {
  margin-top: 10px;
  font-size: 18px;
  color: #555;
}

.gallery .section-title .description-title {
  font-weight: 700;
  color: #ff5722; /* Accent color for the title */
}


/* Gallery Items */
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: #ffffff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px 3px #0003;
    transition: transform 0.3s ease;
    animation: bouncing 2s infinite;
    display: inline-block;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    display: block;
}

.hidden {
    display: none;
}

@keyframes bouncing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

