/* Base Styles */


/* Pricing Section Styles */
.pricing {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 30px;
  width: 100%;
  max-width: 350px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border: 2px solid #25D366;
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.popular-badge {
  background: #25D366;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #25D366;
  margin: 15px 0 5px;
}

.price .period {
  font-size: 1rem;
  color: #777;
  font-weight: 400;
}

.price-note {
  font-size: 0.9rem;
  color: #25D366;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.pricing-features i {
  color: #25D366;
  margin-right: 10px;
}

.pricing-button {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  text-align: center; 
  display: flex; 
  justify-content: center;
  align-items: center;
  gap: 8px; 
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    max-width: 100%;
  }
}


.center-captcha {
  display: table;
  margin: 0 auto 15px;
}


/* Terms Popup Styles */
/* Add to body when popup is open */
body.popup-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.terms-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
}

.terms-popup-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 8px;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}


.terms-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  z-index: 1001;
}




.close-popup {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-popup:hover {
  color: #25D366;
}



/* Platform tabs styling */
/* Download PDF Button */
.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 20px; /* Space above date filter */
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.pdf-download-btn:hover {
  background-color: #075E54;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.pdf-download-btn i {
  font-size: 16px;
}

.platform-tabs {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.platform-tab {
  padding: 8px 15px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 500;
  color: #666;
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
}

.platform-tab.active {
  color: var(--primary-color);
  border-bottom-color: #25D366;
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
}

.platform-instructions {
  position: relative;
  min-height: 200px;
}

.instruction {
  display: none;
}

.instruction.active {
  display: block;
}

.instruction ol {
  padding-left: 20px;
  margin: 10px 0;
}

.instruction ol li {
  margin-bottom: 8px;
}

.instruction img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}



:root {
  --primary-color: #25D366;
  --secondary-color: #128C7E;
  --dark-color: #075E54;
  --light-color: #DCF8C6;
  --text-color: #333;
  --light-text: #777;
  --background-color: #f9f9f9;
  --white: #ffffff;
  --gray: #f5f5f5;
  --dark-gray: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navigation */
.main-nav {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.nav-logo {
  height: 30px; 
  width: auto; /* Maintain aspect ratio */
  margin-right: 10px;
}

.nav-brand {
  display: flex;
  align-items: center;

}

.nav-brand i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  padding-top:40px !important;
  background: linear-gradient(135deg, var(--light-color), var(--white));
    min-height: 80vh; /* Add minimum height */
  display: flex;
  align-items: center;
  padding-bottom:0px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
  height: 100%;
}

.hero-content {
  flex: 1;
  min-width: 40%; /* Prevent content from shrinking too much */
}

.hero-image {
  flex: 1;
  height: 100%;
  
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 30px;
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.upload-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 15px;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.upload-button:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--dark-color);
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin: 30px auto;
}

.download-button:hover {
  background-color: var(--secondary-color);
}

/* Sections */
.section {
  padding: 80px 0;
  padding-bottom: 0px;
}

.section#faq {
    padding-bottom: 40px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--dark-color);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--light-text);
}

/* How It Works */
.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px; /* Added to match analyzer tool */
  background-color: var(--white); /* Added to match analyzer tool */
  border-radius: 10px; /* Added to match analyzer tool */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Added to match analyzer tool */
}

.step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.step-number {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  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(--gray); /* Changed from white to gray to match nested appearance */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
  width: 100%; /* Ensure full width within container */
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.step-content p {
  margin-bottom: 20px;
  color: var(--light-text);
  
}

.step-content img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width:100%;
}

/* Analyzer Tool */
.analyzer-tool {
  background-color: var(--white);
}

.tool-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px; /* Matches steps container */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Matches steps container */
}

.upload-section {
  text-align: center;
  margin-bottom: 30px;
}

.upload-box {
  background-color: var(--gray);
  padding: 40px;
  border-radius: 10px;
  border: 2px dashed var(--dark-gray);
  margin-bottom: 20px;
}

.upload-box i {
  font-size: 3rem;
  color: white;
  margin-bottom: 0px;
}


.upload-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.upload-box p {
  color: var(--light-text);
}

