* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 0.5rem ;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;

}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}



.nav-menu {
    display: flex;
    gap: 2rem;
    
}

.nav-menu a {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2d3748;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #3a65fd;
}

.nav-right {
    display: flex;
    align-items: center;
   
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
    white-space: nowrap;
}

.dropdown-btn:hover {
    color: #3a65fd;
}

.new-badge {
    background: #3a65fd;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.arrow {
    font-size: 0.7rem;
    color: #718096;
}

.login-btn {
    color: #2d3748;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    white-space: nowrap;
    transition: color 0.3s;
}

.login-btn:hover {
    color: #3a65fd;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    transition: all 0.3s;
}



/* Hero Section */
.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-background {
    background: linear-gradient(135deg, #2e3d8f 0%, #1e2870 50%, #2a4080 100%);
    min-height: 500px;
    padding: 60px 20px 100px;
    position: relative;
    overflow: hidden;
     background-image: url(https://www.practostatic.com/web-assets/home/assets/images/homepage.06859593240c3efd483fe48951cfe6ff.svg);
    background-size: cover;
}

/* Hero Banner Section */
.hero-banner {
    background: linear-gradient(135deg, #f5e6e8 0%, #f0dfe5 100%);
    padding: 60px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-main-title {
    font-size: 2rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
}

.doctors-online {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.doctor-avatars {
    display: flex;
}

.doctor-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
}

.doctor-avatar:first-child {
    margin-left: 0;
}

.doctors-count {
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 500;
}

.cta-btn {
    background: #14bef0;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background: #0fa8d6;
}

.cta-btn.large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #4a5568;
}

.feature-icon {
    font-size: 1.1rem;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
 
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
}

.see-all-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.3s;
}

.see-all-btn:hover {
    border-color: #cbd5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Specialities Section */
.specialities-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.specialities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.speciality-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.speciality-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.speciality-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f7fafc;
}

.speciality-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speciality-name {
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.speciality-price {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 12px;
}

.speciality-link {
    color: #14bef0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.speciality-link:hover {
    color: #0fa8d6;
}

/* Health Concerns Section */
.health-concerns-section {
    padding: 60px 20px;
    background: #f7fafc;
    max-width: 1200px;
    margin: 0 auto;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.concern-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.concern-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.concern-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.concern-content {
    padding: 20px;
}

.concern-title {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.concern-price {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 12px;
}

.concern-link {
    color: #14bef0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Offers Section */
.offers-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.offer-card {
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.offer-card.mint {
    background: linear-gradient(135deg, #a7dbd8 0%, #7fc7c3 100%);
}

.offer-card.orange {
    background: linear-gradient(135deg, #ffb088 0%, #ff9966 100%);
}

.offer-badge {
    background: white;
    color: #2d3748;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.offer-title {
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 350px;
}

.offer-btn {
    background: #2d3748;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.offer-image,
.offer-doctor {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 150px;
    height: auto;
}

/* Doctors Section */
.doctors-section {
    padding: 60px 20px;
    background: #f7fafc;
    max-width: 1200px;
    margin: 0 auto;
}

.doctors-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.doctor-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.doctor-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.doctor-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-info {
    flex: 1;
}

.doctor-name {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 5px;
}

.doctor-specialty,
.doctor-experience,
.doctor-consults {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 3px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.step-text {
    font-size: 0.95rem;
    color: #4a5568;
    max-width: 200px;
    margin: 0 auto;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: #e2e8f0;
    margin-bottom: 60px;
}

/* Stats Section */
.stats-section {
    background: #2d3748;
    padding: 50px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    padding: 20px 0;
}

.benefit-title {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-desc {
    font-size: 1rem;
    color: #718096;
    line-height: 1.7;
}

/* Video Experience Section */
.video-experience-section {
    padding: 80px 20px;
    background: #f7fafc;
    max-width: 1200px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: red;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    padding: 20px;
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: #f7fafc;
    border-radius: 10px;
    padding: 25px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 5px;
}

.user-detail {
    font-size: 0.85rem;
    color: #718096;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator {
    width: 30px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    cursor: pointer;
}

.indicator.active {
    background: #14bef0;
}

/* FAQs Section */
.faqs-section {
    padding: 80px 20px;
    background: #f7fafc;
    max-width: 1200px;
    margin: 0 auto;
}

.faqs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.faq-question {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.7;
}

.faq-answer a {
    color: #14bef0;
    text-decoration: none;
}

/* Final CTA Section */
.final-cta-section {
    background: #2d3748;
    padding: 60px 20px;
    text-align: center;
}

.final-cta-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.final-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* App Download Section */
.app-download-section {
    background: #f7fafc;
    padding: 80px 20px;
}

.app-download-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-preview img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.app-download-title {
    font-size: 2.5rem;
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 10px;
}

.app-download-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 30px;
}

.app-features {
    list-style: none;
    margin-bottom: 30px;
}

.app-features li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 12px;
}

.app-link-form {
    margin-bottom: 25px;
}

.form-label {
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.phone-input-group {
    display: flex;
    gap: 0;
    margin-top: 15px;
}

.country-code {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    color: #2d3748;
}

.phone-input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-left: none;
    border-right: none;
    padding: 12px 15px;
    font-size: 1rem;
    outline: none;
}

.send-link-btn {
    background: #14bef0;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 0 5px 5px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.store-buttons {
    display: flex;
    gap: 15px;
}

.store-buttons img {
    height: 50px;
    width: auto;
    cursor: pointer;
}

/* SEO Content Section */
.seo-content-section {
    padding: 60px 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-text {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #2e3d8f;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-container,
    .app-download-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image,
    .app-preview {
        text-align: center;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid,
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid,
    .faqs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hero-main-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .specialities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .concerns-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .doctors-carousel {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-connector {
        width: 2px;
        height: 50px;
        margin: 0 auto;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .video-grid,
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
    
    .phone-input-group {
        flex-direction: column;
    }
    
    .country-code,
    .phone-input,
    .send-link-btn {
        border-radius: 5px;
        border: 1px solid #e2e8f0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .specialities-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 1.4rem;
    }
    
    .app-download-title {
        font-size: 1.8rem;
    }
    
    .store-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}