/* Mahavira Printpack - Modern & Elegant Style */

:root {
  /* Core Colors */
  --primary-color: #0f0f0f;         /* Deep black for strong contrast */
  --accent-color: #cba135;          /* Refined gold, slightly muted for elegance */
  --bg-color: #fffdf8;              /* Soft warm white background */
  --text-color: #1a1a1a;            /* Rich dark gray for better readability */
  --secondary-bg: #f5f5f5;          /* Light neutral section backgrounds */

  /* UI Elements */
  --border-color: #e0e0e0;          /* Subtle border for cards/sections */
  --button-hover: #b8902e;          /* Slightly darker gold for hover effect */
  --shadow-color: rgba(0, 0, 0, 0.05); /* Gentle card shadows */

  /* Typography */
  --font-header: 'Playfair Display', serif; /* Classic serif for elegance */
  --font-body: 'Inter', sans-serif;         /* Clean sans-serif for text */

  /* Transition & Spacing */
  --transition: all 0.3s ease-in-out;
  --radius: 12px;
  --padding: 1.5rem;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.logo {
  font-family: var(--font-header);
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: -3px;
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.cta {
  background: var(--accent-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: var(--transition);
}

.cta:hover {
  background: #b8952b;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 700px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-family: var(--font-header);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  color-black;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  background: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  transition: var(--transition);
  text-decoration: none;
}

.hero-btn:hover {
  background: #b8952b;
}

.section {
  padding: 5rem 2rem;
  background-color: var(--secondary-bg);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  font-family: var(--font-header);
  margin-bottom: 3rem;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature {
  background: white;
  padding: 2rem 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature:hover {
  transform: scale(1.05);
  background: #fff9f0;
}

/* Partners */
.partners-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.partners-text {
  flex: 1 1 300px;
}

.partners-text h2 {
  font-family: var(--font-header);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.partners-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-color);
}

.partners-logos {
  flex: 2 1 500px;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
}

.logos-track img {
  height: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.logos-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweak */
@media (max-width: 768px) {
  .partners-container {
    flex-direction: column;
    text-align: center;
  }

  .partners-logos {
    width: 100%;
  }
}


/* Testimonials */
.testimonials-section {
  background-color: #fffaf3;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.brand-logo {
  max-height: 60px;
  max-width: 100px;
  margin: 0 auto 1rem;
  object-fit: contain;
  display: block;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-card h4 {
  font-weight: bold;
  color: #333;
  font-size: 0.95rem;
}



/* FAQ */
.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: var(--transition);
}

.faq-item.active .answer {
  max-height: 200px;
  opacity: 1;
  padding-top: 0.5rem;
}

.answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Footer */
.footer {
  background: #111;
  color: #eee;
  padding: 2rem;
  text-align: center;
}

.footer h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer .socials a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: var(--accent-color);
  transition: var(--transition);
}

.footer .socials a:hover {
  color: #fff;
}
.contact-section {
  padding: 60px 20px;
  background-color: var(--bg-color);
  text-align: center;
}

.contact-section .section-title {
  font-size: 2rem;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.contact-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.map-section {
  padding: 60px 20px;
  background-color: var(--secondary-bg);
  text-align: center;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.highlight-section {
  background: linear-gradient(135deg, #fffaf3, #f0e6d2);
  padding: 80px 20px;
  text-align: center;
  color: #111;
}

.highlight-content {
  max-width: 900px;
  margin: 0 auto;
}

.highlight-section .section-title {
  font-size: 2.2rem;
  font-family: var(--font-header);
  color: var(--primary-color);
  margin-bottom: 15px;
}

.highlight-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.highlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.highlight-points .point {
  background-color: white;
  border: 1px solid var(--accent-color);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.highlight-points .point:hover {
  transform: translateY(-4px);
}
.btn-quote {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #d4af37, #f0c75e);
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease-in-out;
  letter-spacing: 1px;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-quote:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #f0c75e, #d4af37);
}

.contact-section {
  background-color: var(--light);
  color: var(--text-color);
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
  border-top: 1px solid #eee;
}

.contact-section h2 {
  font-family: var(--font-header);
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent-color);
}
.faq-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
}

.faq-item h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
}

.faq-item p {
  color: var(--text-color);
  font-size: 0.95rem;
}
.map-section {
  padding: 60px 20px;
  background-color: var(--bg-color);
  text-align: center;
}

.map-section h2 {
  font-family: var(--font-header);
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
