@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: white;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-style: bold;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a90e2;
}

.nav-cta {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-cta:hover {
    background-color: #357abd;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hospital-points{
list-style-type: disc;
padding-left:20px;
line-height:1.6;
font-size:16px;
color:#333;
}

.hospital-points li{
margin-bottom:6px;
}

/* Hero Section */
.hero-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.hero-content .nav-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.hero-image-container {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: 520px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-card {
    position: absolute;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
}

.stats-card span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stats-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.doctors-card {
    top: 20px;
    right: -30px;
}

.patients-card {
    bottom: 50px;
    left: -20px;
}

.insurance-card {
    bottom: 20px;
    right: 20px;
}

/* Tablet View */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem;
        min-height: 70vh;
    }

    .hero-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .stats-card {
        min-width: 100px;
        padding: 0.8rem 1.2rem;
    }

    .stats-card span {
        font-size: 1.3rem;
    }

    .stats-card p {
        font-size: 0.8rem;
    }

    .doctors-card {
        top: 10px;
        right: 10px;
    }

    .patients-card {
        bottom: 40px;
        left: 10px;
    }

    .insurance-card {
        bottom: 10px;
        right: 10px;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
        min-height: 60vh;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .nav-cta {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-image-container {
        position: relative;
    }

    .hero-image {
        width: 300px;
        height: auto;
    }

    .stats-card {
        display: none;
    }

    .logo-image {
        height: 70px;
        max-width: 220px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }
    
  

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-cta.active {
        display: block;
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
    }
}

/* Appointment Section */
.appointment-section {
    padding: 1rem 2rem;
    background-color: #f8f9fa;
}

.appointment-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.appointment-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border: 1px solid #e1e5e9;
}

.appointment-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.form-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.form-group {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.form-group.full-width {
    flex: 2;
    min-width: 500px;
    max-width: 600px;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #4a90e2;
    background-color: white;
}

.form-group input::placeholder {
    color: #999;
}

.submit-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    width: 300px;
}

.submit-btn:hover {
    background-color: #357abd;
}

/* Tablet View */
@media (max-width: 768px) {
    .appointment-section {
        padding: 3rem 1.5rem;
    }

    .appointment-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .appointment-form {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        flex-direction: column;
        width: 100%;
    }

    .form-group {
        min-width: 100%;
        max-width: 100%;
    }

    .form-group.full-width {
        min-width: 100%;
        max-width: 100%;
    }

    .submit-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .appointment-section {
        padding: 2rem 1rem;
    }

    .appointment-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .appointment-form {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        flex-direction: column;
        width: 100%;
    }

    .form-group {
        min-width: 100%;
        max-width: 100%;
    }

    .form-group.full-width {
        min-width: 100%;
        max-width: 100%;
    }

    .form-group input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 180px;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    color: white;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.feature p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Insurance Section */
.insurance-section {
    padding: 4rem 2rem;
    background-color: #4a90e2;
}

.insurance-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insurance-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border: 1px solid #e1e5e9;
}

.insurance-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.insurance-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.insurance-logos-wrapper {
    display: flex;
    animation: autoScroll 5s linear infinite;
    gap: 3rem;
}

.insurance-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.insurance-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.insurance-logo-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border: 2px solid #e1e5e9;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    height: 100px;
    min-height: 100px;
}

.insurance-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #4a90e2;
}

