:root {
  --primary-color: #ffc300;
  --secondary-color: #1a1a1a;
  --text-color: #e0e0e0;
  --dark-bg: #0a0a0a;
  --card-bg: rgba(255, 255, 255, 0.05);
  --header-blur-bg: rgba(18, 18, 18, 0.8);
  --btn-hover-bg: #ffc300;
  --btn-hover-text: #121212;
  --glass-blur: blur(15px);
  --light-text: #aaaaaa;
  --border-color: rgba(212, 175, 55, 0.2);
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

body {
  -webkit-tap-highlight-color: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Verdana", Geneva, Tahoma, sans-serif;
  outline: none !important;
  box-shadow: none !important;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
}

section {
  scroll-margin-top: 80px; /* navbar ki height jitna rakho */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
header {
  background: var(--header-blur-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 20px;
}

.logo {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo span {
  color: var(--text-color);
}

/* Offer Bar */
.offer-bar {
  flex: 1;
  overflow: hidden;
  background: transparent;
  padding: 0 20px;
  margin-left: 20px;
  border: none;
  box-shadow: none;
}

.offer-item {
  color: var(--primary-color);
  font-weight: 600;
}

.offer-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 10s linear infinite;
  padding-left: 100%;
}

.offer-item {
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  background: var(--dark-bg);
  padding: 20rem 0 8rem;
}

.hero h1 {
  font-size: 5rem;
  color: var(--text-color);
  line-height: 1.2;
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-align: left;
}

.hero h1 span {
  color: var(--primary-color);
  position: relative;
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

.hero-content {
  flex: 1 1 50%;
  padding-right: 2rem;
}

.hero p {
  font-size: 2rem;
  color: var(--light-text);
  margin-bottom: 4rem;
  max-width: 600px;
  text-align: left;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 5rem;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.6rem;
  color: var(--light-text);
}

.hero-image {
  position: relative;
  flex: 1 1 45rem;
  text-align: center;
}

.hero-image-container {
  position: relative;
  display: inline-block;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

.hero-image-container {
  width: 100%;
  height: 400px;
  max-width: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.hero-image-container:hover {
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

/* Canvas styling for Three.js renderer */
.hero-image-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  cursor: grab;
}

.hero-image-container canvas:active {
  cursor: grabbing;
}

/* Model Viewer Styles */
.model-viewer-container {
  width: 100%;
  height: 600px;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 0 0 5%;
}

.model-viewer-container canvas {
  display: block;
  width: 105% !important;
  height: 105% !important;
  object-fit: contain;
  cursor: grab;
  margin: -2.5% 0 -2.5% -5%;
  background: transparent !important;
}

.model-viewer-container canvas:active {
  cursor: grabbing;
}

.model-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  z-index: 10;
  gap: 2rem;
}

/* Product Detail Section */
.product-detail {
  padding: 13.5rem 0;
}

.product-container {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
  margin-top: 10rem;
}

.main-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.03);
}

.product-info {
  flex: 1;
}

.product-title {
  font-size: 3.5rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.product-title span {
  color: var(--primary-color);
}

.product-subtitle {
  font-size: 1.8rem;
  color: var(--light-text);
  margin-bottom: 3rem;
}

.product-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  width: 100%;
}

.discounted-price {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 600;
}

.original-price {
  font-size: 2rem;
  color: var(--light-text);
  text-decoration: line-through;
}

.price-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.price-actions .btn {
  min-width: 120px;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  white-space: nowrap;
}

.price-actions .btn .fa-whatsapp {
  font-size: 1.8rem;
}

.price-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.product-meta {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  color: var(--light-text);
}

.meta-item i {
  color: var(--primary-color);
}

.product-description {
  margin-bottom: 4rem;
}

.description-title span {
  color: var(--primary-color);
}

.description-title {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.description-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background-color: var(--primary-color);
}

.description-content {
  font-size: 1.6rem;
  color: var(--light-text);
  line-height: 1.8;
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 5px;
  font-size: 1.6rem;
  color: var(--text-color);
}

.custom-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  color: var(--btn-hover-text);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Mobile: Disable transform on hover */
@media (max-width: 768px) {
  .btn:hover {
    transform: none;
  }
}

/* Categories Section */
.categories-section {
  padding: 5rem 0;
  background-color: var(--dark-bg);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.section-title span {
  color: #d4af37; /* Gold color */
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* Categories Scroller */
.categories-scroller {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.categories-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
}

.categories-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

/* Category Cards */
.category-card {
  flex: 0 0 auto;
  width: 280px;
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.5);
}

.clickable-category {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-img {
  height: 180px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.05);
}

.category-info {
  padding: 1.2rem;
  text-align: center;
}

.category-info h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Navigation Arrows */
.scroller-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.scroller-nav:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.scroller-nav-left {
  left: 10px;
}

.scroller-nav-right {
  right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .category-card {
    width: 240px;
  }

  .scroller-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .categories-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .category-card {
    width: 220px;
  }

  .category-img {
    height: 160px;
  }

  .scroller-nav {
    display: none; /* Hide arrows on very small screens */
  }
}
/* Products Section */
.products-section {
  padding: 12rem 0;
  background-color: var(--dark-bg);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 3rem;
  padding: 0;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
}

.product-card:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}

.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--light-text);
  cursor: pointer;
  z-index: 10;
  border: none;
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
}

.wishlist-btn:hover {
  color: var(--primary-color);
}

.wishlist-btn.active {
  color: #ff4757;
}

.gift-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 10;
  border: none;
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 10;
}

