/* Import font (Poppins or Inter recommended) */
/* announcement bar  */
 .announcement-bar {
  background: #111111;
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.announcement-left span {
  margin-right: 20px;
  display: inline-block;
}

.announcement-left i {
  margin-right: 6px;
  color: #c8e6c9;
}

.announcement-right a {
  color: #ffffff;
  margin-left: 12px;
  font-size: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.announcement-right a:hover {
  color: #a5d6a7;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .announcement-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .announcement-left,
  .announcement-right {
    margin-top: 5px;
  }

  .announcement-left span {
    display: block;
    margin: 4px 0;
  }
}
/* ====================================================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
.home-india-section-strip {
  background: linear-gradient(to right, #e6f4ea, #f1f8e9);
  color: #1b5e20;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #a5d6a7;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
  transition: all 0.3s ease-in-out;
  animation: slideIn 1s ease;
}

.home-india-section-text {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-india-section-highlight {
  color: #2e7d32;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.certified-badge {
  background-color: #c8e6c9;
  padding: 2px 8px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1b5e20;
}

.home-india-section-btn .btn {
  background: linear-gradient(to right, #388e3c, #2e7d32);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 7px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.home-india-section-btn .btn:hover {
  background: #1b5e20;
  transform: scale(1.05);
}

/* Entry Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Adjustments */
@media (max-width: 575px) {
  .home-india-section-strip {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .home-india-section-btn .btn {
    width: 100%;
    justify-content: center;
  }
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Navbar logo */
.navbar-logo {
  height: 70px;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

/* Navbar links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: white;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
  font-size: 18px;
  position: relative;
}

.navbar-nav .nav-link:hover {
  background-color: #e8f5e9;
  color: black;
  text-decoration: none;
}

/* Active nav link styling */
.navbar-nav .nav-link.active {
  background-color: black;
  color: white !important;
  font-weight: 600;
}

/* Sticky Navbar with shadow */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #307A32 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Translate dropdown on mobile */
@media (max-width: 991px) {
  #google_translate_element {
    width: 100%;
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    padding-left: 12px;
  
  }
}

/* 🐐 Hero Section */
.home-hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: home-hero-section-slider 20s infinite ease-in-out;
  transition: transform 1.5s ease;
}

/* 🪟 Glass Overlay */
.home-hero-section-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
}

.glass-overlay {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ✍️ Gradient Text */
.text-gradient {
  background: linear-gradient(45deg, #b2ff59, #00c853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 📝 Text */
.home-hero-section-title {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.home-hero-section-subtitle {
  font-size: 1.4rem;
  margin: 1rem 0;
}

/* 🔘 Button Enhancement */
.home-hero-section-btn {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 6px 15px rgba(46, 125, 50, 0.4);
  transition: all 0.4s ease;
  position: relative;
  animation: pulse 2.5s infinite;
}

.home-hero-section-btn:hover {
  transform: scale(1.08);
}

/* ✨ Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* 🖼️ Slideshow + Zoom */
@keyframes home-hero-section-slider {
  0%, 20% {
    background-image: url('https://naads.or.ug/wp-content/uploads/2020/08/goats-1.jpg');
    animation: home-hero-section-zoom 6s ease-in-out;
  }
  21%, 50% {
    background-image: url('https://www.goatfarming.in/wp-content/uploads/2024/04/Top-Goat-Breeds-for-Maximum-Profitability4.jpg');
    animation: home-hero-section-zoom 6s ease-in-out;
  }
  51%, 80% {
    background-image: url('https://rpvc.ca/wp-content/uploads/goats2.jpg');
    animation: home-hero-section-zoom 6s ease-in-out;
  }
  81%, 100% {
    background-image: url('https://ogden_images.s3.amazonaws.com/www.iamcountryside.com/images/sites/2/2024/08/06180127/AdobeStock_509147486-1.jpeg');
    animation: home-hero-section-zoom 6s ease-in-out;
  }
}

@keyframes home-hero-section-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .home-hero-section-title {
    font-size: 2.2rem;
  }
  .home-hero-section-subtitle {
    font-size: 1rem;
  }
  .home-hero-section {
    height: 85vh;
  }
}

/* home-wel-section-wrapper */
/* Wrapper */
/* Wrapper */
.home-wel-section-wrapper {
  background: linear-gradient(to bottom right, #f1f8e9, #ffffff);
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 15px;
}

/* Title */
.home-wel-section-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #2e7d32;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(46, 125, 50, 0.2);
}
.home-wel-section-title span {
  color: #1b5e20;
}

/* Subtitle */
.home-wel-section-subtitle {
  font-size: 1.1rem;
  color: #4e4e4e;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Badge Cards */
.home-wel-section-badge {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 3D Glow Effect */
.home-wel-section-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(76, 175, 80, 0.7), transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}
.home-wel-section-badge:hover::before {
  transform: scale(1);
}
.home-wel-section-badge:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 35px rgb(8, 236, 19);
}
.home-wel-section-badge {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 35px rgb(136, 34, 3, 0.7);
}

/* Logo/Image */
.home-wel-section-logo {
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}
.home-wel-section-badge:hover .home-wel-section-logo {
  transform: scale(1.1) rotate(-2deg);
}

/* Text */
.home-wel-section-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: #33691e;
  margin-bottom: 0.5rem;
}
.home-wel-section-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .home-wel-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .home-wel-section-title {
    font-size: 2rem;
  }
  .home-wel-section-subtitle {
    font-size: 1rem;
  }
  .home-wel-section-badge {
    padding: 25px 20px;
  }
}
@media (max-width: 576px) {
  .home-wel-section-label {
    font-size: 1.1rem;
  }
  .home-wel-section-desc {
    font-size: 0.9rem;
  }
}

/* home-know-section-wrapper */
.home-know-section-wrapper {
  background: linear-gradient(to bottom, #f1f8e9, #e8f5e9);
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 0;
}

/* Title */
.home-know-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e7d32;
  text-align: center;
  margin-bottom: 3rem;
}

/* Card Container */
.home-know-section-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

/* Hover Effects */
.home-know-section-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 30px rgba(129, 199, 132, 0.35),
    0 0 15px rgba(139, 195, 74, 0.25);
}

/* Icon */
.home-know-section-icon {
  font-size: 2.8rem;
  color: #2e7d32;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.home-know-section-card:hover .home-know-section-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* Numbers */
.home-know-section-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1b5e20;
}

/* Description */
.home-know-section-desc {
  font-size: 1rem;
  color: #4a4a4a;
  margin-top: 6px;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
  .home-know-section-card {
    padding: 25px 18px;
  }
  .home-know-section-number {
    font-size: 1.6rem;
  }
  .home-know-section-icon {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .home-know-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .home-know-section-number {
    font-size: 1.5rem;
  }
  .home-know-section-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .home-know-section-card {
    padding: 20px 15px;
  }
  .home-know-section-title {
    font-size: 1.7rem;
  }
}



/* home-goat-section-wrapper */
/* ✅ Main Wrapper */
.home-goat-section-wrapper {
  background: linear-gradient(to bottom right, #f1f8e9, #ffffff);
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  z-index: 1;
}

/* 🖼️ Goat Image Frame */
.home-goat-section-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.home-goat-section-image:hover {
  transform: scale(1.03);
}

.frame-glow {
  border: 5px solid #c8e6c9;
  border-radius: 25px;
  padding: 10px;
  box-shadow: 0 0 25px rgba(76, 175, 80, 0.25);
}

/* 🌊 Bottom Wave */
.home-goat-section-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  transform: scaleY(1.2);
  z-index: 0;
}

/* 📝 Typography */
.home-goat-section-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #2e7d32;
  z-index: 2;
}

.home-goat-section-subtitle {
  font-size: 1.4rem;
  color: #4e944f;
  font-weight: 600;
}

.home-goat-section-underline {
  width: 60px;
  height: 4px;
  background: #66bb6a;
}

.home-goat-section-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.75;
  margin-top: 1rem;
}

/* 🔁 Responsive Design */
@media (max-width: 992px) {
  .home-goat-section-title {
    font-size: 2.2rem;
  }

  .home-goat-section-subtitle {
    font-size: 1.2rem;
  }

  .home-goat-section-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .home-goat-section-title {
    font-size: 1.9rem;
  }

  .home-goat-section-subtitle {
    font-size: 1.05rem;
  }

  .home-goat-section-wave svg {
    transform: scaleY(1.3);
  }
}

/* 🌱 Wrapper */
.home-mission-section-wrapper {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  font-family: 'Segoe UI', sans-serif;
  color: white;
  position: relative;
  overflow: hidden;
}

/* 📝 Title */
.home-mission-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 🟩 Card Style */
.home-mission-section-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 0 0 transparent;
  height: 100%;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* ✨ Hover Glow */
.home-mission-section-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-color: #a5d6a7;
}

