
/* 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;
}

/* === UPDATED LOGO SIZE HERE === */
.nav-logo img {
  /* Increased size for desktop view */
  width: 240px; 
  height: 60px;
  /* Ensure a smooth change if you implement a shrinking navbar on scroll */
  transition: width 0.3s, height 0.3s;
}

.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;
}

/* === MOBILE ADJUSTMENT (Recommended) === */
@media (max-width: 768px) {
    .nav-logo img {
        width: 180px; /* Logo shrinks on smaller screens */
        height: 45px;
    }
}

/* 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 Slider/Gallery Styling === */
/* ======================================= */

.video-section {
    padding: 60px 0;
    background-color: #f7f7f7;
}

.video-slider-container {
    position: relative;
    max-width: 900px; /* Max width for the visible video area */
    margin: 0 auto;
    overflow: hidden; /* Crucial: Hides videos that are off-screen */
}

.video-slider {
    /* Tracks the position of all slides */
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Only show one slide's width at a time */
    padding: 20px 0; 
}

.video-slide {
    /* Each slide takes up the full width of the container */
    flex: 0 0 100%; 
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0 15px; /* Internal padding for spacing from the container edge */
}

/* Thumbnail Styling (Replaces direct iframe embed) */
.video-thumbnail {
    cursor: pointer;
    position: relative;
    /* Maintain 16:9 aspect ratio */
    padding-top: 56.25%; /* (9 / 16) * 100% */
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

/* === UPDATED PLAY BUTTON STYLES HERE === */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Added scale(1) as base for transition effect */
    transform: translate(-50%, -50%) scale(1);
    
    color: white;
    background-color: rgba(255, 0, 0, 0.9); /* Slightly less transparent red */
    
    /* NEW: Fixed smaller size for circular button */
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Makes it a circle */
    
    /* NEW: Center the play icon (▶) inside the button */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px; /* Smaller icon size */
    
    /* Removed padding as size is set by width/height */
    pointer-events: none;
    z-index: 2;
    transition: transform 0.3s, background-color 0.3s;
}

.video-thumbnail:hover .play-button {
    background-color: rgba(255, 0, 0, 1);
    /* Added subtle zoom/scale effect on hover to make it attractive */
    transform: translate(-50%, -50%) scale(1.1); 
}

.video-title {
    font-weight: 600;
    color: #333;
}

/* Navigation Buttons (Prev/Next) */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 15px 10px; /* Adjusted padding for better fit */
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 0.9;
}

.slider-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.slider-nav-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}

.prev-btn {
    left: 0; 
}

.next-btn {
    right: 0;
}

.slider-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Slider Dots Indicator */
.slider-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #007bff; /* Primary brand color or distinct color */
}


/* ======================================= */
/* === Full-Screen Video Modal Styling === */
/* ======================================= */

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it's on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal.open {
    display: flex; /* Show the modal when 'open' class is added */
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    
    /* Center the video player */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-player {
    /* Container for the iframe to maintain aspect ratio in the modal */
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close-btn {
    position: absolute;
    top: -30px; /* Position above the video container */
    right: -30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.close-btn:hover,
.close-btn:focus {
    opacity: 1;
}

/* Responsive adjustments for the modal on small screens */
@media (max-width: 768px) {
    .close-btn {
        top: 0px;
        right: 0px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 0 0 0 10px;
        padding: 5px 15px;
        font-size: 30px;
    }
    .modal-content {
        max-width: 100vw;
        max-height: 100vh;
    }
}

/* ======================================= */
/* === Video Slider/Gallery Title Fix === */
/* ======================================= */

/* This targets the new class added to the h2 */
.video-section-title {
    /* Ensures the title is horizontally centered */
    text-align: center;
    
    /* Matches the dark color used for other <h2> headings on the page */
    color: #333; 
    
    /* Adjusts top margin to ensure spacing from the previous section */
    margin-top: 0; 
    margin-bottom: 20px;
}

/* Ensure the main container of the section is correctly structured */
.video-section .container {
    /* If your general 'container' style doesn't have text-align: center, 
       this ensures the H2 is centered. */
}

/* Also check your general H2 style to ensure it applies the correct color: */
/*
h2 {
    font-size: 2em;
    font-weight: 700;
    color: #333; 
    margin-bottom: 40px;
    text-align: center; 
}
*/

/* Navigation Buttons (Prev/Next) */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 15px 10px; /* Adjusted padding for better fit */
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 0.9;
}

.slider-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.slider-nav-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}

.prev-btn {
    left: 0; 
}

.next-btn {
    right: 0;
}

.slider-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Slider Dots Indicator */
.slider-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #007bff; /* Primary brand color or distinct color */
}





/* ======================================= */
/* === Video Slider/Gallery Title Styling Fix === */
/* ======================================= */

