/* === Variables === */
:root {
  --bg-dark: #000000;
  --bg-light: #ffffff;
  --text-dark: #000000;
  --text-light: #ffffff;
  --accent: #FFD700;
  --hover-accent: #E6C200;
  --card-bg: rgb(180, 183, 217);
  --card-radius: 12px;
}

/* === Global Styles === */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

h1, h2, h3 {
  margin: 0;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Hero Section === */
.hero {
  background-color: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  text-align: center;
}

.hero h1 {
  font-size: 5rem; /* jo aapne already change kiya */
  color: #ffffff;  /* ye line add karo for white text */
}


.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cta-btn {
  background-color: var(--accent);
  color: var(--text-dark);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--hover-accent);
}

/* === Feature Cards === */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.card:hover {
  background-color: var(--accent);
  color: var(--text-dark);
  transform: translateY(-5px);
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* === Product Cards === */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  background-color: var(--accent);
  color: var(--text-dark);
  transform: translateY(-5px);
}

.product-image {
  height: 150px;
  background-color: #ccc;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* === FAQ Section === */
.faq-item {
  margin-bottom: 15px;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  background-color: var(--card-bg);
  border: none;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: var(--accent);
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-light);
  padding: 0 15px;
}

/* === About Section === */
.about {
  text-align: center;
  padding: 60px 20px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.2rem; }
}
.about-wrapper {
  text-align: center;
  padding: 60px 20px;
  max-width: 950px;
  margin: 60px auto;
  color: #000000;
  border: 2px dotted #FFD700; /* Gold dotted border */
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.about-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.about h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.about-section {
  margin-top: 30px;
  padding: 20px;
  border: 1px dotted #FFD700; /* inner sections dotted border */
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.about h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about ul {
  text-align: left;
  display: inline-block;
  padding-left: 20px;
  margin: 10px 0;
}

.about li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E1E2F;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #E6C200;
}
