/* Base styles */
:root {
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-50: #eff6ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header.fixed {
  position: fixed;
  width: 100%;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  z-index: 50;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

/* Order Button */
.order-btn {
  background: #f97316;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.order-btn:hover {
  background: #ea580c;
  transform: scale(1.05);
}

.logo img {
  margin-left: -40px;
  width: 170px; 
  height: auto; 
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
      display: flex;
      gap: 2rem;
  }
}

.desktop-nav a {
  color: #4b5563;
  text-decoration: none;
  transition: all 0.3s;
}

.desktop-nav a:hover {
  color: var(--blue-600);
  transform: scale(1.05);
}

.menu-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-toggle {
      display: none;
  }
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.mobile-menu .order-btn {
  display: block; /* Ensures button is visible */
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

.mobile-menu.open {
  max-height: 24rem;
  padding: 1rem; 
  border-top: 1px solid #eee;  
  background: white;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.3s;
}

.mobile-menu a:hover {
  color: var(--blue-600);
  background: #f9fafb;
  transform: translateX(0.5rem);
}

/* Hero Section */
.hero {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom right, var(--blue-50), white);
  position: relative;
  overflow: hidden;
}

.hero-silhouette {
  position: relative;
  width: 503px;
  height: 496px;
  margin-left: 7rem;
}

.silhouette-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*
#three-scene {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  pointer-events: none;
}
*/
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
      flex-direction: row;
  }
  
  .hero-text {
      width: 50%;
  }
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out;
}

@media (min-width: 768px) {
  .hero h1 {
      font-size: 3rem;
  }
}

.hero p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
  animation: slideUp 1s ease-out;
}

/* Base CTA Button */
.hero-cta .cta-button {
  position: relative;
  z-index: 3;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0.5rem;
  display: inline-block;
  pointer-events: auto;
}

/* Get Started Button */
.hero-cta .start-btn {
  background: #f97316 !important; /* Force apply */
  color: white !important;
}

.hero-cta .start-btn:hover {
  background: #ea580c !important;
  transform: scale(1.05);
  animation: bounce 2s infinite;
}

/* View Samples Button */
.hero-cta .samples-btn {
  background: transparent !important;
  border: 2px solid #2563EB !important; /* Force apply */
  color: #2563EB !important;
}

.hero-cta .samples-btn:hover {
  background: transparent !important;
  border: 2px solid #2563EB !important; /* Force apply */
  color: #2563EB !important;
  transform: scale(1.05);
}


