
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

/* FAQ Page Styles */
/* Styles merged from faq.css */

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-hero {
  text-align: center;
  margin-bottom: 5px !important; /* Reduced from 50px to bring categories closer */
}

.faq-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 2px !important; /* Reduced from 20px */
  text-transform: uppercase;
}

.faq-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #ababab;
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3px !important; /* Reduced from 30px */

}

.category-btn {
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-btn:hover {
  background-color: #444;
}

.category-btn.active {
  background-color: #ffe234;
  color: #000;
}

/* FAQ Search */
.faq-search {
  margin-bottom: 30px; /* Reduced from 40px */
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

#faqSearch {
  flex: 1;
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  background-color: #333;
  color: white;
  font-size: 16px;
  outline: none;
}

#faqSearch::placeholder {
  color: #ababab;
}

#searchBtn {
  background-color: #ffe234;
  color: black;
  border: none;
  border-radius: 50px;
  padding: 0 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

#searchBtn:hover {
  background-color: #ffd700;
}

/* FAQ Content */
.faq-content {
  margin-bottom: 10px; /* Reduced from 60px */
}

.faq-group {
  margin-bottom: 15px; /* Reduced from 50px */
}

.faq-group h2 {
  font-size: 1.8rem;
  margin-bottom: 10px; /* Reduced from 30px */
  color: #ffe234;
  position: relative;
  padding-bottom: 10px;
}

.faq-group h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: #ffe234;
}

.faq-item.search-match {
  border-color: #ffe234;
  box-shadow: 0 0 15px rgba(255, 226, 52, 0.3);
}

.faq-answer p, 
.faq-answer ul,
.faq-answer ol {
  color: #ababab;
  line-height: 1.6;
  margin-bottom: 15px;
 font-size: 1.3rem !important; /* Override the general p styling */
  max-width: none !important; /* Remove width restriction */
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 10px;
}

.faq-answer li {
  margin-bottom: 5px;
font-size: 1.3rem;
}

/* Contact Section */
.faq-contact {
  max-width: 600px;
  margin: 30px auto; /* Reduced from 60px */
}

.contact-card {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  border-top: 4px solid #ffe234;
}

.contact-card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.contact-card p {
  color: #ababab;
  margin-bottom: 30px;
}

.contact-btn {
  display: inline-block;
  background-color: #ffe234;
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.contact-btn:hover {
  background-color: #ffd700;
}

/* FAQ Responsive Adjustments */
@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 2.2rem;
  }
  
  .category-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .faq-group h2 {
    font-size: 1.5rem;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .faq-hero h1 {
    font-size: 1.8rem;
  }
  
  .faq-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .category-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .search-container {
    flex-direction: column;
  }
  
  #searchBtn {
    width: 100%;
    padding: 15px;
  }
}
  
/* Styles merged from index.css */

/* Hero Section */
.hero-section {
  height: auto; /* Reduced height 85vh */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Changed from center to flex-start */
  align-items: center;
  text-align: center;
  padding: 2rem;
  padding-top: 40px; /* Added top padding */
  padding-bottom: 40px;
}

/* Common section styling */
section {
  padding: 100px 20px;
  position: relative;
}

section:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.3);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-heading p {
  font-size: 1.2rem;
  color: #ababab;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  background-color: rgba(0, 0, 0, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1800px;
  margin: 0 auto;
}

.feature-card {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffe234;
}

.feature-card p {
  color: #ababab;
  line-height: 1.6;
}
/* Features Row Layout */
.features-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1800px;
  margin: 0 auto 60px;
  padding: 20px;
}

/* Features Row Layout */
.features-row {
  display: flex;
  align-items: stretch; /* Changed from center to stretch to make equal height */
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 20px;
}

/* Feature Text Styling */
.feature-text {
  flex: 1;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-text h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffe234;
}

.feature-text p {
  color: #ababab;
  line-height: 1.6;
}

/* Feature Video Styling */
.feature-video-wrapper {
  flex: 1;
  min-height: 600px; /* Increased from 500px */
  max-width: 900px; /* Increased max-width for larger size */
  margin: 0 auto; /* Center the video */
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}


.feature-video-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #ffe234;
}

.feature-video {
  width: 100%;
  height: 100%; /* Make video fill the container */
  display: block;
  object-fit: cover; /* Cover the container while maintaining aspect ratio */
}