/* 🌟 Icon Styling */
.home-mission-section-icon {
  font-size: 2.8rem;
  color: #a5d6a7;
  margin-bottom: 15px;
  transition: transform 0.4s ease, color 0.4s ease, text-shadow 0.3s ease;
}

.home-mission-section-card:hover .home-mission-section-icon {
  transform: scale(1.2) rotate(6deg);
  color: #ffffff;
  text-shadow: 0 0 10px #a5d6a7;
}

/* 📋 Label */
.home-mission-section-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 10px;
}

/* 📱 Responsive Enhancements */
@media (max-width: 992px) {
  .home-mission-section-title {
    font-size: 2rem;
  }

  .home-mission-section-icon {
    font-size: 2.3rem;
  }

  .home-mission-section-card {
    padding: 30px 20px;
  }

  .home-mission-section-label {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .home-mission-section-title {
    font-size: 1.75rem;
  }

  .home-mission-section-icon {
    font-size: 2rem;
  }

  .home-mission-section-label {
    font-size: 1.05rem;
  }
}

/* home-essentials-section-heading */
/* 🌿 Section Wrapper */
.home-essentials-section-heading {
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

/* 🔠 Heading Title */
.home-essentials-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2e7d32;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.home-essentials-title .highlight {
  color: #1b5e20;
  background: linear-gradient(to right, #43a047, #66bb6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 🟢 Animated Underline */
.home-essentials-underline {
  width: 60px;
  height: 3px;
  background: #2e7d32;
  margin: 0 auto;
  margin-top: 8px;
  animation: underlineGrow 1s ease-in-out;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

/* 🌄 Essentials Box Wrapper with Background Image */
.home-essentials-box-wrapper {
  position: relative;
  overflow: hidden;
  background: #f9fbe7;
  font-family: 'Segoe UI', sans-serif;
}

.home-essentials-box-bg {
  background: url('https://images.pexels.com/photos/1011630/pexels-photo-1011630.jpeg?cs=srgb&dl=pexels-nandhukumar-1011630.jpg&fm=jpg') no-repeat center center/cover;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: brightness(0.4);
}

/* 📘 Box Title */
.home-essentials-box-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* 📦 Card Styling */
.home-essentials-box-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 30px 25px;
  color: #fff;
  z-index: 2;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* 💡 Gradient Border Hover + Scale */
.home-essentials-box-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-image: linear-gradient(to right, #81c784, #aed581) 1;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* 🌟 Icon */
.home-essentials-box-icon {
  font-size: 2.2rem;
  color: #c8e6c9;
  margin-top: 3px;
  transition: all 0.4s ease;
}

.home-essentials-box-card:hover .home-essentials-box-icon {
  color: #ffffff;
  transform: scale(1.3) rotate(6deg);
  text-shadow: 0 0 10px #a5d6a7;
}

/* 📝 Headings & Paragraph */
.home-essentials-box-card h5 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.home-essentials-box-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e8f5e9;
}

/* 📱 Responsive */
@media (max-width: 767px) {
  .home-essentials-box-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .home-essentials-box-icon {
    font-size: 2.4rem;
  }

  .home-essentials-box-card h5 {
    font-size: 1.1rem;
  }

  .home-essentials-box-card p {
    font-size: 0.95rem;
  }

  .home-essentials-title {
    font-size: 2rem;
  }
}

/* 🌍 Section Wrapper with Light Hover */
.home-business-section-wrapper {
  background: linear-gradient(135deg, #f1f8e9 0%, #ffffff 100%);
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  padding: 60px 0;
  transition: background 0.4s ease;
}

.home-business-section-wrapper:hover {
  background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
  box-shadow: 0 0 50px rgba(67, 160, 71, 0.1);
}

/* 🖼 Image Wrapper with Hover Overlay */
.home-business-section-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-business-section-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.home-business-section-image:hover img {
  transform: scale(1.06);
  filter: brightness(1.12);
}

/* 🖼️ Optional Image Overlay Icon */
.home-business-section-image::after {
  content: "\f03e"; /* FontAwesome image icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  transition: 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.home-business-section-image:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* 📢 Heading Box */
.home-business-section-heading h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
}

.home-business-section-heading h2 span {
  color: #1b5e20;
  font-weight: 600;
  position: relative;
}

.home-business-section-heading h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #66bb6a, #2e7d32);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.home-business-section-heading h2 span:hover::after {
  transform: scaleX(1);
}

/* 📝 Paragraph Styling */
.home-business-section-box p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

/* 🌟 Highlight Callout Box */
.home-business-section-box .highlight-box {
  background: #dcedc8;
  border-left: 5px solid #43a047;
  padding: 18px 22px;
  border-radius: 12px;
  color: #1b5e20;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(76, 175, 80, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

/* ✨ Glow on Hover */
.home-business-section-box .highlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(67, 160, 71, 0.25);
  background: #c8e6c9;
}

/* 🧩 Responsive Enhancements */
@media (max-width: 992px) {
  .home-business-section-heading h2 {
    font-size: 2rem;
    text-align: center;
  }

  .home-business-section-box p {
    font-size: 1rem;
    text-align: center;
  }

  .home-business-section-box .highlight-box {
    font-size: 0.95rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .home-business-section-wrapper {
    padding: 40px 20px;
  }

  .home-business-section-image {
    margin-bottom: 20px;
  }

  .home-business-section-box .highlight-box {
    padding: 15px;
    font-size: 0.9rem;
  }
}

/* home-product-section-heading */
.home-product-section-heading {
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.home-product-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2e7d32;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.home-product-title span {
  color: #1b5e20;
  background: linear-gradient(to right, #43a047, #66bb6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-product-underline {
  width: 70px;
  height: 3px;
  background: #2e7d32;
  margin: 0 auto 15px;
  animation: slide-in-line 0.8s ease-in-out;
}

@keyframes slide-in-line {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 70px;
    opacity: 1;
  }
}
   /* 🌿 Subtitle Style */
    .home-product-subtitle {
      font-size: 1.05rem;
      color: #444;
      font-weight: 500;
      max-width: 700px;
      margin: 0 auto;
    }

    /* 🟩 By-product Section Wrapper */
    .home-byproduct-section-wrapper {
      background: linear-gradient(135deg, #f1f8e9, #ffffff);
      font-family: 'Segoe UI', sans-serif;
      padding: 60px 0;
    }

    /* 🖼 By-product Image */
    .home-byproduct-image {
      width: 100%;
      height: 100%;
      max-height: 350px;
      object-fit: cover;
      border-radius: 18px;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
    }

    .home-byproduct-image:hover {
      transform: scale(1.03);
      filter: brightness(1.1);
         box-shadow: 0 12px 35px rgb(0, 0, 0);
    }

    /* 📦 By-product Card Content */
    .home-byproduct-content {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(6px);
      padding: 30px;
      border-radius: 18px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .home-byproduct-content:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 35px rgb(0, 0, 0);
    }

    /* 🟠 By-product Icon Style */
    .home-byproduct-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #a5d6a7, #66bb6a);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease-in-out;
      position: relative;
    }

    .home-byproduct-icon::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      box-shadow: 0 0 15px 5px rgba(102, 187, 106, 0.3);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .home-byproduct-icon:hover {
      transform: scale(1.1) rotate(4deg);
    }

    .home-byproduct-icon:hover::after {
      opacity: 1;
    }

    /* 📝 By-product Text Content */
    .home-byproduct-content h5 {
      font-size: 1.4rem;
      color: #1b5e20;
      font-weight: 600;
      margin-bottom: 12px;
      position: relative;
    }

    .home-byproduct-content h5::before {
      content: '';
      position: absolute;
      width: 30px;
      height: 3px;
      background-color: #66bb6a;
      bottom: -6px;
      left: 0;
      border-radius: 50px;
    }

    .home-byproduct-content p {
      font-size: 1rem;
      color: #444;
      line-height: 1.6;
    }

    /* 📱 Responsive Styles */
    @media (max-width: 992px) {
      .home-product-title {
        font-size: 2rem;
      }

      .home-product-subtitle {
        font-size: 1rem;
      }

      .home-byproduct-content {
        padding: 25px;
        text-align: center;
      }

      .home-byproduct-image {
        max-height: 300px;
        margin-bottom: 20px;
      }
    }

    @media (max-width: 576px) {
      .home-product-title {
        font-size: 1.8rem;
      }

      .home-byproduct-content h5 {
        font-size: 1.15rem;
      }

      .home-byproduct-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }

      .home-byproduct-image {
        max-height: 220px;
      }
    }
/* footer-wrapper */
/* footer-wrapper */
.footer-wrapper {
  background: linear-gradient(135deg, #2e7d32, #3d572c);
  color: #fff;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.footer-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  animation: pulseGlow 12s infinite linear;
  z-index: 0;
}

@keyframes pulseGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo-area,
.footer-address-area,
.footer-info-area,
.footer-social-area {
  flex: 1 1 22%;
  min-width: 240px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer-logo-area:hover,
.footer-address-area:hover,
.footer-info-area:hover,
.footer-social-area:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-register-btn {
  background: #4caf50;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-register-btn:hover {
  background: #66bb6a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.footer-title {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.2rem;
  border-left: 5px solid #a5d6a7;
  padding-left: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  position: relative;
}

.footer-links a,
.footer-address-area a {
  color: #eee;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover,
.footer-address-area a:hover {
  color: #a5d6a7;
  transform: translateX(4px);
}

.footer-social-icons a {
  margin-right: 12px;
  color: #f1f1f1;
  font-size: 1.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icons a:hover {
  color: #a5d6a7;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-developed-by {
  background: #000;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-developed-by span {
  color: #ffc107;
  font-weight: bold;
}

.footer-whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: all 0.3s ease;
}

.footer-whatsapp-btn i {
  margin-right: 8px;
}

.footer-whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

/* Modal */
.footer-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.footer-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.4s ease;
}

.footer-modal-content h3 {
  color: #2e7d32;
  margin-bottom: 20px;
}

.footer-modal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.footer-modal-content input:focus {
  border-color: #2e7d32;
  outline: none;
}

.footer-modal-content button {
  background: #2e7d32;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-modal-content button:hover {
  background: #1b5e20;
  transform: scale(1.05);
}

.footer-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #444;
  transition: color 0.3s ease;
}

.footer-close-btn:hover {
  color: red;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Responsive fix for phone view */
@media (max-width: 767px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo-area,
  .footer-address-area,
  .footer-info-area,
  .footer-social-area {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-developed-by {
    text-align: center;
  }

  .footer-whatsapp-btn span {
    display: none;
  }
}


/* product and service page */
/* product-hero-section-wrapper */
.product-hero-section-wrapper {
  position: relative;
  height: 100vh;
  min-height: 100svh; /* NEW: Smart viewport height */
  background-image: url('https://veganuary.com/wp-content/uploads/2021/07/goats-milk.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-hero-section-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.product-hero-section-content h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 991px) {
  .product-hero-section-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .product-hero-section-content h1 {
    font-size: 1.8rem;
  }
}
/* product-services-section */
.product-services-section {
  background: #ffffff;
}

.product-services-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1b5e20;
  position: relative;
}

.product-services-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1b5e20;
  margin: 10px auto 0;
  border-radius: 2px;
}

.product-service-card {
  background: #fff;
  border: 2px solid #1b5e20;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}

.product-service-card:hover {
  background-color: #1b5e20; /* Green background */
  transform: translateY(-12px) scale(1.03) rotateX(2deg);
  box-shadow: 0 25px 40px rgba(4, 248, 20, 0.8); /* Dark green shadow */
}
.product-service-card {
   /* Green background */
  box-shadow: 0 25px 40px rgba(13, 14, 13, 0.8); /* Dark green shadow */
}

/* Turn text white on hover */
.product-service-card:hover .product-service-title,
.product-service-card:hover .product-service-list li,
.product-service-card:hover .product-service-icon {
  color: #ffffff;
}

/* Icon on hover */
.product-service-card:hover .product-service-icon {
  background-color: #66bb6a; /* Light green for contrast */
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}


.product-service-icon {
  width: 38px;
  height: 38px;
  background-color: #1b5e20;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-service-title {
  font-size: 1.2rem;
  color: #1b5e20;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-service-list {
  padding-left: 18px;
  color: #333;
  font-size: 0.95rem;
}

.product-service-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}



/* 🌿 Section background */
.product-goat-breed-section {
  background-color: #f9f9f9;
}

/* 🧭 Section heading */
.product-goat-breed-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1b5e20;
  text-align: center;
  position: relative;
}

.product-goat-breed-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1b5e20;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* 🐐 Breed name */

.product-goat-breed-name {
  font-size: 1.75rem;
  font-weight: bold;
  color: #1b5e20;
  text-align: center;
  margin: 0 auto 0.3rem auto;
  padding: 10px 25px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

/* 🌟 Animated green gradient background */
.product-goat-breed-name::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #1b5e20,
    #2e7d32,
    #43a047,
    #66bb6a,
    #a5d6a7
  );
  animation: slide-green 1.5s forwards;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* 🎯 Trigger on hover */
.product-goat-breed-name:hover::before {
  opacity: 1;
  animation: slide-green 1.5s forwards;
}

.product-goat-breed-name:hover {
  color: #ffffff;
}

/* 🔁 Keyframes for sliding background */
@keyframes slide-green {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}


/* 🔰 Underline */
.product-goat-breed-underline {
  width: 60px;
  height: 3px;
  background-color: #1b5e20;
  margin: 10px auto 20px;
  border-radius: 2px;
}

/* 📝 Description */
.product-goat-breed-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
  transition: color 0.3s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  border-radius: 10px;
}

/* 🌿 Hover effect: text turns green, background glow appears */
.product-goat-breed-description:hover {
  color: #1b5e20;
  background-color: #e8f5e9; /* soft light green background */
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.8); /* light green glow */
}


/* 📦 Image Card Container - fixed height & 3D effect */
.product-goat-breed-image-container {
  height: 360px;
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  padding: 10px;
  border: 4px solid #1b5e20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.15);
}

.product-goat-breed-image-container:hover {
  background-color: #1b5e20; /* 🟢 Green card background */
  transform: scale(1.05) rotateX(1.5deg);
  box-shadow: 0 30px 50px rgba(0, 51, 0, 0.6); /* 🌑 Deeper green shadow */
}

/* 🐐 Image settings (not cropped) */
.product-goat-breed-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  z-index: 2;
}

/* 🔍 Zoom on hover */
.product-goat-breed-image-container:hover .product-goat-breed-image {
  transform: scale(1.05);
}


/* 📱 Responsive Media Queries */
@media (max-width: 991px) {
  .product-goat-breed-image-container {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .product-goat-breed-image-container {
    height: 260px;
    padding: 8px;
  }

  .product-goat-breed-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }

  .product-goat-breed-name {
    font-size: 1.4rem;
  }

  .product-goat-breed-description {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .product-goat-breed-underline {
    margin: 10px auto 20px;
  }
}

/* about page */
/* about-hero-section-wrapper */
.about-hero-section-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('https://www.goatfarming.in/wp-content/uploads/2023/03/Sustainable-Goat-Farming-Practices3.jpg') no-repeat center center/cover;

  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Move .container and content to the same layer as wrapper flex */
.about-hero-section-wrapper > .container {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-hero-section-content {
  color: #fff;
  padding: 30px;
  max-width: 850px;
}

.about-hero-section-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  min-height: 70px;
}

.about-hero-section-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 0 15px;
}

.about-hero-section-button {
  padding: 12px 30px;
  background: linear-gradient(135deg, #1b5e20, #4caf50);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-hero-section-button:hover {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .about-hero-section-title {
    font-size: 2.2rem;
  }
  .about-hero-section-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .about-hero-section-title {
    font-size: 1.8rem;
  }
  .about-hero-section-subtitle {
    font-size: 1rem;
  }
}

/* about-goat-farming-wrapper */
/* ✅ 3D Hover & Shadow Effect for Image Card */
/* ✅ 3D Hover & Shadow Effect for Image Card */
.about-goat-farming-image-card {
  background: #ffffff;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  perspective: 1000px;
  overflow: hidden;
}

.about-goat-farming-image-card:hover {
  transform: rotateY(6deg) scale(1.03);
  box-shadow: 0 30px 70px rgba(27, 94, 32, 0.5);
}

.about-goat-farming-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.about-goat-farming-image-card:hover .about-goat-farming-image {
  transform: scale(1.05);
}

/* ✅ Animated Heading with Gradient Hover */
.about-goat-farming-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #1b5e20, #66bb6a);
  background-size: 200%;
  background-position: left;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.6s ease;
}

.about-goat-farming-heading:hover {
  background-position: right;
}

/* ✅ Tagline with subtle green fade */
.about-goat-farming-tagline {
  font-size: 1.2rem;
  font-weight: 500;
  color: #388e3c;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.about-goat-farming-tagline:hover {
  color: #1b5e20;
}

/* ✅ Paragraph hover effect */
.about-goat-farming-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  transition: color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  padding: 12px 18px;
  border-radius: 10px;
}

.about-goat-farming-description:hover {
  color: #1b5e20;
  background-color: #e8f5e9;
  box-shadow: 0 8px 18px rgba(76, 175, 80, 0.25);
}

/* ✅ Highlights list hover effect */
.about-goat-farming-highlights li {
  font-size: 1rem;
  color: #333;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.about-goat-farming-highlights li:hover {
  color: #1b5e20;
  transform: translateX(5px);
}

/* ✅ Divider effect */
.about-goat-farming-divider {
  width: 60px;
  height: 3px;
  background-color: #43a047;
  margin-bottom: 25px;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.about-goat-farming-heading:hover + .about-goat-farming-divider {
  width: 90px;
}

/* ✅ Button animation */
.about-goat-farming-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(27, 94, 32, 0.3);
  position: relative;
  overflow: hidden;
}

.about-goat-farming-button:hover {
  background: linear-gradient(135deg, #1b5e20, #43a047);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.4);
}

.about-goat-farming-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  transition: left 0.5s ease;
  z-index: 0;
}

.about-goat-farming-button:hover::after {
  left: 100%;
}


/* about-goat-facility-wrapper */
/* about-goat-facility-wrapper */
.about-goat-facility-wrapper {
  /* padding: 30px 20px; */
  background-color: #f9f9f9;
}

.about-goat-facility-title {
  font-size: 2rem;
  font-weight: 700;
  color: #008947;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #008947, #43a047);
  background-size: 200%;
  background-position: left;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.5s ease, background-position 0.6s ease;
  perspective: 1000px;
}

.about-goat-facility-title:hover {
  transform: rotateY(5deg) scale(1.05);
  background-position: right;
}

.about-goat-facility-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  transition: color 0.4s ease;
}

.about-goat-facility-subtitle:hover {
  color: #1b5e20;
}

.about-goat-facility-card {
  background: #ffffff;
  border: 2px solid #008947;
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
  position: relative;
  box-shadow: 0 8px 18px rgba(0, 137, 71, 0.1);
  transition: all 0.6s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}

.about-goat-facility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg, #e8f5e9, #f1f8e9, #ffffff);
  z-index: 0;
  transition: left 0.6s ease;
  opacity: 0.9;
}

