@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f8f5ec;
}

/* Navbar */
.clinic-navbar {
    background: #fdf8f0;
    padding: 5px 20px;
    transition: .4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

/* Sticky Effect */
.clinic-navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    padding: 10px 0;
}

/* Logo */
.clinic-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #214f28 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clinic-logo i {
    color: #214f28;
    font-size: 1.3rem;
}

/* Menu */
.navbar-nav {
    gap: 10px;
}

.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #444 !important;
    padding: 10px 15px !important;
    transition: .3s;
}

.nav-link:hover {
    color: #214f28 !important;
}

/* Active */
.nav-link.active {
    color: #214f28 !important;
    font-weight: 600;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 70%;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: #214f28;
    transition: .3s;
}

/* Search */
.search-btn {
    color: #214f28;
    font-size: 20px;
    transition: .3s;
}

.search-btn:hover {
    transform: scale(1.1);
    color: #0f3c15;
}

/* Appointment Button */
.appointment-btn {
    background: #214f28;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(33, 79, 40, .2);
}

.appointment-btn:hover {
    background: #183d1d;
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile Menu */
.offcanvas {
    width: 280px;
}

.offcanvas .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.clinic-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.clinic-logo img {
    height: 70px;
    /* Desktop */
    width: auto;
    object-fit: contain;

}

.address-link {
    color: #666;
    text-decoration: none;
    transition: 0.3s ease;
    line-height: 1.6;
}

.address-link:hover {
    color: #2f5e31;
    text-decoration: underline;
}

.clinic-location-card {
    padding: 15px;
    border-radius: 20px;
    height: 100%;

}

.clinic-location-card h4 {
    font-size: 22px;
    line-height: 1.05;
    font-weight: 700;
    color: #204d2d;
    font-family: Georgia, serif;
}

.clinic-location-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 150px;
}

/* Tablet */
@media (max-width: 991px) {
    .clinic-logo img {
        height: 60px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .clinic-logo img {
        height: 50px;
    }
}

/* Responsive */
@media(max-width:991px) {

    .clinic-navbar {
        padding: 12px 0;
    }

    .clinic-logo {
        font-size: 1.2rem;
    }

    .appointment-btn {
        width: 100%;
        text-align: center;
    }
}

/*==============================
ABOUT DOCTOR SECTION
===============================*/

.siddha-about-section {
    background: #fbf8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 40px;
}

/* Image Side */

.doctor-image-wrapper {
    position: relative;
}

.doctor-image-card {
    background: #ece7d7;
    padding: 22px;
    border-radius: 30px;
}



.doctor-image-card img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* Content */

.siddha-content {
    margin-left: 20px;
}

.siddha-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: #e4efd4;
    color: #315b2d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.siddha-title {
    font-size: 50px;
    line-height: 1.05;
    font-weight: 700;
    color: #204d2d;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.siddha-title span {
    font-size: 28px;
    line-height: 1.05;
    font-weight: 700;
    color: #204d2d;
    margin-bottom: 25px;
    font-family: Georgia, serif;
}

.siddha-subtitle {
    color: #6d6559;
    font-style: italic;
    font-size: 26px;
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 4px;
    border-radius: 50px;
    background: #95c16f;
    margin-bottom: 30px;
}

.siddha-description {
    font-size: 20px;
    line-height: 1.9;
    color: #575757;
    margin-bottom: 60px;
}

/* Address */

.clinic-address {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #666;
    margin-bottom: 10px;
    margin-top: 40px;
}

.clinic-address i {
    color: #315b2d;
    font-size: 22px;
    margin-top: 4px;
}