.product-img {
  height: auto;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1.25rem;
}

.product-info h3 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.product-info p {
  font-size: 1.4rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.file-info {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.file-info span {
  font-size: 1.4rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.file-info i {
  color: var(--primary-color);
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.view-btn {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1.5rem;
}

.view-btn:hover {
  background: var(--primary-color);
  color: #121212;
}

#bundles {
  scroll-margin-top: 0px;
}

#groups {
  scroll-margin-top: 250px;
}

#tools {
  scroll-margin-top: 250px;
}

#course {
  scroll-margin-top: 250px;
}

#faq {
  scroll-margin-top: 80px;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("assets/cta.png") no-repeat center center/cover;
  color: var(--text-color);
  text-align: center;
  padding-bottom: 8rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-content h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.cta-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--dark-bg);
  border-top: 1px solid var(--border-color);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 2rem;
  background-color: var(--card-bg);
  border: none;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.faq-question:hover i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(10, 10, 10, 0.7);
}

.faq-answer p {
  padding: 2rem 2rem 2rem;
  font-size: 1.6rem;
  color: var(--light-text);
  line-height: 1.8;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CTA Proof Section */
.proof-cta-container {
  margin: auto;
  max-width: 800px;
  text-align: center;
  padding-bottom: 7rem;
}

.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.divider-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  flex-grow: 1;
}

.cta-divider:first-child .divider-line {
  max-width: 500px;
}

.cta-divider:last-child .divider-line {
  max-width: 200px;
}

.divider-icon {
  color: var(--primary-color);
  margin: 0 2rem;
  font-size: 1.8rem;
}

.proof-cta-content h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(212, 175, 55, 0.3);
}

.proof-cta-content p {
  font-size: 1.6rem;
  color: #ccc;
  margin-bottom: 2.5rem;
}