.about-goat-facility-card:hover::before {
  left: 0;
}

.about-goat-facility-card:hover {
  transform: scale(1.05) rotateX(4deg);
  box-shadow: 0 25px 50px rgba(0, 137, 71, 0.6);
}

.about-goat-facility-card > * {
  position: relative;
  z-index: 1;
}

.about-goat-facility-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #008947, #1b5e20);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.about-goat-facility-card:hover .about-goat-facility-number {
  transform: rotate(360deg) scale(1.2);
  background: linear-gradient(135deg, #1b5e20, #66bb6a);
}

.about-goat-facility-card p {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
  transition: color 0.3s ease;
}

.about-goat-facility-card:hover p {
  color: #1b5e20;
}

/* about-goat-team-wrapper */
.about-goat-team-wrapper {
  padding: 60px 20px 40px;
  background-color: #ffffff;
}

.about-goat-team-slogan {
  font-size: 2rem;
  font-weight: 700;
  color: #008947;
  margin-bottom: 10px;
}

.about-goat-team-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.about-goat-team-underline {
  width: 100px;
  height: 3px;
  background-color: #008947;
  margin: 0 auto;
  border-radius: 2px;
  animation: slide-in 1s ease;
}

@keyframes slide-in {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 576px) {
  .about-goat-team-slogan {
    font-size: 1.5rem;
  }

  .about-goat-team-heading {
    font-size: 1.2rem;
  }

  .about-goat-team-underline {
    width: 80px;
  }
}
.about-goat-facility-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #008947, #1b5e20);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15%;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 137, 71, 0.4);
  transition: transform 0.5s ease, background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 800px;
}