.video-section-title {
    /* * Setting these properties ensures it inherits the main heading style:
     * Dark text color, bold font weight, and centered alignment.
     */
    
    /* Color: Assumes your main headings are a dark/near-black color */
    color: #333; 
    
    /* Font Size: Use standard h2 size */
    font-size: 2em; 
    
    /* Font Weight: Typically 700 for a main heading */
    font-weight: 700; 
    
    /* Alignment: Ensure it is centered */
    text-align: center;
    
    /* Spacing: Ensure proper spacing */
    margin-top: 0; 
    margin-bottom: 40px; 
    
    /* Font-Family: Assuming you use Poppins or similar (defined in the <head>) */
    /* font-family: 'Poppins', sans-serif; */ 
}

/* Ensure the background of the section is consistent with your design */
.video-section {
    padding: 60px 0;
    /* Use white if the rest of your site is white, or keep #f7f7f7 
       if that is the intended background for this section */
    background-color: #f7f7f7; 
}

/* ======================================= */
/* === Full-Screen Video Modal Styling === */
/* ======================================= */

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it's on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal.open {
    display: flex; /* Show the modal when 'open' class is added */
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    
    /* Center the video player */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-player {
    /* Container for the iframe to maintain aspect ratio in the modal */
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* * --------------------------------
 * UPDATED CLOSE BUTTON STYLES FOR VISIBILITY
 * --------------------------------
 */
.close-btn {
    /* Position inside the modal, closer to the video corner */
    position: absolute;
    top: 10px; 
    right: 10px;
    
    /* Dark Circular Style */
    color: #fff; /* White 'X' */
    font-size: 30px; /* Font size for the 'X' */
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.7); /* Dark, semi-transparent background */
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
    border-radius: 50%; /* Makes it circular */
    
    /* Center the 'X' inside the button */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Base styles */
    border: none;
    cursor: pointer;
    opacity: 0.9;
    transition: background-color 0.2s, opacity 0.2s;
    z-index: 1001; /* Ensure it is on top of the iframe */
}

.close-btn:hover,
.close-btn:focus {
    opacity: 1;
    background-color: rgba(0, 0, 0, 1); /* Solid black on hover */
}

/* Responsive adjustments for the modal on small screens */
@media (max-width: 768px) {
    .close-btn {
        top: 5px; /* Slight adjustment for small screen position */
        right: 5px;
        width: 35px; /* Slightly smaller button on mobile */
        height: 35px;
        font-size: 24px;
        
        /* Ensure it remains circular and dark on mobile */
        background-color: rgba(0, 0, 0, 0.7); 
        border-radius: 50%; 
    }
    .modal-content {
        max-width: 100vw;
        max-height: 100vh;
    }
}

/* Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 0.8;
}

.carousel-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}

.scroll-left-btn {
    left: -20px; /* Position off-center */
}

.scroll-right-btn {
    right: -20px; /* Position off-center */
}

/* ======================================= */
/* === Responsive Media Queries === */
/* ======================================= */

/* Adjustments for Tablets and wider mobiles */
@media (min-width: 600px) {
    .video-wrapper {
        width: 50%; /* Show two videos partially on tablet */
    }
}

/* Adjustments for Desktop */
@media (min-width: 1024px) {
    .video-wrapper {
        width: calc(33.333% - 14px); /* Show three videos with a small gap */
        max-width: none;
    }
    
    .scroll-left-btn {
        left: -40px; 
    }

    .scroll-right-btn {
        right: -40px; 
    }
}

/* Hide buttons on mobile where touch-scrolling is expected */
@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none;
    }
}

/* ======================================= */
/* === Responsive Media Queries END=== */
/* ======================================= */


/* 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;
  line-height: 1.5; /* Added for better text readability */
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex; /* Changed to flex for better text alignment */
  align-items: center; /* Vertically center text */
  justify-content: center; /* Horizontally center text */
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  min-width: 200px; /* Increased from 180px */
  font-size: 1rem;
  transition: transform 0.2s;
  text-align: center; /* Ensure text alignment */
  box-sizing: border-box; /* Include padding in width calculation */
  white-space: nowrap; /* Prevent text from wrapping */
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Added subtle shadow on hover */
}

.telegram {
  background: #0088cc;
  color: white;
}

.whatsapp {
  background: #25D366;
  color: white;
}

/* Optional: Add responsive design for smaller screens */
@media (max-width: 480px) {
  .contact-options {
    flex-direction: column; /* Stack buttons vertically on small screens */
    align-items: center;
  }
  
  .contact-btn {
    width: 100%; /* Full width buttons on mobile */
    max-width: 280px; /* But limit maximum width */
  }
}

/* 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;
}

/* ======================================= */
/* === SEO Mini-Blog Section Styling (Full Page Mobile Optimized) === */
/* ======================================= */

