/* ===== Global ===== */
body {
  background: #e8f5e9;
  margin: 0;
  padding-top: 70px; /* fixed navbar ke liye */
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar {
  background:#2e7d32 !important;
  z-index:1080;
}
.navbar .nav-link, .navbar-brand { color:#fff !important; }
.navbar .brand-text { font-weight:600; }

/* Mobile collapsed menu */
@media (max-width: 991.98px){
  .navbar-collapse {
    background:#2e7d32;
    padding:.5rem 0;
  }
  .navbar-nav .nav-link {
    padding:.5rem 1rem;
    color:#fff !important;
  }
  .navbar-nav .nav-link:hover {
    color:#ffeb3b !important;
  }
}

/* Banner */
.banner-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .banner-img { height: 280px; }
}

/* Caption */
.carousel-caption {
  bottom: 20%;
  background: rgba(0,0,0,0.55);
  padding: 15px;
  border-radius: 10px;
}
.carousel-caption h1 { font-size: 32px; font-weight: bold; color: #fff; }
.carousel-caption p { font-size: 18px; color: #fff; }
@media (max-width: 768px) {
  .carousel-caption { bottom: 10%; padding: 10px; }
  .carousel-caption h1 { font-size: 20px; }
  .carousel-caption p { font-size: 14px; }
  .carousel-caption .btn { padding: 5px 10px; font-size: 13px; }
}

/* Gallery */
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
.gallery img:hover { transform: scale(1.05); }

/* Cards */
.card-soft {
  background: linear-gradient(135deg, #ff9800, #e65c00) !important; /* Gradient Orange */
  border: 1px solid #cc5200;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #fff;   /* White text */
  transition: transform 0.3s, box-shadow 0.3s, background 0.5s;
}
.card-soft:hover {
  background: linear-gradient(135deg, #e65c00, #ff9800) !important; /* Reverse Gradient */
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Heading inside cards */
.card-soft h5, 
.card-soft h4, 
.card-soft h3 {
  color: #fff !important;
  font-weight: 600;
}

/* Paragraph inside cards */
.card-soft p, 
.card-soft li {
  color: #fff !important;
}

/* Social Buttons */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #2e7d32;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: background 0.3s;
}

/* Navbar menu button ko andar karne ke liye */
.navbar-toggler {
  margin-right: 100px !important;  /* value adjust karo 20, 25, 30 px */
}