.about-goat-facility-card:hover .about-goat-facility-icon {
  background: linear-gradient(135deg, #43a047, #a5d6a7);
  color: #004d40;
  transform: rotateY(15deg) scale(1.2);
  box-shadow: 0 16px 30px rgba(0, 137, 71, 0.6);
}


/* newsletter */
/* Newsletter Section Styles */
.footer-newsletter {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fffbe6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.newsletter-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 10px 15px;
  width: 300px;
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: green;
  border: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #4CAF50;
}

/* Responsive for mobile/tablet */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
    max-width: 350px;
  }

  .newsletter-form button {
    width: 100%;
    max-width: 200px;
  }
}
/* Our story and mission  */
/* Root Variables */
:root {
  --goat-green: #2e7d32;
  --goat-green-light: #a5d6a7;
  --text-light: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.15);
}

/* Common Section Styles */
.goat-section {
  background: var(--goat-green);
  color: var(--text-light);
  padding: 60px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
  margin: 20px;
  box-shadow: 0 10px 20px var(--shadow-color);
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.goat-section:hover {
  transform: perspective(1000px) rotateX(1deg) rotateY(2deg) scale(1.02);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}

/* Inner Container */
.goat-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Title Style */
.goat-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
}

.goat-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: var(--goat-green-light);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Description Style */
.goat-description {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
  color: #f1f8e9;
}