/* Buttons */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    margin-top: 10px;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-whatsapp:hover {
    background: #18b554;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 2px solid #315b2d;
    color: #315b2d;
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-outline-custom:hover {
    background: #315b2d;
    color: #fff;
}

/* Social */

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: #315b2d;
    font-size: 24px;
    transition: .3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/*==============================
TABLET
===============================*/

@media (max-width: 991px) {

    .siddha-about-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .siddha-content {
        text-align: center;
    }

    .clinic-address {
        justify-content: center;
        margin-top: 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/*==============================
MOBILE
===============================*/

@media(max-width:767px) {

    .siddha-about-section {
        padding: 100px 0;
    }

    .doctor-image-card {
        border-radius: 20px;
        padding: 12px;
    }

    .doctor-image-card img {
        border-radius: 14px;
    }

    .siddha-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .siddha-subtitle {
        font-size: 20px;
    }

    .siddha-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    .clinic-address {
        font-size: 14px;
    }
}

/* Small Mobile */

@media(max-width:480px) {

    .siddha-title {
        font-size: 30px;
    }

    .siddha-badge {
        font-size: 12px;
        padding: 7px 14px;
    }
}

/* =====================================
BOOK SHOWCASE SECTION
===================================== */

.book-showcase-section {
    min-height: 100vh;
    padding: 120px 0 30px;
    background: #f8f5ec;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Badge */

.book-category {
    display: inline-block;
    background: #e3edd5;
    color: #214f28;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Title */

.book-title {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    color: #214f28;
    margin-bottom: 25px;
    font-family: Georgia, serif;
}

/* Author */

.book-author {
    font-size: 24px;
    color: #444;
    margin-bottom: 15px;
}

.book-author strong {
    color: #214f28;
}

.book-author span {
    font-size: 18px;
    color: #777;
    margin-top: 4px;
}

/* Description */

.book-description {
    font-size: 20px;
    line-height: 2;
    color: #666;
    margin-bottom: 40px;
}

/* Stats */

.book-meta {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.book-meta h5 {
    font-size: 40px;
    font-weight: 700;
    color: #214f28;
    margin-bottom: 5px;
}

.book-meta span {
    font-size: 18px;
    color: #666;
}

/* Features */

.book-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    background: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.feature-item i {
    color: #2f8f46;
    margin-right: 8px;
}

/* Buttons */

.book-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-buy-book {
    background: #214f28;
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 60px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-buy-book:hover {
    background: #16391b;
    color: #fff;
    transform: translateY(-2px);
}

.btn-watch-video {
    border: 2px solid #214f28;
    color: #214f28;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 60px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-watch-video:hover {
    background: #214f28;
    color: #fff;
}

/* =====================================
VIDEO CARD
===================================== */

.hero-video-card {
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.video-label {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(33, 79, 40, .95);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.video-label i {
    margin-right: 6px;
}

.hero-video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-info {
    padding: 25px;
}

.video-info h5 {
    font-size: 22px;
    font-weight: 700;
    color: #214f28;
    margin-bottom: 10px;
}

.video-info p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* =====================================
LAPTOP
===================================== */

@media (max-width: 1399px) {

    .book-title {
        font-size: 56px;
    }

    .book-description {
        font-size: 18px;
    }

}

/* =====================================
TABLET
===================================== */

@media (max-width: 991px) {

    .book-showcase-section {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .book-title {
        font-size: 48px;
    }

    .book-author {
        font-size: 22px;
    }

    .book-description {
        font-size: 18px;
    }

    .book-meta {
        justify-content: center;
    }

    .book-actions {
        justify-content: center;
    }

    .book-features {
        margin-bottom: 30px;
    }

    .hero-video-card {
        margin-top: 5px;
    }

}

/* =====================================
MOBILE
===================================== */

@media (max-width: 767px) {

    .book-showcase-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .book-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .book-author {
        font-size: 20px;
    }

    .book-author span {
        font-size: 15px;
    }

    .book-description {
        font-size: 16px;
        line-height: 1.9;
    }

    .book-meta {
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .book-meta h5 {
        font-size: 30px;
    }

    .book-meta span {
        font-size: 14px;
    }

    .book-features {
        grid-template-columns: 1fr;
    }

    .book-actions {
        flex-direction: column;
    }

    .btn-buy-book,
    .btn-watch-video {
        width: 100%;
        text-align: center;
    }

    .video-info {
        padding: 20px;
    }

}

/* =====================================
SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    .book-category {
        font-size: 12px;
        padding: 8px 16px;
    }

    .book-title {
        font-size: 32px;
    }

    .book-description {
        font-size: 15px;
    }

    .book-meta {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        text-align: center;
    }

    .book-meta h5 {
        font-size: 22px;
    }

    .book-meta span {
        font-size: 12px;
    }

    .video-label {
        top: 10px;
        left: 10px;
        font-size: 11px;
        padding: 8px 12px;
    }

    .video-info h5 {
        font-size: 18px;
    }

}