
/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 15px 12px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.carousel-btn:hover {
  background: #000;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:focus {
  outline: 3px solid #0066cc;
  outline-offset: 3px;
}

/* Positioning */
.prev {
  left: -10px;
}

.next {
  right: -10px;
}

/* Hide on small screens (optional) */
@media (max-width: 768px) {
  .carousel-btn {
    display: none; /* Hide on mobile to avoid clutter */
  }
}

/* Show on desktop only */
@media (min-width: 769px) {
  .results-carousel:hover .carousel-btn {
    opacity: 1;
  }
}







/* Features Section */
.features-section {
  padding: 6rem 0;
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  min-height: 100vh; /* Full viewport height for vertical center */
}

/* Center container */
.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.features-section h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 3rem;
  font-weight: 600;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #f0f8ff;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0f0ff;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  color: #0066cc;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
}



















/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img.lazyload {
  opacity: 0;
  transition: opacity 0.3s;
}

img.lazyload.loaded {
  opacity: 1;
}

/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #0066ff;
}

.nav-social {
  display: flex;
  gap: 1rem;
}

/* Header */
.header {
  padding: 4rem 0;
  background: #f0f7ff;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.header-text {
  flex: 1;
  min-width: 300px;
  padding-left: 50px;
}

.header-text h1 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 1rem;
}

.header-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-left: 50px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  min-width: 180px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.cta-download {
  background: #0066cc;
  color: white;
}

.cta-whatsapp {
  background: #25D366;
  color: white;
}

.header-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.header-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Features */
.features {
  padding: 5rem 0;
  background: #fff;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #003366;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #f0f8ff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.feature-card h3 {
  color: #0066cc;
  margin-bottom: 0.5rem;
}

.text-center {
  text-align: center;
}

/* Video Section */
.video-section {
  padding: 5rem 0;
  background: #f0f7ff;
  text-align: center;
}

.video-section h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 0;
  padding-bottom: 56.25%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Results Section - Vertical Auto-Rotate Carousel */
.results {
  padding: 5rem 0;
  background: #fff;
  text-align: center;
}

.results h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}

.results-carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
}

.result-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.result-slide.active {
  opacity: 1;
}

.result-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #0066cc;
}

@media (max-width: 768px) {
  .results-carousel {
    height: 400px;
    max-width: 350px;
  }
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: #f8faff;
}

.pricing h2 {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.highlight {
  border: 2px solid #00aa00;
  position: relative;
}

.pricing-card.highlight::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 12px;
  right: -30px;
  background: #00aa00;
  color: white;
  font-size: 0.8rem;
  padding: 4px 30px;
  transform: rotate(45deg);
}

.pricing-card h3 {
  background: #0066cc;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.3rem;
}

.plan-list {
  padding: 1rem;
}

.plan {
  margin-bottom: 1.5rem;
  text-align: center;
}

.plan h4 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.plan p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.8rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003366;
  margin: 0.5rem 0;
}

.price span {
  font-size: 0.9rem;
  color: #777;
  font-weight: 400;
}

.plan-btn {
  display: inline-block;
  background: #0066cc;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: background 0.3s;
}

.plan-btn:hover {
  background: #0055aa;
}

.combo .plan-btn {
  background: #00aa00;
}

.combo .plan-btn:hover {
  background: #008800;
}

.save-tag {
  background: #fff3cd;
  color: #856404;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  margin: 0.5rem 0;
}

/* Download Section */
.download-section {
  padding: 5rem 0;
  background: #e6f7ff;
  text-align: center;
}

.download-section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.download-btn {
  display: inline-block;
  background: #00aa00;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 1rem 0;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Download CTA Section */
.download-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0066cc, #00aa00);
  margin-top: 2rem;
}

.download-cta-box {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.download-cta-box h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 1rem;
}

.download-cta-box p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.download-cta-box .cta-btn {
  display: inline-block;
  background: #00aa00;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.download-cta-box .cta-btn:hover {
  background: #008800;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: #fff;
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #003366;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: #f0f8ff;
  border: none;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #003366;
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.faq-answer p {
  padding: 1rem 0;
  line-height: 1.7;
  color: #444;
}

/* Contact */
.contact {
  padding: 5rem 0;
  background: #f0f7ff;
  text-align: center;
}

.contact h2 {
  margin-bottom: 1rem;
  color: #003366;
}

.contact p {
  margin-bottom: 2rem;
  color: #555;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  min-width: 180px;
  font-size: 1rem;
  transition: transform 0.2s;
}

.contact-btn:hover {
  transform: translateY(-2px);
}

.telegram {
  background: #0088cc;
  color: white;
}

.whatsapp {
  background: #25D366;
  color: white;
}

/* Footer */
footer {
  background: #003366;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Modern Text Logo */
.footer-logo {
  text-align: center;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

.logo-doctor {
  color: #00aa00;
}

.logo-dhoom {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-logo p {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a,
.footer-social a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #0055a5;
  font-size: 0.9rem;
  color: #ccc;
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  top: 50%;               /* Center vertically on desktop */
  right: 20px;            /* Stick to right side */
  transform: translateY(-50%);
  z-index: 100;
  border-radius: 50%;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-50%) scale(1.1); /* Keep center + scale on hover */
}

/* Responsive: Adjust for small screens */
@media (max-width: 768px) {
  .whatsapp-float {
    top: auto;           /* Remove vertical center */
    bottom: 20px;        /* Place at bottom-right */
    transform: none;     /* No translate needed */
  }

  .whatsapp-float:hover {
    transform: scale(1.1); /* Only scale */
  }
}








/* Responsive */
@media (max-width: 768px) {
  .header-content,
  .pricing-cards {
    flex-direction: column;
  }

  .nav-menu {
    display: none;
  }

  .whatsapp-float {
    display: block;
  }

  .header-text,
  .hero-cta {
    padding-left: 20px;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 80%;
    max-width: 300px;
  }
}




/* AUDIO */


/* Only style what's needed — NO global resets */
body {
  font-family: Arial, sans-serif;
  background-color: #2c3e50; /* Keep your dark blue */
  color: white;
  margin: 0;
  padding: 0;
}

/* Header styling */
header {
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  text-align: left;
}

header h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

header p {
  font-size: 14px;
  opacity: 0.9;
}

/* Main content */
main {
  padding: 40px 20px;
  text-align: center;
  color: white;
}

main h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

main p {
  font-size: 16px;
  line-height: 1.6;
}

/* Footer — Leave untouched! */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.quick-links, .follow-us {
  font-size: 14px;
}

.quick-links h4, .follow-us h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.quick-links ul, .follow-us ul {
  list-style: none;
  padding: 0;
}

.quick-links li, .follow-us li {
  margin: 5px 0;
}

.quick-links a, .follow-us a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.quick-links a:hover, .follow-us a:hover {
  color: #fff;
}