/* Responsive */
@media (max-width: 768px) {
  .goat-title {
    font-size: 2rem;
  }

  .goat-description {
    font-size: 1rem;
  }

  .goat-section {
    padding: 40px 15px;
  }
}
/* Font Awesome Required */

/* Wrapper */
.goat-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: linear-gradient(to right, #e8f5e9, #f1f8e9);
}

/* Card */
.goat-section-card {
  background-color: #2e7d32;
  color: #ffffff;
  max-width: 400px;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.goat-section-card:hover {
  transform: perspective(1000px) translateY(-10px) rotateY(2deg);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
  background-color: #388e3c;
}

/* Icon Box */
.goat-icon-box {
  font-size: 45px;
  color: #a5d6a7;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.goat-section-card:hover .goat-icon-box {
  transform: scale(1.2) rotate(10deg);
}

/* Title */
.goat-card-title {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* Text */
.goat-card-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #f1f8e9;
}

/* Responsive */
@media (max-width: 768px) {
  .goat-section-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 40px 15px;
  }

  .goat-section-card {
    width: 100%;
    max-width: 90%;
  }
}


/* =============================================================== */
/* OUR STORY SECTION STYLES */
.our-story-section {
  background: linear-gradient(to right, #e8f5e9, #f1f8e9);
  padding: 60px 20px;
}

.story-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Text Content */
.story-text {
  flex: 1 1 500px;
  color: black;
}

.story-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 15px;
}