.seo-mini-blog {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 40px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Container - Full Page Width */
.seo-mini-blog .container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  text-align: left;
}

/* Heading */
.seo-mini-blog h3 {
  font-size: 2.4em;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 10px;
}

.seo-mini-blog h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
}

/* Paragraphs */
.seo-mini-blog p {
  font-size: 1.15em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  text-align: justify;
  letter-spacing: 0.3px;
  word-spacing: 1px;
}

/* Highlight keywords */
.seo-mini-blog p strong {
  color: #007bff;
  font-weight: 700;
  transition: color 0.3s ease;
}
.seo-mini-blog p strong:hover {
  color: #0056b3;
}

/* Keywords Line - CENTERED */
.seo-mini-blog .seo-keywords {
  margin: 35px auto 0;
  font-size: 1.1em;
  color: #444;
  font-style: italic;
  background: #f1f5ff;
  padding: 18px 25px;
  border-radius: 10px;
  display: block;
  text-align: center;
  width: fit-content;
  max-width: 90%;
  border: 1px solid #007bff;
  box-shadow: 0 2px 8px rgba(0,123,255,0.1);
}

.seo-mini-blog .seo-keywords em {
  color: #007bff;
  font-weight: 600;
  font-style: normal;
}

/* ======================================= */
/* === SEO Mini-Blog Section Styling (Fixed Layout) === */
/* ======================================= */

.seo-mini-blog {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 40px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Container - Fixed Width with Proper Text Alignment */
.seo-mini-blog .container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 40px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  text-align: left; /* ✅ Ensures all text starts from left */
}

/* Heading - Centered Only */
.seo-mini-blog h3 {
  font-size: 2.2em;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  line-height: 1.4;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.seo-mini-blog h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #007bff;
  border-radius: 2px;
}

/* Paragraphs - Left Aligned with Proper Spacing */
.seo-mini-blog p {
  font-size: 1.15em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  text-align: left; /* ✅ Fixed: Left aligned instead of center */
  letter-spacing: 0.2px;
  word-spacing: 1px;
  max-width: 100%;
}

/* Highlight keywords */
.seo-mini-blog p strong {
  color: #007bff;
  font-weight: 700;
  background: rgba(0, 123, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.seo-mini-blog p strong:hover {
  color: #0056b3;
  background: rgba(0, 123, 255, 0.15);
}

/* Keywords Box - Centered and Beautiful */
.seo-mini-blog .seo-keywords {
  margin: 40px auto 0;
  font-size: 1.1em;
  color: #444;
  background: linear-gradient(135deg, #f8faff, #e3eeff);
  padding: 20px 30px;
  border-radius: 12px;
  display: block;
  text-align: center;
  width: fit-content;
  max-width: 90%;
  border: 2px solid #007bff;
  box-shadow: 0 4px 15px rgba(0,123,255,0.1);
  font-style: normal;
}

.seo-mini-blog .seo-keywords em {
  color: #007bff;
  font-weight: 700;
  font-style: normal;
  display: block;
  margin-bottom: 8px;
  font-size: 1.1em;
}

/* ==================== */
/* === MOBILE OPTIMIZATION === */
/* ==================== */

/* Tablet Devices (768px and below) */
@media (max-width: 768px) {
  .seo-mini-blog {
    padding: 30px 0;
    min-height: auto;
  }
  
  .seo-mini-blog .container {
    width: 92%;
    padding: 35px 25px;
  }
  
  .seo-mini-blog h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
    padding-bottom: 10px;
  }
  
  .seo-mini-blog p {
    font-size: 1.05em;
    line-height: 1.7;
    text-align: left; /* ✅ Keep left aligned on mobile */
    margin-bottom: 22px;
  }
  
  .seo-mini-blog .seo-keywords {
    font-size: 1em;
    padding: 18px 22px;
    max-width: 95%;
    margin: 35px auto 0;
  }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .seo-mini-blog {
    padding: 20px 0;
  }
  
  .seo-mini-blog .container {
    width: 90%;
    padding: 30px 20px;
    border-radius: 12px;
  }
  
  .seo-mini-blog h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .seo-mini-blog p {
    font-size: 1em;
    line-height: 1.6;
    text-align: left; /* ✅ Keep left aligned on mobile */
    margin-bottom: 20px;
  }
  
  .seo-mini-blog .seo-keywords {
    font-size: 0.95em;
    padding: 15px 18px;
    max-width: 100%;
    margin: 30px auto 0;
  }
}

/* Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
  .seo-mini-blog .container {
    width: 88%;
    padding: 25px 18px;
  }
  
  .seo-mini-blog h3 {
    font-size: 1.4em;
  }
  
  .seo-mini-blog p {
    font-size: 0.95em;
    line-height: 1.5;
  }
  
  .seo-mini-blog .seo-keywords {
    font-size: 0.9em;
    padding: 12px 15px;
  }
}