:root {
    --primary: #FFD700; /* Vibrant Yellow/Gold */
    --primary-hover: #e6c200;
    --dark-bg: #0d0d0d;
    --darker-bg: #050505;
    --light-text: #f5f5f5;
    --gray-text: #aaaaaa;
    --whatsapp: #25D366;
    --whatsapp-hover: #1ebd5a;
    --card-bg: rgba(20, 20, 20, 0.7);
    --border-color: #333333;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background-color: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a, .social-info a {
    color: var(--gray-text);
    text-decoration: none;
    margin-right: 25px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-info a:hover {
    color: var(--primary);
}

.social-info a {
    margin-right: 0;
}

.whatsapp-link {
    color: var(--whatsapp) !important;
    font-weight: 500;
}

.whatsapp-link:hover {
    color: var(--whatsapp-hover) !important;
}

/* NAVBAR */
.navbar {
    background-color: rgba(13, 13, 13, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.logo .q {
    color: var(--primary);
}

.logo .auto {
    color: var(--gray-text);
    font-weight: 300;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--darker-bg);
}

@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.btn-primary {
    background: var(--primary);
    color: var(--darker-bg);
    animation: pulseGold 2s infinite;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: none;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--darker-bg);
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 15px;
    border-radius: 6px;
    animation: pulseGold 2s infinite;
}

.btn-submit:hover {
    background: var(--primary-hover);
    animation: none;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
    padding: 80px 20px;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.5rem;
    color: #dedede;
    margin-bottom: 45px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.services-list-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.services-list-hero span {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.services-list-hero span:hover {
    background: rgba(255,255,255,0.15);
}

.services-list-hero span i {
    color: var(--primary);
}

/* FORM CARD */
.hero-form {
    flex: 0 0 450px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.form-card h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.form-card p {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 400;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
}

.form-group select option {
    background: var(--darker-bg);
    color: #fff;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.9);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        padding: 50px 20px;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-overlay {
        background: rgba(5,5,5,0.85); /* Darker overlay for mobile */
    }
    
    .services-list-hero {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo-wrapper {
        gap: 10px !important;
        justify-content: center;
    }
    
    .logo-wrapper img {
        height: 55px !important;
    }
    
    .logo-wrapper > span {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
    }
    
    .logo-wrapper > span > span {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-info a {
        margin-right: 0;
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-form {
        flex: 1;
        width: 100%;
    }
    
    .form-card {
        padding: 30px 20px;
    }
}

/* GLOBAL UTILITIES */
.section-padding { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 15px; color: #fff; }
.section-header p { font-size: 1.2rem; color: var(--gray-text); }

/* TRUST STRIP */
.trust-strip { background-color: var(--primary); padding: 30px 0; color: var(--darker-bg); }
.trust-content { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 15px; }
.trust-item i { font-size: 2.5rem; color: #000; }
.trust-item h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 2px; }
.trust-item p { font-size: 0.95rem; font-weight: 500; }

/* SERVICES GRID */
.services-section { background-color: var(--dark-bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); padding: 40px 30px; border-radius: 12px; text-align: center; transition: all 0.4s ease; cursor: pointer; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.1); }
.service-icon { width: 80px; height: 80px; background: rgba(255, 215, 0, 0.1); color: var(--primary); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; margin: 0 auto 25px; transition: all 0.4s ease; }
.service-card:hover .service-icon { background: var(--primary); color: var(--darker-bg); transform: scale(1.1); }

.service-image { width: 100%; height: 180px; margin: -40px -30px 25px; width: calc(100% + 60px); overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; border-bottom: 1px solid var(--primary); }
.service-card:hover .service-image img { transform: scale(1.05); }

.premium-badge { position: absolute; top: 15px; right: 15px; background: var(--primary); color: var(--darker-bg); font-weight: 800; font-size: 0.8rem; padding: 5px 12px; border-radius: 20px; z-index: 5; text-transform: uppercase; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }

.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #fff; }
.service-card p { color: var(--gray-text); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(rgba(5,5,5,0.8), rgba(5,5,5,0.9)), url('hero_bg.png') center/cover fixed; padding: 80px 0; text-align: center; border-top: 2px solid var(--primary); border-bottom: 2px solid var(--primary); }
.cta-content h2 { font-size: 3rem; color: var(--primary); margin-bottom: 20px; text-transform: uppercase; font-weight: 800; }
.cta-content p { font-size: 1.3rem; max-width: 600px; margin: 0 auto 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; }

/* WHY CHOOSE US */
.why-choose-us { background-color: var(--darker-bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-text h2 { font-size: 2.8rem; margin-bottom: 20px; color: #fff; }
.why-text p { font-size: 1.1rem; color: var(--gray-text); margin-bottom: 30px; }
.why-list { list-style: none; margin-bottom: 30px; }
.why-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: flex-start; gap: 15px; }
.why-list li i { color: var(--primary); margin-top: 5px; }
.why-list li strong { color: #fff; }

/* GALLERY */
.gallery-container { background: var(--card-bg); padding: 30px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.gallery-header { margin-bottom: 20px; text-align: center; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; }
.img-fluid { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .img-fluid { transform: scale(1.05); }
.badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.7); color: #fff; padding: 5px 12px; border-radius: 20px; font-weight: 600; font-size: 0.85rem; backdrop-filter: blur(5px); }
.badge-primary { background: var(--primary); color: var(--darker-bg); }

/* FOOTER */
.footer { background-color: #000; padding: 60px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: #fff; }
.footer-col p { color: var(--gray-text); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-col p i { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--gray-text); font-size: 0.9rem; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) { .why-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .trust-content { flex-direction: column; align-items: flex-start; padding-left: 20px; }
    .cta-content h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr; }
    .floating-btn { width: 50px; height: 50px; font-size: 24px; bottom: 20px; }
    .floating-wa { right: 20px; }
    .floating-call { left: 20px; }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
        width: auto;
        min-width: 160px;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 1rem;
        width: 100%;
    }

    .hero-buttons {
        align-items: center;
    }
}

/* FLOATING BUTTONS */
.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    border-radius: 50%;
    color: #FFF;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: #FFF;
}

.floating-wa {
    background-color: var(--whatsapp);
    right: 30px;
}

.floating-wa:hover {
    background-color: var(--whatsapp-hover);
}

.floating-call {
    background-color: var(--primary);
    color: var(--darker-bg);
    left: 30px;
}

.floating-call:hover {
    background-color: var(--primary-hover);
    color: var(--darker-bg);
}

/* URGENCY BADGE */
.urgency-badge {
    background: rgba(255, 60, 60, 0.15);
    border: 1px solid rgba(255, 60, 60, 0.4);
    color: #ff4d4d;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.2); }
    70% { box-shadow: 0 0 0 10px rgba(255, 60, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0); }
}

/* VIDEO SECTION */
.video-section {
    background-color: var(--darker-bg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background-color: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 500%;
    height: 100%;
    animation: slideAnimation 20s infinite ease-in-out;
}

.slide {
    width: 20%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes slideAnimation {
    0%, 15% { transform: translateX(0); }
    20%, 35% { transform: translateX(-20%); }
    40%, 55% { transform: translateX(-40%); }
    60%, 75% { transform: translateX(-60%); }
    80%, 95% { transform: translateX(-80%); }
    100% { transform: translateX(0); }
}

.video-overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    z-index: 2;
    pointer-events: none;
}

.video-overlay-text h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.video-overlay-text p {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
}

/* GOOGLE MAPS */
.map-section {
    width: 100%;
    height: 400px;
    background: #000;
}

/* POPUP OVERLAY */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.popup-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    background: var(--card-bg);
    border: 1px solid var(--primary);
    padding: 40px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.popup-overlay.show .popup-content {
    transform: translateY(0);
}

.popup-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 800;
}

.popup-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--gray-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #fff;
}

/* BEFORE & AFTER SLIDER */
.before-after-section {
    background-color: var(--dark-bg);
}

.text-center { text-align: center; }
.sub-heading { color: var(--primary); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; font-size: 0.95rem; margin-bottom: 15px; }
.section-title { font-size: 3.5rem; color: #fff; font-weight: 800; margin-bottom: 20px; }
.section-desc { color: var(--gray-text); font-size: 1.2rem; max-width: 600px; margin: 0 auto 50px; }

.ba-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.05);
}

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

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.before-image {
    width: 50%; /* JS will change this */
    overflow: hidden;
    z-index: 2;
    border-right: 2px solid transparent;
}

/* To ensure the before image fits perfectly inside its clipped container */
.before-image img {
    width: 900px; /* same as max width */
    max-width: none;
}

/* JS handles the before-image img width dynamically to fit exactly to the container's accurate pixel width */

.ba-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    z-index: 4;
    cursor: ew-resize;
    margin: 0;
}

.ba-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
}

.ba-slider::-moz-range-thumb {
    width: 40px;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
    border: none;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--primary);
    z-index: 3;
    pointer-events: none;
    transform: translateX(-50%);
}

.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.ba-badge {
    position: absolute;
    top: 20px;
    padding: 6px 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.before-badge { left: 20px; z-index: 3;}
.after-badge { right: 20px; z-index: 1;}


/* NEW SERVICE CARDS */
.modern-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 30px;
    height: 100%;
}

.modern-card.premium-card {
    border: 1px solid var(--primary);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.05);
}

.modern-card.premium-card:hover {
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: var(--primary);
    color: var(--darker-bg);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 5px 45px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-image {
    width: calc(100% + 60px); 
    margin: -30px -30px 25px -30px;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-card:hover .service-image img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .doorstep-content {
        justify-content: center !important;
        text-align: center;
    }
}