/* Responsive adjustments for feature video */
@media (max-width: 900px) {
  .features-row {
    flex-direction: column;
  }
  
  .feature-text, 
  .feature-video-wrapper {
    width: 100%;
    max-width: 600px;
    height: 450px; /* Increased for mobile */
    min-height: auto; /* Allow it to scale down on mobile */
    margin: 0 auto;
  }
  
  .feature-video-wrapper {
    margin-top: 30px;
    height: 340px; /* Set explicit height on mobile */
  }
}

/* Features Row Layout */
.features-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px; /* Increased spacing between elements */
  max-width: 1400px; /* Increased from 1200px */
  margin: 0 auto 60px;
  padding: 30px;
}

/* Feature Bullet Styling */
.feature-bullet {
  flex: 1;
  display: flex;
  align-items: flex-start;
  background: transparent; /* Remove background */
  padding: 0; /* Remove padding */
  text-align: left; /* Align text to left */
}

.bullet-icon {
  font-size: 50px;
  color: #ffe234; /* Yellow icon color */
  margin-right: 25px;
  flex-shrink: 0;
}

.bullet-content {
  flex: 1;
}

.bullet-content h3 {
  font-size: 2.1rem;
  margin-bottom: 20px;
  color: #ffe234;
  /*text-transform: uppercase;*/
}

.bullet-content p {
  color: #ababab;
  line-height: 1.7;
  font-size: 1.3rem;
}

/* Feature Video Styling */
.feature-video-wrapper {
  flex: 1;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  min-height: 380px; /* Set minimum height */
}

.feature-video-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #ffe234;
}

.feature-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Section heading with uppercase styling */
.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .features-row {
    gap: 40px; /* Slightly reduce gap on medium screens */
    padding: 20px;
  }
  
  .bullet-icon {
    font-size: 40px;
    margin-right: 20px;
  }
  
  .bullet-content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 900px) {
  .features-row {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  
  .feature-bullet, 
  .feature-video-wrapper {
    width: 100%;
  }
  
  .feature-video-wrapper {
    height: 400px;
    margin-top: 20px;
  }
}

/* View More buttons */
.view-more-container {
  text-align: center;
  margin-top: 50px;
}

.view-more-btn {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s, transform 0.2s;
}

.view-more-btn:hover {
  background-color: #444;
  transform: translateY(-3px);
}

/* Pricing Section */
.pricing-overview {
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  max-width: 1800px;
  margin: 0 auto;
}

.pricing-card-highlight {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  max-width: 350px;
  border: 2px solid #ffe234;
  box-shadow: 0 15px 30px rgba(255, 226, 52, 0.1);
  text-align: center;
}

.pricing-card-header {
  margin-bottom: 25px;
}

.pricing-card-header h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffe234;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

.price span {
  font-size: 1.2rem;
  color: #ababab;
}

.savings {
  color: #4caf50;
  margin-top: 10px;
  font-weight: 500;
}

.pricing-card-body p {
  margin: 15px 0;
  color: #ababab;
}

.pricing-btn {
  display: inline-block;
  background-color: #ffe234;
  color: black;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
  transition: background-color 0.2s, transform 0.2s;
}

.pricing-btn:hover {
  background-color: #ffd700;
  transform: translateY(-3px);
}

/* Testimonials */
.testimonials-section {
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  color: white;
  font-style: italic;
  line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffe234;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
}

.author-info h4 {
  margin: 0 0 5px 0;
  color: white;
}

.author-info p {
  margin: 0;
  color: #ababab;
  font-size: 0.9rem;
}

/* FAQ Section for home page */
.faq-home-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  color: white;
  flex: 1;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 15px;
}

.icon-plus,
.icon-minus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffe234;
  transition: opacity 0.3s, transform 0.3s;
}

.icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
  color: #ababab;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 20px 20px;
}

.faq-item.active .icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .icon-minus {
  opacity: 1;
  transform: rotate(0);
}

/* CTA Section */
.cta-section {
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 80px 20px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  color: #ababab;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-primary-btn {
  background-color: #ffe234;
  color: black;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s, transform 0.2s;
}

.cta-primary-btn:hover {
  background-color: #ffd700;
  transform: translateY(-3px);
}

.cta-secondary-btn {
  background-color: transparent;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid white;
  transition: background-color 0.2s, transform 0.2s;
}

.cta-secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Super compact footer */
/* Footer */
footer {
  background-color: #121212;
  color: #ababab;
  padding: 30px 10px 10px;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 180px; /* Increase spacing between sections */
  margin-bottom: 20px;
}

