/* ----------------------------------

Theme: Ammamanas 
Author: Sanju
Website: sanju.work
Version: 1.0

------------------------------------- */

:root {
    --primary-color: #74292D;
    --secondary-color: #F8F0ED;
    --tertiary-color: #F9CDB5;
}
    
body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFBF9;
}

h1, h2, h3, h4 .font-montserrat {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
}

.color-secondary {
    background-color: var(--tertiary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.text-primary-custom {
    color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
}

.card {
    border-radius: 15px;
    border: none;
}

.products .btn-outline-primary {
    color: #74292D;
    border: 1px solid #74292D;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    cursor: pointer;
    transition: all 0.3sease;
}

.products .btn-outline-primary:hover {
    background-color: #74292D;
    color: white;
}

.product-card {
    text-align: center;
    padding: 15px;
}

.product-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-card img {
    border-radius: 15px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.hero .btn-primary-custom {
    min-width: 200px;
    text-align: center;
}

/* Hero variants for different pages */
.hero-home {
    background-image: url('../images/hero.jpg');
}

.hero-about {
    background-image: url('../images/about-hero.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}

.hero-services {
    background-image: url('../images/hero-services.jpg');
    background-color: #fff !important;
    overflow: hidden;
    position: relative;
}

.hero-services::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    margin-right: 5rem;
    background-image: url('../images/services-hero.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    z-index: 1;
}

.hero-services .container {
    position: relative;
    z-index: 2;
}

.hero-services .hero-content {
    max-width: 600px;
}

.hero-services .hero-content h1 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-services .hero-content p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.hero-contact {
    background-image: url('../images/contact-hero.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
}

.navbar.scrolled .menu-button {
    color:#2D3436 !important;
}

.logo {
    height: 50px;
}

.menu-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    padding: 0;
}

.menu-circle {
    width: 18px;
    height: 18px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Optional: Add hover animation */
.menu-button:hover .menu-circle {
    transform: scale(1.1);
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    color: white;
}

.menu-overlay.active {
    right: 0;
}

.menu-left {
    flex: 1;
}

.menu-nav {
    margin: 4rem 0;
}

.menu-nav ul li {
    margin-bottom: 2rem;
}

.menu-nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 2.8rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.menu-nav ul li a:hover {
    color: #F9CCB4;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    padding: 0;
}

.close-menu:hover {
    opacity: 0.8;
}

.menu-contact {
    text-align: left;
}

.menu-contact h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.menu-contact p {
    opacity: 0.8;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

a.social-link {
    border: 1px solid white;
    padding: 2px 6px;
    border-radius: 4px;
}

.social-link {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
    color: #F9CCB4;
}

.copyright p {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .menu-nav ul li a {
        font-size: 2rem;
    }
    
    .menu-content .container {
        padding: 0 2rem;
    }
}

/* Mom Knows Best Cards */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    height: 36rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-about{
    background: #FFF5EF;
}

.service-card.dark {
    background: var(--primary-color);
    color: white;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(116, 41, 45, 0.7);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

.service-card-content {
    position: relative;
    z-index: 3;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-content h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.service-card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card-content .btn {
    align-self: flex-start;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.service-card:hover .service-card-content {
    color: white;
}

.service-card:hover .btn-primary-custom {
    background-color: white;
    color: var(--primary-color);
}

.service-card:hover .btn-light {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

/* Product Cards */
.product-rating {
    color: #FFD700;
    margin: 10px 0;
}

.product-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 4rem 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-left, 
.testimonial-right {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.testimonial-left {
    align-items: flex-end;
    text-align: right;
}

.testimonial-right {
    align-items: flex-start;
    text-align: left;
}

.testimonial-center {
    position: relative;
}

.testimonial-image-container {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    
    font-style: italic;
    color: #bdbab9;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    transition: transform 0.3s ease;
}
.testimonials-grid .primary {
    color: #5A4646;
}

/* Add offset to first and third quotes in the left column */
.testimonial-left .testimonial-quote:nth-child(odd) {
    transform: translateX(50px);
}

.testimonial-right .testimonial-quote:nth-child(odd) {
    transform: translateX(-50px);
}

@media (max-width: 1200px) {
    .testimonial-image-container {
        width: 300px;
        height: 300px;
    }

    .testimonials-grid {
        gap: 2rem;
    }

    .testimonial-quote {
        max-width: 300px;
        font-size: 1rem;
    }
    .hero-about {

        background-size: cover;
    }
    
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonial-left, 
    .testimonial-right {
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .testimonial-image-container {
        width: 300px;
        height: 300px;
    }

    .testimonial-left .testimonial-quote:nth-child(odd) {
        transform: none; /* Remove offset on mobile */
    }
    .testimonial-right .testimonial-quote:nth-child(odd) {
        transform: none; /* Remove offset on mobile */
    }
}

/* Update footer styles */
.footer-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-section .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-btn {
    border: 1px solid white;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: white;
    color: var(--primary-color);
}

.footer-links {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact {
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-content {
    height: 100%;
    padding: 4rem 0;
    overflow-y: auto;
    display: flex;
    align-items: center;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 85dvh;
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 0 2rem;
}

.menu-left {
    flex: 1;
}

.menu-right {
    flex: 1;
    display: flex;
    margin-top: 4rem;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.copyright {
    text-align: left;
}

.copyright p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    color: white;
    transition: color 0.3s;
    display: block;
}

.social-link:hover {
    color: #F9CCB4;
}

@media (max-width: 991px) {
    .menu-container {
        flex-direction: column;
        gap: 2rem;
    }

    .menu-right {
        gap: 2rem;
    }

    .menu-contact {
        margin-top: 2rem;
    }

    .menu-footer {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .social-links-container {
        flex-direction: row;
    }
}

/* Update footer styles */
.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-menu-items {
    display: flex;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.footer-menu-items::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-menu-items a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s;
    opacity: 0.8;
}

.footer-menu-items a:hover {
    opacity: 1;
}

.footer-menu-email {
    margin-top: 1rem;
}

.footer-menu-email a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: 'Montserrat Alternates', sans-serif;
    transition: opacity 0.3s;
}

.footer-menu-email a:hover {
    opacity: 0.8;
}

/* Update existing footer styles */
.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .footer-menu {
        align-items: center;
    }
    
    .footer-menu-items {
        align-items: center;
    }
    
    .footer-menu-email {
        text-align: center;
    }
}

/* Update Product Carousel Styles */
.carousel {
    position: relative;
    padding: 0 60px; /* Increased padding for arrows */
}

.carousel-item .row {
    justify-content: center;
    margin: 0 -15px;
}

.product-card {
    margin: 0 15px;
    padding: 20px;
    height: 100%;
    background: white;
    border-radius: 15px;
}

.products-list .product-card {
    border: 1px solid #F9CDB5;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: none;
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
}

/* Custom arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-image: none;
    position: relative;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    top: 50%;
    left: 50%;
}

.carousel-control-prev-icon::after {
    transform: translate(-25%, -50%) rotate(-135deg);
}

.carousel-control-next-icon::after {
    transform: translate(-75%, -50%) rotate(45deg);
}

/* Change arrow color on hover */
.carousel-control-prev:hover .carousel-control-prev-icon::after,
.carousel-control-next:hover .carousel-control-next-icon::after {
    border-color: white;
}

/* Update carousel indicators */
.carousel-indicators {
    position: absolute; /* Change to absolute */
    bottom: 0; /* Position at bottom */
    left: 0;
    right: 0;
    margin: 0; /* Remove margins */
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D9D9D9;
    border: none;
    margin: 0;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
}

@media (max-width: 991px) {
    .carousel {
        padding: 0 40px; /* Adjusted padding for mobile */
    }
    /* child section fixes */
    .pediatric-care {
        height: 100% !important;
    }
    .pediatric-image {
        width: 100%;
        height: 100%;
        margin-top: 0rem;
        object-fit: cover;
    }

    /* Show only one product on mobile */
    .carousel-item .col-md-4 {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Hide other products on mobile */
    .carousel-item .col-md-4:not(:first-child) {
        display: none;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: -10px; /* Adjusted position */
    }
    
    .carousel-control-next {
        right: -10px; /* Adjusted position */
    }

    /* Adjust product card spacing */
    .product-card {
        margin: 0;
        padding: 15px;
    }
}

/* phone screens */
@media (max-width: 576px) {
    .image-col {
        flex-direction: column;
    }

    .image-col img {
        width: 100%;
    }

    .stat-icon {
        padding-right: 1.25rem;
    }

    .stat-icon::after {
        right: 0.5rem;
    }

    .carousel {
        padding: 0 30px; /* Further reduced padding for smaller screens */
    }

    .carousel-control-prev {
        left: -5px;
    }
    
    .carousel-control-next {
        right: -5px;
    }
    .menu-overlay {
        height: 100vh !important;
        max-height: 100vh;
        overflow-y: auto;
    }   
    .menu-content{
        flex-direction: column;
    }
    .close-menu span {
        display: none;
    }
    .testimonial-image-container {
        width: 250px;
        height: 250px;
    }
    
    /* child section fixes */
    .pediatric-care {
        height: 100% !important;
    }
    .pediatric-image {
        width: 100%;
        height: 100%;
        margin-top: 0rem;
        object-fit: cover;
    }
    /* footer styles */
    .footer-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .footer-section .subtitle {
        font-size: 1rem;
    }
    .newsletter-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        font-size:0.9rem;
    }
    .footer-menu-items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        position: relative;
        padding-bottom: 2rem;
    }
}

/* Add these styles */
.mom-knows-best {
    background-color: #74292D;
}

.mom-knows-best h2 {
    font-size: 2.5rem;
}

.mom-knows-best p {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* services section */
.services {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: url('../images/bg-section-01.jpg') no-repeat center center;
    background-size: cover;
}

.services h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Ensure content stays above overlay */
.services .container {
    position: relative;
    z-index: 2;
}

/* Treatment Section Styles */
.treatments {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.treatment-container {
    width: 100%;
    margin: 0;
}

.treatment-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-content {
    padding: 4rem 6rem 4rem 4rem;
    max-width: 700px; /* Limit content width */
}

.treatment-content .subtitle {
    color: #74292D;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.treatment-content h2 {
    color: #333;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.treatment-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.treatment-images {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.treatment-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.treatment-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .treatment-content {
        padding: 2rem;
        max-width: 100%;
    }
    
    .treatment-content h2 {
        font-size: 2rem;
    }

    .treatment-circle {
        width: 60px;
        height: 60px;
    }
    .testimonial-center{
        display: flex;
        justify-content: center;
    }
}

.tradition-modern {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 8rem; /* Increased padding to accommodate the element */
}

.circular-element {
    position: absolute;
    bottom: -100px;
    z-index: 1;
    height: 300px;
}

.circular-element img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tradition-modern .container {
    position: relative;
    z-index: 2;
}

.tradition-content {
    padding-right: 2rem;
}

.tradition-content .subtitle {
    color: #74292D;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.tradition-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.tradition-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.tradition-content .btn-outline-primary {
    color: #74292D;
    border: 1px solid #74292D;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.tradition-content .btn-outline-primary:hover {
    background-color: #74292D;
    color: white;
}

.tradition-images {
    padding: 2rem 0;
}

.image-grid {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.image-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-col.offset {
    margin-top: 5rem; /* Adjust this value to control the offset */
}

.image-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


@media (max-width: 991px) {
    .tradition-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .image-grid {
        flex-direction: column;
    }

    .image-col.offset {
        margin-top: 1.5rem;
    }

    .image-col {
        flex-direction: row;
    }

    .image-col img {
        width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .circular-element {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -50px;
    }
}

/* Add these Pediatric Care styles */
.pediatric-care {
    position: relative;
    background-color: #fff;
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
    height: 90vh;
    overflow: hidden;
}

.pediatric-care .bg-primary {
    background-color: #74292D !important;
}

.pediatric-care .child-section {
    background-color: var(--tertiary-color);
    justify-content: center;

}

.pediatric-content {
    padding: 8rem 4rem;
    color: white;
    max-width: 650px;
    margin-left: 5rem;

}

.pediatric-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 2rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.pediatric-content p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pediatric-image {
    width: 66%;
    height: 100%;
    margin-top: -6rem;
    object-fit: cover;
}

.btn-outline-light {
    border: 1px solid white;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: #74292D;
}

@media (max-width: 991px) {
    .pediatric-content {
        padding: 3rem 2rem;
        text-align: center;
        margin: 0 auto;
    }

    .pediatric-content h2 {
        font-size: 2.5rem;
    }

    .pediatric-image {
        height: 400px;
    }
}

/* Update Blog Section Styles */
.blog-section {
    background-color: #fff;
}

.blog-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
}

.blog-card .btn-outline-light{
    font-size: 0.9rem;
    padding: 0.4rem 1.5rem;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Add hover effect */
.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

/* Ensure overlay stays in position during scale */
.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Ensure content stays above scaled image */
.blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-meta-content {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

.separator {
    font-size: 1.2rem;
    line-height: 0;
    position: relative;
}

.blog-date {
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.blog-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--tertiary-color);
}

@media (max-width: 768px) {
    .blog-card {
        height: 400px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.25rem;
    }
}

/* Add styles for the intro section */
.intro-section {
    background-color: #fff;
    padding: 5rem 0;
}

.intro-text {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--primary-color);
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
}

/* Video Content Section Styles */
.video-content-section {
    background-color: #fff;
    padding: 5rem 0;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

/* Style the content */
.thumbnail-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    color: white;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-right h2 {
    font-weight: 400;
}

.line-indicator.vertical {
    width: 4px;
    height: 80px;
    background-color: #F9CCB4;
    border-radius: 2px;
    margin-bottom: 0;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
}

.overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Update text content styles */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    height: 80px;
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}

.text-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    color: white;
    font-family: 'Montserrat Alternates', sans-serif;
}

.text-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    color: white;
    letter-spacing: 0.5px;
}

.play-button {
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin-left: auto;
}

.play-button svg {
    width: 22px;
    height: 26px;
    margin-left: 3px;
}

.play-button:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Floral Pattern and Care Section Styles */

/* Combined Approach */
.floral-care-section {
    position: relative;
    background-color: #fff;
    padding: 0;
    overflow: hidden;
}

.floral-pattern {
    width: 100%;
    overflow: hidden;
}

.pattern-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialized-care {
    padding: 4rem 0;
    text-align: center;
}

.care-text {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--primary-color);
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* Alternative: Separate Sections Approach */
.floral-pattern-section {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.specialized-care-section {
    background-color: #fff;
    padding: 4rem 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .care-text {
        font-size: 1.75rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    .thumbnail-content {
        bottom: 24px;
        left: 24px;
    }
    
    .line-indicator.vertical {
        height: 60px;
        width: 3px;
    }
    
    .content-wrapper {
        gap: 1rem;
    }
    
    .text-content h3 {
        font-size: 1.75rem;
    }
    
    .video-overlay {
        padding: 24px;
    }
    
    .play-button {
        width: 48px;
        height: 48px;
    }
    
    .play-button svg {
        width: 24px;
        height: 26px;
    }
    
    .text-content h3 {
        font-size: 2rem;
    }
    
    .line-indicator.vertical {
        height: 60px;
    }
    
    .content-wrapper {
        height: 60px;
    }

    .hero-services {
        text-align: center;
        padding: 60px 0;
    }

    .mission-image {
        height: 300px;
    }
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-intro h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem 0;
    }
    
    .form-control {
        height: 50px;
    }

    /* child section fixes */
    .pediatric-care {
        height: 100% !important;
    }
    .pediatric-image {
        width: 100%;
        height: 100%;
        margin-top: 0rem;
        object-fit: cover;
    }

    .floral-pattern,
    .floral-pattern-section {
        height: 150px;
    }
    
    .care-text {
        font-size: 1.5rem;
    }
    
    .specialized-care {
        padding: 3rem 0;
    }
}

/* Update Mission Vision Section Styles */
.mission-vision-section {
    background: linear-gradient(180deg, #FFFFF9 30%, #F9CCB4 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh; /* Ensure full viewport height */
}

.mission-content {
    display: flex;
    flex-direction: column;
    padding-right: 4rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.mission-content h2{
    font-size: 2rem;
    font-weight: 400;
}

.mission-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    height: 75%;
}

.mission-image img {
    width: 100%;
    height: 100%;
}

/* Update container positioning */
.mission-vision-section .container {
    position: relative;
    z-index: 2;
}

/* Adjust content column width */
.mission-vision-section .col-lg-6:first-child {
    width: 50%;
}

/* Responsive styles */
@media (max-width: 991px) {
    .mission-vision-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .mission-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .mission-image {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 24px;
    }

    .mission-vision-section .col-lg-6:first-child {
        width: 100%;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 6rem 0;
    background-color: #fff;
}

/* Left Column Styles */
.contact-left {
    position: relative;
}

/* Add vertical divider line */
.contact-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #e0e0e0;
}

.contact-intro {
    margin-bottom: 3rem;
    position: relative;
    padding-right: 3rem;
}

/* Remove old divider */
.contact-intro::after {
    display: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* Remove old divider */
.contact-info::after {
    display: none;
}

.contact-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-intro h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    color: #444;
    margin-bottom: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-family: 'Montserrat Alternates', sans-serif;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-details p {
    color: #666;
    margin-bottom: 0;
}

/* Form Styles - Updated to match reference */
.contact-form {
    background-color: transparent;
    border-radius: 0;
    padding: 2rem 0 2rem 3rem;
    box-shadow: none;
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
}

.form-control {
    height: 54px;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #666;
    width: 100%;
    background-color: #fff;
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    border-radius: 20px;
}

.contact-form .btn-primary-custom {
    padding: 0.8rem 3rem;
    font-size: 1rem;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid #666;
    color: #666;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-form .btn-primary-custom:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Update form text coloring */
.form-text {
    color: #999 !important;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.map-section{
    padding: 3rem 8rem;
}

.map-section iframe{
    border-radius: 20px;
    height: 350px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-intro h3 {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        margin-bottom: 2rem;
        padding-right: 0;
    }
    
    .contact-intro::after,
    .contact-info::after {
        display: none;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-form {
        margin-top: 3rem;
        padding-left: 0;
    }
}

@media (max-width: 1200px) {
    .hero-services::after {
        width: 40%;
    }
    .pediatric-care {
        height: 100% !important;
    }
    .pediatric-image {
        width: 100%;
        height: 100%;
        margin-top: 0rem;
        object-fit: cover;
    }

}

@media (max-width: 991px) {
    .hero-services::after {
        width: 35%;
    }

    .hero-services .hero-content h1 {
        font-size: 2.8rem;
    }
}


/* Statistics Section Styles */
.statistics-section {
    background-color: #fff;
    padding: 4rem 0;
}

.stat-card {
    height: 100%;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stat-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    padding-right: 2rem;
}

/* Add vertical line after icon */
.stat-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #e0e0e0;
}

.stat-content {
    flex-grow: 1;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.stat-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .statistics-section {
        padding: 3rem 0;
    }

    .stat-card {
        justify-content: flex-start;
        text-align: left;
        padding: 1rem;
    }

    .stat-icon {
        padding-right: 1.5rem;
    }

    .stat-icon::after {
        right: 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Care Info Section Styles */
.care-info-section {
    background-color: #fff;
    padding: 5rem 0;
}

.care-heading {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--primary-color);
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
    margin-bottom: 3rem;
}

.contact-info {
    position: relative;
}

.info-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-label {
    color: #666;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 1rem;
}

.info-divider {
    width: 1px;
    height: 24px;
    background-color: #e0e0e0;
}

.section-divider {
    width: 1px;
    background-color:var(--primary-color);
    margin: 0 1rem;
}

.info-content {
    font-family: 'Inter", sans-serif;
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--primary-color);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .care-heading {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .info-divider {
        width: 50px;
        height: 1px;
        margin: 0.5rem 0;
    }

    .section-divider {
        width: 50px;
        height: 1px;
        margin: 1.5rem 0;
    }

    .d-flex.justify-content-center {
        flex-direction: column;
        gap: 2rem !important;
    }
}

/* Services Cards Styles */
.services-cards {
    padding: 5rem 0;
    background-color: #fff;
}

.service-circle {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Makes it square */
    border-radius: 50%;
    overflow: hidden;
}

.service-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: opacity 0.3s ease;
}

.service-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: white;
    z-index: 2;
}

/* Dark overlay for default state */
.service-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.service-description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.design-element {
    width: 60px;
    height: 60px;
    transition: opacity 0.3s ease;
}

.design-element img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hover Effects */
.service-circle:hover::before {
    background-color: #74292D;
    opacity: 0.95;
}

.service-circle:hover .service-image img {
    opacity: 0;
}

.service-circle:hover .service-description {
    opacity: 0.9;
    display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .design-element {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .services-cards {
        padding: 3rem 0;
    }

    .col-md-6 {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .hero-contact {
        padding: 60px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero .col-md-6 {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero .btn-primary-custom {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero .hero-contact{
        padding: 12vh 0 300px;
        background-position: center bottom;
        background-size: 100% auto;
    }

    .hero-contact {
        padding: 40px 0 350px;
        background-size: 90% auto;
    }

    .hero .btn-primary-custom {
        width: 100%;
        max-width: 400px;
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
   

    .hero-contact {
        /* padding: 40px 0 300px; */
        background-size: 100% auto;
        background-position: bottom;
    }

    .hero-about {
        background-size: contain;
        background-position: bottom;
        align-content: space-between;
        flex-wrap: wrap;
        padding-top: 20vh;
    }

    .menu-about .menu-button {
        color:#2D3436 !important;
    }

    .hero .btn-primary-custom {
        max-width: 100%;
    }

    .map-section {
        padding: 0;
    }

    .contact-info {
        align-items: center;
        gap: 1rem;
    }
    .contact-form {
        padding: 0 0.5rem;
    }

    .hero-services .container {
        margin-top: auto;
    }

    .hero-services::after {
        margin-top: 16vh;
        width: 60%;
        background-position: top;
    }

    .support-info {
        display: flex;
        justify-content: space-around;
    }

    .section-divider {
        width: 100%;
    }

    
    
}

/* Blog Styles */
.blog-header {
    margin-top: 7vh;
    padding: 80px 0;
}

.blog-header .small-title {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.blog-header .display-4 {
    color: #2D3436;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 400;
}

.blog-card-main {
    height: 600px;
}

.blog-card-main .blog-meta{
    margin-bottom: 6px;
}

.blog-card-main .blog-content h3{
    margin-bottom: 6px;
}

.blog-card-main .blog-content p{
    margin-bottom: 1rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tags .tag {
    border-radius: 50%;
    border: 1px solid #FFF;
    color: #fcfcfc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Blog Cards Grid Styles */
.blog-cards-grid {
    background-color: #fff;
}

.blog-card-small {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.blog-card-small .blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-small .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-small:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-small .blog-meta {
    color: #666;
    font-size: 14px;
}

.blog-card-small .separator {
    margin: 0 8px;
}

.blog-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}

.blog-title {
    color: var(--primary-color);
    font-size: 24px;
    font-family: 'Montserrat Alternates', sans-serif;
    margin: 0;
    flex: 1;
}

.arrow-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.blog-card-small:hover .arrow-icon {
    transform: translate(5px, -5px);
    /* transform: scale(1.2); */
}

.blog-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.blog-card-small .blog-tags .tag {
    border-radius: 20px;
    border: 1px solid #5A4646 !important;
    color: var(--primary-color);
    border: none;
    font-size: 12px;
    padding: 6px 12px;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 20px;
    }
    
    .blog-subtitle {
        font-size: 14px;
    }
    
    .blog-card-small {
        margin-bottom: 2rem;
    }
}

/* Blog Detail Styles */
.blog-detail-header {
    padding: 120px 0 60px;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.blog-detail-header .blog-meta {
    color: #666;
    position: relative;
}

.blog-detail-header .blog-category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-detail-header .blog-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 1rem;
}

.blog-detail-header .blog-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
}

.blog-detail-header .blog-tags .tag {
    background-color: #F8F0ED;
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
}

.blog-featured-image {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.featured-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.blog-detail .blog-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    color: #000;
}

.blog-article {
    margin-bottom: 60px;
}

.info-box {
    background-color: #F8F0ED;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.info-box h4 {
    color: var(--primary-color);
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 1rem;
}

.info-box ul {
    margin: 0;
    padding-left: 1.25rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.author-social .social-link {
    color: #000;
}

.author-image img{
    height: 200px;
    border-radius: 14px;
}
.author-bio {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background-color: #F8F0ED;
    border-radius: 16px;
    margin: 3rem 0;
    position: relative;
}

.share-section {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    position: relative;
}

.related-articles {
    background-color: #F8F0ED;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}
/* 
.blog-detail .navbar {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
} */

/* Ensure proper spacing for menu button */
.blog-detail .menu-button {
    position: relative;
    z-index: 1000;
}

@media (max-width: 991px) {
    .blog-detail-header {
        padding: 100px 0 40px;
    }

    .blog-detail-header .blog-title {
        font-size: 2.5rem;
    }

    .blog-content {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .blog-detail-header {
        padding: 80px 0 30px;
    }

    .blog-detail-header .blog-title {
        font-size: 2rem;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .blog-content {
        padding: 30px 0;
    }
}
 