/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #e63946;
    --primary-dark: #c1121f;
    --secondary-color: #457b9d;
    --accent-color: #f4a261;
    --dark-color: #1d3557;
    --light-color: #f1faee;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray: #f8f9fa;
    --border-color: #e9ecef;
    
    /* Typography */
    --body-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --big-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    
    /* Font weight */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    
    /* Margins */
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-floating: 1000;
    
    /* Shadows */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

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

.section {
    padding: 5rem 0;
}

.section__title {
    font-size: var(--h1-font-size);
    color: var(--dark-color);
    text-align: center;
    margin-bottom: var(--mb-1);
    font-weight: var(--font-bold);
}

.section__subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: var(--mb-3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: var(--font-semi-bold);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn--emergency {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: var(--font-bold);
    padding: 1rem 2rem;
}

.btn--emergency:hover {
    background-color: #e76f51;
    color: var(--white);
    transform: scale(1.05);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-floating);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--primary-color);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: var(--z-fixed);
    transition: all 0.3s ease;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-bold);
    font-size: var(--h3-font-size);
    color: var(--dark-color);
}

.nav__logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav__toggle,
.nav__close {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}


















/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__title {
    font-size: var(--big-font-size);
    color: var(--dark-color);
    margin-bottom: var(--mb-1-5);
    line-height: 1.2;
}

.hero__description {
    color: var(--text-light);
    margin-bottom: var(--mb-2);
    font-size: 1.1rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--mb-2-5);
    flex-wrap: wrap;
}

.hero__features {
    display: flex;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-medium);
}

.feature i {
    color: var(--primary-color);
}

.hero__image {
    position: relative;
}

.hero__image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}





















/* Services Section */
.services {
    background-color: var(--gray);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service__card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service__icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1-5);
}

.service__icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    color: var(--dark-color);
}

.service__description {
    color: var(--text-light);
    margin-bottom: var(--mb-1-5);
}

.service__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service__link:hover {
    gap: 1rem;
}

/* Why Choose Us Section */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--mb-3);
}

.why-us__item {
    text-align: center;
    padding: 2rem 1rem;
}

.why-us__icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1-5);
    transition: transform 0.3s ease;
}

.why-us__item:hover .why-us__icon {
    transform: scale(1.1);
    background: var(--primary-color);
}

.why-us__icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.why-us__item:hover .why-us__icon i {
    color: var(--white);
}

.why-us__item h3 {
    margin-bottom: var(--mb-1);
    color: var(--dark-color);
}

.why-us__item p {
    color: var(--text-light);
}

.stats__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.stat__number {
    display: block;
    font-size: 3rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: var(--mb-0-5);
    line-height: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat__label {
    color: var(--text-light);
    font-weight: var(--font-medium);
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: center;
}

/* Emergency Banner */
.emergency {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2rem 0;
}

.emergency__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.emergency__text h3 {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-0-5);
}

/* Testimonials */
.testimonials__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial__card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial__stars {
    color: var(--accent-color);
    margin-bottom: var(--mb-1);
}

.testimonial__text {
    font-style: italic;
    margin-bottom: var(--mb-1-5);
    color: var(--text-light);
}

.testimonial__author strong {
    display: block;
    color: var(--dark-color);
}

.testimonial__author span {
    color: var(--text-light);
    font-size: var(--small-font-size);
}

/* Gallery Section */
.gallery__filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--mb-2-5);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: var(--font-medium);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery__item .gallery__overlay {
    transform: translateY(0);
}

.gallery__overlay h3 {
    margin-bottom: var(--mb-0-5);
}

/* Brands Section */
.trusted-brands {
    margin-top: 40px;
    padding: 60px 16px;
    background: #f9f9f9;
    text-align: center;
    overflow: hidden;
}

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

.trusted-brands h2 {
    font-size: 1.9rem;
    margin-bottom: 6px;
    color: #111;
}

.trusted-brands h2 span {
    color: var(--primary-dark);
}

.brands-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 0.98rem;
}

/* Slider container */
.brands-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Track for scrolling logos */
.brands-track {
    display: flex;
    gap: 22px;
    animation: scrollBrands 20s linear infinite;
    will-change: transform;
}

/* Each logo card */
.brand-card {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

/* Logos inside the card */
.brand-card img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
}