.footer-section h3 {
  color: white;
  margin-bottom: 0px;
  font-size: 1.1rem; /* Increase font size */
  font-weight: 500;
  font-style: sans-serif;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
  font-style: sans-serif;
}

.footer-section ul li a {
  color: #ababab;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: #ffe234;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #333;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 88px;
  margin-right: 10px;
}

.footer-logo span {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.copyright p {
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0;
  align-item: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
 body {
  background-color: #121212;
  background-image: url('images/BG1.png'); /* Replace with your image filename */
  background-size: cover; /* Cover the entire viewport */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Don't repeat the image */
  background-attachment: fixed; /* Keep the image fixed when scrolling */
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
  
/* Add this if you need a dark overlay for better text readability */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: -1; /* Place it behind the content */
}

/* Make sure other content is positioned correctly */
nav, main {
  position: relative; /* Ensures content appears above the overlay */
}
  /* Navigation styles */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .logo img {
    margin-right: 0.5rem;
    width: 80px;  /* this is for company logo size*/
    height: 52px;
  }

.logo-text {
  text-decoration: none; /* Removes the underline */
  color: #ffffff; /* Changes text color to white - adjust to your preferred color */
}

/* Optional hover effect */
.logo-text:hover {
  color: #ffd700 /* Orange color on hover - adjust as needed */
}
  
  .nav-links {
    margin-left: auto;  /* 30rem; this is for header button move to the right*/
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.2s;
    font-size: 15px;
  }
  
  .nav-links a:hover {
    color: #ffffff;
  }
  
  .new-badge {
    background-color: #ffe234;
    color: #000000;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
    margin-left: 0.25rem;
  }
  
  .auth-links {
    display: flex;
    gap: 1rem;
  }
  
  .login {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
  }
  
  .signup {
    background-color: #ffe234;
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
  }
  
  /* Main content styles */
  main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    overflow-x: hidden;
  }

/*main.detail_box {
  /*color: #000000;  for words on main page*/
  color: #ffffff;
  padding-right: 30px;
}

main.detail_box h1 {
  text-transform: uppercase;
  font-weight: bold;
}

main.detail_box p {
  margin-top: 10px;
 font-size: 2.5rem;
 font-weight: bold;
}*/
  
  .promo-button {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2.5rem;
    display: inline-block;
    cursor: pointer;
  }
    h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    line-height: 1.3;
   text-transform: uppercase;
  }
 p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    line-height: 1.3;
  }
  
  .download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s;
  }
  
  .mac-btn {
    background-color: #000000;
    color: #FFD700;
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.7); /* orange shadow*/
  }
  
  .windows-btn {
    background-color: #000000;
   /* border: 1px solid rgba(255, 255, 255, 0.2);*/
    color: #ffffff;
   box-shadow: 0 4px 8px rgba(255, 255, 255, 0.7); /* white shadow */
  }
  
  .download-btn:hover {
    transform: translateY(-2px);
  }

/* Video Showcase Styles */
.video-showcase {
  padding-top: 0 !important; /* Override the general section padding */
  padding: 0px 20px 60px;
  max-width: 1600px;  /*Video is controled by this width*/
  margin: 0 auto;
   height: auto; /* Set your desired height here */
  overflow: hidden;
}

.video-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  margin-top: 20px;
  position: relative;
}

.video-wrapper {
  flex: 1 1 45%;
  min-width: 500px; /* Increase from 320px, screen size controled by this one*/
  max-width: 900px; /* Add a max width if needed */
   height: 600px; /* Set your desired height here */
  position: relative;
  transform: translateX(-150%); /* Start off-screen */
  opacity: 0;
}

.video-right {
  transform: translateX(150%); /* Start off-screen on the right */
}

.video-inner {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
   height: 100%; /* Ensure it fills the wrapper */
}

.video-inner:hover {
  transform: translateY(-8px);
  border-color: #ffe234;
}

.showcase-video {
  width: 100%;
  height: 100%; /* Make video fill the container */
  display: block;
   object-fit: contain; /* Maintain aspect ratio while filling container */
}

