/* Hero Section Zoom Background */
.hero {
  position: relative;
  overflow: hidden;
}
.nav-link {
  color: #fff !important;
  font-size: 17px; /* size बड़ा किया */
  font-weight: 400;
}
.navbar {
  background-color: #0a3923 !important;
}
.nav-link:hover {
  color: #00e676 !important;
}
.carousel-item img {
  height: 430px; /* jitni chhoti height chahiye utni set karo */
  object-fit: cover; /* image crop hoke bhi responsive dikhegi */
}
.carousel-caption {
  bottom: 100px; /* default ~20px hota hai, isko jyada karke upar le jao */
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: url("hero3.jpg") center/cover no-repeat;
  transform: scale(1);
  animation: zoomBg 18s ease-in-out infinite alternate;
  z-index: -1;
}

/* Bigger Zoom Keyframes */
@keyframes zoomBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  } /* पहले 1.1 था, अब 1.25 किया */
}

.hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #0a3923, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.hero p {
  font-size: 1.25rem;
}
a {
  text-decoration: none;
}
footer {
  background-color: #0a3923; /* gradient green */
}
footer h6 {
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.footer-link {
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  color: #000;
}
.footer-link:hover {
  color: #fff !important;
  text-decoration: underline;
}
footer a img {
  transition: transform 0.3s ease;
}
footer a img:hover {
  transform: scale(1.2);
}
/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  .footer-link {
    text-align: center; /* links center ho jayenge */
    margin-bottom: 10px;
  }

  footer a img {
    display: inline-block;
    margin: 8px;
  }

  footer h6 {
    margin-top: 15px;
  }
}
.tagline {
  background: #0a3923; /* yellow highlight */
  color: #fff; /* text color */

  border-radius: 6px; /* thoda rounded look */
  font-weight: bold; /* bold for emphasis */
}
/* Hero overlap cards */
.features-section {
  margin-top: -100px; /* cards hero ke upar overlap me aayenge */
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.features-section .card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease;
  background-color: #0a3923;
  color: #fff;
}

.features-section .card:hover {
  border: 2px dashed #e8f5e9;
}
.bg-white {
  background-color: #fff !important;
}
.features-section ul {
  padding-left: 20px;
  text-align: left;
}

.features-section ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
}
.product-img-wrapper {
  position: relative;
  overflow: hidden;
}
.product-img {
  transition: transform 0.5s ease;
}
.product-img-wrapper:hover .product-img {
  transform: scale(1.2); /* Image par zoom hover animation */
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
  opacity: 0;
  transition: opacity 0.5s ease;
  box-shadow: 0 5px 15px rgba(15, 108, 29, 0.2);
}
.product-img-wrapper:hover .overlay {
  opacity: 1;
}
.overlay h2 {
  font-size: 1.5rem;
}
.impact-img {
  animation: zoomPulse 4s ease-in-out infinite;
}

@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.snaffel-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9, #ffffff);
}

/* Logo */
.snaffel-logo {
  width: 300px;
  margin-bottom: 10px;
  animation: float 4s ease-in-out infinite;
}

/* Title */
.snaffel-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0a3923;
  margin-bottom: 10px;
  animation: fadeInDown 2s ease;
}

/* Text */
.snaffel-text {
  max-width: 700px;
  margin: auto;
  font-size: 1.35rem;
  color: #333;
  line-height: 1.7;
  animation: fadeInUp 2s ease;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Decorative leaves */
.leaf {
  position: absolute;
  width: 60px;
  opacity: 0.2;
  animation: leaf-fall 10s linear infinite;
}

.leaf1 {
  top: -50px;
  left: 20%;
  animation-delay: 0s;
}
.leaf2 {
  top: -50px;
  left: 50%;
  animation-delay: 2s;
}
.leaf3 {
  top: -50px;
  left: 80%;
  animation-delay: 4s;
}

@keyframes leaf-fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(800px) rotate(360deg);
  }
}

/* ✅ Responsive Fixes */
@media (max-width: 768px) {
  .snaffel-logo {
    width: 150px;
  }
  .snaffel-title {
    font-size: 1.8rem;
  }
  .snaffel-text {
    font-size: 1rem;
    padding: 0 15px;
  }
  .leaf {
    width: 40px; /* smaller leaves on mobile */
  }
}

@media (max-width: 480px) {
  .snaffel-logo {
    width: 120px;
  }
  .snaffel-title {
    font-size: 1.5rem;
  }
  .snaffel-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .leaf {
    width: 30px;
  }
}

