:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 1rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-light);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

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

/* Accessibility & Loading */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}
.skip-link:focus { top: 6px; }
.loading { opacity: 0; transition: opacity 0.3s ease-in-out; }
.loaded { opacity: 1; }
a:focus, button:focus { outline: 2px solid var(--primary-color); outline-offset: 2px; }

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
    will-change: transform;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header-top {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}
.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.contact-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
    white-space: nowrap;
}
.contact-item:hover { transform: translateY(-1px); }
.contact-item i { font-size: 0.875rem; flex-shrink: 0; }
.header-main { padding: 1rem 0; }
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}
.logo:hover { transform: scale(1.02); }
.logo i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* NEW STYLE FOR LOGO IMAGE */
.logo-img {
    height: 50px; /* Adjust height as needed */
    width: auto;
    display: block;
}
.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav a:hover, .nav a.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}
.nav a:hover::after, .nav a.active::after { width: 80%; }
.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.cta-button:hover::before { left: 100%; }
.cta-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
    padding: 0.5rem;
    border: none;
    background: none;
    z-index: 1001;
}
.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    transform-origin: center;
}
.mobile-menu-toggle.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:last-child { transform: rotate(-45deg) translate(7px, -6px); }

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, transparent 50%, rgba(30, 64, 175, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}
.hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 120px;
}
.stat:hover { transform: translateY(-5px); }
.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fbbf24;
    display: block;
}
.stat-label { font-size: 0.875rem; opacity: 0.9; margin-top: 0.5rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
    text-align: center;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
    text-align: center;
}
.btn-secondary:hover { background: var(--white); color: var(--primary-color); transform: translateY(-2px); }
.hero-image { position: relative; }
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}
.hero-image:hover img { transform: scale(1.02); }

/* General Sections & Cards */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto 0;
}
.page-header {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 12rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, transparent 50%, rgba(30, 64, 175, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
}
.page-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; position: relative; z-index: 1; }
.page-header p { font-size: 1.25rem; opacity: 0.9; position: relative; z-index: 1; }

/* Services Section */
.services { padding: 6rem 0; background: var(--bg-light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer; /* ADDED for modal */
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
}
.service-card:hover::before { left: 0; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-icon i { font-size: 1.5rem; color: var(--white); }
.service-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1rem; }
.service-card p { color: var(--text-light); line-height: 1.7; }

/* Brands Section */
.brands { padding: 5rem 0; background: var(--white); }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
}
.brand-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}
.brand-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-color); }
.brand-item img {
    max-width: 100%;
    max-height: 80px;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.brand-item:hover img { filter: grayscale(0%); }

/* Contact Page */
.contact-section { padding: 6rem 0; background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-section, .contact-form { background: var(--white); padding: 3rem; border-radius: var(--border-radius); box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.05); }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; padding: 1.5rem; background: var(--bg-light); border-radius: var(--border-radius); transition: all 0.3s ease; }
.contact-info-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-icon { width: 3rem; height: 3rem; background: var(--gradient-primary); border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { font-size: 1.25rem; color: var(--white); }
.contact-details h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-details p { color: var(--text-light); margin-bottom: 0.25rem; }
.contact-details a { color: var(--primary-color); text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.contact-details a:hover { color: var(--secondary-color); }

.business-info { padding: 6rem 0; background: var(--white); }
.business-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.business-card { background: var(--bg-light); padding: 2.5rem; border-radius: var(--border-radius); box-shadow: var(--shadow-md); transition: all 0.3s ease; text-align: center; border: 1px solid rgba(0,0,0,0.05); }
.business-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.business-icon { width: 4rem; height: 4rem; background: var(--gradient-primary); border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.business-icon i { font-size: 1.5rem; color: var(--white); }
.business-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.business-card p { color: var(--text-light); line-height: 1.6; }

/* About/References Page */
.gallery-section { padding: 6rem 0; background: var(--bg-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--border-radius); box-shadow: var(--shadow-md); transition: all 0.3s ease; cursor: pointer; background: var(--white); }
.gallery-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.3s ease; display: block; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--gradient-hero); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--white); }