.video-title {
  padding: 15px;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid #ffe234;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

/* Animation for sliding in */
@keyframes slideInLeft {
  from {
    transform: translateX(-150%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(150%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Animation will be applied after page load with JavaScript */
.video-wrapper.animate-left {
  animation: slideInLeft 1.2s ease-out forwards;
}

.video-wrapper.animate-right {
  animation: slideInRight 1.2s ease-out forwards;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1200px) {
  .video-wrapper {
    min-width: 450px; /* Slightly smaller but still large */
    height: 500px;
  }
  
  .video-container {
    gap: 25px;
  }
  
  .video-title {
    font-size: 1.1rem;
    padding: 12px;
  }
}

@media (max-width: 900px) {
  .video-showcase {
    padding: 0px 15px 40px;
    height: auto; /* Allow container to grow with content */
  }
  
  .video-container {
    flex-direction: column; /* Stack videos vertically */
    align-items: center;
    gap: 30px;
  }
  
  .video-wrapper {
    flex: none;
    width: 90%; /* Use percentage for responsive width */
    max-width: 600px; /* Larger max-width for tablets */
    min-width: unset; /* Remove min-width constraint on mobile */
    height: 400px; /* Reasonable height for mobile */
  }
  
  .video-title {
    font-size: 1rem;
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .video-showcase {
    padding: 0px 10px 30px;
  }
  
  .video-wrapper {
    width: 95%; /* Almost full width on small screens */
    height: 300px; /* Smaller height for phones */
    max-width: 100%;
  }
  
  .video-title {
    font-size: 0.9rem;
    padding: 8px;
  }
  
  .video-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .video-wrapper {
    height: 250px; /* Even smaller for very small phones */
  }
  
  .video-title {
    font-size: 0.8rem;
    padding: 6px;
  }
}

  /* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
 /* Updated Modal Styles for Dynamic Resizing */

/* Replace your existing .modal-container with this: */
.modal-container {
  background-color: #1a1a1a;
  width: 90vw; /* Use viewport width for responsive sizing */
  max-width: 550px; /* Maximum width on large screens */
  min-width: 320px; /* Minimum width for very small screens */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 20px; /* Add margin for breathing room */
  max-height: 90vh; /* Prevent modal from being taller than viewport */
  overflow-y: auto; /* Allow scrolling if content is too tall */
}

/* Responsive breakpoints for different screen sizes */
@media (max-width: 768px) {
  .modal-container {
    width: 95vw;
    max-width: none;
    margin: 10px;
    padding: 25px;
  }
  
  .modal-header h2 {
    font-size: 24px; /* Slightly smaller on tablets */
  }
  
  .subscription-heading {
    font-size: 20px;
  }
  
  /* Make plan options stack vertically on smaller screens */
  .horizontal-plans .plan-option {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .modal-container {
    width: 98vw;
    margin: 5px;
    padding: 20px;
    max-height: 95vh; /* Use more of the screen height on mobile */
  }
  
  .modal-header h2 {
    font-size: 20px; /* Smaller heading on phones */
  }
  
  .subscription-heading {
    font-size: 18px;
  }
  
  /* Adjust form elements for mobile */
  .form-control {
    padding: 12px 16px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
  
  .submit-button {
    padding: 12px;
    font-size: 16px;
  }
  
  .plan-option {
    padding: 12px;
  }
  
  .plan-name {
    font-size: 16px;
  }
  
  .plan-price {
    font-size: 14px;
  }
  
  .plan-save {
    font-size: 12px;
  }
}

@media (max-width: 320px) {
  .modal-container {
    width: 100vw;
    margin: 0;
    padding: 15px;
    border-radius: 0; /* Remove border radius on very small screens */
    max-height: 100vh;
  }
  
  .modal-header h2 {
    font-size: 18px;
  }
  
  .form-control {
    padding: 10px 14px;
  }
}

/* Adjust modal overlay for better mobile experience */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 10px; /* Add padding to prevent edge-to-edge modals */
  }
}

/* Make payment element container responsive */
#payment-element-container {
  background-color: #222;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  min-height: 80px;
}

@media (max-width: 480px) {
  #payment-element-container {
    padding: 15px;
  }
}
  .modal-header {
    margin-bottom: 25px;
  }
  
  .modal-header h2 {
    color: white;
    font-size: 32px;
    margin: 0;
    text-align: center;
  }
  
  .social-login {
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .social-login:hover {
    background-color: #333;
  }
  
  .social-login img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
  }
  
  .social-login span {
    color: white;
    font-size: 18px;
  }
  
  .divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #666;
  }
  
  .divider::before,
  .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #444;
  }
  
  .divider::before {
    margin-right: 15px;
  }
  
  .divider::after {
    margin-left: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-control {
    width: 100%;
    background-color: #222;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 16px;
    color: white;
    box-sizing: border-box;
  }
  
  .submit-button {
    width: 100%;
    background-color: #777;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.2s;
  }
  
  .submit-button:hover {
    background-color: #888;
  }
  
  .footer-link {
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #333;
    border-radius: 50px;
    transition: background-color 0.2s;
  }
  
  .footer-link:hover {
    background-color: #222;
  }

  .google-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: block;
  }

  /* Payment Section Styling */
.payment-section {
  margin: 20px 0;
}

.payment-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.plan-selection {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.plan-selection label {
  display: flex;
  align-items: center;
  background-color: #222;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.plan-selection label:hover {
  background-color: #333;
}

.plan-selection input[type="radio"] {
  margin-right: 15px;
}

.plan-details {
  display: flex;
  flex-direction: column;
}

.plan-name {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.plan-price {
  font-size: 14px;
  color: #ffe234 !important; /* #aaaaaa; */
}

.plan-save {
  font-size: 12px;
  color: #aaaaaa !important;/* #ffe234;*/
  margin-top: 2px;
}

.card-element-container {
  background-color: #222;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

#card-element {
  padding: 10px 0;
}

#card-errors {
  color: #fa755a;
  font-size: 14px;
  margin-top: 10px;
}

/* Update the submit button to be more subscription-focused */
.submit-button {
  background-color: #ffe234;
  color: #000000;
}

.submit-button:hover {
  background-color: #ffd700;
}

/* Make the modal container slightly larger to accommodate payment form */
.modal-container {
  max-width: 500px;
  padding: 30px;
}

.subscription-heading {
    font-size: 24px;
    margin: 30px 0 20px;
    color: #ffffff;
    font-weight: 600;
  }
  
  .plan-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .plan-option {
    display: flex;
    align-items: center;
    background-color: #333;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .plan-option:hover {
    background-color: #444;
  }
  
  .plan-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #4a7dff;
  }
  
  .plan-content {
    display: flex;
    flex-direction: column;
  }
  
  .plan-name {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
  }
  
  .plan-price {
    font-size: 16px;
    color: #aaaaaa;
    margin-top: 2px;
  }
  
  .plan-save {
    font-size: 14px;
    color: #ffe234;
    margin-top: 3px;
  }
  
  /* Payment Element Styling */
  #payment-element-container {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .payment-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .payment-section-header svg {
    color: #4caf50;
    margin-right: 10px;
  }
  
  .payment-field {
    margin-bottom: 15px;
  }
  
  .payment-field-label {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
  }
  
  .payment-input {
    width: 100%;
    background-color: #333;
    border: none;
    border-radius: 5px;
    padding: 15px;
    color: white;
    font-size: 16px;
  }
  
  .card-number-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    border-radius: 5px;
    padding-right: 12px;
  }
  
  .card-number-field input {
    flex-grow: 1;
    background: transparent;
    border: none;
    width: calc(100% - 190px); /* Reserve space for card icons */
    padding-right: 10px; /* Add padding between input text and icons */
    box-sizing: border-box;
  }

  /* Stripe Elements Container */
