/* ===================== RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
}


/* ===== TOP BAR CSS ===== */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: #f5f5f5;
    font-size: 14px;
    position: relative;
    z-index: 1000;
}

/* Contact Info */
.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Right Dropdowns */
.top-dropdowns {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
}

.flag-icon {
    width: 18px;
    height: auto;
    vertical-align: middle;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 2000;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    text-decoration: none;
    color: #000;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #00a889;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .top-dropdowns {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ===================== TOP SCROLLER ===================== */
.top-scroll {
    background: #00a889;
    color: white;
    padding: 7px 0;
    font-size: 14px;
    text-align: center;
}

.top-scroll .top-link {
    color: yellow;
    font-weight: 600;
    text-decoration: none;
}

.top-scroll .top-link:hover {
    text-decoration: underline;
}

/* ===================== DROPDOWNS ===================== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding: 0 12px;
    cursor: pointer;
    line-height: 1.5;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1;
}

.dropdown-content a {
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #00a889;
}

/* ===================== NAVBAR ===================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 30px;
    width: 70px;
    object-fit: contain;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

nav a:hover {
    color: #00a889;
}

.cart {
    font-size: 24px;
    margin-left: 10px;
}

/* ===================== BANNER ===================== */
/* FULL BANNER */

.main-banner {
    width: 100%;
    height: 500px;
    margin: 0, auto;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #a9eee6 !important;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}



/* Banner Images */
.banner-images {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden; 
}

.banner-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    border-radius: 20px;   
}

.banner-images img.active {
    opacity: 1;
    z-index: 2;
}


/* Text Overlay */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 3;
}

