* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Segoe UI", sans-serif; }
body { background: #fdfdf9; color: #333; line-height: 1.6; font-family: "Poppins", "Segoe UI", sans-serif; }
a { text-decoration: none; }

/* NAVBAR */
.navbar {
  background: linear-gradient(90deg, rgba(44, 89, 44, 1) 0%, rgba(59, 209, 91, 0.98) 50%, rgba(60, 117, 65, 1) 100%);
  padding: 0.3rem 1.5rem; color: white; position: sticky; top: 0; z-index: 999;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; }
.logo { font-size: 1.5rem; font-weight: bold; }
.hamburgers { display: none; justify-content: center; align-items: center; }
.hamburger { cursor: pointer; position: relative; }
.hamburger input { position: absolute; width: 100%; height: 100%; margin: 0; cursor: pointer; opacity: 0; z-index: 2; }
.bar { display: block; width: 30px; height: 3px; margin: 6px auto; border-radius: 40px; transition: all 0.3s cubic-bezier(0.37, -1.11, 0.79, 2.02); background-color: white; }
.hamburger input:checked ~ .bar:nth-child(2) { transform: translateY(9.5px) rotate(45deg); }
.hamburger input:checked ~ .bar:nth-child(3) { opacity: 0; }
.hamburger input:checked ~ .bar:nth-child(4) { transform: translateY(-8px) rotate(-45deg); }
.nav-links { list-style: none; display: flex; gap: 1.2rem; justify-content: center; align-items: center; transition: all 0.4s ease; }
.nav-links li a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.nav-links li a:hover, .nav-links li a.active { color: #1f1f1f; }
@media (max-width: 768px) {
  .hamburgers { display: flex; }
  .nav-links { flex-direction: column; position: absolute; top: 60px; left: 50%; transform: translateX(-50%) scaleY(0); background: #f1ffee; width: 90%; padding: 20px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); opacity: 0; pointer-events: none; transition: all 0.4s ease; transform-origin: top center; z-index: 999; }
  .nav-links.show { transform: translateX(-50%) scaleY(1); opacity: 1; pointer-events: auto; }
  .nav-links li { margin: 10px 0; }
  .nav-links li a { color: #379e1e; font-size: 1.1rem; }
}

/* MODERN HERO SECTION */
.modern-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9 0%, #e0f7fa 50%, #f1f8e9 100%);
  padding: 80px 5%;
}

/* Animated Background Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: floatShape 10s infinite alternate ease-in-out;
}
.shape-1 {
  width: 400px; height: 400px;
  background: rgba(76, 175, 80, 0.25);
  top: -10%; left: -10%;
}
.shape-2 {
  width: 500px; height: 500px;
  background: rgba(3, 169, 244, 0.15);
  bottom: -20%; right: -10%;
  animation-delay: -5s;
}
.shape-3 {
  width: 300px; height: 300px;
  background: rgba(139, 195, 74, 0.2);
  top: 40%; left: 40%;
  animation-duration: 15s;
}
@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 50px;
}

/* Left Content */
.hero-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #1b5e20;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-title {
  font-size: 3.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0d3b13;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2e7d32;
}

.hero-desc {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1b5e20;
  background: rgba(255, 255, 255, 0.5);
  padding: 8px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-btn-group {
  display: flex;
  gap: 15px;
}

.hero-btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
  border: none;
}

.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(76, 175, 80, 0.5);
  color: #fff;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: #1b5e20;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.hero-btn-secondary:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  color: #1b5e20;
}

/* Right Content - Glass Cards */
.hero-right {
  flex: 0.8;
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1.5s ease-out;
}

.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatCards 6s infinite alternate ease-in-out;
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.05) !important;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  z-index: 10;
}

@keyframes floatCards {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

.glass-card span.emoji {
  font-size: 3rem;
  margin-bottom: 12px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.glass-card h4 {
  font-size: 1.1rem;
  color: #0d3b13;
  font-weight: 700;
  margin-bottom: 5px;
}

.glass-card p {
  font-size: 0.85rem;
  color: #444;
}

.card-top {
  top: 0; left: 10%;
  width: 200px;
  animation-delay: 0s;
}

.card-right {
  top: 35%; right: -5%;
  width: 210px;
  animation-delay: -2s;
}

.card-bottom {
  bottom: 0; left: 20%;
  width: 200px;
  animation-delay: -4s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #2e7d32;
  font-weight: 600;
  font-size: 0.9rem;
  animation: fadeIn 2s ease-out 2s both;
}

.scroll-indicator i {
  font-size: 1.5rem;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .modern-hero {
    height: auto;
    padding: 120px 5% 80px; 
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
    margin-top: 0;
  }
  .hero-left {
    align-items: center;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-right {
    width: 100%;
    height: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    animation: none;
  }
  .glass-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
    width: calc(50% - 10px);
    max-width: 200px;
  }
  .card-bottom {
    width: 100%;
    max-width: 320px;
  }
  .scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .modern-hero { padding: 100px 5% 60px; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-btn { width: 100%; }
  
  .glass-card { 
    width: 100%; 
    max-width: 100%; 
    padding: 15px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 20px;
  }
  .glass-card span.emoji {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  .glass-card h4 { font-size: 1.05rem; margin-bottom: 2px; }
  .hero-right { gap: 12px; margin-top: 40px; margin-bottom: 30px; }
  .card-bottom { width: 100%; }
}

/* FEATURED BLOG SECTION */
.featured-blog {
  max-width: 1100px;
  margin: 60px auto 20px;
  padding: 0 20px;
}
.featured-card {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.featured-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-card:hover .featured-img {
  transform: scale(1.05);
}
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 70%, transparent 100%);
  z-index: 1;
}
.featured-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: white;
}
.featured-tag {
  background: #4caf50;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.featured-title {
  font-size: 2.4rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
  font-weight: 600;
}
.featured-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  line-height: 1.6;
}

/* BLOG SECTION (MAIN - LIKE REFERENCE IMAGE) */
.blog-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}
.blog-section-tag {
  font-size: 0.8rem;
  color: #1b5e20;
  background: #e9f5ec;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-headline {
  font-size: 2.8rem;
  font-weight: 700;
  color: #173b22;
  margin-bottom: 60px;
  font-family: "Playfair Display", serif;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* BLOG CARD */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.08); /* slight zoom per requirements */
}

