/* Global Styles */
:root {
  --primary-color: #760f0f;
  --primary-dark: #760f0f;
  --primary-light: #a42626;
  --secondary-color: #ebc679;
  --secondary-dark: #f57c00;
  --secondary-light: #ffb74d;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --bg-color: #f9f9f9;
  --bg-light: #fff;
  --bg-dark: #f0f0f0;
  --border-color: #ddd;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ffc107;
  --info-color: #2196f3;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --primary-color: #c62828;
  --primary-dark: #8e0000;
  --primary-light: #ff5f52;
  --secondary-color: #ffb74d;
  --secondary-dark: #ff9800;
  --secondary-light: #ffe97d;
  --text-color: #f5f5f5;
  --text-light: #e0e0e0;
  --text-lighter: #bdbdbd;
  --bg-color: #121212;
  --bg-light: #1e1e1e;
  --bg-dark: #0a0a0a;
  --border-color: #333;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  position: relative;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto;
  border-radius: 2px;
}

/* Header Styles */
.header {
  background-color: var(--bg-dark);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
 
}

.logo {
  display: flex;
  align-items: center;
}

.logo-pic {
  height: 60px;
  transition: var(--transition);
}

.navbar {
  display: flex;
}

.navbar-list {
  display: flex;
  align-items: center;
}

.navbar-item {
  margin-left: 20px;
  position: relative;
}

.navbar-link {
  font-weight: 600;
  padding: 8px 12px;
  transition: var(--transition);
  position: relative;
}

.navbar-link:hover {
  color: var(--primary-color);
}

.navbar-link.active {
  color: var(--primary-color);
}

.navbar-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

/* Theme Toggle Styles */
.theme-toggle {
  display: flex;
  align-items: center;
  margin-left: 20px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: var(--transition);
}

.theme-toggle:hover {
  background-color: var(--bg-dark);
}

.theme-toggle i {
  font-size: 1.2rem;
  color: var(--text-color);
  transition: var(--transition);
}

.theme-toggle .dark-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .light-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .dark-icon {
  display: block;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  color: var(--text-color);
  padding: 8px 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  align-items: center;
}

.dropbtn i {
  margin-left: 5px;
  transition: var(--transition);
}

.dropdown:hover .dropbtn {
  color: var(--primary-color);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-light);
  min-width: 200px;
  box-shadow: var(--shadow);
  z-index: 1;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.dropdown-content a {
  color: var(--text-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: var(--bg-dark);
  color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

/* Mobile Menu */
.menu-open,
.menu-close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  background: linear-gradient(
    135deg,
    var(--bg-dark) 0%,
    var(--border-color) 100%
  );
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary-color);
  color: white;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex: 1;
}

.step-content h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  margin-top: 40px;
}