.journey-section {
  position: relative;
  height: auto;
  background: url("ourjaurny.jpg") no-repeat center center/cover;
  background-attachment: fixed; /* Image fix rahegi */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.journey-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}

.journey-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 2s ease;
}

.journey-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00e676;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.journey-content p {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 30px;
  animation: fadeIn 3s ease;
}

.btn-join {
  background: #0a3923;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.btn-join:hover {
  background: #1de9b6;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .journey-section {
    height: auto; /* mobile me 100vh hata diya */
    padding: 80px 20px;
    background-attachment: scroll; /* mobile par fixed background issue fix */
  }

  .journey-content h2 {
    font-size: 2rem; /* chhota heading */
  }

  .journey-content p {
    font-size: 1rem; /* readable size */
    line-height: 1.6;
  }

  .btn-join {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .journey-content h2 {
    font-size: 1.6rem;
  }

  .journey-content p {
    font-size: 0.9rem;
  }

  .btn-join {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
  }
}
.card-hover {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  border-radius: 15px;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.card img {
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .card img {
    min-height: 200px;
  }
}
.video-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.video-card .card-body {
  padding: 0.8rem;
}
.video-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #198754;
}
.video-link {
  font-size: 0.8rem;
  word-break: break-all;
  color: #0d6efd;
  text-decoration: none;
}
.gallery-header {
  margin: 2rem 0 1rem;
}
.section1-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a3923;
}
.highlight1 {
  color: #e3b63f;
  font-weight: 600;
}
.card1 {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card1:hover {
  transform: translateY(-8px);
}
.hero2 {
  background: #0a3923;
  color: #fff;
  padding: 30px 10px;
  text-align: center;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.leader-card {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 15px;
}

.leader-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.leader-desc {
  display: none;
  font-size: 14px;
  margin-top: 10px;
}

.leader-card button {
  margin-top: 8px;
}

.leader-card button:focus + .leader-desc,
.leader-card button:active + .leader-desc {
  display: block;
}
/* 📱 Mobile view */
@media (max-width: 768px) {
  .marquee-content {
    animation: marqueeMobile 10s linear infinite;
  }

  .leader-card {
    flex: 0 0 100%; /* full width ek card ek time par */
    max-width: 100%;
  }

  .leader-card img {
    width: 70px;
    height: 70px;
  }
}

/* Mobile marquee animation (slide ek card at a time) */
@keyframes marqueeMobile {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.wejoin-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: #0a3923;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wejoin-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.wejoin-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.wejoin-card i {
  font-size: 3rem;
  color: #0a3923;
  background: #e8f5e9;
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.wejoin-card:hover i {
  transform: scale(1.2);
  background: #c8e6c9;
  color: #00e676;
}
.wejoin-card h4 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.wejoin-card p,
.wejoin-card ul {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}
.wejoin-card ul li {
  margin-bottom: 8px;
  list-style: disc;
  padding-left: 20px;
}
.faq-section {
  padding: 60px 15px;
}
.faq-header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-header h2 {
  font-weight: 600;
  color: #0a3923;
}
.accordion-button {
  font-weight: 500;
  color: #1d2a66;
}
.accordion-button:not(.collapsed) {
  background-color: #eaf1ff;
  color: #000;
}
.accordion-body {
  color: #333;
  line-height: 1.6;
}
.category-title {
  margin: 40px 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0a3923;
  text-transform: uppercase;
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
}

.flc-contact-wrapper {
  padding: 80px 15px;
}
.flc-contact-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 25px #0a3923;
  padding: 40px;
  color: #333;
  animation: fadeUp 1.2s ease-in-out;
}
.flc-contact-card h2 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #0a3923;
  text-align: center;
}
.flc-form-control {
  border-radius: 12px;
  padding-left: 40px;
}
.flc-input-icon {
  background: transparent;
  border: none;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #1d2a66;
  font-size: 18px;
}
.flc1-input-icon {
  background: transparent;
  border: none;
  position: absolute;
  left: 15px;
  top: 15%;
  transform: translateY(-50%);
  color: #0a3923;
  font-size: 18px;
}
.flc-form-group {
  position: relative;
  margin-bottom: 20px;
}
.flc-btn-submit {
  background: #0a3923;
  color: #fff;
  border-radius: 12px;
  padding: 12px 25px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.flc-btn-submit:hover {
  background: #fff;
  color: #0a3923;
  transform: scale(1.05);
  box-shadow: 0 4px 15px #0a3923;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