.proof-cta .cta-button {
  padding: 1rem 2rem;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #ffc300, #b8860b);
  color: #121212;
  border-radius: 18px;
  display: inline-block;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.proof-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.proof-cta .cta-button i {
  margin-right: 5px;
}

.proof-cta-content h3 span {
  color: #ffffff; /* White color for ₹99/- */
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 2rem auto;
  flex-wrap: wrap;
}

.payment-methods img {
  width: 45px;
  height: auto;
}

/* Sections Common Styles */
.section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.section-title span {
  color: var(--primary-color);
}

/* Footer Styles */
.footer {
  background: var(--dark-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #eee;
  padding: 3.5rem 0 0;
  font-family: "Segoe UI", sans-serif;
  font-size: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-col {
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-title span {
  color: var(--text-color);
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-description {
  font-size: 1.4rem;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: var(--light-text);
  font-size: 1.4rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  color: var(--light-text);
  font-size: 1.4rem;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.6rem;
  width: 2rem;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-text);
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0 0.8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.copyright {
  color: var(--light-text);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .copyright {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    margin-bottom: 2rem;
  }

  .footer-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 1.3rem;
  }
}

/* Animation for offer bar */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-container {
    flex-direction: column;
    gap: 3rem;
    margin: 0;
  }

  .product-info {
    padding-top: 1rem;
    width: 100%;
  }

  .product-detail {
    padding: 7rem 0 0;
  }

  .products-section {
    padding: 0 0 4rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  #bundles {
    scroll-margin-top: 95px;
  }

  #groups {
    scroll-margin-top: 200px;
  }

  #tools {
    scroll-margin-top: 60px;
  }

  #course {
    scroll-margin-top: 200px;
  }

  #faq {
    scroll-margin-top: 60px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .product-title {
    font-size: 2.8rem;
  }

  .product-subtitle {
    font-size: 1.6rem;
  }

  .product-price {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .price-display {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    order: 1;
  }

  .price-actions {
    flex-direction: row;
    order: 2;
    width: auto;
    gap: 1rem;
  }

  .product-container .btn {
    width: auto;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
  }

  .offer-bar {
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 30px;
    min-width: 150px;
    overflow: hidden;
  }

  .offer-item {
    font-size: 18px;
    margin-right: 20px;
  }

  .logo {
    font-size: 24px;
  }

  .cta-section {
    padding: 5rem 1rem;
  }

  .cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
  }

  .cta-content p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }

  .cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
    min-width: 0;
    padding: 1.2rem 0.5rem;
    font-size: 1.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .discounted-price {
    font-size: 2.5rem;
  }

  .original-price {
    font-size: 1.8rem;
  }

  .cta-divider:first-child .divider-line {
    max-width: 200px;
  }

  .cta-divider:last-child .divider-line {
    max-width: 125px;
  }

  .divider-icon {
    margin: 0 1rem;
    font-size: 1.5rem;
  }

  .proof-cta-content h3 {
    font-size: 2.25rem;
  }

  .proof-cta-content p {
    font-size: 1.4rem;
  }

  .proof-cta .cta-button {
    padding: 1rem 0;
    border-radius: 12px;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .product-title {
    font-size: 2.4rem;
  }

  .product-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .price-display {
    width: 100%;
    justify-content: flex-start;
  }

  .offer-bar {
    min-width: 120px;
    padding: 5px 8px;
  }

  .faq-question {
    font-size: 1.4rem;
  }

  .offer-item {
    font-size: 16px;
    margin-right: 15px;
  }

  .logo {
    font-size: 20px;
  }

  .button-container {
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .cta-button {
    width: 40%;
    font-size: 1.8rem;
    padding: 1.4rem 2rem;
    max-width: none;
  }

  .proof-cta-content h3 {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .proof-cta .cta-button {
    font-size: 1.4rem;
  }
}

@media (min-width: 993px) {
  .product-container {
    display: none;
  }

  .product-detail {
    display: none;
  }
}

/* Tools Section */
.dual-tools-section {
  padding: 6rem 0;
}

.dual-tools-card {
  background-color: var(--dark-bg);
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
}

.dual-tools-card h3 {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tools-subtitle {
  font-size: 1.6rem;
  color: var(--light-text);
  margin-bottom: 4rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.tool-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-color);

  transition: transform 0.3s ease;
}

.tool-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--dark-bg);
  /* Icon color */
  font-size: 2.5rem;
}

