        body {
            font-family: 'Poppins', sans-serif;
            padding-top: 120px;
            /* Account for fixed header */
        }

        /* Carousel styling */
        .carousel-item {
            height: 70vh;
            min-height: 500px;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

        .carousel-caption {
            bottom: 10%;
            left: 10%;
            right: auto;
            text-align: left;
            padding: 2rem;
            border-radius: 10px;
            max-width: 600px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }

        /* Mobile menu */
        .mobile-menu {
            max-height: calc(100vh - 120px);
            overflow-y: auto;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            body {
                padding-top: 80px;
            }

            .carousel-item {
                height: 50vh;
                min-height: 300px;
            }

            .carousel-caption {
                bottom: 5%;
                left: 5%;
                right: 5%;
                padding: 1rem;
            }

            .bannerheading {
                font-size: 1.5rem !important;
            }
        }

       

        .signature-procedures {
            background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
        }

        .glide__slide {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .glide__slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .glide__bullet--active {
            background-color: #0d9488 !important;
            width: 16px;
            border-radius: 8px;
        }

        .machine-banner {
            position: relative;
            width: 100%;
            height: 600px;
            background-image: url("Banners/machine%20banner%20-%20desktop.jpg");
            background-size: cover;
            background-position: center;
            color: black;
            display: flex;
            padding-top: 5%;
            padding-left: 5%;
        }

        .machine-banner {
            position: relative;
            width: 100%;
            height: 600px;
            background-image: url("/Assets/Banners/machine-banner-desktop.jpg");
            background-size: cover;
            background-position: center;
            color: black;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            padding-top: 5%;
            padding-left: 5%;
        }

        .machine-banner-content {
            max-width: 60%;
            font-size: 32px;
            line-height: 1.5;
            text-align: left;
        }

        .machine-banner h1 {
            font-size: 36px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        @media screen and (max-width: 768px) {
            .machine-banner {
                height: 300px;
                justify-content: center;
                align-items: center;
                background-image: url('/Assets/Banners/machine-mobile-banner.jpg');
                width: 100%;
                max-width: 100%;
                margin: 0;
                padding: 20px;
            }

            .machine-banner-content {
                max-width: 100%;
                font-size: 20px;
                width: 100%;
                text-align: center;
            }

            .machine-banner h1 {
                width: 100% !important;
                font-size: 20px !important;
                margin-bottom: 8px;
            }
        }    /* Google Reviews Section Styles */
    .google-reviews-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        position: relative;
        overflow: hidden;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .google-logo {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
        line-height: 1.3;
    }

    .section-description {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 0 auto 25px;
        line-height: 1.6;
    }

    .average-rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .stars {
        color: #FFD700;
        font-size: 24px;
        letter-spacing: 2px;
    }

    .rating-number {
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .based-on {
        font-size: 16px;
        color: #666;
    }

    /* Reviews Scroll Container */
    .reviews-scroll-container {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .reviews-scroll-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .reviews-track {
        display: inline-flex;
        gap: 25px;
        padding: 0 15px;
    }

    /* Square Review Card */
    .review-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 300px;
        height: 300px;
        flex-shrink: 0;
        display: flex;
    }

    .review-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .review-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .reviewer-avatar img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .reviewer-info {
        flex: 1;
    }

    .reviewer-name {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #333;
    }

    .review-rating {
        color: #FFD700;
        font-size: 16px;
    }

    .review-text {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        flex: 1;
        margin-bottom: 15px;
    }

    .review-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }

    .review-date {
        font-size: 13px;
        color: #888;
    }

    .treatment-type {
        display: inline-block;
        background: #f0f7f8;
        color: #008284;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        color: #666;
        font-size: 14px;
        opacity: 0.8;
        animation: bounce 2s infinite;
    }

    .scroll-arrow {
        font-size: 18px;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(0);
        }
        40% {
            transform: translateX(10px);
        }
        60% {
            transform: translateX(5px);
        }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .google-reviews-section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 28px;
        }

        .section-description {
            font-size: 16px;
        }

        .review-card {
            width: 280px;
            height: 280px;
        }

        .scroll-text {
            display: none;
        }
    }    /* Google Reviews Section Styles */
    .google-reviews-section {
        padding: 80px 0;
        background-color: #f8f9fa;
        position: relative;
        overflow: hidden;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .google-logo {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
        line-height: 1.3;
    }

    .section-description {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 0 auto 25px;
        line-height: 1.6;
    }

    .average-rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .stars {
        color: #FFD700;
        font-size: 24px;
        letter-spacing: 2px;
    }

    .rating-number {
        font-size: 24px;
        font-weight: 700;
        color: #333;
    }

    .based-on {
        font-size: 16px;
        color: #666;
    }

    /* Reviews Scroll Container */
    .reviews-scroll-container {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    .reviews-scroll-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .reviews-track {
        display: inline-flex;
        gap: 25px;
        padding: 0 15px;
    }

    /* Square Review Card */
    .review-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 300px;
        height: 300px;
        flex-shrink: 0;
        display: flex;
    }

    .review-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .review-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .reviewer-avatar img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .reviewer-info {
        flex: 1;
    }

    .reviewer-name {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #333;
    }

    .review-rating {
        color: #FFD700;
        font-size: 16px;
    }

    .review-text {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        flex: 1;
        margin-bottom: 15px;
    }

    .review-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
    }

    .review-date {
        font-size: 13px;
        color: #888;
    }

    .treatment-type {
        display: inline-block;
        background: #f0f7f8;
        color: #008284;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
        color: #666;
        font-size: 14px;
        opacity: 0.8;
        animation: bounce 2s infinite;
    }

    .scroll-arrow {
        font-size: 18px;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(0);
        }
        40% {
            transform: translateX(10px);
        }
        60% {
            transform: translateX(5px);
        }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .google-reviews-section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 28px;
        }

        .section-description {
            font-size: 16px;
        }

        .review-card {
            width: 280px;
            height: 280px;
        }

        .scroll-text {
            display: none;
        }
    } /* FAQ Section Styles */
        .faq-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 36px;
            color: #1d3557;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 18px;
            color: #457b9d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* FAQ Container */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* FAQ Item */
        .faq-item {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 15px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            background: white;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: all 0.3s ease;
        }

        .faq-question h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #1d3557;
            flex: 1;
        }

        .faq-question:hover {
            background-color: #f7d6e0;
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            margin-left: 15px;
            position: relative;
        }

        .plus-icon,
        .minus-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 20px;
            font-weight: bold;
            color: #e63946;
            transition: all 0.3s ease;
        }

        .minus-icon {
            opacity: 0;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer p {
            margin: 0;
            padding-bottom: 20px;
            color: #457b9d;
            line-height: 1.6;
        }

        /* Active State */
        .faq-item.active .faq-question {
            background-color: #f7d6e0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 10px;
        }

        .faq-item.active .plus-icon {
            opacity: 0;
        }

        .faq-item.active .minus-icon {
            opacity: 1;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .faq-question {
                padding: 15px 20px;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .faq-answer p {
                font-size: 15px;
            }
        }    /* Media Gallery Section */
        .media-gallery-section {
            padding: 80px 0;
            background-color: #f8f9fa;
            position: relative;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 36px;
            color: #1d3557;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 18px;
            color: #457b9d;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Gallery Container */
        .gallery-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .gallery-track {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE/Edge */
            padding: 20px 0;
        }

        .gallery-track::-webkit-scrollbar {
            display: none;
            /* Chrome/Safari */
        }

        .gallery-item {
            flex: 0 0 300px;
            scroll-snap-align: start;
        }

        .gallery-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 400px;
            transition: all 0.4s ease;
        }

        .gallery-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-card:hover .gallery-image {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            color: white;
            padding: 30px 20px 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .overlay-content h3 {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .overlay-content p {
            font-size: 14px;
            margin: 0;
            opacity: 0.9;
        }

        /* Navigation Arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border: none;
            border-radius: 50%;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .nav-arrow:hover {
            background: #f7d6e0;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-arrow svg {
            width: 24px;
            height: 24px;
            color: #e63946;
        }

        .prev-arrow {
            left: -25px;
        }

        .next-arrow {
            right: -25px;
        }

        /* View All Button */
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 30px;
            background-color: #e63946;
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
        }

        .view-all-btn:hover {
            background-color: #d2337d;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover .btn-icon {
            transform: translateX(5px);
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .gallery-item {
                flex: 0 0 280px;
            }

            .gallery-card {
                height: 380px;
            }
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 32px;
            }

            .gallery-container {
                padding: 0 40px;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
            }

            .prev-arrow {
                left: -15px;
            }

            .next-arrow {
                right: -15px;
            }
        }

        @media (max-width: 768px) {
            .media-gallery-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .gallery-container {
                padding: 0 30px;
            }

            .gallery-item {
                flex: 0 0 240px;
            }

            .gallery-card {
                height: 320px;
            }

            .overlay-content h3 {
                font-size: 16px;
            }

            .overlay-content p {
                font-size: 13px;
            }
        }

        @media (max-width: 576px) {
            .gallery-container {
                padding: 0 20px;
            }

            .gallery-item {
                flex: 0 0 220px;
            }

            .gallery-card {
                height: 280px;
            }

            .nav-arrow {
                width: 36px;
                height: 36px;
            }

            .nav-arrow svg {
                width: 20px;
                height: 20px;
            }
        } /* Before After Gallery Styles */
        .before-after-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .before-after-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .before-after-container {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
        }

        .before-image,
        .after-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .after-image {
            width: 50%;
        }

        .before-after-slider {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: white;
            left: 50%;
            transform: translateX(-50%);
            cursor: ew-resize;
            z-index: 10;
        }

        .slider-button {
            position: absolute;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-button:before {
            content: "↔";
            color: #008284;
            font-weight: bold;
        }

        .before-after-labels {
            position: absolute;
            bottom: 15px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            z-index: 5;
        }

        .before-label,
        .after-label {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .treatment-info {
            padding: 18px;
            background: white;
        }

        .treatment-title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 4px;
        }

        .treatment-duration {
            font-size: 14px;
            color: #666;
        }

        @media (max-width: 768px) {
            .before-after-container {
                height: 280px;
            }

            .treatment-title {
                font-size: 16px;
            }
        }/* Clinic Gallery Section */
        .clinic-gallery-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-subtitle {
            display: block;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #008284;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 36px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
            max-width: 300px;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background-color: rgba(0, 130, 132, 0.3);
        }

        .divider-icon {
            margin: 0 15px;
        }

        .divider-icon svg {
            width: 24px;
            height: 24px;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 0 auto;
            max-width: 1200px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .gallery-card {
            position: relative;
            height: 320px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .gallery-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-card:hover .gallery-image {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 130, 132, 0.9) 0%, transparent 100%);
            color: white;
            padding: 30px 20px 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .overlay-content h3 {
            font-size: 20px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .overlay-content p {
            font-size: 14px;
            margin: 0;
            opacity: 0.9;
        }

        /* View All Button */
        .view-all-container {
            margin-top: 50px;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 30px;
            background-color: #008284;
            color: white;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 130, 132, 0.3);
        }

        .view-all-btn:hover {
            background-color: #006769;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 130, 132, 0.4);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover .btn-icon {
            transform: translateX(5px);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .section-title {
                font-size: 32px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .clinic-gallery-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 28px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-card {
                height: 280px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 24px;
            }

            .section-subtitle {
                font-size: 12px;
            }

            .view-all-btn {
                padding: 10px 25px;
                font-size: 14px;
            }
        }  /* Blog Section Styles */
        .blog-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-subtitle {
            display: block;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #008284;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 36px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-description {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .section-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
            max-width: 300px;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background-color: rgba(0, 130, 132, 0.3);
        }

        .divider-icon {
            margin: 0 15px;
        }

        .divider-icon svg {
            width: 24px;
            height: 24px;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 0 auto;
            max-width: 1200px;
        }

        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .blog-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 130, 132, 0.7) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-card:hover .image-overlay {
            opacity: 1;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 13px;
            color: #666;
        }

        .blog-category {
            color: #008284;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-title {
            margin: 0 0 15px 0;
            font-size: 18px;
            line-height: 1.4;
        }

        .blog-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog-title a:hover {
            color: #008284;
        }

        .blog-excerpt {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 15px;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            color: #008284;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: #006769;
        }

        .read-more-btn .btn-icon {
            width: 18px;
            height: 18px;
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .read-more-btn:hover .btn-icon {
            transform: translateX(5px);
        }

        /* View All Button */
        .view-all-container {
            margin-top: 50px;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 30px;
            background-color: #008284;
            color: white;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 130, 132, 0.3);
        }

        .view-all-btn:hover {
            background-color: #006769;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 130, 132, 0.4);
        }

        .view-all-btn .btn-icon {
            width: 20px;
            height: 20px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover .btn-icon {
            transform: translateX(5px);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .section-title {
                font-size: 32px;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .blog-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 28px;
            }

            .section-description {
                font-size: 16px;
            }

            .blog-image {
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 26px;
            }

            .section-subtitle {
                font-size: 12px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .view-all-btn {
                padding: 10px 25px;
                font-size: 14px;
            }

            .blog-content {
                padding: 20px;
            }

            .blog-title {
                font-size: 17px;
            }
        }   /* Modern Footer Styles */
        .modern-footer {
            background-color: #008284;
            color: white;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
        }

        /* Footer Top Section */
        .footer-top {
            padding: 60px 0 40px;
            background-color: #1A8A91;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column {
            margin-bottom: 20px;
        }

        .footer-logo img {
            max-width: 210px;
            height: auto;
            margin-bottom: 20px;
            
        }

        .clinic-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .consultation-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 25px;
            background-color: #F7D6E0;
            color: #1A8A91;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .consultation-btn:hover {
            background-color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-icon {
            width: 18px;
            height: 18px;
            margin-right: 8px;
        }

        /* Footer Headings */
        .footer-heading {
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #F7D6E0;
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .footer-links a span {
            position: relative;
        }

        .footer-links a span:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #F7D6E0;
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-links a:hover span:after {
            width: 100%;
        }

        /* Contact Information */
        .contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            margin-bottom: 15px;
        }

        .contact-icon {
            margin-right: 15px;
        }

        .contact-icon svg {
            width: 20px;
            height: 20px;
            fill: #F7D6E0;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text strong {
            display: block;
            color: white;
            margin-bottom: 5px;
        }

        .contact-text p,
        .contact-text a {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: white;
            text-decoration: none;
        }

        /* Social Links */
        .social-links {
            margin-top: 30px;
        }

        .social-links h4 {
            color: white;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #F7D6E0;
            transform: translateY(-3px);
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        .social-icon:hover svg {
            fill: #1A8A91;
        }

        /* Explore Section */
        .explore-section {
            padding: 30px 0;
            background-color: rgba(0, 0, 0, 0.1);
        }

        .explore-title {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            text-align: center;
        }

        .explore-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 20px;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background-color: #F7D6E0;
            color: #1A8A91;
            transform: translateY(-2px);
        }

        /* Disclaimer Section */
        .disclaimer-section {
            padding: 20px 0;
            background-color: rgba(0, 0, 0, 0.15);
        }

        .disclaimer-content {
            display: flex;
            align-items: flex-start;
            max-width: 1000px;
            margin: 0 auto;
        }

        .disclaimer-icon {
            min-width: 24px;
            height: 24px;
            margin-right: 15px;
            fill: #F7D6E0;
        }

        .disclaimer-section p {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.6;
        }

        .disclaimer-section strong {
            color: white;
        }

        /* Copyright Section */
        .copyright-section {
            padding: 20px 0;
            background-color: rgba(0, 0, 0, 0.2);
        }

        .copyright-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .copyright-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .copyright-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .copyright-links a:hover {
            color: white;
        }

        .divider {
            color: rgba(255, 255, 255, 0.3);
            font-size: 13px;
        }

        .design-credit a {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .design-credit a:hover {
            color: white;
        }

        .design-icon {
            width: 14px;
            height: 14px;
            margin-right: 5px;
            fill: rgba(255, 255, 255, 0.7);
        }

        .design-credit a:hover .design-icon {
            fill: white;
        }

        .copyright-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .copyright-grid {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .footer-top {
                padding: 40px 0 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-column {
                margin-bottom: 30px;
            }

            .explore-tags {
                justify-content: flex-start;
            }
        }

        @media (max-width: 576px) {
            .consultation-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .tag {
                padding: 6px 12px;
                font-size: 12px;
            }

            .disclaimer-content {
                flex-direction: column;
            }

            .disclaimer-icon {
                margin-bottom: 10px;
            }
        } .social-media-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
  }

  .social-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #008284;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1001;
  }

  .social-toggle-btn:hover {
    background-color: #006669;
    transform: scale(1.1);
  }

  .social-toggle-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .social-media-container.active .social-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
  }

  .social-links a:hover {
    transform: translateY(-3px) scale(1.1);
  }

  .icoFacebook { background-color: #3b5998; }
  .icoInstagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
  .icoLinkedin { background-color: #0077b5; }
  .icoYoutube { background-color: #ff0000; }
  .icoWhatsapp { background-color: #25D366; }


