/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1b4927;
  --primary-light: #2a6e3b;
  --primary-dark: #123018;
  --primary-transparent: rgba(27, 73, 39, 0.1);
  --accent: #e6b012;
  --accent-light: #f9d675;
  --accent-dark: #c99c10;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #777777;
  --bg-light: #f8f5f0;
  --bg-off-white: #f5f5f5;
  --bg-white: #ffffff;
  --danger: #d32f2f;
  --danger-light: #ffebee;
  --success: #388e3c;
  --success-light: #e8f5e9;
  --border-light: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  gap: 8px;
}

.btn:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--text-light);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text-dark);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text-dark);
}

/* Header Styles */
.site-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  flex: 1;
}

.header-right {
  justify-content: flex-end;
}

.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  /*justify-content: center;*/
  /*align-items: center;*/
  z-index: 2;
}

.logo {
  display: flex;
  /*align-items: center;*/
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 40px;
  height: 40px;
  /*border-radius: var(--radius-full);*/
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
}

.desktop-nav {
  display: flex;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  font-weight: 500;
  position: relative;
  font-size: 0.95rem;
  padding: 5px 0;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.main-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover {
  color: var(--primary);
}

.main-nav ul li a:hover::after {
  width: 100%;
}

.header-cta {
  padding: 8px 16px;
  font-size: 0.85rem;
  margin-left: 1.5rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(27, 73, 39, 0.2);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  margin-right: 15px;
  z-index: 3;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
  bottom: 0;
}

.mobile-menu-toggle:hover span {
  background-color: var(--primary-light);
}

.mobile-menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  transition: left 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary);
}

.mobile-nav {
  flex: 1;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a {
  display: block;
  padding: 10px 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
  background-color: var(--primary-transparent);
  padding-left: 20px;
  color: var(--primary);
}

.mobile-cta {
  padding: 20px;
  border-top: 1px solid var(--border-light);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(3px);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background-color: var(--bg-light);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b4927' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--primary-transparent);
}

.hero-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.hero-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

.hero-circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary-transparent);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.hero-subtitle span {
  color: var(--primary);
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(0deg);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  transform: rotate(0) scale(1.02);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Problem Section */
.problem-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  position: relative;
}

.quote-box {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.quote-box p {
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  margin: 1rem 0 0;
}

.problem-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.issues-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.issue-card {
  display: flex;
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.issue-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.issue-icon {
  font-size: 1.5rem;
  color: var(--danger);
  margin-right: 1rem;
  flex-shrink: 0;
}

.issue-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.issue-content h4 {
  margin-bottom: 0.5rem;
  color: var(--danger);
}

.issue-content img {
  align-self: center;
  margin-top: 1rem;
  /*max-width: 200px;*/
}

.problem-conclusion {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

.highlight {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.2rem;
  padding: 1rem;
  background-color: var(--primary-transparent);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

/* Journey Section */
.journey-section {
  padding: 50px 0;
  background-color: var(--bg-light);
  position: relative;
}

.journey-timeline {
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  padding-left: 50px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background-color: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: -50px;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
}

.timeline-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-content img {
  margin: 1rem auto;
  /*max-width: 300px;*/
}

.sanskrit {
  font-family: "Arial", sans-serif;
  font-weight: normal;
}

.journey-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Why Section */
.why-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--success);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 0 0 50px;
  background-color: var(--bg-light);
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  color: var(--primary-light);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--primary);
}

/* Vision Section */
.vision-section {
  padding: 100px 0;
  background-color: var(--primary);
  color: var(--text-light);
  position: relative;
}

.vision-section .section-title {
  color: var(--text-light);
}

.vision-section .section-title::after {
  background-color: var(--accent);
}

.vision-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  backdrop-filter: blur(10px);
  position: relative;
}

.vision-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--text-dark);
  font-size: 2rem;
}

.vision-box h3 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.vision-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.impact-section {
  max-width: 800px;
  margin: 0 auto;
}

.impact-title {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.impact-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.impact-card-last {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  margin-top: 1.5rem;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.impact-card:hover,
.impact-card-last:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.impact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.impact-card span,
.impact-card-last span {
  color: var(--text-light);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b4927' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.cta-buttons {
  margin-bottom: 1.5rem;
}

/* Footer - New Design */
.site-footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 30px;
}

.footer-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.gir-text {
    font-weight: 300;
}

.footer-description {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--footer-bg);
    transform: translateY(-3px);
}

.footer-links-section {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-underline {
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav li a {
    color: #ccc;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-nav li a:hover {
    color: white;
    padding-left: 5px;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.product-image {
    height: 120px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-name {
    padding: 12px;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--accent);
    margin-top: 5px;
}

.contact-info li a {
    color: #ccc;
}

.contact-info li a:hover {
    color: white;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #999;
    font-size: 0.9rem;
}

.copyright {
    margin: 0;
}

.sanskrit-text {
    margin: 0;
    color: #ccc;
}

.footer-accent-line {
    height: 5px;
    background-color: var(--accent);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}


/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .main-nav ul {
    gap: 1rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 150px 0 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .header-left,
  .header-right .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo-container {
    flex: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
  }

  .vision-box {
    padding: 2rem;
  }

  .vision-box h3 {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .quote-box {
    padding: 1.5rem;
  }

  .quote-box p {
    font-size: 1.1rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .vision-box {
    padding: 1.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 1200px) {
  .main-nav ul {
    gap: 1rem;
  }

  .main-nav ul li a {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-cta {
    margin-left: 0;
  }

  .header-left,
  .header-right {
    flex: initial;
  }

  .logo-container {
    position: static;
    transform: none;
    flex: 1;
    justify-content: center;
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    padding: 12px 0;
  }
}