.testimonials { padding: 6rem 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.testimonial { background: var(--white); padding: 2.5rem; border-radius: var(--border-radius); box-shadow: var(--shadow-md); position: relative; border: 1px solid rgba(0,0,0,0.05); transition: all 0.3s ease; }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial::before { content: '"'; position: absolute; top: 1rem; left: 2rem; font-size: 4rem; color: var(--primary-color); opacity: 0.2; font-family: serif; }
.testimonial-content { font-style: italic; color: var(--text-light); line-height: 1.6; margin-bottom: 1.5rem; font-size: 1.1rem; }
.testimonial-author { font-weight: 600; color: var(--text-dark); font-size: 1rem; }

.cta-section { padding: 5rem 0; background: var(--gradient-primary); color: var(--white); text-align: center; }
.cta-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.cta-content p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta { background: var(--white); color: var(--primary-color); padding: 1rem 2.5rem; border-radius: var(--border-radius); text-decoration: none; font-weight: 600; transition: all 0.3s ease; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.5rem; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-cta-secondary { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-cta-secondary:hover { background: var(--white); color: var(--primary-color); }

/* Modal for Gallery */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); animation: fadeIn 0.3s ease; }
.modal-content { margin: auto; display: block; max-width: 90%; max-height: 90%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: var(--border-radius); }
.close { position: absolute; top: 2rem; right: 2rem; color: var(--white); font-size: 2rem; font-weight: bold; cursor: pointer; z-index: 2001; transition: color 0.3s ease; }
.close:hover { color: var(--primary-color); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Footer */
.footer { background: var(--text-dark); color: var(--white); padding: 4rem 0 2rem; }
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}
.footer-section p, .footer-section li { color: rgba(255,255,255,0.8); margin-bottom: 0.75rem; line-height: 1.6; }
.footer-section ul { list-style: none; }
.footer-section a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s ease; }
.footer-section a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.6); }

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-stats { justify-content: center; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .header-top { padding: 0.75rem 0; }
    .header-top-content { flex-direction: column; text-align: center; gap: 0.5rem; }
    .contact-info { gap: 0.75rem; font-size: 0.75rem; justify-content: center; }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        z-index: 999;
    }
    .nav.active { display: flex; }
    .mobile-menu-toggle { display: flex; }
    .cta-button { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
    .hero { padding: 8rem 0 4rem; min-height: 70vh; }
    .hero-stats { gap: 0.5rem; }
    .stat { padding: 1rem 0.5rem; min-width: 100px; }
    .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; padding: 1rem 1.5rem; }
    .page-header { padding: 8rem 0 3rem; }
    .page-header h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .services, .brands, .footer { padding: 4rem 0; }
    .services-grid, .brands-grid, .testimonials-grid, .gallery-grid, .business-grid { grid-template-columns: 1fr; }
    .brand-item { height: 120px; }
    .contact-info-section, .contact-form { padding: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-cta { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 0.75rem; }
    .logo { font-size: 1.5rem; }
    .logo i { font-size: 2rem; }
    .logo-img { height: 40px; } /* Adjust logo for smaller screens */
    .hero-stats { flex-direction: column; align-items: center; }
    .stat { width: 100%; max-width: 200px; }
    .brands-grid { grid-template-columns: 1fr; }
}

/* Animations */
.animate-fade-up, .animate-fade-left, .animate-fade-right {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}
.animate-fade-up { transform: translateY(20px); }
.animate-fade-left { transform: translateX(-20px); }
.animate-fade-right { transform: translateX(20px); }
.animate-fade-up.visible, .animate-fade-left.visible, .animate-fade-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Accessibility Preferences */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}
@media (prefers-contrast: high) {
    :root {
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    }
}

/* ==================================
NEW STYLES ADDED 
==================================
*/

/* STYLES FOR SERVICE MODAL */
.service-modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-dark); /* Ensure text is readable */
}
.service-modal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.service-modal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.service-modal-content ul {
    list-style-position: inside;
    padding-left: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.service-modal-content li {
    margin-bottom: 0.5rem;
}

/* Fix for gallery modal image */
#modalImage.modal-content {
    background-color: transparent;
    padding: 0;
    width: auto;
}

/* Mobile adjustments for modal */
@media (max-width: 768px) {
    .service-modal-content { 
        padding: 1.5rem; 
    }
    .service-modal-content h2 { 
        font-size: 1.5rem; 
    }
}

/* New Hero Design (No Image) */
.hero-content-centered {
    display: block; /* Override the old 'grid' layout */
    max-width: 800px; /* Constrain the width for better readability */
    margin: 0 auto; /* Center the whole block */
}

.hero-content-centered .hero-text {
    text-align: center; /* Center all the text */
}

.hero-content-centered .hero-stats {
    justify-content: center; /* Center the flex-items (stats) */
}

.hero-content-centered .hero-buttons {
    justify-content: center; /* Center the flex-items (buttons) */
}

/* Override the old fade-left animation if it's still cached */
.hero-content-centered .animate-fade-left {
    transform: translateX(0);
}