/* Milestones */
.story-milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

.milestone-card {
  
  color: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 150px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  transform: perspective(800px) rotateY(0deg);
  transition: all 0.4s ease;
}

.milestone-card i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #3B863D;
}

.milestone-card:hover {
  transform: scale(1.05) rotateY(2deg);
  
}

/* Right Image */
.story-image {
  flex: 1 1 400px;
  text-align: center;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.story-image img:hover {
  transform: scale(1.03) rotate(1deg);
}

/* Responsive */
@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
  }

  .story-text {
    text-align: center;
  }

  .story-title {
    justify-content: center;
  }

  .story-milestones {
    justify-content: center;
  }
}
/* ======================================================================================= */
 /* our mission  */

/* Section Wrapper */
.our-mission-section {
  background: linear-gradient(to right, #e8f5e9, #f1f8e9);
  padding: 60px 20px;
}

.mission-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  color: #2e7d32;
}

/* Title */
.mission-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1b5e20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mission-intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Grid Layout */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Card Styling */
.mission-card {
  background-color: #2e7d32;
  color: #fff;
  border-radius: 50%;
  padding: 25px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.3s ease;
  cursor: pointer;
  transform-style: preserve-3d;
}


.mission-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: #a5d6a7;
  transition: transform 0.4s ease;
}

.mission-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f1f8e9;
}

/* Hover Effects */
.mission-card:hover {
  transform: perspective(1000px) rotateY(2deg) translateY(-8px);
  background-color: #388e3c;
  box-shadow: 0 25px 35px rgb(0, 255, 42);
}
.mission-card {
  
  background-color: grey;

}

.mission-card:hover i {
  transform: scale(1.2) rotate(8deg);
}
/* ======================================================================= */
 /* stats and achievement  */
.goat-stats-section {
  background: linear-gradient(to right, #e8f5e9, #f1f8e9);
  padding: 60px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  color: #2e7d32;
}

.stats-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1b5e20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.stats-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-inline: auto;
  color: #4e944f;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* Stat Card */
.stat-card {
 
  color:black;
  padding: 30px 20px;
  border-radius: 25%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.3s ease;
  cursor: pointer;
  transform-style: preserve-3d;
}

.stat-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #3b863d ;
  transition: transform 0.3s ease;
}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

/* Hover Effects */
.stat-card:hover {

  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.6);
}


.stat-card:hover i {
  transform: scale(1.2) rotate(10deg);
}


/* blog page */
/* blog-hero-section-wrapper */
.blog-hero-section-wrapper {
  height: 100vh;
  width: 100%;
  background: url('https://www.vmcdn.ca/f/files/moosejawtoday/images/agriculture/goats-on-a-farm.jpg;w=960;h=640;bgcolor=000000') no-repeat center center/cover;
  position: relative;
}

.blog-hero-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-hero-section-content {
  max-width: 850px;
  padding: 20px;
  color: #fff;
  margin: 0 auto;
}