/* Hover effect */
.brand-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Keyframes for infinite scrolling */
@keyframes scrollBrands {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* FAQ Section */
.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq__question:hover {
    background: var(--light-color);
}

.faq__question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.faq__question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item.active .faq__answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq__answer p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact__info h3 {
    margin-bottom: var(--mb-2);
    color: var(--dark-color);
}

.contact__item {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--mb-2);
    align-items: flex-start;
}

.contact__item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact__social {
    display: flex;
    gap: 1rem;
    margin-top: var(--mb-2);
}

.contact__social a {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact__social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: inherit;
    transition: border-color 0.3s ease;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--dark-color);
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: var(--mb-2);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-bold);
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
}

.footer__logo i {
    color: var(--primary-color);
}

.footer__section h4 {
    margin-bottom: var(--mb-1);
    color: var(--dark-color);
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: var(--mb-0-5);
}

.footer__section a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.footer__contact i {
    color: var(--primary-color);
    width: 16px;
}

.footer__social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer__social a {
    width: 35px;
    height: 35px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid #444;
    padding-top: var(--mb-1-5);
    text-align: center;
    color: var(--dark-color);
}

.footer__bottom a {
    text-decoration: none;
    margin-left: 0.5rem;
    color: var(--dark-color);
}

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

/* Responsive Design */
@media screen and (max-width: 968px) {
    :root {
        --big-font-size: 2rem;
        --h1-font-size: 1.75rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__features {
        justify-content: center;
        display: none;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr 1fr;
    }
    
    .emergency__content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stats__container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-card {
        width: 90px;
        height: 90px;
    }
    
    .brands-track {
        gap: 18px;
        animation-duration: 16s;
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background: var(--white);
        padding: 4rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .why-us__grid {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stats__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .stat__number {
        font-size: 2.5rem;
        min-height: 50px;
    }

    .stat__label {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .stat {
        padding: 0.5rem;
    }

    .stat__number {
        font-size: 2.2rem;
        min-height: 45px;
    }

    .stat__label {
        font-size: 0.8rem;
    }
    
    .gallery__filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: var(--small-font-size);
    }
    
    .brand-card {
        width: 72px;
        height: 72px;
    }
    
    .brands-track {
        gap: 14px;
        animation-duration: 14s;
    }
    
    .floating-buttons {
        bottom: 0.5rem;
        right: 0.5rem;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Updated Header & Navigation for Mobile */
@media screen and (max-width: 768px) {
    .nav {
        height: 3.5rem;
        padding: 0 1rem;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 6rem 2rem 2rem;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
        z-index: var(--z-fixed);
        overflow-y: auto;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav__link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
    }

    .nav__link.active::after {
        display: none;
    }

    .nav__link.active {
        color: var(--primary-color);
        font-weight: var(--font-bold);
    }

    .nav__toggle,
    .nav__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 0.25rem;
        transition: background-color 0.3s ease;
    }

    .nav__toggle:hover,
    .nav__close:hover {
        background-color: var(--light-color);
    }

    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }

    .nav__btns {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav__btns .btn--primary {
        display: none; /* Hide book service button on mobile */
    }

    .nav__logo {
        font-size: 1.1rem;
    }

    .nav__logo i {
        font-size: 1.3rem;
    }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
    .nav__menu {
        width: 85%;
    }

    .nav__logo span {
        font-size: 1rem;
    }

    .nav__toggle {
        font-size: 1.3rem;
    }
   
}

/* Fix for body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}























 /* Service checklist (unique classes to avoid conflicts) */
 .services {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
  }
  
  .services h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .services h2 .highlight {
    color: var(--primary);
  }
  
  .services .subheading {
    font-size: 1rem;
    margin-bottom: 50px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 1rem;
  }
  
  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  
  .service-card img {
    max-width: 80px;
    margin-bottom: 15px;
    transition: var(--transition);
  }
  
  .service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    text-align: center;
  }
  
  /* Hover effect */
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  }
  
  .service-card:hover img {
    transform: scale(1.1);
  }
  
  /* Responsive */
  @media screen and (max-width: 900px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .services h2 {
      font-size: 1.8rem;
    }
    .services .subheading {
      font-size: 0.95rem;
    }
  }
  
  @media screen and (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    .services h2 {
      font-size: 1.5rem;
    }
    .services .subheading {
      font-size: 0.9rem;
    }
  }
  
  