/* Features Section */
.features {
  padding: 4rem 0;
  background: linear-gradient(145deg, #edf4ff 0%, #f5f9ff 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem; 
  width: 100%;
  box-sizing: border-box;
}

.section-header1 {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header1 h2 {
  color: #1a4b8c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1rem;
}

.feature-card {
  background: linear-gradient(145deg, #d1e3ff 0%, #e6f0ff 100%);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:not(.reviews) {
  cursor: pointer;
}

.feature-card:hover:not(.reviews) {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.reviews {
  background: linear-gradient(145deg, #c7dcff 0%, #dbe9ff 100%);
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: #2563eb;
}

.feature-card h3 {
  color: #1a4b8c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.star-rating {
  color: #ffd700;
  font-size: 24px;
  margin: 10px 0;
}

.sitejabber-badge {
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  margin: 10px 0;
  font-weight: bold;
  color: #2563eb;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.modal-content {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
  width: 80%;
  max-width: 400px;
  margin: 100px auto;
  padding: 2rem;
  border-radius: 12px;
  animation: modalSlide 0.5s ease;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.order-now-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #ff6b00;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.order-now-btn:hover {
  background: #e65c00;
}

.progress-container {
  position: relative;
  width: 100%;
  height: 24px;
  background: #fff;
  border-radius: 12px;
  margin: 15px 0;
  overflow: hidden;
  border: 2px solid #2563eb;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  border-radius: 10px;
  position: relative;
  animation: fillProgress 2s ease;
}

.progress-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.1) 10px,
      rgba(255, 255, 255, 0.1) 20px
  );
  z-index: 1;
}
.progress-bar::after {
  content: '100% Human ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

@keyframes modalSlide {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fillProgress {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 768px) {
  .features-grid {
      grid-template-columns: 1fr;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
}

/* Main Layout */
.bfl-content-wrapper {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  min-height: 100vh;
}

/* Left Section - Benefits */
.bfl-benefits-container {
  flex: 1;
}

.bfl-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bfl-benefit-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F1F5FF 100%);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.bfl-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
}

.bfl-benefit-icon {
  color: #3B82F6;
  margin-bottom: 20px;
}

.bfl-benefit-card h3 {
  color: #1E40AF;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.bfl-benefit-card p {
  color: #64748B;
  font-size: 15px;
  line-height: 1.6;
}

/* Right Section - Features */
.bfl-features-container {
  flex: 0 0 400px;
}

.bfl-features-card {
  background: linear-gradient(145deg, #F8FAFF 0%, #EEF2FF 100%);
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.bfl-features-card h2 {
  color: #1E40AF;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.bfl-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.bfl-feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.bfl-feature-item:hover {
  transform: translateX(5px);
}

.bfl-feature-item h3 {
  color: #1E40AF;
  font-size: 16px;
  font-weight: 500;
}

.bfl-free-tag {
  background: #3B82F6;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.bfl-cta-button {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.bfl-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .bfl-content-wrapper {
      flex-direction: column;
      padding: 20px;
  }

  .bfl-features-container {
      flex: none;
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
  }
}

@media (max-width: 768px) {
  .bfl-benefits-grid {
      grid-template-columns: 1fr;
  }

  .bfl-benefit-card,
  .bfl-features-card {
      padding: 24px;
  }
}

/*how it works section*/
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-it-works .section-header h2 {
  color: #1a237e;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.how-it-works .section-header p {
  color: #546e7a;
  font-size: 1.1rem;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2196f3 0%, #1976d2 100%);
  z-index: 1;
}

.step-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: -50px auto 20px;
}

.step-icon {
  margin-bottom: 20px;
  color: #1976d2;
}

.step-card h3 {
  color: #1a237e;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.step-card p {
  color: #546e7a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-container {
  text-align: center;
  margin-top: 60px;
}

.start-order-btn {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

@media (max-width: 768px) {
  .timeline-line {
      display: none;
  }
  
  .steps-timeline {
      grid-template-columns: 1fr;
      gap: 60px;
  }
  
  .step-card {
      margin-top: 30px;
  }
}

/*servce section*/

.services-section {
  background: linear-gradient(to bottom, #f5f7ff, #e8f0ff);
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #1a237e;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: #546e7a;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(33, 150, 243, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
  border-color: rgba(33, 150, 243, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  color: #1a237e;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
}

.service-card p {
  color: #546e7a;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  color: #1976d2;
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-align: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-features li {
  opacity: 1;
}

.cta-container {
  text-align: center;
  margin-top: 50px;
}

.cta-button {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
}

@media (max-width: 768px) {
  .services-grid {
      grid-template-columns: 1fr;
      padding: 10px;
  }
  
  .service-card {
      margin-bottom: 20px;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: #1e3a8a; /* Darker blue background */
  background: linear-gradient(to right, #1e3a8a, #2563eb); /* Lighter weight with gradient */
}

.section-header h5 {
  font-size: 2.5rem; /* Increased heading size */
  color: white;
  margin-bottom: 1rem;
}

.section-header p {
  color: #bae6fd; /* Lighter text for contrast */
}

.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0.5rem;
}

.faq-item {
  width: calc(50% - 0.25rem);
  margin-bottom: 1rem;
  border: 1px solid #3b82f6;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  position: relative;
}

.faq-question .plus-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s;
}

.faq-question .plus-icon::before,
.faq-question .plus-icon::after {
  content: '';
  position: absolute;
  background: white;
  transition: transform 0.3s;
}

.faq-question .plus-icon::before {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.faq-question .plus-icon::after {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

.faq-question.active .plus-icon::before {
  transform: rotate(90deg);
}

.faq-question.active .plus-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #e0f2fe;
}

.faq-answer p {
  padding: 1rem 0;
}

.faq-answer.open {
  max-height: 300px;
  padding: 1rem;
}

.faq-cta {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  color: white;
}

.faq-cta .cta-button {
  background: #f97316;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-cta .cta-button:hover {
  background: #ea580c;
}
/* Contact Form */
.contact {
  padding: 4rem 0;
  background: #f9fafb;
}

.contact h2 {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 32rem;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
  outline: none;
}

.submit-button {
  width: 100%;
  background: var(--blue-600);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-button:hover {
  background: var(--blue-700);
  transform: scale(1.05);
}


/* Contact Section */
.contact {
  padding: 4rem 0;
  background: linear-gradient(145deg, #f0f9ff, #e0f2ff);
}

.contact-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}


.contact-info {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.section-header h3 {
  color: #315183; /* Dark Blue */
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.section-header p {
  color: #1F4068; /* Slightly lighter blue */
  font-size: 1.2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: #2563eb;
}

.info-item p {
  font-size: 1.1rem;
  color: #1a4b8c;
}

.info-item a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: #1d4ed8;
}

.contact-form {
  flex: 2;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.button-container {
  display: flex;
  justify-content: center;
}

button{
  background: #2563eb;
  align-items: center;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #1d4ed8;
}

/* Loading Spinner */
.spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 3px solid white;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Footer Section */
/* Footer Section */
footer {
  background: #111827;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  color: #9ca3af;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #2563eb;
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #2563eb;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
}

.footer-bottom .disclaimer {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 1rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/*end of foter section*/
.glowing-text {
  text-shadow: 0 0 10px rgba(37,99,235,0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

.typing-text {
  overflow: hidden;
  border-right: 2px solid var(--blue-600);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

.hero-features {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(37,99,235,0.1);
  color: var(--blue-600);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  animation: slideIn 0.5s ease-out forwards;
  opacity: 0;
}

.feature-tag:nth-child(1) { animation-delay: 0.2s; }
.feature-tag:nth-child(2) { animation-delay: 0.4s; }
.feature-tag:nth-child(3) { animation-delay: 0.6s; }

.floating-papers {
  position: relative;
  width: 300px;
  height: 300px;
}

.paper {
  position: absolute;
  width: 60px;
  height: 80px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}

.paper:nth-child(1) { 
  left: 20%; 
  top: 20%; 
  animation-delay: 0s;
}
.paper:nth-child(2) { 
  left: 50%; 
  top: 40%; 
  animation-delay: 0.5s;
}
.paper:nth-child(3) { 
  left: 30%; 
  top: 60%; 
  animation-delay: 1s;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}


@keyframes glow {
  from { text-shadow: 0 0 10px rgba(37,99,235,0.3); }
  to { text-shadow: 0 0 20px rgba(37,99,235,0.6); }
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--blue-600) }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes slideIn {
  from { 
      transform: translateX(-20px);
      opacity: 0;
  }
  to { 
      transform: translateX(0);
      opacity: 1;
  }
}

/* Add more animations for feature cards */
.feature-card {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.feature-card.visible {
  transform: translateY(0);
  opacity: 1;
}

/*mobile and tabkete faq responsve design*/
/* Mobile view */
@media (max-width: 768px) {
  .faq-item {
      width: 100%;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
}

/* Tablet view */
@media (min-width: 769px) and (max-width: 1024px) {
  .faq-accordion {
      padding: 0 1rem;
  }
  
  .faq-item {
      width: calc(50% - 0.2.5rem);
  }
}

.faq-cta .cta-button {
  background: #f97316; /* Orange button */
  color: white;
}

.faq-cta .cta-button:hover {
  background: #ea580c;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}
/* Mobile Header Styles */
@media (max-width: 768px) {
  .nav-wrapper {
    height: 3rem; 
    padding: 0.5rem 1rem;
    position: relative;
  }

  .logo img {
    margin-left: 0;
    width: 140px;
    height: auto;
  }

  .menu-toggle {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 0;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1a4b8c;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .mobile-menu {
    position: fixed;
    top: 3rem;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 40;
  }

  .mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid #f3f4f6;
  }

  .mobile-menu .order-btn {
    margin: 1rem auto;
    width: 90%;
    text-align: center;
  }
}

/* Hero Section Mobile Styles */
@media (max-width: 768px) {
  .hero {
    padding-top: 5rem;
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    padding: 0 1rem;
  }

  .hero-text {
    width: 100%;
    order: 1;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .typing-text {
    font-size: 1rem;
    white-space: normal;
    border-right: none;
    animation: none;
  }

  .hero-features {
    justify-content: center;
    gap: 0.5rem;
  }

  .feature-tag {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
  }

  .cta-button {
    width: 100%;
    margin: 0;
  }

  .hero-silhouette {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    margin-left: 0;
    order: 2;
  }

  .silhouette-image {
    max-width: 100%;
    height: auto;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-content {
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-silhouette {
    width: 400px;
    margin-left: 2rem;
  }

  .hero-features {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}