.tool-card h4 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.tool-card p {
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.btn-tool {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.btn-tool:hover {
  background-color: var(--btn-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .dual-tools-card {
    padding: 4rem 2rem;
  }

  .dual-tools-section {
    padding: 0;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    padding: 2.5rem 2rem;
  }
}

/* Hire Designer Section Styles */
.course-section {
  padding: 6rem 0 2rem;
  background-color: var(--dark-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.course-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.course-title {
  font-size: 3.5rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.course-title span {
  color: var(--primary-color);
}

.course-description {
  font-size: 2rem;
  color: var(--light-text);
  margin-bottom: 4rem;
  line-height: 1.6;
  padding: 0 5rem;
}

.course-button-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 4rem;
}

.course-button {
  padding: 1.5rem 4rem;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: var(--border-radius);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.course-button-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius);
  filter: blur(10px);
  z-index: 1;
}

.course-button:hover {
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .course-section {
    padding: 4rem 0;
    padding-bottom: 0;
  }

  .course-title {
    font-size: 2.4rem;
  }

  .course-title {
    font-size: 2.8rem;
  }

  .course-description {
    font-size: 1.6rem;
    padding: 0;
  }

  .course-button {
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .course-section {
    padding: 4rem 0;
    padding-bottom: 0;
  }

  .course-title {
    font-size: 2.3rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  padding: 1.2rem;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  z-index: 1000;
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
}

.whatsapp-float img {
  width: 3rem;
  height: 3rem;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 2.4rem;
  cursor: pointer;
  margin-left: auto;
  z-index: 1001;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  margin-left: auto;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.5rem 0;
  /* Changed from 1rem to 0 to make underline precise */
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  /* Added for pseudo-element positioning */
}

.nav-menu a:hover {
  color: var(--primary-color);
  background: transparent;
}

/* New underline effect */
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--header-blur-bg);
    backdrop-filter: var(--glass-blur);
    flex-direction: column;
    padding: 8rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 1px solid var(--border-color);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .proof-cta-container {
    padding-bottom: 7rem;
  }
}

.menu-toggle {
  -webkit-tap-highlight-color: transparent;
  outline: none !important;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.menu-toggle:active,
.menu-toggle:hover,
.menu-toggle:focus {
  background-color: transparent;
  box-shadow: none;
}

/* Active navigation link style */
.nav-menu a.active-nav {
  color: var(--primary-color);
}

.nav-menu a.active-nav::after {
  width: 100%;
  background-color: var(--primary-color);
}

.product-info h3 span {
  color: var(--primary-color);
}

/* Mobile Menu Styles - Tablet and below */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  .hero-content p {
    font-size: 1.5rem;
  }

  .hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
  }

  .hero {
    padding: 10rem 0 0;
  }

  .hero-content {
    padding: 0 1rem;
  }
}

/* Small Tablets and Large Mobiles */
@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    width: 100%;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-outline {
    flex: 1;
    text-align: center;
    padding: 1.2rem 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 8px;
  }

  .hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2rem;
    margin-top: 2rem;
  }

  .stat-item {
    flex: 1;
    text-align: center;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .hero-buttons .btn,
  .hero-buttons .btn-outline {
    font-size: 1.4rem;
  }
}
@media (max-width: 360px) {
  .proof-cta .cta-button {
    font-size: 1.2rem;
  }
}

/* Terms and Conditions Page Styles */
.terms-section {
  background-color: var(--dark-bg);
  color: var(--text-color);
  padding: 12rem 0 6rem;
}

.terms-update {
  font-size: 1.6rem;
  color: var(--light-text);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
}

.terms-card h2 {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.terms-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background-color: var(--primary-color);
}

.terms-card p {
  font-size: 1.6rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.terms-acknowledgement {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 5rem;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .terms-section {
    padding: 10rem 0 4rem;
  }

  .terms-card {
    padding: 2rem;
  }

  .terms-card h2 {
    font-size: 2rem;
  }

  .terms-card p {
    font-size: 1.5rem;
  }

  .terms-acknowledgement {
    font-size: 1.6rem;
  }
}

/* Refund Policy Page Styles */
.refund-section {
  background-color: var(--dark-bg);
  color: var(--text-color);
  padding: 12rem 0 6rem;
}

.refund-update {
  font-size: 1.6rem;
  color: var(--light-text);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.refund-content {
  max-width: 900px;
  margin: 0 auto;
}

.refund-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
}

.refund-card h2 {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.refund-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background-color: var(--primary-color);
}

.refund-card p {
  font-size: 1.6rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.refund-card strong {
  color: var(--primary-color);
}

.refund-acknowledgement {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 5rem;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .refund-section {
    padding: 10rem 0 4rem;
  }

  .refund-card {
    padding: 2rem;
  }

  .refund-card h2 {
    font-size: 2rem;
  }

  .refund-card p {
    font-size: 1.5rem;
  }

  .refund-acknowledgement {
    font-size: 1.6rem;
  }
}

/* Privacy Policy Page Styles */
.privacy-section {
  background-color: var(--dark-bg);
  color: var(--text-color);
  padding: 12rem 0 6rem;
}

.privacy-update {
  font-size: 1.6rem;
  color: var(--light-text);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
}

.privacy-card h2 {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.privacy-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background-color: var(--primary-color);
}

.privacy-card p {
  font-size: 1.6rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.privacy-card strong {
  color: var(--primary-color);
}

.privacy-acknowledgement {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 5rem;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .privacy-section {
    padding: 10rem 0 4rem;
  }

  .privacy-card {
    padding: 2rem;
  }

  .privacy-card h2 {
    font-size: 2rem;
  }

  .privacy-card p {
    font-size: 1.5rem;
  }

  .privacy-acknowledgement {
    font-size: 1.6rem;
  }
}

/* catalogs Section Styles */
.catalogs-section {
  padding: 12rem 0;
  background-color: var(--dark-bg);
}

.catalogs-section-home {
  padding-top: 12rem;
  background-color: var(--dark-bg);
}

.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.catalogs-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
}

.catalogs-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.catalogs-img {
  position: relative;
  height: 16.5rem;
  overflow: hidden;
}

.catalogs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalogs-img-p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalogs-card:hover .catalogs-img img {
  transform: scale(1.05);
}

.page-count {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* File Info Card Styles */
.file-info-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.file-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 195, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.file-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.file-details {
  flex: 1;
}

.file-name {
  font-size: 1.6rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.file-category,
.file-type,
.file-size {
  font-size: 1.2rem;
  color: var(--light-text);
  display: flex;
  align-items: center;
}

.file-category::before {
  content: "•";
  margin-right: 0.8rem;
  color: var(--primary-color);
}

.file-size::before {
  content: "•";
  margin-right: 0.8rem;
  color: var(--primary-color);
}

.catalogs-info {
  padding: 2rem;
}

.catalogs-info p {
  font-size: 1.4rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.catalogs-actions {
  display: flex;
  gap: 1rem;
}

.btn-view-pdf {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.btn-view-pdf:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-buy {
  flex: 1;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-buy:hover {
  background-color: #e6b400;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .catalogs-grid {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }

  .catalogs-img {
    height: 20rem;
  }

  .file-info-card {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }

  .file-meta {
    justify-content: center;
  }

  .catalogs-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .catalogs-grid {
    grid-template-columns: 1fr;
  }

  .file-name {
    font-size: 1.4rem;
  }

  .file-meta {
    gap: 0.8rem;
  }

  .file-size,
  .file-time {
    font-size: 1.1rem;
  }
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.pagination a {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--card-bg);
  color: var(--text-color);
  border-radius: 5px;
  border: 1px solid var(--border-color);
  font-size: 1.4rem;
  min-width: 3.2rem;
  text-align: center;
  transition: var(--transition);
}

.pagination a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.pagination .disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Page Indicator */
.page-indicator {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--text-color);
  background-color: var(--card-bg);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  border: 1px solid var(--border-color);
}

.page-indicator .current-page {
  color: var(--primary-color);
  font-weight: 600;
}

.page-indicator .separator {
  margin: 0 0.5rem;
  color: var(--light-text);
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .pagination {
    gap: 1rem;
  }

  .pagination a {
    padding: 0.6rem 1rem;
    font-size: 1.8rem;
  }

  .page-indicator {
    padding: 0.6rem 1rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .pagination {
    width: 100%;
  }

  .pagination a {
    text-align: center;
  }

  .page-indicator {
    flex: 0 0 auto;
  }
}

/* catalogs Section Styles */
/* catalogs Section Responsive Styles */
.catalogs-section {
  padding: 12rem 0 0;
  background-color: var(--dark-bg);
}

catalogs-section-home {
  padding: 12rem 0 0;
  background-color: var(--dark-bg);
}

.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 0 35rem;
}

.file-meta {
  font-size: 1.2rem;
}

.catalogs-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
}

.catalogs-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.catalogs-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.page-count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.page-count i {
  font-size: 1rem;
}

/* File Info Card Styles */
.file-info-card {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.file-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 195, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.file-icon i {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.file-details {
  flex: 1;
  min-width: 0;
}

.file-name {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.file-meta i {
  color: var(--primary-color);
}

.catalogs-info {
  padding: 1.5rem;
}

.catalogs-info p {
  font-size: 1.3rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.catalogs-actions {
  display: flex;
  gap: 0.8rem;
}

.btn-view-pdf,
.btn-buy {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: var(--border-radius);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-view-pdf {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.btn-view-pdf:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-buy {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-buy:hover {
  background-color: #e6b400;
}

.btn-view-pdf i,
.btn-buy i {
  font-size: 1.2rem;
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background-color: var(--card-bg);
  color: var(--text-color);
  border-radius: 5px;
  border: 1px solid var(--border-color);
  font-size: 1.4rem;
  transition: var(--transition);
  gap: 0.5rem;
}

.view-all-btn i {
  color: var(--primary-color);
  margin-right: 2.5px;
}

.pagination-btn.prev i {
  color: var(--primary-color);
}

.pagination-btn.next i {
  color: var(--primary-color);
}

.pagination-btn:hover i {
  color: var(--secondary-color);
}

.view-all-btn:hover i {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.pagination-btn:hover:not(.disabled) {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.pagination-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.page-indicator {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--text-color);
  background-color: var(--card-bg);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  border: 1px solid var(--border-color);
}

.page-indicator .current-page {
  color: var(--primary-color);
  font-weight: 600;
}

.page-indicator .separator {
  margin: 0 0.5rem;
  color: var(--light-text);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .catalogs-section {
    padding-top: 11rem;
  }

  .catalogs-section-home {
    padding: 0;
  }

  .catalogs-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .section-title {
    margin-bottom: 2.4rem;
  }

  .catalogs-img {
    height: 200px;
  }

  .file-info-card {
    padding: 1rem;
  }

  .file-icon {
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
  }

  .file-icon i {
    font-size: 2rem;
  }

  .file-name {
    font-size: 1.8rem;
  }

  .file-meta {
    font-size: 1.2rem;
    gap: 0.8rem;
  }

  .file-category,
  .file-size {
    font-size: 1.5rem;
  }

  .catalogs-info {
    padding: 1.5rem;
  }

  .catalogs-actions {
    flex-direction: row;
    gap: 1.4rem;
  }

  .btn-view-pdf,
  .btn-buy {
    padding: 0.8rem 1rem;
    font-size: 1.5rem;
  }

  .btn-view-pdf i,
  .btn-buy i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .catalogs-grid {
    grid-template-columns: 1fr;
  }

  .file-info-card {
    flex-direction: row;
    text-align: left;
  }

  .file-meta {
    justify-content: flex-start;
  }

  .catalogs-actions {
    flex-direction: row;
  }
  .catalogs-section .section-title {
    font-size: 3rem;
  }

  .catalogs-section-home .section-title {
    font-size: 3rem;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .catalogs-actions {
    /* Yeh line badal di gayi hai: Ab buttons ek line mein aayenge */
    flex-direction: row;
    gap: 0.5rem;
    /* Buttons ko center mein laane ke liye yeh add kar sakte hain (Optional) */
    justify-content: center;
    align-items: center;
  }

  .btn-view-pdf,
  .btn-buy {
    /* Ab har button 50% width lega, jisse woh ek line mein fit ho sakein */
    width: 50%;
    /* Agar aap chahen to 'width: 49%;' aur 'flex-grow: 1;' bhi use kar sakte hain */
    /* Padding adjust karna pad sakta hai agar text bada ho */
    padding: 1rem 0.5rem;
    font-size: 1.4rem; /* Font size bhi thoda chhota kiya */
  }
}

/* Share button styles */
/* Share button styles - positioned in file-info-card */
.file-info-card {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border-color);
  position: relative; /* Added for positioning context */
}

.share-btn {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  margin-left: auto; /* Pushes button to the right */
  flex-shrink: 0; /* Prevents button from shrinking */
}

.share-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.share-btn i {
  color: var(--light-text);
  font-size: 16px;
}

.share-btn:hover i {
  color: var(--secondary-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .share-btn {
    width: 36px;
    height: 36px;
    margin-right: 10px; /* Add some spacing on mobile */
  }

  .share-btn i {
    font-size: 14px;
  }

  .file-info-card {
    padding: 1rem;
  }
}

/* Phone Link CSS */
.phone-link {
  color: var(--light-text);
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--primary-color);
}

/* Email Link CSS */
.email-link {
  color: var(--light-text);
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--primary-color);
}

/* Software Section */
.software-section {
  padding: 8rem 0;
  background-color: var(--dark-bg);
  border-top: 1px solid var(--border-color);
}

.software-section .section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.software-section .section-subtitle {
  font-size: 1.8rem;
  color: var(--light-text);
  margin-top: 1rem;
}

/* Software Products Scroll Container */
.software-products-scroll {
  overflow-x: auto;
  padding: 2rem 0;
  margin: 0 -2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.software-products-scroll::-webkit-scrollbar {
  display: none;
}

.software-products-track {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  min-width: max-content;
}

@media (max-width: 376px) {
  .pagination {
    gap: 1rem;
  }

  .pagination a {
    padding: 0.6rem 1rem;
    font-size: 1.4rem;
  }

  .page-indicator {
    padding: 0.6rem 1rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 351px) {
  .pagination a {
    padding: 0.6rem 1rem;
    font-size: 1.3rem;
  }

  .page-indicator {
    padding: 0.6rem 1rem;
    font-size: 1.3rem;
  }
}

.check-icon {
  color: var(--primary-color);
}

.terms-content h2 span {
  /* yahan apni styling likho */
  color: white;
}

.refund-content h2 span {
  /* yahan apni styling likho */
  color: white;
}

.privacy-content h2 span {
  /* yahan apni styling likho */
  color: white;
}

.product-heading {
  font-size: 36px; /* Heading size */
  color: #1a1a1a; /* Text color */
  font-weight: bold;
}

.product-heading i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-left: 10px;
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
  .product-heading i {
    font-size: 3rem;
    margin-left: 8px;
  }
}

.price span .highlight-gift {
  color: white;
}

/* --- Dedicated Android Download Section Styles --- */
.dedicated-download-section {
    padding: 12rem 0 8rem;
    background-color: var(--dark-bg);
    min-height: 90vh; /* सुनिश्चित करें कि यह पर्याप्त जगह ले */
}

.download-subtitle {
    font-size: 1.8rem;
    color: var(--light-text);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    line-height: 1.6;
}

.apk-download-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    max-width: 1100px;
    margin: 0 auto;
}

.app-mockup {
    flex: 1;
    max-width: 450px;
    text-align: center;
    position: relative;
    padding: 2rem;
    /* मोबाइल पर छिपाने के लिए डिफ़ॉल्ट रूप से विज़िबल */
}

.mockup-frame {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border: 15px solid var(--secondary-color); /* फ़्रेम का लुक */
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 0 5px var(--primary-color);
}

.app-screenshot {
    width: 100%;
    display: block;
    border-radius: 25px; /* अंदर की स्क्रीन का लुक */
}

.download-details {
    flex: 1;
    max-width: 450px;
}

.centered-card {
    padding: 4rem;
    text-align: center;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
}

.centered-card h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
}

.centered-card h2 span {
    color: var(--text-color);
}

.file-size-info {
    font-size: 1.6rem;
    color: var(--light-text);
    margin: 1.5rem 0 3rem;
    display: block;
    font-weight: 500;
}

.file-size-info i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

/* डाउनलोड बटन (CTA) स्टाइलिंग */
.btn-download-apk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 3rem;
    font-size: 2.2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 3rem;
    border-radius: 50px; /* कैप्सूल शेप */
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.btn-download-apk:hover {
    background: #e6b400;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.8);
}

.btn-download-apk i {
    margin-right: 1.5rem;
    font-size: 2.5rem;
}

/* इंस्टॉलेशन निर्देश कार्ड */
.download-instructions {
    text-align: left;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.instruction-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.download-instructions .custom-list li {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 8px;
}

/* सुरक्षा आश्वासन */
.security-assurance {
    text-align: center;
    margin-top: 3rem;
}

.security-assurance i {
    font-size: 2.5rem;
    color: #3DDC84; /* Android Green for safety */
    margin-bottom: 0.5rem;
}

.security-assurance p {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 0;
}


/* --- Responsive Styles for Download Page --- */
@media (max-width: 992px) {
    .apk-download-container {
        flex-direction: column;
        gap: 4rem;
    }
    .app-mockup {
        display: none; /* मोबाइल पर Mockup को छिपा दें ताकि बटन पर फोकस रहे */
    }
    .download-details {
        max-width: 90%;
        padding: 0 1rem;
    }
    .centered-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    .dedicated-download-section {
        padding: 10rem 0 5rem;
    }
    .centered-card h2 {
        font-size: 2.8rem;
    }
    .btn-download-apk {
        font-size: 1.8rem;
        padding: 1.5rem 1rem;
    }
    .btn-download-apk i {
        font-size: 2rem;
    }
    .file-size-info,
    .download-instructions .custom-list li,
    .security-assurance p {
        font-size: 1.4rem;
    }
}


