/* --- GLOBAL UTILS --- */
.section-padding { padding: 100px 20px; }
.hero-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.light-bg { background-color: #f8fafc; }
.sub-heading { color: #0ca395; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; display: block; margin-bottom: 10px; }
/* --- TRUSTED MEDICAL GAS BANNER --- */
.medical-gas-banner {
    position: relative;
    /* Replace with your actual image path */
    background-image: url('https://i.pinimg.com/1200x/fa/4c/5d/fa4c5d4169ded74a518f8eb9db893bde.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 280px 20px 320px; /* Extra bottom padding for the angled shape */
    display: flex;
    align-items: center;
}

/* Dark tint over the background image */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Adjust opacity if needed */
    z-index: 1;
}

/* Content Container */
.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-text-box {
    max-width: 650px;
}

/* Typography matching the screenshot */
.banner-subtitle {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 400;
}

.banner-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* Blue Pill Button */
.banner-btn {
    background: #0ca395; /* Exact royal blue from screenshot */
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 76, 220, 0.3);
}

.banner-btn:hover {
    background: #1e3bb5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 76, 220, 0.4);
}

/* --- ANGLED BOTTOM SHAPE DIVIDER --- */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px; /* -1px prevents tiny gaps on some screens */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.custom-shape-divider-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px; /* Height of the angle */
}