.blog-hero-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 60px;
}

.blog-hero-section-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6;
}

.blog-hero-section-button {
  padding: 12px 28px;
  background-color: #2e7d32;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.blog-hero-section-button:hover {
  background: #43a047;
  transform: translateY(-2px);
}
.blog-hero-section-button {
  background: black;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .blog-hero-section-title {
    font-size: 2.2rem;
  }

  .blog-hero-section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .blog-hero-section-title {
    font-size: 1.8rem;
  }

  .blog-hero-section-subtitle {
    font-size: 1rem;
  }
}
  .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  .blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px rgb(15, 133, 21);
  }
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .blog-card h5 {
    margin-top: 15px;
    font-weight: 600;
  }
  .object-fit-cover {
  object-fit: cover;
}
.blog-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

  .blog-modal-image-wrapper {
    position: relative;
  }
  .blog-modal-image {
    transition: transform 0.4s ease;
  }
  .blog-modal-image-wrapper:hover .blog-modal-image {
    transform: scale(1.05);
  }
  .blog-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }


/* Gallery page */
/* Gallery-hero-section-wrapper */
.Gallery-hero-section-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('https://www.ukrainer.net/wp-content/uploads/2019/11/21-3.jpg') no-repeat center center/cover;
  overflow: hidden;
}

.Gallery-hero-section-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
}

.Gallery-hero-section-content {
  color: #fff;
  max-width: 850px;
  margin: 0 auto;
  padding: 20px;
}

.Gallery-hero-section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 60px;
}

.Gallery-hero-section-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 30px;
}

.Gallery-hero-section-button {
  padding: 12px 28px;
  background-color: #2e7d32;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.Gallery-hero-section-button:hover {
  background-color: #43a047;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .Gallery-hero-section-title {
    font-size: 2.3rem;
  }
  .Gallery-hero-section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .Gallery-hero-section-title {
    font-size: 1.8rem;
  }
  .Gallery-hero-section-subtitle {
    font-size: 1rem;
  }
}
/* Gallery-goat-section */
/* Heading Style */
.Gallery-goat-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #008947;
}

.Gallery-goat-underline {
  width: 100px;
  height: 3px;
  background-color: #008947;
  border-radius: 2px;
}

/* Card Container */
.Gallery-goat-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgb(25, 26, 25);
  transition: all 0.3s ease-in-out;
}

.Gallery-goat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgb(11, 211, 61);
}

/* Image Styling */
.Gallery-goat-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .Gallery-goat-card img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .Gallery-goat-card img {
    height: 200px;
  }

  .Gallery-goat-heading {
    font-size: 1.8rem;
  }

  .Gallery-goat-underline {
    width: 80px;
  }
}
/* contact page */
/* contact-hero-section-wrapper */
.contact-hero-section-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('https://cyfairanimalhospital.com/wp-content/uploads/2019/01/blog_goaT-1024x571.jpg') no-repeat center center/cover;
  overflow: hidden;
}

.contact-hero-section-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
}

.contact-hero-section-content {
  color: #fff;
  max-width: 850px;
  padding: 20px;
}

.contact-hero-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 60px;
}

.contact-hero-section-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-hero-section-button {
  padding: 12px 28px;
  background: #1b5e20;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-hero-section-button:hover {
  background: #2e7d32;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero-section-title {
    font-size: 2rem;
  }
  .contact-hero-section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-hero-section-title {
    font-size: 1.6rem;
  }
  .contact-hero-section-subtitle {
    font-size: 0.95rem;
  }
}
/* contact-section-wrapper */
.contact-card {
  background: #dae7d6;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgb(8, 153, 27, 0.7);
}

.contact-title {
  font-weight: 600;
  color: #333;
}

.contact-item h6 {
  font-weight: 500;
  color: #007bff;
}
.contact-item p {
  margin: 0;
  color: #333;
  font-size: 15px;
}

.contact-social a {
  font-size: 18px;
  color: #007bff;
  background: #e6f0ff;
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.contact-social a:hover {
  background: #007bff;
  color: #fff;
}

.contact-input {
  border-radius: 12px;
  border: 1px solid #ccc;
  box-shadow: none;
  padding: 12px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.contact-button {
  background: #007bff;
  color: white;
  padding: 10px 28px;
  border: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}
.contact-button:hover {
  background: #0056b3;
}
/* contact-map-section */
.contact-map-section {
  padding: 50px 0;
  background-color: #f1f8f4;
}

.contact-map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}
.contact-map-wrapper:hover {

  box-shadow: 0 8px 24px rgb(6, 255, 60);
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* ============================================================================= */


.enquiry-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

.enquiry-link {
  display: flex;
  align-items: center;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  transition: all 0.3s ease;
}

.enquiry-link i {
  font-size: 1.4rem;
}

.enquiry-label {
  margin-left: 10px;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover expands text */
.enquiry-link:hover .enquiry-label {
  opacity: 1;
  width: auto;
}

/* Responsive: slightly reduce size on small screens */
@media (max-width: 576px) {
  .enquiry-link {
    padding: 8px 10px;
  }
  .enquiry-link i {
    font-size: 1.2rem;
  }
  .enquiry-label {
    font-size: 0.9rem;
  }
}

/* ================================================================== */

.infinite-scroll-section {
  background: #f9f9f9;
  overflow: hidden;
}

.scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.scroll-track img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  margin: 0 10px;
  border-radius: 12px;
  transition: transform 0.3s;
}

/* Pause animation on hover */
.scroll-track:hover {
  animation-play-state: paused;
}

/* On hover scale */
.scroll-track img:hover {
  transform: scale(1.05);
}

/* Animation keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-track img {
    width: 140px;
    height: 100px;
  }
}
@media (max-width: 576px) {
  .scroll-track img {
    width: 120px;
    height: 90px;
  }
}
/* ===================================================================================== */
/* why choose us  */
.whychoose-section {
  background: #f2fff3;
}

.whychoose-card {
  background: #fffdfd;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgb(20, 20, 20);
  transition: all 0.3s ease;
  transform: translateY(0);
  border-left: 5px solid #4caf50;
}

.whychoose-card:hover {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 128, 0, 0.8);
  transform: translateY(-5px);
}

.whychoose-card:hover h5,
.whychoose-card:hover p {
  color: #ffffff;
}

.whychoose-icon {
  font-size: 35px;
  color: #4caf50;
  margin-right: 20px;
  flex-shrink: 0;
}

.whychoose-card:hover .whychoose-icon {
  color: #ffffff;
}

.whychoose-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2e7d32;
}