.file-info {
  font-size: 0.9rem;
  color: var(--light-text);
}

/* Screenshots */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.screenshot {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.screenshot:hover {
  transform: translateY(-5px);
}

.screenshot img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.screenshot p {
  padding: 15px;
  text-align: center;
  font-weight: 500;
  color: var(--dark-color);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: var(--gray);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-brand i {
    color: #25D366;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
	font-weight:500;
}

.footer-links a:hover {
    color: #25D366;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Results Styles (from your existing CSS) */
#results {
  margin: 20px 0;
}

.chart-container {
  margin: 20px 0;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table-container {
  margin: 20px 0 30px;
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.data-table th {
  padding: 12px 15px;
  text-align: center;
  background-color: #f5f7fa;
  color: #333;
  font-weight: 600;
  border-bottom: 2px solid #e1e5eb;
}

.data-table th:nth-child(odd) {
  background-color: #f0f5fc;
}

.data-table th:nth-child(even) {
  background-color: #e6edf7;
}

.data-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e1e5eb;
  background: white;
}

.data-table tr:hover td {
  background-color: #f8f9fa;
}

.data-table td:not(:last-child) {
  padding-right: 25px;
}

.data-table td:last-child {
  text-align: center;
}

.number-cell {
  text-align: right;
}

#timelineChart {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
}

#timelineTooltip {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 8px;
  max-width: 250px;
  font-size: 12px;
}
.mobile-menu-toggle {
	display:none;
}
/* Responsive Styles */
@media (max-width: 768px) {
    
    
    
      .contact-form {
    padding: 15px;
    margin: 0 10px;
    box-sizing: border-box;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-form .form-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form .cta-button,
  .contact-form .cta-button.secondary {
    width: 100%;
        text-align: center; /* This line ensures the text is centered */
    display: inline-block;
  }
    
    
    
        #termsPopup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        box-sizing: border-box;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    
      .terms-popup-content {
    width: 90%;
    margin: 10% auto;
    padding: 20px;
  }
    
    
    
	.section {
		padding-top: 40px;
	}
	
	    .hero-buttons {
        justify-content: center; /* Center buttons horizontally */
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center buttons in the column */
        gap: 10px; /* Reduce gap between stacked buttons */
    }
    
    .hero-buttons .cta-button {
        width: 100%; /* Make buttons full width */
        max-width: 280px; /* But not too wide */
        text-align: center; /* Center button text */
    }
	
	.footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
	
  #filters > div:last-child {
    flex-direction: row;
    align-items: center;
  }	

	.sticky-nav h1 {
    display: none;
  }
  
    .sticky-nav {
    justify-content: center !important;
	
  }
	
	  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }
	
	  .sticky-nav {
    padding: 10px 15px;
  }
	  .sticky-nav h1 {
    font-size: 1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }
    .sticky-nav .nav-buttons {
    gap: 5px;
  }
  

	  .hero {
    min-height: auto;
    padding: 60px 0;
	padding-bottom: 0px;
	padding-top: 40px;
  }
  .hero .container {
    flex-direction: column;
	gap: 30px;
  }
  
  .hero-content, .hero-image {
    text-align: center;
  }
  .hero-image {
	  min-height: 100% !important;
  }
  .step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 15px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    width: calc(100% - 40px);
    background-color: var(--white);
    flex-direction: column;
    gap: 0; /* Remove gap between items */
    padding: 15px 20px; /* Adjust padding */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: left; /* Ensure text aligns left */
  }
  .nav-links.active {
    display: flex;
  }
    .nav-links a {
    padding: 12px 0; /* Adjust padding */
    border-bottom: 1px solid var(--dark-gray);
    width: 100%;
    text-align: left; /* Force left alignment */
    margin-left: 0; /* Remove any default margins */
    padding-left: 0; /* Remove any default padding */
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-links {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Contact Form Styles */
.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 15px;
}
.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form .form-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}
.contact-form .cta-button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}
.contact-form .cta-button.secondary {
  background-color: #f5f5f5;
  color: #333;
}
.contact-form .cta-button:hover {
  background-color: #075e54;
  color: white;
}
