@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary-teal: #284B55;
  --secondary-olive: #5E7B54;
  --bg-cream: #F9F4E6;
  --text-navy: #1D3A6A;
  --text-green: #165626;
  --accent-yellow: #F1B721;
  --white: #FFFFFF;
  --black: #111111;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-navy);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--text-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-teal);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--accent-yellow);
  color: var(--black);
}

.btn-secondary:hover {
  background-color: #dca315;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.footer {
  background-color: var(--secondary-olive);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.footer-section h4 {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-section p {
  margin-bottom: 10px;
}

.telugu-tagline {
  font-style: italic;
  color: var(--bg-cream);
}

.footer-section ul {
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section ul li a {
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--accent-yellow);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  transition: background-color 0.3s, color 0.3s;
}

.social-links a:hover {
  background-color: var(--accent-yellow);
  color: var(--black);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}
.navbar {
  background-color: var(--primary-teal);
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-v {
  color: #3b82f6; /* Blueish V from poster */
  font-size: 2rem;
}

.logo-j {
  color: var(--accent-yellow);
  font-size: 2rem;
  margin-left: -5px;
}

.logo-text {
  margin-left: 10px;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent-yellow);
}

.menu-icon {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--primary-teal);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .menu-icon {
    display: block;
  }
}
.product-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--text-navy);
}

.product-price {
  font-weight: 700;
  color: var(--text-green);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.product-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.w-full {
  width: 100%;
}
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-animation {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-floating-btn {
  animation: pulse-animation 2s infinite;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  color: var(--primary-teal);
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text h3 {
  color: var(--text-green);
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05rem;
}

.promise-list {
  padding-left: 20px;
}

.promise-list li {
  margin-bottom: 10px;
  color: #444;
  position: relative;
}

.promise-list li::before {
  content: '✓';
  color: var(--text-green);
  position: absolute;
  left: -20px;
  font-weight: bold;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2, .contact-form-container h2 {
  color: var(--primary-teal);
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-desc {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.info-icon {
  color: var(--accent-yellow);
  background-color: var(--primary-teal);
  padding: 10px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.info-item h4 {
  margin-bottom: 5px;
  color: var(--text-navy);
}

.info-item p {
  color: #555;
  margin: 0;
}

.contact-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-navy);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.hero-section {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 60px 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
  font-size: 2rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.telugu-text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badges span {
  background-color: var(--white);
  color: var(--text-navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-quote {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
}

.text-center {
  text-align: center;
}

.benefits-section {
  padding: 80px 0;
  background-color: var(--secondary-olive);
  color: var(--white);
}

.benefits-section .section-header h2 {
  color: var(--accent-yellow) !important;
}

.indian-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.indian-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.indian-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.letter {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--accent-yellow);
  margin-bottom: 15px;
  font-weight: 700;
}

.indian-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.featured-products {
  padding: 80px 0;
  background-color: var(--bg-cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content h2 {
    font-size: 1.5rem;
  }
  .hero-quote {
    font-size: 1.3rem;
  }
}
.page-header {
  background-color: var(--primary-teal);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--bg-cream);
  max-width: 600px;
  margin: 0 auto;
}

.filters {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  background-color: transparent;
  border: 2px solid var(--primary-teal);
  color: var(--primary-teal);
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-teal);
  color: var(--white);
}