.blog-content {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.blog-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #173b22;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}

.blog-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: center;
  flex-grow: 1; /* Pushes button to the bottom */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2 lines max */
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.blog-btn {
  background-color: #f1f8f3;
  color: #1b5e20;
  padding: 10px 24px;
  border-radius: 8px; /* Slightly rounded per reference image */
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid #e1eee4;
}

.blog-card:hover .blog-btn {
  background-color: #2e7d32;
  color: #ffffff;
  border-color: #2e7d32;
}

/* GUJARATI SECTION */
.gujarati-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: white;
  border-left: 6px solid #4caf50;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.gujarati-section h3 { font-size: 1.5rem; color: #1b5e20; margin-bottom: 15px; }
.gujarati-section p { font-size: 1.1rem; color: #333; line-height: 1.7; font-family: 'Poppins', sans-serif;}

/* FOOTER */
footer {
  background: linear-gradient(270deg, rgba(44, 89, 44, 1), rgba(59, 209, 91, 0.98), rgba(60, 117, 65, 1));
  background-size: 600% 600%; animation: gradientShift 15s ease infinite; color: white; padding: 2rem 1rem; font-size: 1rem; margin-top: 50px;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.footer-container { max-width: 1200px; margin: auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-section { flex: 1; min-width: 250px; }
.footer-section h2, .footer-section h3 { margin-bottom: 1rem; }
.footer-section p { margin: 0.5rem 0; line-height: 1.6; }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin: 0.5rem 0; }
.footer-section a { color: #ffeb3b; text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; }
.footer-section a:hover { color: #cddc39; transform: scale(1.05); }
.social-icons { margin-top: 1rem; }
.social-icons a { display: inline-block; margin-right: 0.5rem; font-size: 1.4rem; transition: transform 0.3s ease; }
.social-icons a:hover { transform: scale(1.3) rotate(10deg); }
.created-by { margin-top: 1rem; font-size: 0.9rem; }

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

@media (max-width: 1024px) {
  .blog-grid { gap: 20px; }
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-headline { font-size: 2.2rem; margin-bottom: 40px; }
}

@media (max-width: 768px) {
  .footer-container { flex-direction: column; text-align: center; } 
  .social-icons a { margin: 0 0.5rem; }
  .featured-title { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .featured-card { height: 350px; }
  .featured-content { padding: 25px; }
  .blog-headline { font-size: 1.8rem; }
}

/* BLOG POST DETAILS (.post-hero, .post-container, etc) */

.post-hero {
  position: relative;
  width: 100%;
  padding: 120px 20px 140px;
  background: linear-gradient(135deg, #e8f5e9 0%, #e0f7fa 50%, #f1f8e9 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.post-tag {
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.post-title {
  font-size: 3.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0d3b13;
  margin-bottom: 20px;
  line-height: 1.3;
}
.post-meta {
  font-size: 1rem;
  color: #555;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.post-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  margin-top: -60px;
  position: relative;
  z-index: 3;
}

.post-content h2 {
  font-size: 2rem;
  color: #173b22;
  margin: 50px 0 20px;
  font-family: 'Playfair Display', serif;
}
.post-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}
.post-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.post-content ul li {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 10px;
}

.highlight-box {
  background: #f1f8e9;
  border-left: 5px solid #4caf50;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}
.highlight-box h3 {
  color: #1b5e20;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin-top: 0;
}
.icon-list {
  list-style: none;
  padding: 0 !important;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fafafa;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid #eee;
}
.icon-list li span {
  font-size: 1.5rem;
}

.credit-box {
  background: #e0f7fa;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 30px 0;
  border: 1px solid #b3e5fc;
}
.credit-box a {
  color: #0277bd;
  font-weight: 700;
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px dashed #e0e0e0;
}
.faq-item {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.faq-item h4 {
  color: #1b5e20;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.faq-item p {
  color: #555;
  margin: 0;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .post-title { font-size: 2.2rem; }
  .post-content h2 { font-size: 1.7rem; }
  .post-container { padding: 30px 20px; margin-top: -30px; }
  .post-hero { padding: 100px 20px 80px; }
}