#payment-element-container {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
  }
  
  #payment-element {
    width: 100%;
    min-height: 80px; /* Give some space for the element to render */
    margin-bottom: 5px;
  }
  
  /* Error message styling */
  .error-message {
    color: #ff5252;
    font-size: 14px;
    padding: 5px 0;
    min-height: 20px;
  }
  
  /* Loading state for the submit button */
  .submit-button:disabled {
    background-color: #888;
    cursor: not-allowed;
    opacity: 0.7;
  }
  
  /* Provide feedback during payment processing */
  .processing {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .processing:before {
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 3px solid #ffffff;
    border-top: 3px solid #ffe234;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .payment-load-button {
    background-color: #555;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    margin-bottom: 15px;
    cursor: pointer;
    display: block;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.2s;
  }
  
  .payment-load-button:hover {
    background-color: #666;
  }
  
  .payment-load-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 226, 52, 0.5);
  }
  
  /* Modal navigation */
  .modal-nav {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .modal-back-btn {
    background: none;
    border: none;
    color: #ababab;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
  }
  
  .modal-back-btn:hover {
    color: #ffffff;
  }
  
  /* Ensure modals don't both show at the same time */
  #paymentModal {
    display: none;
  }
  
  /* When displaying payment modal, make it flex */
  #paymentModal.active {
    display: flex;
  }

  /* Login modal specific styles */
