/* APJ Global Waves - Vedic Harvest Organic Fertilisers CSS */
:root {
  --primary: #2e7d32;
  --secondary: #fbc02d;
  --accent: #1565c0;
  --bg: #f8f9fa;
  --text: #212529;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.max-width-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
header {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.15);
  padding: 0.5rem 0;
  border-bottom: 3px solid var(--secondary);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar {
  padding: 0;
  width: 100%;
}

.header-brand-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-brand {
  width: 80px;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  position: relative;
  z-index: 5;
}

.navbar-brand img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  padding: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
}

.navbar-nav {
  margin-left: auto !important;
  display: flex;
  gap: 0.3rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--white);
  font-weight: 600;
  padding: 0.8rem 1.2rem !important;
  margin: 0 0.15rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: translateX(0);
}

.nav-link:hover, 
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-link i {
  font-size: 0.8rem;
  color: var(--secondary);
}
.navbar-toggler {
  padding: 0.4rem 0.7rem;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.navbar-toggler:hover {
  background-color: rgba(255,255,255,0.2);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(251,192,45,0.3);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .header-content {
    flex-wrap: wrap;
  }
  
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-top: 2px solid var(--secondary);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 4;
  }
  
  .navbar-nav {
    padding: 1rem 0;
    flex-direction: column;
    width: 100%;
  }
  
  .nav-item {
    width: 100%;
    margin: 0.2rem 0;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.8rem !important;
    justify-content: center;
  }
  
  .brand-title {
    font-size: 1.2rem;
  }
  
  .brand-subtitle {
    font-size: 0.8rem;
  }
  
  .navbar-brand {
    width: 60px;
  }
  
  .header-brand-section {
    width: 75%;
  }
}

/* Banner Slider - Redesigned */
.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 720px;
  background: var(--bg);
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  z-index: 0;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

.banner-slide.active .banner-image {
  transform: scale(1.05);
}

.banner-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 3rem 10%;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: var(--white);
  z-index: 5;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.banner-slide.active .banner-content {
  opacity: 1;
  transform: translateY(0);
}

.banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  position: relative;
  padding-left: 1.5rem;
}

.banner-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 5px;
  background-color: var(--secondary);
  border-radius: 3px;
}

.banner-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  font-size: 1.1rem;
}

.banner-btn:hover {
  background-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.banner-btn i {
  transition: transform 0.3s ease;
}

.banner-btn:hover i {
  transform: translateX(5px);
}

.banner-controls {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.banner-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.3);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.banner-arrow:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.banner-dots {
  display: flex;
  gap: 0.5rem;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-dot.active {
  background-color: var(--secondary);
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  .banner-title {
    font-size: 2.4rem;
  }
  
  .banner-subtitle {
    font-size: 1.1rem;
  }
  
  .banner-content {
    padding: 2.5rem 8%;
  }
}

@media (max-width: 767.98px) {
  .banner-slider {
    height: 500px;
  }
  
  .banner-title {
    font-size: 1.8rem;
    padding-left: 1rem;
  }
  
  .banner-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .banner-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .banner-content {
    padding: 2rem 5%;
  }
  
  .banner-controls {
    right: 50%;
    transform: translateX(50%);
    bottom: 1rem;
  }
  
  .banner-arrow {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .banner-slider {
    height: 400px;
  }
  
  .banner-title {
    font-size: 1.4rem;
  }
  
  .banner-subtitle {
    font-size: 0.9rem;
  }
}

.page-banner {
  position: relative;
  width: 100%;
  height: 250px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.5s ease;
}
.page-banner:hover img {
  transform: scale(1.05);
}
.page-banner .banner-title {
   display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-weight: bold;
  background: rgba(46,125,50,0.85);
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1;
}
.main-content {
  padding: 2rem 0;
}
.section-padding {
  padding: 2rem 0;
}

/* Welcome Section */
.welcome-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.8) 100%);
  border-radius: 12px;
  margin: 1rem 0 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(46,125,50,0.1);
}

.welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.welcome-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.welcome-text {
  max-width: 800px;
  padding: 0 1.5rem;
}

.welcome-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.welcome-title .highlight {
  color: var(--accent);
  position: relative;
}

.welcome-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.welcome-divider {
  position: relative;
  height: 30px;
  margin-bottom: 1.5rem;
}

.welcome-divider::before,
.welcome-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
  background-color: var(--secondary);
}

.welcome-divider::before {
  right: 55%;
  margin-right: 15px;
}

.welcome-divider::after {
  left: 55%;
  margin-left: 15px;
}

.divider-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

.welcome-description {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.welcome-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem;
  background-color: rgba(255,255,255,0.8);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  min-width: 120px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(46,125,50,0.15);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-item span {
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 767.98px) {
  .welcome-title {
    font-size: 2.2rem;
  }
  
  .welcome-description {
    font-size: 1.1rem;
  }
  
  .welcome-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .feature-item {
    width: 100%;
    max-width: 200px;
    flex-direction: row;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }
  
  .feature-item i {
    font-size: 1.5rem;
  }
}
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

/* Products Section Styling */
.products-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}
.products-section  .row.g-4 {
  margin-bottom: 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.section-title .highlight {
  color: var(--accent);
  position: relative;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.section-divider {
  position: relative;
  height: 30px;
  margin: 1rem auto 1.5rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background-color: var(--secondary);
}

.section-divider::before {
  right: 55%;
  margin-right: 15px;
}

.section-divider::after {
  left: 55%;
  margin-left: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
  opacity: 0.85;
}

/* Product Cards */
.product-card {
  position: relative;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%; 
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(46,125,50,0.15);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary);
  color: var(--primary);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.product-badge-new {
  background-color: var(--accent);
  color: var(--white);
}

.product-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46,125,50,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.btn-view-details {
  background-color: var(--white);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(20px);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.product-card:hover .btn-view-details {
  transform: translateY(0);
}

.btn-view-details:hover {
  background-color: var(--secondary);
  color: var(--primary);
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-rating {
  color: var(--secondary);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.product-description {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-features {
  display: none; 
  flex-direction: column;
  gap: 0.5rem;
}

.product-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.product-features i {
  color: var(--primary);
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-divider::before,
  .section-divider::after {
    width: 40px;
  }
  
  .product-image-container {
    height: 180px;
  }
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 20px rgba(46,125,50,0.15);
}
.card-img-top {
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.btn:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.05);
}
.btn-primary {
  background-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--secondary);
}

/* Made in India Section */
.made-in-india-section {
  margin: 3rem 0 2rem;
}

.made-in-india-container {
  background: linear-gradient(135deg, var(--primary) 0%, #1b5e20 100%);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.made-in-india-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50,30 L56.5,43.5 L71,45.5 L60.5,56 L63,70.5 L50,63.5 L37,70.5 L39.5,56 L29,45.5 L43.5,43.5 Z' fill='%23fbc02d' fill-opacity='0.1'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  opacity: 0.2;
}

.made-in-india-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 3rem;
  position: relative;
  z-index: 2;
}

.india-flag-icon {
  background: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
  flex-shrink: 0;
}

.india-flag-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.3);
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.india-flag-icon i {
  font-size: 2.2rem;
  color: var(--primary);
}

.made-in-india-text {
  color: var(--white);
  flex-grow: 1;
}
.made-in-india-img {
  max-width: 80px;
  opacity: .7;
  background-color: #fff;
  border-radius: 10px; 
}
.made-in-india-text h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.made-in-india-text h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.made-in-india-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin-top: 0.8rem;
}

.made-in-india-badges {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
  flex-shrink: 0;
}

.badge-item {
  background-color: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.badge-item:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.badge-item i {
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .made-in-india-content {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .made-in-india-text {
    flex-basis: 100%;
    order: 2;
    text-align: center;
  }
  
  .india-flag-icon {
    margin: 0 auto;
    order: 1;
  }
  
  .made-in-india-badges {
    margin: 1.5rem auto 0;
    order: 3;
    justify-content: center;
  }
  
  .made-in-india-text h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .made-in-india-content {
    padding: 1.5rem;
  }
  
  .made-in-india-text h3 {
    font-size: 1.5rem;
  }
  
  .made-in-india-text p {
    font-size: 0.95rem;
  }
  
  .made-in-india-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  
  .india-flag-icon {
    width: 60px;
    height: 60px;
  }
  
  .india-flag-icon i {
    font-size: 1.8rem;
  }
}

.tagline {
  background: var(--secondary);
  color: var(--primary);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1.2rem 0;
  margin: 2rem 0 0 0;
  border-radius: 8px;
}

/* Regular card styling (for non-product cards) */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.card.policy-card-bg{text-align: left;}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 20px rgba(46,125,50,0.15);
}

.card-img-top {
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.accordion-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.accordion-title {
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px 8px 0 0;
  transition: background 0.2s;
}
.accordion-title:hover {
  background: var(--accent);
}
.accordion-content {
  padding: 1rem;
  display: none;
  background: var(--bg);
  border-radius: 0 0 8px 8px;
}
.accordion-item.active .accordion-content {
  display: block;
}
footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 1.5rem 0;
  margin-top: 3rem;
  position: relative;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  max-width: 120px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.95);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-nav {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-nav h4 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-nav h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.footer-nav-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.footer-nav-links a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-nav-links a i {
  margin-right: 0.5rem;
  color: var(--secondary);
  font-size: 0.8rem;
}

.footer-nav-links a:hover {
  transform: translateX(5px);
  color: var(--secondary);
}

.footer-contact {
  grid-column: span 4;
  font-size: 1rem;
  line-height: 1.8;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid var(--secondary);
}

.footer-contact h4 {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.footer-contact p {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-start;
}
 .footer-contact a {
    color: #fff; text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  } 
.footer-contact p i {
  margin-right: 0.7rem;
  color: var(--secondary);
  margin-top: 0.3rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--primary);
  background: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.copyright {
  margin-top: 0;
  text-align: center;
  font-weight: 500;
  padding-top: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--white);
  text-decoration: underline;
 }
/*.page-banner {
  position: relative;
  width: 100%;
  height: 250px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.5s ease;
}
.page-banner:hover img {
  transform: scale(1.05);
}
.page-banner .banner-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-weight: bold;
  background: rgba(46,125,50,0.85);
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1;
} */
.accordion-item {
  margin-bottom: 1rem;
  border: none;
}
.accordion-button {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  padding: 1rem;
}
.accordion-button i{padding-right: 0.5rem;}
.accordion-button:not(.collapsed) {
  background-color: var(--accent);
  color: var(--white);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(46,125,50,0.25);
}
.accordion-body {
  background-color: var(--bg);
  border-radius: 0 0 8px 8px;
}
.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.75rem;
  margin-bottom: .25rem;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(46,125,50,0.25);
  outline: none;
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #388e3c;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  font-size: 22px;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
  opacity: 0.85;
  text-decoration: none;
  cursor: pointer;
}
.back-to-top:hover {
  background: #256029;
  color: #fff;
  opacity: 1;
  box-shadow: 0 4px 16px rgba(56,142,60,0.25);
}
@media (max-width: 767.98px) {
  .banner-slider {
    height: 300px;
  }
  .banner-text {
    font-size: 1.5rem;
    padding: 1.5rem;
  }
  .page-banner {
    height: 180px;
  }
  .page-banner .banner-title {
    font-size: 1.8rem;
    padding: 0.75rem 1.5rem;
  }
  
  .footer-grid {
    gap: 1.5rem;
  }
  
  .footer-logo img {
    max-width: 100px;
  }
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-logo, .footer-nav, .footer-contact {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-logo {
    margin-bottom: 1rem;
  }
  
  .footer-nav h4::after, .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-nav-links {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  
  .footer-nav-links a {
    justify-content: center;
  }
  
  .footer-contact {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-contact p {
    justify-content: center;
    text-align: left;
  }
 
  .footer-social {
    justify-content: center;
  }
}
