/* Base Styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="%23f9f9f9"/><circle cx="20" cy="20" r="1.5" fill="%23fbc02d" fill-opacity="0.08"/></svg>');
}
/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

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

.gallery-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #666;
  margin-bottom: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 0 10px;
  }
  
  .gallery-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .gallery-section {
    padding: 40px 10px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-title {
    font-size: 24px;
  }
}
/* Services Cards Section */
.services-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-container {
  max-width: 320px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B4513, #CD853F);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #8B4513, #CD853F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-description {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .services-container {
    max-width: 280px;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  .service-title {
    font-size: 18px;
  }
  
  .service-description {
    font-size: 13px;
  }
}
/* Navbar */
.navbar {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-radius: 0 0 18px 18px;
}

.logo {
  font-family: 'Baloo Bhaina 2', cursive;
  font-size: 1.5rem;
  color: #183153;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(251,192,45,0.12);
}

.nav-links a {
  margin-left: 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s;
  border-radius: 8px;
  padding: 0.3rem 0.8rem;
}

.nav-links a:hover {
  color: #f44336;
  background: #fffde7;
  text-shadow: 0 2px 8px #fbc02d33;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #f5f5f5;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  background: linear-gradient(120deg, #fffbe7 60%, #ffe082 100%);
  padding: 2rem 3rem;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  animation: fadeInUp 1s cubic-bezier(.4,2,.3,1);
}

.overlay h1 {
  font-family: 'Baloo Bhaina 2', cursive;
  color: #183153;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

.cta-button {
  margin-top: 1rem;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(76,175,80,0.10);
}

.cta-button:hover {
  background: linear-gradient(90deg, #388e3c 0%, #689f38 100%);
  transform: scale(1.06);
}

/* Glassmorphism for overlays and cards */
.overlay, .warehouse-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(251,192,45,0.10);
}

/* Card 3D lift/tilt on hover */
.warehouse-card {
  transition: transform 0.4s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
  will-change: transform;
}
.warehouse-card:hover {
  transform: scale(1.06) rotateY(4deg) rotateX(2deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.16);
  z-index: 2;
}

/* Wavy Divider - more pronounced */
.wavy-divider {
  width: 100%;
  height: 64px;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="64" viewBox="0 0 1440 64" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 32C120 64 360 64 720 32C1080 0 1320 0 1440 32V64H0V32Z" fill="%23ffe082"/></svg>') repeat-x;
  background-size: cover;
  margin: 0;
  border: none;
}

/* Warehouse Section */
.warehouse-grid {
  padding: 2rem;
  background-color: #f5f5f5;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #183153;
  font-family: 'Baloo Bhaina 2', cursive;
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.warehouse-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eee;
  animation: fadeInUp 0.7s cubic-bezier(.4,2,.3,1);
}

.warehouse-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 12px rgba(251,192,45,0.08);
  transition: transform 0.4s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
}
.warehouse-card img:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(251,192,45,0.16);
}
.warehouse-card.hidden {
  display: none;
}

.card-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.warehouse-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.card-content h3 {
  color: #183153;
  margin: 0.5rem 0;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  background-color: #4caf50;
  color: #fff;
  box-shadow: 0 1px 4px rgba(76,175,80,0.10);
  letter-spacing: 0.5px;
}

.tag.cold {
  background-color: #03a9f4;
  text-align: center;
}

.tag.agro {
  background-color: #8bc34a;
  text-align: center;
}

.details-btn {
  display: block;
  margin-top: 1rem;
  background: linear-gradient(90deg, #fbc02d 0%, #ffe082 100%);
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(251,192,45,0.10);
  transition: background 0.3s, transform 0.2s;
}

.details-btn:hover {
  background: linear-gradient(90deg, #ffb300 0%, #ffd54f 100%);
  color: #fff;
  transform: scale(1.05);
}

/* Contact & About */
.contact-section {
  padding: 2rem;
  background-color: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-section h2 {
  color: #183153;
  font-family: 'Baloo Bhaina 2', cursive;
}

.contact-msg {
  margin-top: 1rem;
  font-style: italic;
  color: #1976d2;
}

.about-section {
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.about-section h2 {
  font-family: 'Baloo Bhaina 2', cursive;
  font-size: 2rem;
  color: #183153;
}

/* Madhubani Border */
.madhubani-border {
  border: 4px dashed #ff7043;
  padding: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #ff7043;
  text-align: center;
  background-image: url('../assets/icons/madhubani-border.png');
  background-size: cover;
  background-blend-mode: lighten;
  background-color: #fffbe7;
  border-radius: 12px;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #e3f2fd 0%, #b3e5fc 100%);
  color: #183153;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1rem;
  border-top: 1px solid #eee;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 12px rgba(100,181,246,0.06);
  position: relative;
}

.footer .motif {
  margin-top: 0.5rem;
  color: #4fc3f7;
  font-size: 1.3rem;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.filter-bar select {
  padding: 0.6rem 1.5rem 0.6rem 2.5rem;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  outline: none;
  background-color: #fff;
  color: #222;
  transition: background-color 0.3s ease, box-shadow 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  background-repeat: no-repeat;
  background-position: 0.8rem center;
}

#stateSelect {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23fbc02d" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
}
#districtSelect {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%238bc34a" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
}
#typeSelect {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2303a9f4" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
}

.filter-bar select:hover {
  background-color: #f5f5f5;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(251,192,45,0.08);
}

/* Unified Button Style */
.filter-btn,
.clear-btn {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Show Button - Yellow Theme */
.filter-btn {
  background: linear-gradient(90deg, #fbc02d 0%, #ffe082 100%);
}

.filter-btn:hover {
  background: linear-gradient(90deg, #ffb300 0%, #ffd54f 100%);
  transform: scale(1.05);
}

/* Clear Button - Red Theme */
.clear-btn {
  background: linear-gradient(90deg, #e53935 0%, #ff7043 100%);
}

.clear-btn:hover {
  background: linear-gradient(90deg, #c62828 0%, #ff8a65 100%);
  transform: scale(1.05);
}

/* Scroll-based fade-in animation */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,2,.3,1), transform 0.8s cubic-bezier(.4,2,.3,1);
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: none;
}

/* About/Contact section fade-in */
.about-section, .contact-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,2,.3,1), transform 0.8s cubic-bezier(.4,2,.3,1);
}
.about-section.visible, .contact-section.visible {
  opacity: 1;
  transform: none;
}

/* Floating Action Button (FAB) */
.fab {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  z-index: 9999;
  background: linear-gradient(135deg, #fbc02d 60%, #ff7043 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  box-shadow: 0 6px 24px rgba(251,192,45,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.fab:hover {
  background: linear-gradient(135deg, #ff7043 60%, #fbc02d 100%);
  box-shadow: 0 12px 32px rgba(251,192,45,0.28);
  transform: scale(1.08) rotate(-8deg);
}

/* Card Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.logo-img {
  border-radius: 0; /* Rectangle shape */
  object-fit: cover;
  width: 80px;
  height: 80px;
}