.testimonials-slider::-webkit-scrollbar {
  height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
  background: var(--bg-dark);
  border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.testimonial-card {
  min-width: 350px;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* CTA Section */
.cta {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Styles */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  width: 20px;
  text-align: center;
  color:white;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Page Content Styles */
.page-content {
  padding: 120px 0 60px;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
}

.breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* About Section */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content h2 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.about-content h3 {
  margin: 30px 0 15px;
  color: var(--primary-dark);
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-image {
  margin: 40px 0;
  text-align: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: 400px;
  object-fit: cover;
}

.highlight {
  background-color: rgba(106, 27, 154, 0.1);
  padding: 20px;
  border-left: 4px solid var(--primary-color);
  margin: 30px 0;
  font-style: italic;
}

.cta-box {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 40px;
  text-align: center;
}

/* Terms, Privacy, Refund Sections */
.terms-content,
.policy-content {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.terms-logo,
.policy-logo {
  text-align: center;
  margin-bottom: 30px;
}

.terms-logo img,
.policy-logo img {
  height: 50px;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
}

.last-updated {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.terms-group,
.policy-section {
  margin-bottom: 30px;
}

.terms-group h3,
.policy-section h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-size: 1.3rem;
}

.terms-group p,
.policy-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.terms-group ul,
.policy-section ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.terms-group ul li,
.policy-section ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.terms-group ul li::before,
.policy-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.terms-group ol,
.policy-section ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

.terms-group ol li,
.policy-section ol li {
  margin-bottom: 8px;
}

address {
  font-style: normal;
  margin-bottom: 15px;
}

address p {
  margin-bottom: 5px;
}

.terms-footer,
.policy-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
}

/* Hyper Guidelines */
.guidelines-content {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guidelines-logo {
  text-align: center;
  margin-bottom: 30px;
}

.guidelines-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.guidelines-logo h2 {
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.guidelines-logo .subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
}

.intro-text {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.guideline-section {
  margin-bottom: 30px;
}

.guideline-section h3 {
  margin-bottom: 15px;
  color: var(--primary-dark);
  font-size: 1.3rem;
}

.guideline-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.guideline-section ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.guideline-section ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.guideline-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.acknowledgement {
  background-color: rgba(106, 27, 154, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: center;
  font-style: italic;
}

.guidelines-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
}

.guidelines-footer p:first-child {
  margin-bottom: 10px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  padding-right: 20px;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.contact-info p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.info-content p,
.info-content a {
  color: var(--text-light);
  transition: var(--transition);
}

.info-content a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(106, 27, 154, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.map-section {
  margin-top: 60px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-section {
  margin-top: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.faq-item {
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background-color: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--bg-dark);
}

.faq-question i {
  transition: var(--transition);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-answer ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.faq-answer ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.faq-answer ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* Pricing Section */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}

.tab-btn {
  padding: 10px 20px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  background-color: var(--bg-dark);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pricing-tab-content {
  display: none;
}

.pricing-tab-content.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.pricing-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 2px solid var(--primary-color);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.price {
  margin: 15px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.currency {
  font-size: 1.2rem;
  margin-top: 5px;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 5px;
}

.period {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 15px;
}

.pricing-header p {
  color: var(--text-light);
}

.pricing-features {
  padding: 30px;
}

.pricing-features ul {
  margin-bottom: 0;
}

.pricing-features ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features ul li i {
  color: var(--primary-color);
  margin-top: 3px;
}

.pricing-features ul li:last-child {
  margin-bottom: 0;
}

.pricing-footer {
  padding: 0 30px 30px;
  text-align: center;
}

.pricing-faq {
  margin-top: 60px;
}

.pricing-faq h3 {
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-dark);
}

.cta-section {
  text-align: center;
  margin-top: 60px;
}

.cta-section h2 {
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.cta-section p {
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.faq-progress {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: var(--bg-dark);
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--success-color);
  border-radius: 5px;
  transition: width 0.5s ease;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-light);
}

.completed {
  color: var(--success-color);
  font-weight: 600;
}

.faq-completion {
  background-color: rgba(76, 175, 80, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-completion h2 {
  margin-bottom: 10px;
  color: var(--success-color);
}

.faq-completion .trophy {
  font-size: 2rem;
  display: inline-block;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

.faq-accordion {
  margin-bottom: 40px;
}

.faq-item {
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 15px;
}

.faq-header {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.faq-status {
  width: 24px;
  height: 24px;
  background-color: rgba(76, 175, 80, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.faq-status i {
  color: var(--success-color);
  font-size: 0.8rem;
}

.faq-question {
  flex: 1;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-answer ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.faq-answer ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.faq-answer ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.faq-nav {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 0.9rem;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

.faq-cta p {
  margin-bottom: 20px;
  color: var(--text-light);
}

/* Version Choice Section */
.version-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.version-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 40px;
  transition: var(--transition);
  position: relative;
}

.version-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.version-card.recommended {
  border: 2px solid var(--primary-color);
}

.recommended-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.version-icon {
  width: 80px;
  height: 80px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 2rem;
  transition: var(--transition);
}

.version-card:hover .version-icon {
  background-color: var(--primary-color);
  color: white;
}

.version-card h3 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.version-card p {
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-light);
}

.version-features {
  margin-bottom: 30px;
}

.version-features ul {
  margin-bottom: 0;
}

.version-features ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.version-features ul li i {
  color: var(--primary-color);
  margin-top: 3px;
}

.version-features ul li:last-child {
  margin-bottom: 0;
}

.version-cta {
  text-align: center;
}

.version-comparison {
  margin: 60px 0;
}

.version-comparison h3 {
  margin-bottom: 15px;
  text-align: center;
  color: var(--primary-dark);
}

.version-comparison p {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table {
  overflow-x: auto;
  margin-bottom: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--bg-dark);
}

.comparison-table tr:hover {
  background-color: rgba(106, 27, 154, 0.05);
}

.version-forms {
  margin-top: 60px;
}

.signup-form {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 1200px;
  margin: 0 auto;
}

.signup-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-dark);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox input {
  width: auto;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: normal;
}

.form-group.checkbox label a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Login Section */
.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  
  margin: 0 auto;
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.login-image {
  height: 100%;
}

.login-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-form {
  padding: 40px;
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-logo {
  height: 50px;
  margin-bottom: 20px;
}

.login-header h2 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.login-header p {
  color: var(--text-light);
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-light);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.remember-me input {
  width: auto;
}

.forgot-password {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.forgot-password:hover {
  color: var(--primary-dark);
}

.login-footer {
  margin-top: 30px;
  text-align: center;
}

.login-footer p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.login-footer a {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.login-footer a:hover {
  color: var(--primary-dark);
}

.social-login p {
  margin-bottom: 15px;
  color: var(--text-light);
  position: relative;
}

.social-login p::before,
.social-login p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background-color: var(--border-color);
}

.social-login p::before {
  left: 0;
}

.social-login p::after {
  right: 0;
}

.social-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.social-btn.google {
  background-color: #f1f1f1;
  color: var(--text-color);
}

.social-btn.google:hover {
  background-color: #e0e0e0;
}

.social-btn.facebook {
  background-color: #3b5998;
  color: white;
}

.social-btn.facebook:hover {
  background-color: #344e86;
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-in {
  opacity: 0;
  transform: translateX(20px);
  animation: slideIn 0.8s ease forwards 0.3s;
}

.animate-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.animate-card:nth-child(1) {
  animation-delay: 0.1s;
}

.animate-card:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-card:nth-child(3) {
  animation-delay: 0.3s;
}

.animate-card:nth-child(4) {
  animation-delay: 0.4s;
}

.animate-step {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.animate-step:nth-child(1) {
  animation-delay: 0.1s;
}

.animate-step:nth-child(2) {
  animation-delay: 0.3s;
}

.animate-step:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .version-cards {
    grid-template-columns: 1fr;
  }

  .login-container {
    grid-template-columns: 1fr;
  }

  .login-image {
    display: none;
  }
}

@media (max-width: 768px) {
 
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%; /* Changed from 100vh to 100% */
    background-color: var(--bg-light);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1001;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    overflow-y: auto; /* Add scroll if content is taller than screen */
  }

  /* Ensure the header itself doesn't take full height */
  .header {
    height: auto;
    min-height: 60px; /* Adjust as needed */
  }

  /* Make sure the logo doesn't push header height */
  .logo-pic {
    height: 50px; /* Smaller logo in mobile */
    transition: var(--transition);
  }


  .navbar.active {
    right: 0;
  }

  .navbar-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    width: 100%;
  }

  .navbar-item {
    margin: 0 0 15px 0;
    width: 100%;
  }

  .navbar-link {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .theme-toggle {
    margin: 15px 0;
    padding: 10px 0;
    justify-content: flex-start;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
    opacity: 1;
    transform: none;
    width: 100%;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown.active .dropbtn i {
    transform: rotate(180deg);
  }

  .menu-open,
  .menu-close {
    display: block;
  }

  .menu-close {
    display: block;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 280px;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 60px 0;
  background-color: var(--bg-color);
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* FAQ Progress */
.faq-progress {
  margin-bottom: 40px;
}

.progress-bar {
  height: 6px;
  background-color: var(--bg-dark);
  border-radius: 3px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 14px;
}

/* FAQ Completion Message */
.faq-completion {
  display: none;
  background-color: var(--primary-light);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.faq-completion h2 {
  margin-top: 0;
  color: white;
}

.faq-completion .trophy {
  font-size: 1.5em;
  vertical-align: middle;
  margin-left: 10px;
}

/* FAQ Accordion */
.faq-accordion {
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: var(--bg-light);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}

.faq-header {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:not(.active) .faq-header:hover {
  background-color: var(--bg-dark);
}

.faq-status {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 18px;
}

.faq-question {
  flex: 1;
  margin: 0;
  font-weight: 600;
  color: var(--text-color);
  font-size: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: var(--transition);
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 20px 20px 55px;
}

.faq-answer p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.faq-answer ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-nav {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed var(--border-color);
  color: var(--text-lighter);
  font-size: 14px;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  padding: 30px 0;
}

.faq-cta p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Dark Theme Adjustments */
[data-theme="dark"] .faq-item {
  background-color: var(--bg-light);
}

[data-theme="dark"] .faq-item:not(.active) .faq-header:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .faq-completion {
  background-color: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-header {
    padding: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 15px 15px 15px;
  }

  .faq-status {
    margin-right: 10px;
  }
}

/* ==================== */
/* Particle Hero Section */
/* ==================== */
.particle-hero {
  position: relative;
  height: 89vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark);
  overflow: hidden;
  color: var(--text-color);
}

.particle-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.particle-hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color);
  text-shadow: var(--shadow);
}

.particle-hero-title span {
  color: var(--primary-color);
  position: relative;
}

.particle-hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  color: var(--text-light);
}

.particle-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Particle Animation */
.particle-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: particle-rotate 14s infinite linear;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  opacity: 0;
}

@keyframes particle-rotate {
  100% {
    transform: rotateY(360deg) rotateX(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .particle-hero-title {
    font-size: 2.5rem;
  }

  .particle-hero-text {
    font-size: 1rem;
  }

  .particle-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