.modal-footer {
    margin-top: 20px;
    text-align: center;
    color: #ababab;
  }
  
  .modal-footer a {
    color: #ffe234;
    text-decoration: none;
  }
  
  .modal-footer a:hover {
    text-decoration: underline;
  }
  
  .modal-footer p {
    margin: 10px 0;
  }
  
  /* Add styles for the login error message */
  #loginError {
    color: #ff5252;
    font-size: 14px;
    padding: 5px 0;
    min-height: 20px;
    text-align: center;
  }
  
  /* Styling for both modal headers */
  #loginModal h2, 
  #signupModal h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
  }

  /* Styles for the logout button on home page */
.logout {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: #333;
    border-radius: 2rem;
    transition: background-color 0.2s;
  }
  
  .logout:hover {
    background-color: #444;
  }
  
  /* Style for profile link in header */
  .profile-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
  }
  
  .profile-link:hover {
    color: #ffe234;
  }
  
  /* Add responsive adjustments */
  @media (max-width: 768px) {
    .auth-links {
      gap: 0.5rem;
    }
    
    .profile-link, 
    .logout {
      padding: 0.4rem 0.8rem;
      font-size: 0.9rem;
    }
  }content: space-between;
    align-items: center;
  }
  
  .card-icons {
    display: flex;
    gap: 5px;
  }
  
  .card-icons img {
    height: 24px;
  }
  
  .expiry-cvv-container {
    display: flex;
    gap: 15px;
  }
  
  .expiry-field, .cvv-field {
    flex: 1;
  }
  
  .location-fields {
    display: flex;
    gap: 15px;
  }
  
  .country-field, .zip-field {
    flex: 1;
  }
  
  .submit-button {
    width: 100%;
    background-color: #ffe234;
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
  }
  
  .submit-button:hover {
    background-color: #ffd700;
  }
  
  /* Make the modal container slightly larger to accommodate payment form */
  .modal-container {
    max-width: 550px;
    padding: 30px;
    background-color: #1a1a1a;
  }

  /* Make plan selection horizontal */
  .horizontal-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .horizontal-plans .plan-option {
    flex: 1 1 45%; /* Change to 45% to fit 2 items per row */
    min-width: 120px;
  }
  
  /* Style the payment section header to match the design */
  .payment-section-header {
    display: flex;
    align-items: center;
    margin: 15px 0;
  }
  
  .payment-section-header svg {
    color: #4caf50;
    margin-right: 10px;
  }
  
  .payment-section-header span {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .horizontal-plans .plan-option {
      flex: 1 1 100%; /* Stack vertically on small screens */
    }
  }

  .card-icons {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-left: 10px; /* Add margin to separate from input text */
  }
  
  .card-icon {
    width: 40px;
    height: 25px;
    background-color: #242731;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    flex-shrink: 0; /* Prevent icons from shrinking */
  }
  
  .visa {
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2248%22%20height%3D%2248%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M19.5%2020h-3l1.9-12h3l-1.9%2012z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M27.8%208.2c-.6-.2-1.6-.5-2.8-.5-3%200-5.2%201.6-5.2%203.8%200%201.7%201.5%202.6%202.7%203.1%201.2.6%201.6%201%201.6%201.5%200%20.8-1%201.1-1.8%201.1-1.2%200-1.9-.2-2.9-.6l-.4-.2-.4%202.7c.7.3%202.1.6%203.5.6%203.3%200%205.4-1.6%205.4-4%200-1.3-.8-2.3-2.6-3.2-1.1-.5-1.7-.9-1.7-1.4%200-.5.6-1%201.8-1%201%200%201.7.2%202.3.5l.3.1.4-2.5z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M31%208H29c-.8%200-1.4.2-1.7%201l-4.9%2011h3.5l.7-1.8h4.2l.4%201.8H34L31%208zm-2.8%207.6l1.3-3.4.4-1%20.2%201%20.8%203.4h-2.7z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M14.1%208l-3.2%208-.4-1.8c-.6-2-2.5-4.2-4.7-5.3L9%2020h3.5L17.7%208h-3.6z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E');
  }
  
  .mastercard {
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2248%22%20height%3D%2248%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2224%22%20r%3D%228%22%20fill%3D%22%23FF5F00%22%2F%3E%3Cpath%20d%3D%22M17%2016c-3.2%200-6%201.8-7.5%204.5%203%203.8%208.5%204.3%2012.2%201.3.4-.3.8-.6%201.1-1-1.8-3.1-5.1-4.9-8.6-4.8h2.8z%22%20fill%3D%22%23EB001B%22%2F%3E%3Cpath%20d%3D%22M31%2024c0%204.4-3.6%208-8%208-2.3%200-4.5-1-6-2.7%203-3.8%208.5-4.3%2012.2-1.3.4.3.8.6%201.1%201%20.5-1.5.7-3.2.7-4.8v-.2z%22%20fill%3D%22%23F79E1B%22%2F%3E%3C%2Fsvg%3E');
  }
  
  .amex {
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2248%22%20height%3D%2248%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%2248%22%20height%3D%2248%22%20rx%3D%224%22%20fill%3D%22%232671B9%22%2F%3E%3Cpath%20d%3D%22M24%2018l1-2.5%201%202.5h-2zM38%2017v-1h-2v-1h2v-1h-2v-1h2v-1h-3v5h3zM33%2017h1v-5h-1l-2%203-2-3h-1v5h1v-3.5l1.5%202.5h1l1.5-2.5V17zM25%2012v5h3v-1h-2v-1h2v-1h-2v-1h2v-1h-3zM20%2017v-5h-1v3.5L16.5%2012h-2v5h1v-3.5l2.5%203.5h2zM11%2014.5c0-1.6%201.3-2.5%203-2.5h1v5h-1c-1.7%200-3-1-3-2.5zm3%201.5v-3c-.8%200-1.5.7-1.5%201.5S13.2%2016%2014%2016z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E');
  }
  
  .discover {
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2248%22%20height%3D%2248%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20width%3D%2248%22%20height%3D%2248%22%20rx%3D%224%22%20fill%3D%22%23FFFFFF%22%2F%3E%3Cpath%20d%3D%22M34%2024c0-3-2-5-5-5h-5v10h5c3%200%205-2%205-5z%22%20fill%3D%22%23FF6B00%22%2F%3E%3Cpath%20d%3D%22M11%2024.5c0-1.4%201.1-2.5%202.5-2.5s2.5%201.1%202.5%202.5-1.1%202.5-2.5%202.5S11%2025.9%2011%2024.5zM21%2022v5h-1v-3l-1.5%203h-1L16%2024v3h-1v-5h1.5l1.5%203.5%201.5-3.5H21z%22%20fill%3D%22%23231F20%22%2F%3E%3C%2Fsvg%3E');
  }
  
  .card-number-field {
    display: flex;
    justify-


    /* Forgot Password and Reset Password Styles */
.reset-password-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.form-container {
  max-width: 500px;
  width: 100%;
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.message {
  margin: 15px 0;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

.error-message {
  color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.1);
  border-left: 3px solid #e74c3c;
}

.success-message {
  color: #2ecc71;
  background-color: rgba(46, 204, 113, 0.1);
  border-left: 3px solid #2ecc71;
}

.form-text {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
  display: block;
}
/* Specific fix for hamburger menu and close button */

/* Target the hamburger menu specifically */
.hamburger,
.hamburger-menu,
.menu-toggle,
.nav-toggle,
.mobile-menu-btn,
[class*="hamburger"],
[class*="menu-toggle"],
[aria-label*="menu"] {
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: all !important;
}

/* Target any close buttons in the header */
.close,
.close-btn,
.modal-close,
[class*="close"],
[aria-label*="close"] {
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: all !important;
}

/* Make sure the entire navigation bar is above modal */
header,
.header,
.navbar,
.nav-container {
  position: relative !important;
  z-index: 9998 !important;
}

/* Specifically for mobile screens */
@media (max-width: 768px) {
  /* Override modal overlay to not block header interactions */
  body.modal-open .modal-overlay {
    top: 80px !important; /* Adjust based on your header height */
  }
  
  /* Alternative approach: exclude header area from modal overlay */
  .modal-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px; /* Adjust to your header height */
    pointer-events: none;
    z-index: 9999;
  }
  
  /* Ensure header elements can be clicked */
  header *,
  .header *,
  nav *,
  .navbar * {
    position: relative;
    z-index: 9999 !important;
  }
}

/* If you have specific class names for your hamburger menu, add them here */
/* Example - replace with your actual class names: */
.your-hamburger-class,
.your-close-button-class {
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: all !important;
}