.insurance-logo {
    height: 120px;
    width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.insurance-logo:hover {
    transform: scale(1.1);
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Tablet View */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .feature {
        padding: 0.8rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .feature h3 {
        font-size: 1.2rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .insurance-section {
        padding: 3rem 1.5rem;
    }

    .insurance-card {
        padding: 2rem;
    }

    .insurance-card h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .insurance-logos {
        gap: 1.5rem;
    }

    .insurance-logo-card {
        min-width: 100px;
        min-height: 100px;
    }

    .insurance-logo {
        height: 80px;
        width: 80px;
    }

    .benefits-section {
        padding: 4rem 1.5rem;
    }

    .benefits-container h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-icon svg {
        width: 35px;
        height: 35px;
    }

    .benefit-item h3 {
        font-size: 1.3rem;
    }

    .benefit-item p {
        font-size: 0.95rem;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-container {
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feature {
        padding: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon svg {
        width: 25px;
        height: 25px;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.85rem;
    }

    .insurance-section {
        padding: 2rem 1rem;
    }

    .insurance-card {
        padding: 1.5rem;
    }

    .insurance-card h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .insurance-logos {
        gap: 1rem;
    }

    .insurance-logo-card {
        min-width: 80px;
        min-height: 80px;
    }

    .insurance-logo {
        height: 60px;
        width: 60px;
    }

    .benefits-section {
        padding: 3rem 1rem;
    }

    .benefits-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .benefit-item {
        padding: 1.2rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon svg {
        width: 30px;
        height: 30px;
    }

    .benefit-item h3 {
        font-size: 1.2rem;
    }

    /* Tablet View */
    @media (max-width: 768px) {
        .about-section {
            padding: 4rem 1.5rem;
        }

        .about-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .about-content h2 {
            font-size: 2.2rem;
        }

        .about-content p {
            font-size: 1rem;
        }

        .about-features {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .feature {
            padding: 0.8rem;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
        }

        .feature h3 {
            font-size: 1.2rem;
        }

        .feature p {
            font-size: 0.9rem;
        }

        .insurance-section {
            padding: 3rem 1.5rem;
        }

        .insurance-card {
            padding: 2rem;
        }

        .insurance-card h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .insurance-logos {
            gap: 1.5rem;
        }

        .insurance-logo-card {
            min-width: 100px;
            min-height: 100px;
        }

        .insurance-logo {
            height: 80px;
            width: 80px;
        }
    }

    /* Mobile View */
    @media (max-width: 480px) {
        .about-section {
            padding: 3rem 1rem;
        }

        .about-container {
            gap: 2rem;
        }

        .about-content h2 {
            font-size: 1.8rem;
        }

        .about-content p {
            font-size: 0.95rem;
        }

        .about-features {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }

        .feature {
            padding: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
        }

        .feature-icon svg {
            width: 25px;
            height: 25px;
        }

        .feature h3 {
            font-size: 1.1rem;
        }

        .feature p {
            font-size: 0.85rem;
        }

        .insurance-section {
            padding: 2rem 1rem;
        }

        .insurance-card {
            padding: 1.5rem;
        }

        .insurance-card h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .insurance-logos {
            gap: 1rem;
        }

        .insurance-logo-card {
            min-width: 80px;
            min-height: 80px;
        }

        .insurance-logo {
            height: 60px;
            width: 60px;
        }

        .benefits-section {
            padding: 3rem 1rem;
        }

        .benefits-container h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }

        .benefit-item {
            padding: 1.2rem;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
        }

        .benefit-icon svg {
            width: 30px;
            height: 30px;
        }

        .benefit-item h3 {
            font-size: 1.2rem;
        }

        .benefit-item p {
            font-size: 0.9rem;
        }
    }

    .nav-arrow {
        background-color: #f8f9fa;
        border: 2px solid #e1e5e9;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        color: #666;
        font-family: 'Inter', sans-serif;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        color: #666;
        font-family: 'Inter', sans-serif;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .nav-arrow:hover {
        background-color: #4a90e2;
        color: white;
        border-color: #4a90e2;
    }

    .left-arrow {
        left: 10px;
    }

    .right-arrow {
        right: 20px;
    }

    /* Tablet View */
    @media (max-width: 768px) {}

    .insurance-card {
        padding: 2rem;
    }

    .insurance-card h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .insurance-logos-wrapper {
        gap: 1.5rem;
    }

    .insurance-logo {
        height: 60px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .left-arrow {
        left: 5px;
    }

    .right-arrow {
        right: 20px;
    }
}

/* Mobile View */
@media (max-width: 480px) {
    .insurance-section {
        padding: 2rem 1rem;
    }

    .insurance-card {
        padding: 1.5rem;
    }

    .insurance-card h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .insurance-logos-wrapper {
        gap: 1rem;
    }

    .insurance-logo {
        height: 50px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .left-arrow {
        left: 5px;
    }

    .right-arrow {
        right: 20px;
    }
}


.benefit-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.subtitle {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    max-width: 300px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #e9efff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #3b82f6;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.conditions-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.subtitle {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.desc {
    color: #6b7280;
    max-width: 100%;
    margin-bottom: 50px;
    line-height: 1.6;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
}

.condition-card {
    display: flex;
    gap: 15px;
}

.icon {
    width: 40px;
    height: 40px;
    background: #e9efff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 18px;
    flex-shrink: 0;
}

.condition-card h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    margin-bottom: 6px;
}

.condition-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* =========================
TABLET VIEW (768px – 1024px)
========================= */

@media (max-width:1024px) {

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }

    .title {
        font-size: 32px;
    }

    .benefit-card {
        max-width: 100%;
    }

}


/* =========================
MOBILE VIEW (below 768px)
========================= */

@media (max-width:768px) {

    .benefit-section,
    .conditions-section {
        padding: 40px 20px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .title {
        font-size: 28px;
    }

    .desc {
        font-size: 14px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .benefit-card h3,
    .condition-card h3 {
        font-size: 17px;
    }

    .benefit-card p,
    .condition-card p {
        font-size: 13px;
    }

}


/* =========================
SMALL MOBILE (below 480px)
========================= */

@media (max-width:480px) {

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 12px;
    }

    .desc {
        font-size: 13px;
    }

}

.program-section {
    padding: 80px 20px;
}

.program-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.program-image img {
    width: 500px;
    border-radius: 20px;
}

.subtitle {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.title {
    font-size: 36px;
    margin-bottom: 10px;
    color: #222;
}

.desc {
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.accordion-item {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 18px;
    margin: 0;
}

.toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: #e9efff;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

.accordion-content {
    display: none;
    margin-top: 10px;
    color: #6b7280;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* =========================
TABLET VIEW (≤1024px)
========================= */
@media (max-width:1024px) {

    .program-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .program-image img {
        width: 100%;
        max-width: 600px;
    }

    .title {
        font-size: 32px;
    }

    .desc {
        font-size: 15px;
    }

    .accordion-header {
        text-align: left;
    }

}



/* =========================
MOBILE VIEW (≤768px)
========================= */
@media (max-width:768px) {

    .program-section {
        padding: 50px 20px;
    }

    .program-container {
        flex-direction: column;
        gap: 30px;
    }

    .program-image img {
        width: 100%;
        border-radius: 16px;
    }

    .title {
        font-size: 28px;
    }

    .desc {
        font-size: 14px;
    }

    .accordion-item {
        padding: 15px 0;
    }

    .accordion-header h3 {
        font-size: 16px;
    }

    .toggle {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

}


/* =========================
SMALL MOBILE (≤480px)
========================= */
@media (max-width:480px) {

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 12px;
    }

    .desc {
        font-size: 13px;
    }

}

.testimonial-section{
background:#2f63d8;
padding:80px 20px;
color:white;
}

.testimonial-container{
max-width:1200px;
margin:auto;
}

.testimonial-title{
font-size:40px;
font-weight:700;
margin-bottom:15px;
}

.testimonial-desc{
max-width:600px;
color:#d6e2ff;
margin-bottom:50px;
line-height:1.6;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial-card{
background:rgba(255,255,255,0.12);
padding:25px;
border-radius:14px;
position:relative;
backdrop-filter:blur(6px);
}

.user-info{
display:flex;
align-items:center;
gap:12px;
margin-bottom:15px;
}

.avatar{
width:40px;
height:40px;
border-radius:50%;
background:#e5e7eb;
}

.user-info h4{
margin:0;
font-size:16px;
}

.user-info span{
font-size:13px;
color:#c7d5ff;
}

.review{
font-size:14px;
line-height:1.6;
color:#e8efff;
}

.quote{
position:absolute;
right:20px;
top:20px;
font-size:40px;
opacity:0.3;
}

/* Tablet */

@media(max-width:1024px){

.testimonial-grid{
grid-template-columns:repeat(2,1fr);
}

.testimonial-title{
font-size:32px;
}

}

/* Mobile */

@media(max-width:768px){

.testimonial-grid{
grid-template-columns:1fr;
}

.testimonial-title{
font-size:28px;
}

}

/* Blue background top */

.faq-section{
background:linear-gradient(#2f63d8 250px, #f3f4f6 250px);
padding-bottom:80px;
}

/* Image */

.faq-image{
max-width:900px;
margin:auto;
position:relative;
top:60px;
}

.faq-image img{
width:100%;
border-radius:20px;
display:block;
}

.play-btn{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,0.4);
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:20px;
}


/* =========================
FAQ SECTION
========================= */

.faq-section{
background:linear-gradient(#2f63d8 250px, #f3f4f6 250px);
padding-bottom:80px;
}

/* =========================
VIDEO
========================= */

.faq-image{
max-width:900px;
margin:auto;
position:relative;
top:60px;
}

.faq-image iframe{
width:100%;
height:500px;
border-radius:20px;
border:0;
display:block;
}

/* =========================
FAQ CONTENT
========================= */

.faq-container{
max-width:800px;
margin:auto;
margin-top:100px;
text-align:center;
}

.faq-title{
font-size:32px;
color:#222;
margin-bottom:10px;
}

.faq-desc{
color:#6b7280;
margin-bottom:40px;
}

/* =========================
ACCORDION
========================= */

.faq-item{
border-top:1px solid #ddd;
padding:18px 0;
text-align:left;
}

.faq-header{
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
}

.faq-header h4{
margin:0;
font-size:16px;
}

.faq-toggle{
width:40px;
height:40px;
border:none;
background:#e9efff;
border-radius:10px;
font-size:18px;
cursor:pointer;
}

.faq-content{
display:none;
margin-top:10px;
color:#6b7280;
font-size:14px;
}

.faq-item.active .faq-content{
display:block;
}


/* =========================
TABLET VIEW (≤1024px)
========================= */

@media (max-width:1024px){

.faq-section{
background:linear-gradient(#2f63d8 200px,#f3f4f6 200px);
}

.faq-image{
max-width:90%;
top:40px;
}

.faq-image iframe{
height:420px;
}

.faq-container{
max-width:90%;
margin-top:80px;
}

.faq-title{
font-size:28px;
}

.faq-desc{
font-size:14px;
}

}


/* =========================
MOBILE VIEW (≤768px)
========================= */

@media (max-width:768px){

.faq-section{
background:linear-gradient(#2f63d8 160px,#f3f4f6 160px);
padding-bottom:60px;
}

.faq-image{
top:30px;
}

.faq-image iframe{
height:260px;
border-radius:16px;
}

.faq-container{
margin-top:70px;
}

.faq-title{
font-size:24px;
}

.faq-desc{
font-size:13px;
margin-bottom:30px;
}

.faq-header h4{
font-size:14px;
}

.faq-toggle{
width:35px;
height:35px;
font-size:16px;
}

.faq-content{
font-size:13px;
}

}


/* =========================
SMALL MOBILE (≤480px)
========================= */

@media (max-width:480px){

.faq-title{
font-size:22px;
}

.faq-desc{
font-size:12px;
}

.faq-header{
gap:10px;
}

}


/* Section background */

.cta-section{
padding:60px 20px;
background:#f3f4f6;
display:flex;
justify-content:center;
}

/* CTA Box */

.cta-box{
max-width:1200px;
width:100%;
padding:60px;
border-radius:30px;
color:white;

/* gradient + grid overlay */

background:
linear-gradient(135deg,#234aa6,#2f63d8),
repeating-linear-gradient(
0deg,
rgba(255,255,255,0.05) 0px,
rgba(255,255,255,0.05) 1px,
transparent 1px,
transparent 40px
),
repeating-linear-gradient(
90deg,
rgba(255,255,255,0.05) 0px,
rgba(255,255,255,0.05) 1px,
transparent 1px,
transparent 40px
);
}

/* Title */

.cta-title{
font-size:40px;
font-weight:700;
margin-bottom:15px;
}

/* Description */

.cta-desc{
max-width:600px;
color:#d6e2ff;
margin-bottom:30px;
line-height:1.6;
}

/* Buttons */

.cta-buttons{
display:flex;
gap:15px;
}

.btn-primary{
background:white;
color:#2f63d8;
padding:12px 22px;
border-radius:8px;
text-decoration:none;
font-size:14px;
font-weight:500;
}

.btn-primarys{
background:white;
color:#2f63d8;
padding:12px 22px;
border-radius:8px;
text-decoration:none;
font-size:14px;
font-weight:500;
}

.btn-outline{
border:1px solid white;
color:white;
padding:12px 22px;
border-radius:8px;
text-decoration:none;
font-size:14px;
}

/* Hover */

.btn-primary:hover{
background:#f0f0f0;
}

.btn-outline:hover{
background:rgba(255,255,255,0.1);
}

/* Tablet */

@media(max-width:1024px){

.cta-box{
padding:50px;
}

.cta-title{
font-size:32px;
}

}

/* Mobile */

@media(max-width:768px){

.cta-box{
padding:40px;
}

.cta-title{
font-size:26px;
}

.btn-primarys{
    display:none
}

.cta-buttons{
flex-direction:column;
align-items:flex-start;
}

.btn-primary,
.btn-outline{
width:200px;
text-align:center;
}

}

.footer{
background-color: white;

color:black;
padding:70px 20px 30px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr 1.5fr;
gap:40px;
}

.footer-logo{
width:200px;
margin-bottom:15px;
}

.footer-about p{
color:#000;
font-size:14px;
line-height:1.6;
}

.footer-column h4{
margin-bottom:15px;
font-size:16px;
}

.footer-column ul{
list-style:none;
padding:0;
margin:0;
}

.footer-column li{
font-size:14px;
color:#000;
margin-bottom:10px;
}

.footer-bottom{
max-width:1200px;
margin:auto;
text-align:center;
margin-top:40px;
}

.footer-bottom hr{
border:none;
border-top:1px solid rgba(255,255,255,0.2);
margin-bottom:20px;
}

.footer-bottom p{
font-size:14px;
color:#d6e2ff;
}


/* Tablet */

@media(max-width:1024px){

.footer-container{
grid-template-columns:1fr 1fr;
gap:30px;
}

}


/* Mobile */

@media(max-width:768px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-logo{
margin:auto;
}

.footer-column ul{
padding:0;
}

}


.avatar-image{
    width: 40px;
    height: 40px;
    border-radius: 20px;
}