body {
    background-color: #fefcfa;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
    padding: 80px 8%;
    background: #f8f6f2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* ============================= */
/* LEFT SIDE */
/* ============================= */

.hero-subtext {
    color: #1b9c91;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-heading {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: #14365a;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.hero-tagline {
    font-size: 2rem;
    color: #4f7a57;
    font-family: cursive;
    margin-bottom: 25px;
}

.hero-text {
    max-width: 550px;

    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;

    margin-bottom: 35px;
}

/* ============================= */
/* BUTTONS */
/* ============================= */

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    text-decoration: none;
    font-weight: 600;

    border-radius: 10px;

    transition: 0.3s ease;
}

.hero-btn.primary {
    background: #1BA39C;
    color: #fff;
}

.hero-btn.primary:hover {
    background: #1ba39cd4;
    transform: translateY(-3px);
}

.hero-btn.secondary {
    background: #fff;
    color: #000000;

    border: 2px solid #1BA39C;
}

.hero-btn.secondary:hover {
    background: #1BA39C;
    color: #fff;

    transform: translateY(-3px);
}

/* ============================= */
/* IMAGE */
/* ============================= */

.hero-image {
    background: white;
    padding: 15px;

    border-radius: 40px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08);
}

.hero-image img {
    border-radius: 25px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    box-shadow:
        inset 0 0 60px rgba(248,246,242,0.35),
        inset 0 0 120px rgba(248,246,242,0.2);
}

/* Glow behind image */

.hero-image::before {
    content: "";

    position: absolute;

    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;

    background: rgba(95,138,105,0.18);

    filter: blur(70px);

    z-index: -1;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 1000px) {

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;

        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: 450px;
        border-radius: 30px;
    }
}

@media (max-width: 600px) {

    .hero {
        padding: 70px 6%;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .hero-image {
        height: 350px;
    }

    .hero-btn {
        width: 100%;
    }
}



/* ============================= */
/* QUALIFICATION SECTION */
/* ============================= */
.about {
    padding: 30px 8%;
    background: #f8f6f2;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-section {
    background: #ffffff;
    border-radius: 40px;
    padding: 60px;

    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 80px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CERTIFICATE IMAGES */

.about-images {
    position: relative;
    height: 340px;
    min-width: 420px;
}

.about-images img {
    width: 180px;
    height: 260px;

    object-fit: contain;
    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);

    transition: 0.3s ease;
}

.card1 {
    position: absolute;
    left: 0;
    top: 40px;
}

.card2 {
    position: absolute;
    left: 120px;
    top: 0;
    z-index: 3;
}

.card3 {
    position: absolute;
    left: 240px;
    top: 40px;
}

.about-images img:hover {
    transform: translateY(-8px) scale(1.03);
}

/* TEXT */

.about-right {
    max-width: 650px;
}

.about-heading {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: #14365a;
    margin-bottom: 25px;
    font-family: 'Times New Roman', Times, serif;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

/* MOBILE */

@media (max-width: 900px) {

    .about {
        padding: 60px 6%;
    }

    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 25px;
        gap: 40px;
    }

    .about-images {
        position: static;
        height: auto;
        min-width: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;

        order: 2;
    }

    .about-right {
        order: 1;
        margin: 0 auto;
    }

    .card1,
    .card2,
    .card3 {
        position: static;
    }

    .about-images img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
}



/* ============================= */
/* CLINIC ABOUT SECTION */
/* ============================= */
.clinic-about-section {
    padding: 60px 8%;
    background: #f8f6f2;
}

.clinic-about-container {
    max-width: 1400px;
    margin: 0 auto;

    background: #ffffff;
    border-radius: 35px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

.clinic-about-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.clinic-about-header span {
    color: #1b9c91;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.clinic-about-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #17351f;
    margin: 15px 0;
    font-family: 'Times New Roman', Times, serif;
}

.clinic-about-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Card Layout */
.clinic-about-card {
    background: #fdfdfc;
    border-radius: 35px;
    padding: 45px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

/* Video */
.clinic-video {
    display: flex;
    justify-content: center;
}

.clinic-video video {
    width: 100%;
    max-width: 400px;
    height: auto;

    border-radius: 25px;
    display: block;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Text */
.clinic-about-content h3 {
    font-size: 2.2rem;
    color: #122b45;
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.clinic-about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
    max-width: 650px;
}

/* Feature Pills */
.clinic-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.clinic-feature {
    background: #f1f7ef;
    color: #1f5a33;

    padding: 15px 18px;
    border-radius: 14px;

    font-size: 0.95rem;
    font-weight: 600;

    border: 1px solid rgba(31,90,51,0.12);
}

/* Mobile */
@media (max-width: 900px) {
    .clinic-about-section {
        padding: 70px 6%;
    }

    .clinic-about-card {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 35px;
    }

    .clinic-video video {
        height: 420px;
    }

    .clinic-features {
        grid-template-columns: 1fr;
    }

    .clinic-about-content {
        text-align: center;
    }

    .clinic-about-content p {
        margin-left: auto;
        margin-right: auto;
    }
}