.custom-shape-divider-bottom .shape-fill {
    fill: #ffffff; /* Must match the section below it (white) */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .medical-gas-banner {
        padding: 280px 20px 240px;
    }
    .banner-title {
        font-size: 2.5rem;
    }
    .custom-shape-divider-bottom svg {
        height: 70px; /* Flatter angle on mobile */
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }
    .banner-subtitle {
        font-size: 0.9rem;
    }
}
/* --- QUICK STATS --- */
.stats-wrapper { position: relative; z-index: 10; margin-top: -50px; padding: 0 20px; }
.stats-grid {
    background: white; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: grid; grid-template-columns: repeat(4, 1fr); padding: 40px; text-align: center;
}
.stat-item { border-right: 1px solid #e2e8f0; }
.stat-item:last-child { border-right: none; }
.stat-item h3 { font-size: 2.2rem; color: #0ca395; font-weight: 800; margin-bottom: 5px; }
.stat-item p { color: #64748b; font-size: 0.95rem; font-weight: 500; }

/* --- SERVICES --- */
.section-header { text-align: center; margin-bottom: 60px; max-width: 600px; margin-inline: auto; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; color: #0f172a; }
.section-header p { color: #64748b; font-size: 1.1rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { 
    background: white; padding: 50px 35px; border-radius: 20px; text-align: center; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; transition: all 0.3s;
}
.service-card:hover, .service-card.active { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(12, 163, 149, 0.1); border-color: #0ca395; }

.icon-circle { 
    width: 80px; height: 80px; background: #f0fdfa; color: #0ca395; border-radius: 20px; 
    display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 2.2rem; transition: 0.3s;
}
.service-card:hover .icon-circle, .service-card.active .icon-circle { background: #0ca395; color: white; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: #0f172a; }
.service-card p { color: #64748b; margin-bottom: 25px; line-height: 1.6; }
.service-link { text-decoration: none; color: #0ca395; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 5px; transition: 0.3s; }
.service-link:hover { gap: 10px; }

/* --- PROCESS SECTION --- */
.process-grid { display: flex; justify-content: space-between; align-items: flex-start; text-align: center; margin-top: 40px; position: relative; }
.process-step { flex: 1; position: relative; padding: 0 20px; z-index: 2; }
.step-number { width: 35px; height: 35px; background: #0ca395; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin: 0 auto 20px; }
.process-step i { font-size: 3rem; color: #e2e8f0; margin-bottom: 20px; transition: 0.3s; }
.process-step:hover i { color: #0ca395; transform: scale(1.1); }
.process-step h4 { font-size: 1.2rem; margin-bottom: 10px; color: #0f172a; }
.process-step p { color: #64748b; font-size: 0.95rem; }
.process-line { flex: 0.5; height: 2px; background: dashed 2px #cbd5e1; margin-top: 17px; z-index: 1; }

/* --- TESTIMONIALS --- */
.testimonial-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.testi-card { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; }
.quote-icon { position: absolute; top: 40px; right: 40px; font-size: 3rem; color: #f1f5f9; z-index: 0; }
.testi-card p { color: #475569; font-size: 1.1rem; line-height: 1.7; font-style: italic; margin-bottom: 30px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 15px; }
.avatar { width: 50px; height: 50px; background: #0ca395; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; }
.testi-author h5 { color: #0f172a; font-size: 1rem; margin-bottom: 3px; }
.testi-author span { color: #64748b; font-size: 0.85rem; display: block; }
.stars { color: #f59e0b; font-size: 0.8rem; margin-top: 5px; }

/* --- BOTTOM CTA --- */
.bottom-cta { background: #0ca395; padding: 80px 20px; text-align: center; color: white; margin: 40px 20px; border-radius: 24px; }
.bottom-cta h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 800; }
.bottom-cta p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 35px; }
.btn-primary-large { display: inline-flex; align-items: center; gap: 10px; background: white; color: #0ca395; padding: 20px 40px; border-radius: 50px; font-size: 1.2rem; font-weight: 700; text-decoration: none; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-primary-large:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero-flex { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-text p { margin: 0 auto 35px; }
    .cta-group { justify-content: center; }
    .hero-emergency-box { justify-content: center; width: 100%; max-width: 350px; margin: 0 auto; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 30px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }
    
    .services-grid, .testimonial-flex { grid-template-columns: 1fr; }
    
    .process-grid { flex-direction: column; gap: 40px; }
    .process-line { display: none; }
    
    .bottom-cta { margin: 20px; padding: 60px 20px; }
}

/* --- PROMO BANNERS SECTION --- */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 50px;
    min-height: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Backgrounds & Geometric Shapes */
.promo-blue {
    background: #6ec2f9; /* Light blue base */
}
.promo-blue::after {
    content: '';
    position: absolute;
    right: -15%;
    bottom: -30%;
    width: 300px;
    height: 300px;
    background: #9addfe; /* Lighter blue circle */
    border-radius: 50%;
    z-index: 1;
}

.promo-white {
    background: #f4f5f7; /* Off-white base */
}
.promo-white::before {
    content: '';
    position: absolute;
    left: -10%;
    top: -20%;
    width: 320px;
    height: 320px;
    background: #f6e696; /* Yellow circle */
    border-radius: 50%;
    z-index: 1;
}

/* Content & Typography */
.promo-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.promo-content.text-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.promo-content h2 {
    font-size: 2.6rem;
    color: #0b1c2d;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.1;
}

.promo-blue .promo-content h3 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 15px;
}

.promo-white .promo-content h3 {
    font-size: 2rem;
    color: #007bff; /* Bright blue text */
    font-weight: 300;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 0.95rem;
    color: #111;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Shop Now Button */
.btn-shop {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}
.btn-shop:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Images */
.promo-image {
    position: relative;
    z-index: 2;
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}
.promo-image.left-img {
    justify-content: flex-start;
}

.promo-image img {
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .promo-card {
        padding: 30px;
    }
}
@media (max-width: 600px) {
    .promo-card {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
    }
    .promo-white {
        flex-direction: column;
    }
    .promo-content.text-right {
        align-items: center;
        text-align: center;
    }
    .promo-image {
        justify-content: center;
        margin-bottom: 20px;
    }
    .promo-image.left-img {
        justify-content: center;
    }
}


/* --- OUR PRODUCTS SECTION (Bigger Cards & Responsive) --- */
.our-products {
    background: #ffffff;
    position: relative;
}

/* Header Styling */
.product-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.header-bg-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: #f4f6f8;
    z-index: 0;
    opacity: 0.6;
}
.product-section-header h2 {
    font-size: 2.5rem;
    color: #0b1c2d;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.product-section-header p {
    color: #4a5568;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Category Tabs */
.product-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    max-width: 1000px;
    margin-inline: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.category-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 10px;
    background: white;
    border-right: 1px solid #edf2f7;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2d3748;
}
.category-tab:last-child {
    border-right: none;
}
.category-tab i {
    font-size: 2.2rem;
    color: #0ca395;
    margin-bottom: 12px;
    transition: 0.3s;
}
.category-tab span {
    font-size: 0.95rem;
    font-weight: 500;
}
/* Active Tab State */
.category-tab:hover,
.category-tab.active {
    background: #f0f9ff;
}
.category-tab.active i {
    color: #0ca395;
    transform: scale(1.1);
}
.category-tab.active span {
    color: #0ca395;
    font-weight: 700;
}

/* Product Grid Layout - UPDATED FOR BIGGER CARDS */
.product-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 columns instead of 6 = bigger cards */
    gap: 30px; /* Wider spacing */
}

/* Product Card */
.store-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.store-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Image Wrapper (Light Gray Background) */
.store-img-wrapper {
    background: #f8f9fa;
    height: 240px; /* Taller image area */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}
.store-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; 
    transition: transform 0.4s ease;
}
.store-card:hover .store-img-wrapper img {
    transform: scale(1.08); /* Zoom effect on hover */
}

/* Hover Action Buttons */
.hover-actions {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}
.store-card:hover .hover-actions {
    opacity: 1;
    transform: translateY(0);
}
.hover-actions button {
    width: 38px; /* Slightly larger buttons */
    height: 38px;
    border-radius: 50%;
    background: #b2cbe8; 
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.hover-actions button:hover {
    background: #0ca395;
    transform: scale(1.1);
}

/* Product Info Area */
.store-info {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-tags {
    font-size: 0.75rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}
.store-info h4 {
    font-size: 1.15rem; /* Larger Title */
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 12px;
    flex-grow: 1;
    line-height: 1.4;
}

.product-price {
    color: #0ca395; 
    font-weight: 800;
    font-size: 1.25rem; /* Larger Price */
}
.product-price::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #007bff;
    margin: 12px auto 0;
    border-radius: 3px;
}

/* Floating Scroll Top Button */
.scroll-top-btn {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    font-size: 1.5rem;
    transition: 0.3s;
}
.scroll-top-btn:hover {
    background: #0056b3;
    transform: translateY(-5px);
}

/* --- FULL RESPONSIVENESS FIXES --- */
@media (max-width: 1200px) {
    .product-grid-layout { 
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row on tablets/small laptops */
    }
}

@media (max-width: 992px) {
    .product-categories { 
        flex-wrap: wrap; 
        border-radius: 8px;
    }
    .category-tab { 
        flex: 1 1 33.33%; /* 3 tabs per row */
        border-bottom: 1px solid #edf2f7; 
    }
    .category-tab:nth-child(3n) { 
        border-right: none; 
    }
}

@media (max-width: 768px) {
    .product-grid-layout { 
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on large mobile */
    }
    .store-img-wrapper {
        height: 200px; /* Slightly smaller image area on mobile */
    }
}

@media (max-width: 576px) {
    .product-grid-layout { 
        grid-template-columns: 1fr; /* 1 card per row on small phones */
    }
    .category-tab { 
        flex: 1 1 50%; /* 2 tabs per row */
    }
    .category-tab:nth-child(2n) { 
        border-right: none; 
    }
    .scroll-top-btn { 
        display: none; /* Hide scroll button on small screens */
    }
}


/* --- SPECIAL PRODUCTS SECTION --- */
.special-products {
    background: #ffffff;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card Container */
.special-card {
    background: #ffffff;
    border: 1px solid #eaedf3; /* Light border matching screenshot */
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.special-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Top Image Area */
.sp-img-wrapper {
    background: #fafbfc; /* Subtle light gray */
    border-bottom: 1px solid #eaedf3; /* Divider line */
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.sp-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Middle Hover Actions (Hearts, Compare, Search) */
.sp-hover-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.special-card:hover .sp-hover-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.sp-hover-actions button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dce7fa; /* Faded light blue circle */
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.sp-hover-actions button:hover {
    background: #3accdb; /* Cyan hover state */
}

/* Bottom Information Area */
.sp-info {
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.sp-category {
    font-size: 0.75rem;
    color: #9eaebf;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.sp-info h4 {
    font-size: 1.15rem;
    color: #0b2239; /* Dark blue/slate text */
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sp-stars {
    color: #f7bc00; /* Yellow stars */
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    gap: 2px;
}

.sp-price {
    color: #1b84f5; /* Bright blue price */
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Cyan Add to Cart Button */
.btn-add-cart {
    background: #3accdb; /* Vibrant cyan */
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px; /* Pill shape */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: auto;
}

.btn-add-cart:hover {
    background: #2fb5c4;
    transform: translateY(-2px);
}

/* Responsive Scaling */
@media (max-width: 1200px) {
    .special-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .special-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .special-grid { grid-template-columns: 1fr; }
}

/* --- LATEST NEWS SECTION --- */
.latest-news {
    background: #f8fafc; /* Very light gray/blue background to separate from white sections */
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* News Card */
.news-card {
    background: #ffffff;
    border: 1px solid #eaedf3;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Image Wrapper & Zoom Effect */
.news-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.1);
}

/* Date Badge */
.news-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0ca395; /* Teal primary color */
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(12, 163, 149, 0.3);
    z-index: 2;
}

.news-date-badge .day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.news-date-badge .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

/* Content Area */
.news-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-category {
    color: #1b84f5; /* Bright blue accent */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.news-title {
    font-size: 1.25rem;
    color: #0b2239;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-card:hover .news-title {
    color: #0ca395;
}

.news-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Read More Button */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b2239;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.read-more-btn i {
    font-size: 0.85rem;
    color: #0ca395;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: #0ca395;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 650px) {
    .news-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    .news-img-wrapper {
        height: 200px;
    }
}

/* --- GOOGLE REVIEWS SECTION --- */
.google-reviews {
    background: #ffffff; /* Clean white background */
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Review Card Styling */
.review-card {
    background: #ffffff;
    border: 1px solid #eaedf3;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Header: Avatar, Name, and Google Icon */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatars */
.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0ca395; /* Default teal */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.reviewer-name {
    font-size: 1.05rem;
    color: #0b2239;
    font-weight: 700;
    margin-bottom: 4px;
}

.review-date {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Google Badge */
.google-badge {
    width: 35px;
    height: 35px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4285F4; /* Official Google Blue */
    font-size: 1.1rem;
    border: 1px solid #eaedf3;
}

/* Star Ratings */
.review-stars {
    color: #fbbc05; /* Official Google Yellow/Orange */
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    gap: 2px;
}

/* Review Text */
.review-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

/* Button to view more reviews */
.view-all-reviews {
    text-align: center;
    margin-top: 20px;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid #eaedf3;
    border-radius: 50px;
    color: #0b2239;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-secondary-outline i {
    color: #4285F4; /* Google Blue */
}

.btn-secondary-outline:hover {
    border-color: #4285F4;
    color: #4285F4;
    background: #f8fafc;
}

/* Responsive Constraints */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .review-card {
        padding: 30px 20px;
    }
}