.whychoose-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}
.whychoose-heading {
  font-size: 38px;
  font-weight: 800;
  color: #2e7d32;
  text-shadow: 1px 1px 2px rgba(0, 128, 0, 0.2), 2px 2px 5px rgba(0, 100, 0, 0.15);
  position: relative;
  padding-bottom: 10px;
}

.whychoose-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #43a047;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(67, 160, 71, 0.4);
}
/* ============================================================================================= */
/* category */
/* Section Wrapper */
.goat-circular-section {
  background: linear-gradient(to bottom right, #f1f8e9, #ffffff);
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 0;
}
.goat-circular-section:hover  {
box-shadow: 0 10px 30px rgb(22, 245, 2, 0.7);
}

/* Heading & Subheading */
.goat-circular-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2e7d32;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.goat-circular-subheading {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Card Container */
.goat-circular-card {
  perspective: 1000px;
}

/* Circular Card Style */
.goat-circular-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: auto;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  background: #fff;
}
.goat-circular-img-wrapper:hover {
 box-shadow: 0 10px 30px rgb(2, 245, 55, .8); 
}

.goat-circular-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  border-radius: 50%;
}

/* Hover Overlay */
.goat-circular-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 139, 34, 0.85);
  color: #fff;
  text-align: center;
  padding: 15px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
}

.goat-circular-overlay h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.goat-circular-overlay p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.3;
}

/* Hover Effects */
.goat-circular-img-wrapper:hover .goat-circular-overlay {
  bottom: 0;
}
.goat-circular-img-wrapper:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

/* Responsive Grid */
@media (min-width: 992px) {
  .goat-circular-card {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .goat-circular-img-wrapper {
    width: 180px;
    height: 180px;
  }
  .goat-circular-overlay h5 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .goat-circular-img-wrapper {
    width: 160px;
    height: 160px;
  }
  .goat-circular-heading {
    font-size: 2rem;
  }
  .goat-circular-subheading {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .goat-circular-img-wrapper {
    width: 140px;
    height: 140px;
  }
  .goat-circular-overlay h5 {
    font-size: 0.95rem;
  }
  .goat-circular-overlay p {
    font-size: 0.75rem;
  }
}
/* =========================================================================== */
.goat-contribution-section {
  background: linear-gradient(to bottom right, #f1f8e9, #ffffff);
  font-family: 'Segoe UI', sans-serif;
}

.goat-section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2e7d32;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.goat-card {
  background: #eb1010;
  border-radius: 20%;
  width: 200px;
  height: 200px;
  padding: 20px;
  margin: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.goat-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 55px rgb(24, 245, 4);
}


/* Inside Content */
.goat-icon {
  font-size: 2rem;
  color: #f0f3f0;
  margin-bottom: 10px;
}
.goat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f4faf5;
  margin-bottom: 5px;
}

.goat-desc {
  font-size: 0.85rem;
  color: #f8f3f3;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .goat-card {
    width: 160px;
    height: 160px;
    padding: 15px;
  }
  .ribbon {
    font-size: 0.65rem;
    width: 100px;
    left: -35px;
  }
}

.ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotateX(2deg) rotateY(1deg);
  background: linear-gradient(145deg, #2e7d32, #1b5e20);
  color: white;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 -2px 4px rgba(255, 255, 255, 0.1),
    inset 0 2px 3px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: Hover 3D Enhance */
.ribbon:hover {
  transform: translateX(-50%) scale(1.05) rotateX(4deg) rotateY(2deg);
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.25),
    inset 0 -3px 4px rgba(255, 255, 255, 0.1),
    inset 0 3px 6px rgba(0, 0, 0, 0.25);
}

/* ======================================================================================= */
.home-mission-section-wrapper {
  background: linear-gradient(to right, #f1f8e9, #ffffff);
  font-family: 'Segoe UI', sans-serif;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Title */
.home-mission-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b5e20;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
}

/* Card Styling */
.home-mission-section-card {
  background: black;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.home-mission-section-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 20px;
  background: linear-gradient(135deg, #a5d6a7, #66bb6a);
  transform: scale(1.05);
  filter: blur(8px);
  opacity: 0;
  transition: 0.4s ease;
}

.home-mission-section-card:hover::before {
  opacity: 1;
}

/* Hover Effect */
.home-mission-section-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.7);
}
.home-mission-section-card{
  box-shadow: 0 25px 45px rgb(4, 247, 16);
}

/* Icon */
.home-mission-section-icon {
  font-size: 2.8rem;
  color: #2e7d32;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.home-mission-section-card:hover .home-mission-section-icon {
  transform: scale(1.3) rotate(8deg);
}

/* Label */
.home-mission-section-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #33691e;
}

/* Responsive */
@media (max-width: 768px) {
  .home-mission-section-title {
    font-size: 2rem;
  }
  .home-mission-section-icon {
    font-size: 2.2rem;
  }
}
/* call  */
.goat-call-float-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(145deg, #2e7d32, #1b5e20);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulseRing 1.8s infinite;
}

/* Hover Effect */
.goat-call-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #1b5e20, 0 0 30px #4caf50;
}

/* Glowing Animation */
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(46, 125, 50, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
  }
}

/* Responsive Adjustment */
@media (max-width: 768px) {
  .goat-call-float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 15px;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .goat-call-float-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 12px;
    left: 12px;
  }
}