.banner-content h1 {
    font-size: 50px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.banner-content p {
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.5;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.banner-btn {
    margin-top: 25px;
    display: inline-block;
    padding: 14px 28px;
    background: #ff6600;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.banner-btn:hover {
    background: #e05500;
}

/* Decorative Wave Bottom */
.main-banner::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 90px;
    background: url('wave.svg') no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 4;
}

/* Responsive */
@media (max-width: 900px) {
    .main-banner {
        height: 400px;
    }

    .banner-content h1 {
        font-size: 35px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .banner-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ===================== VIDEO SLIDER ===================== */
.video-slider {
    padding: 40px 0;
    background: white;
    text-align: center;
}

.slider-wrapper {
    display: flex;
    justify-content: center;
}

.slider-container {
    display: flex;
    gap: 25px;
    padding: 15px 10px;
    margin: 0 auto;
    justify-content: center;
    max-width: 90%;
    overflow-x: auto;
    scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slide {
    position: relative;
    flex: 0 0 220px;
}

.slide img {
    width: 220px;
    height: 340px;
    border-radius: 12px;
    object-fit: cover;
}

.btn-group {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.insta-btn,
.yt-btn {
    background: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.insta-btn { color: #E1306C; }
.yt-btn { color: red; }

@media only screen and (max-width: 480px) {

    .video-slider {
        padding: 20px 0;
        text-align: center;
    }

    .slider-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: hidden;
        padding: 0;
    }

    .slider-container {
        display: flex;
        gap: 0; /* remove gap for full-width slides */
        padding: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .slider-container::-webkit-scrollbar {
        display: none;
    }

    /* Make each slide full width */
    .slide {
        flex: 0 0 100%; /* full screen width */
        scroll-snap-align: start;
        position: relative;
    }

    .slide img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        border-radius: 12px;
        object-fit: cover;
    }

    .btn-group {
        bottom: 8px;
        gap: 6px;
    }

    .insta-btn,
    .yt-btn {
        padding: 5px 8px;
        font-size: 12px;
        border-radius: 6px;
    }
}




/* ===================== PRODUCT SECTION ===================== */
/* PRODUCT SECTION */
.product-section {
    padding: 50px 20px;
    background: #f8f9fc;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Scroll wrapper */
.products-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

/* Container */
.products-container {
    display: flex;
    gap: 20px;
    padding: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
}

/* Product Card */
.product-card {
    min-width: 250px;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
}

/* Product Image */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Title */
.product-card .title {
    font-size: 16px;
    font-weight: 600;
    height: 40px;
    line-height: 1.3;
    overflow: hidden;
}

/* Price */
.price {
    font-size: 18px;
    font-weight: 700;
    margin-top: 5px;
}

.old-price {
    color: #d00000;
    margin-left: 5px;
    text-decoration: line-through;
}

/* Button */
.add-btn {
    width: 100%;
    background: #ffb703;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    margin-top: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.add-btn:hover {
    background: #faa307;
}

/* Fade edges */
.fade-left, .fade-right {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #f8f9fc, transparent);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #f8f9fc, transparent);
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    width: 420px;
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.25);
    text-align: center;
}

.modal-img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    margin-bottom: 15px;
}

.close-btn {
    float: right;
    font-size: 26px;
    cursor: pointer;
}

.price {
    font-size: 22px;
    font-weight: 700;
}

.old-price {
    color: #d00000;
    text-decoration: line-through;
    margin-left: 5px;
}

.desc {
    margin-top: 10px;
    font-size: 15px;
}


/* ===================== BEST SELLERS ===================== */
.cart-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: #28a745;
    color: white;
    border-radius: 8px;
    display: none;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(78, 76, 76, 0.3);
    z-index: 9999;
    animation: fadein 0.3s;
}

@keyframes fadein {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.best-seller-section {
    padding: 40px;
}

.best-seller-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.best-seller-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.best-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(228, 223, 223, 0.1);
}

.best-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.best-card h3 {
    font-size: 18px;
    font-weight: 600;
    min-height: 45px;
}

.stars {
    color: #f4b400;
    margin: 5px 0;
}

.best-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.best-old-price {
    color: red;
    text-decoration: line-through;
    font-size: 15px;
}

.black-btn {
    width: 100%;
    background: #888787;
    color: #151414;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 12px;
}

.black-btn:hover {
    background: #333;
}

/* ===================== FOOTER ===================== */
/* TIMBER FOOTER */
.timber-footer {
    background: #19f5c2;
    color: #000;
    font-family: Arial, sans-serif;
    padding: 40px 50px;
}

/* TOP, MID, BOTTOM SECTIONS */
.footer-top,
.footer-mid,
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Footer Headings */
.footer-col h4,
.footer-mid-col h3 {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Footer Links/Text */
.footer-col p,
.footer-mid-col p,
.footer-bottom p {
    margin: 6px 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.footer-col p:hover,
.footer-mid-col p:hover,
.footer-bottom p:hover,
.footer-top p:hover {
    color: #f3a21a;
    transition: 0.3s ease;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
    font-size: 22px;
}

.social-icons i:hover {
    color: #f3a21a;
    transform: scale(1.1);
    transition: 0.3s ease;
}

/* STORE & NEWSLETTER BUTTONS */
.store-btn,
.newsletter-box button {
    background: #f3a21a;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px;
}

.store-btn:hover,
.newsletter-box button:hover {
    background: #000;
    color: #fff;
}

/* Newsletter Box */
.newsletter-box {
    display: flex;
    margin-top: 10px;
}

.newsletter-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.newsletter-box button {
    border-radius: 0 6px 6px 0;
}

/* Privacy Checkbox */
.privacy-box {
    margin-top: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer Images */
.footer-bottom img,
.footer-mid img {
    width: 70px;   /* smaller for better alignment */
    height: auto;
    vertical-align: middle;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .footer-top,
    .footer-mid,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col, .footer-mid-col {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-box {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-box input,
    .newsletter-box button,
    .store-btn {
        width: 100%;
    }
}

/* ===================== DOCTOR SECTION ===================== */
.doctor-section,
.services-section,
.combo-section {
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #000;
    margin-bottom: 10px;
}

.section-about {
    text-align: center;
    color: #444;
    font-size: 16px;
    margin-bottom: 25px;
}

.doctor-container {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
}

.doctor-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.doctor-photo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-info {
    flex: 1;
    margin-left: 20px;
}

.doctor-info h2 {
    margin: 0;
    font-size: 22px;
    color: #1a73e8;
}

.speciality, .experience, .location, .clinic, .fee {
    margin: 4px 0;
    color: #555;
}

.rating { margin-top: 10px; }

.percent { background: #4CAF50; padding: 5px 10px; color: #fff; border-radius: 5px; }

.stories { margin-left: 10px; text-decoration: none; color: #1a73e8; }

.doctor-actions {
    text-align: right;
    width: 220px;
}

.available { color: #4CAF50; font-weight: bold; }

.book-btn, .contact-btn {
    display: block;
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.book-btn { background: #1a73e8; color: #fff; }
.contact-btn { background: #f0f0f0; color: #444; }

/* ===================== SERVICES ===================== */
/* SERVICES SECTION */
.services-section {
    padding: 40px 0;
    text-align: center; /* whole section center */
}

/* HEADING PERFECT CENTER */
.services-heading {
    font-size: 28px;
    font-weight: bold;
    color: #00a889;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
    display: block;
}

/* SERVICES GRID */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* SERVICE CARD */
.service-card {
    flex: 1 1 150px;
    max-width: 180px;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
    cursor: pointer;
}

.service-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 16px;
    color: #00a889;
    margin-bottom: 5px;
}

.service-card:hover {
    background: rgb(170, 254, 241);
}

/* ===================== COMBO CARDS ===================== */
.combo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.combo-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: 250px;
    height: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s;
}

.combo-card:hover { transform: translateY(-5px); }

.combo-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
}

.combo-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
    min-height: 50px;
}

.combo-card .price { font-size: 16px; color: #00a889; margin-bottom: 10px; }
.combo-card .old-price { text-decoration: line-through; color: #999; font-size: 14px; margin-left: 5px; }
.combo-card .add-btn { background: #00a889; color: #fff; border: none; padding: 10px 15px; border-radius: 5px; cursor: pointer; font-size: 14px; width: 100%; }
.combo-card .add-btn:hover { background: #00876c; }

/* ===================== CART SIDEBAR ===================== */
#cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    padding: 20px;
    transition: 0.3s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
    border-radius: 10px 0 0 10px;
}

#cart-sidebar.active { right: 0; }

#overlay {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#close-cart {
    border: none;
    background: red;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* ===================== contact ===================== */
.contact-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.contact-floating a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s, background 0.3s;
}

.call-btn {
    background: #007bff; /* blue for call */
}

.whatsapp-btn {
    background: #25D366; /* green for WhatsApp */
}

.contact-floating a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}



/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: #f5fcff;
}

.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #00a889;
    margin-bottom: 30px;
}

.faq-item {
    background: #e6fff7;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #c6f5e8;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: #e6fff7;
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: #008f73;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 10px 0 15px;
    color: #444;
}


/* BLOG SECTION */
.blog-section {
    padding: 60px 0;
    background: #f4fffd;
}

/* Title */
.blog-title {
    text-align: center;
    margin-bottom: 40px;
}

.blog-title h2 {
    font-size: 34px;
    color: #00a889;
    font-weight: 700;
}

.blog-title p {
    font-size: 16px;
    color: #666;
}

/* Blog Grid */
.blog-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 0 20px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.10);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Image Zoom Wrapper */
.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.12);
}

/* Blog Content */
.blog-content {
    padding: 18px;
}

.blog-content h3 {
    font-size: 20px;
    color: #222;
    line-height: 1.3;
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin: 8px 0 12px;
    height: 48px;
    overflow: hidden;
}

/* Read More Button */
.blog-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #00a889;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.25s ease;
}

.blog-btn:hover {
    background: #008a74;
}

/* View All Button */
.blog-view-all {
    text-align: center;
    margin-top: 40px;
}

.blog-view-all a {
    padding: 12px 26px;
    background: #008f73;
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.25s ease;
}

.blog-view-all a:hover {
    background: #006e59;
}

/* Responsive */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 180px;
    }
}

/* ============================================
   DEFAULT (DESKTOP) VIEW
   
/* DESKTOP DEFAULT */
.mobile-menu-btn {
    display: none !important;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ============================================
   MOBILE VIEW (0 - 480px)
============================================ */
@media only screen and (max-width: 480px) {
    @media (max-width: 480px) {
    .mobile-menu-btn {
        display: block !important;
    }
    /* Dropdown button left aligned in mobile */
.navbar .dropbtn {
    text-align: left !important;
    width: 100%;
    padding-left: 20px;
}

}


    /* Header */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background: #fff;
        position: relative;
    }

    /* Show hamburger */
    .mobile-menu-btn {
        display: block;
        font-size: 28px;
        color: #00a889;
        cursor: pointer;
        z-index: 9999;
    }

    /* Hide navbar */
    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #ffffff;
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        z-index: 999;
    }

    /* Show when active */
    .navbar.active {
        display: flex;
    }

    /* Menu items */
    .navbar a,
    .dropdown .dropbtn {
        padding: 15px;
        display: block;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    /* Dropdown inside navbar */
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        width: 100%;
    }
}
