/* --- Blog Modern Styles --- */
.blog-section {
    padding: 5rem 0 4rem 0;
    background: #f8fafc;
}

.blog-search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.blog-search-bar input[type="text"] {
    width: 100%;
    max-width: 420px;
    padding: 0.85rem 1.25rem;
    border: 1.5px solid #aab4c3;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    color: #121212;
    background: #fff;
    transition: border-color 0.2s;
    outline: none;
    box-shadow: none;
}

.blog-search-bar input[type="text"]:focus {
    border-color: #0a2351;
}


.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

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

@media (max-width: 768px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
}

.blog-card-modern {
    background: #fff;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(10, 35, 81, 0.03);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
    min-height: 100%;
}

.blog-card-modern:hover {
    box-shadow: 0 8px 32px rgba(10, 35, 81, 0.10);
    transform: translateY(-4px) scale(1.01);
    border-color: #aab4c3;
}

.blog-image-modern {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #e3eaf6 0%, #f8fafc 100%);
    color: #0a2351;
}

.blog-content-modern {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.blog-date-modern {
    color: #aab4c3;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.blog-title-modern {
    font-size: 1.45rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #0a2351;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.blog-summary-modern {
    color: #64748b;
    font-size: 1.08rem;
    margin-bottom: 1.25rem;
    flex: 1 1 auto;
}

.blog-link-modern {
    color: #0a2351;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
    margin-top: auto;
    display: inline-block;
}

.blog-link-modern:hover {
    color: #aab4c3;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .footer-col ul li {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .footer-col ul li a {
        white-space: nowrap;
    }
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Roboto:wght@300;400;500;600;700&display=swap');

/* Responsive order for Why Choose Us section */
@media (max-width: 768px) {
    .why-choose-us-mobile-reverse {
        display: flex !important;
        flex-direction: column !important;
    }

    .why-choose-us-mobile-reverse .why-choose-us-image {
        order: 1;
    }

    .why-choose-us-mobile-reverse .why-choose-us-content {
        order: 2;
    }
}

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



html,
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #121212;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Apply heading font globally */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1,
    h2,
    h3,
    p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.logo span {
    display: block;
    text-align: center;
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-top: 4px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
    /* Prevents breaking into two lines */
}

.nav-links a:hover,
.nav-links a.active {
    color: #000000;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000000;
    transition: 0.3s;
}

/* Page Header with Background */
.page-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 2.25rem;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto;
}

.page-header .container>div[style*="font-size: 3rem"] {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .page-header {
        height: 250px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000000;
    color: white !important;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #333333;
    color: white !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-primary .arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    background: white;
    color: #334155;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #000000;
}

.btn-white {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    background: white;
    color: #000000;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #e5e5e5;
}

.btn-outline-white {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    background: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 1rem 5rem;
    background: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.sparkle-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-blue {
    display: block;
    color: #000000;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
}

/* Services Overview */
.services-overview {
    position: relative;
    padding: 5rem 1rem;
    background: white;
    overflow: hidden;
}

.section-bg-decorations {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.decoration-top-right {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    opacity: 0.1;
}

.decoration-bottom-left {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    opacity: 0.1;
}

.services-overview .container {
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    margin: 0 auto 1.5rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.blue {
    background: #dbeafe;
}

.service-icon.green {
    background: #d1fae5;
}

.service-icon.violet {
    background: #ede9fe;
}

.service-icon.orange {
    background: #fed7aa;
}

.service-icon.red {
    background: #fee2e2;
}

.service-icon.yellow {
    background: #fef3c7;
}

.service-icon.teal {
    background: #ccfbf1;
}

.service-icon.pink {
    background: #fce7f3;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: #3b82f6;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

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

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

.cta-box {
    background: #000000;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials {
    padding: 5rem 1rem;
    background: white;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #64748b;
}

/* Video Showcase Section */
.image-text {
    padding: 2rem 1rem;
    background: #f8fafc;
}

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

.video-content-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-content-right {
    padding: 2rem 0;
}

.video-content-right .section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.video-content-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #0f172a;
}

.video-content-right .feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

    .video-content-right h2 {
        font-size: 2rem;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.cta-patterns {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-decoration-top {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    opacity: 0.2;
}

.cta-decoration-bottom {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content>p {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    padding-top: 2rem;
    border-top: 1px solid rgba(147, 197, 253, 0.3);
}

.cta-note p {
    color: #dbeafe;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 4rem 1rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1000px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-row {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        width: 100%;
        margin-bottom: 0;
    }

    .footer-col {
        flex: 1 1 0;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .footer-row {
        gap: 1.5rem;
    }

    .footer-col {
        flex: 1 1 0;
        min-width: 0;
    }

    .footer-grid {
        gap: 0.5rem;
    }
}

@media (max-width: 600px) {
    .footer-row {
        gap: 0.5rem;
    }

    .footer-col {
        flex: 1 1 0;
        min-width: 0;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .footer-grid {
        gap: 0.25rem;
    }
}

.footer-row {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    width: 100%;
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .footer-row {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: row;
        gap: 1.5rem;
    }

    .footer-col {
        flex: 1 1 0;
        min-width: 0;
    }

    .footer-grid {
        gap: 0.5rem;
    }
}

@media (max-width: 600px) {
    .footer-row {
        flex-direction: row;
        gap: 0.5rem;
    }

    .footer-col {
        flex: 1 1 0;
        min-width: 0;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .footer-grid {
        gap: 0.25rem;
    }
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-col {
    min-width: 0;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #3b82f6;
}

.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3b82f6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-mobile {
    display: none;
}

@media (max-width: 640px) {
    .footer-bottom.desktop-footer-bottom {
        display: none !important;
    }

    .footer-bottom-mobile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding-top: 2rem;
        border-top: 1px solid #334155;
    }

    .footer-bottom-mobile-row1 {
        text-align: center;
        font-size: 0.95rem;
        color: #cbd5e1;
        margin-bottom: 0.5rem;
    }

    .footer-bottom-mobile-row2 {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .footer-bottom-mobile-row2 a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s;
    }

    .footer-bottom-mobile-row2 a:hover {
        color: #3b82f6;
    }
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 1000px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .nav-links.active {
        display: flex;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links:not(.active) {
        display: none;
    }
}

@media (min-width: 1001px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-row {
        display: contents;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (min-width: 1001px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .section-header-modern h2 {
        font-size: 1.75rem;
        padding: 0;
        margin: 0 auto 1rem;
    }

    .section-header-modern p {
        font-size: 1rem;
        padding: 0;
        width: 100%;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 1.25rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Clean Hero Section */
.hero-clean {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 4rem;
}

.hero-grid-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-clean {
    max-width: 600px;
}

.hero-tagline {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 2rem;
    margin-top: 4rem;
    letter-spacing: -0.01em;
}

.hero-title-clean {
    font-size: 7rem;
    font-weight: 900;
    color: #000000;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    text-align: center;
}

.hero-description-clean {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-buttons-clean {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero-dark:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.btn-hero-dark .arrow {
    transition: transform 0.3s;
}

.btn-hero-dark:hover .arrow {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    border-color: #000000;
    color: #000000;
}

.hero-image-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-image-mobile {
    display: none;
}

.gradient-blob {
    max-width: 450px;
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Stats Section */
.stats-section {
    background: #f8fafc;
    padding: 3rem 1rem;
}

.stats-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-clean {
    text-align: center;
}

.stat-number-clean {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-label-clean {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Modern Services Section */
.services-modern {
    padding: 6rem 1rem;
    background: #ffffff;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.section-tag {
    display: inline-block;
    background: #e5e5e5;
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.section-header-modern h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    word-wrap: break-word;
}

.section-header-modern p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
    word-wrap: break-word;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid-3-col {
    grid-template-columns: repeat(3, 1fr);
}

.service-card-modern {
    display: block;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-modern:focus-visible {
    outline: 3px solid #000000;
    outline-offset: 2px;
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover !important;
    background-position: center !important;
}

.service-content-modern {
    padding: 2rem;
    text-align: center;
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-icon-modern.blue {
    background: #dbeafe;
}

.service-icon-modern.green {
    background: #d1fae5;
}

.service-icon-modern.teal {
    background: #ccfbf1;
}

.service-icon-modern.orange {
    background: #fed7aa;
}

.service-icon-modern.red {
    background: #fecaca;
}

.service-icon-modern.yellow {
    background: #fef3c7;
}

.service-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    transition: color 0.3s;
}

.service-card-modern:hover h3 {
    color: #000000;
}

.service-content-modern p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s;
    pointer-events: none;
}

.service-card-modern:hover .service-link {
    color: #333333;
}

/* Modern Features Section */
.features-modern {
    padding: 6rem 1rem;
    background: white;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-image {
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-content-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #1e293b;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item-modern {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon-check {
    width: 32px;
    height: 32px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item-modern h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.feature-item-modern p {
    color: #64748b;
    line-height: 1.8;
}

/* Modern Testimonials Section */
.testimonials-modern {
    padding: 6rem 1rem;
    background: #f8fafc;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-modern {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

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

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid #dbeafe;
    margin-left: auto;
    margin-right: auto;
}

.stars-modern {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-content-modern p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author-modern strong {
    font-weight: 700;
    color: #1e293b;
    text-align: center;
}

.testimonial-author-modern span {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
}

/* Modern CTA Section */
.cta-modern {
    position: relative;
    padding: 8rem 1rem;
    overflow: hidden;
    background: #ffffff;
}

.cta-bg {
    display: none;
}

.cta-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #1e293b;
}

.cta-content-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #000000;
}

.cta-content-modern>p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #64748b;
}

.cta-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.calendly-heading {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
}

.calendly-inline-widget {
    overflow: hidden;
}



.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #1e293b;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: #f8fafc;
    border-color: #1e293b;
    color: #000000;
}

.cta-note-modern {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid-clean {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
    }

    .hero-title-clean {
        font-size: 4rem;
    }

    .gradient-blob {
        max-width: 300px;
    }

    .stats-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
    }

    .section-header-modern h2,
    .cta-content-modern h2 {
        font-.service-page-content {
            padding: 5rem 1rem;
        }

        .service-page-content .container {
            max-width: 70rem;
        }

        .service-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: center;
        }

        .service-intro-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 1rem;
        }

        .service-intro-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .service-intro-text p {
            color: #64748b;
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-features-box {
            background: #f8fafc;
            border-radius: 1rem;
            margin-bottom: 4rem;
        }

        .service-features-box h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .service-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .feature-item h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: #3b82f6;
        }

        .feature-item p {
            color: #64748b;
        }

        .service-cta-box {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            padding: 4rem;
            border-radius: 1rem;
            text-align: center;
            color: white;
        }

        .service-cta-box h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .service-cta-box p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .service-cta-box .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .service-intro-grid {
                grid-template-columns: 1fr;
            }

            .service-features-grid {
                grid-template-columns: 1fr;
            }
        }

        size: 2rem;
    }

    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title-clean {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description-clean {
        font-size: 1rem;
    }

    .gradient-blob {
        max-width: 250px;
    }

    .stats-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number-clean {
        font-size: 2.5rem;
    }

    .hero-buttons-clean {
        flex-direction: column;
    }

    .btn-hero-dark,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Service Page */
.service-page-content {
    padding: 5rem 1rem;
}

.service-page-content .container {
    max-width: 70rem;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.service-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-intro-text p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features-box {
    background: #f8fafc;
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.service-features-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #3b82f6;
}

.feature-item p {
    color: #64748b;
}

.service-cta-box {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 4rem;
    border-radius: 1rem;
    text-align: center;
    color: white;
}

.service-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-cta-box .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

.cta-button {
    min-width: 240px;
    justify-content: center;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8fafc;
    padding: 0.5rem 0 0.25rem 0;
    font-size: 1rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5rem;
    color: #aab4c3;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: #aab4c3;
    font-size: 1rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    color: #aab4c3;
    margin: 0 0.5rem;
    font-size: 1.1em;
}

.breadcrumb-list a {
    color: #0a2351;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: #121212;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .breadcrumb-nav {
        font-size: 0.95rem;
        padding: 0.75rem 0 0.25rem 0;
    }

    .breadcrumb-list {
        gap: 0.25rem;
    }
}

/* Contact Page */
.contact-content {
    padding: 5rem 1rem;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 80rem;
    margin: 0 auto;
}

.contact-info {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 1rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.contact-item-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    color: #3b82f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.contact-item a,
.footer-col a {
    color: inherit !important;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-item a:hover,
.footer-col a:hover {
    color: #3b82f6 !important;
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.form-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #1e293b;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.consultation-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #dbeafe;
    border-radius: 0.75rem;
}

.consultation-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.consultation-box p {
    color: #1e40af;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .services-grid-3-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Case Studies Section */
.case-studies {
    padding: 5rem 1rem;
    background: #ffffff;
}

.case-study-card {
    max-width: 1100px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.case-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

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

.case-study-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 3rem;
}

.case-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0a2351;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.case-meta {
    color: #aab4c3;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #121212;
    margin-bottom: 2rem;
}

.case-benefits {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid #0a2351;
}

.case-benefits h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a2351;
    margin-bottom: 1rem;
}

.case-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-benefits ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #121212;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.case-benefits ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0a2351;
    font-weight: 700;
    font-size: 1.25rem;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: linear-gradient(135deg, #0a2351 0%, #1a3d7a 100%);
    transform: scale(1.05);
}

.metric-item:hover .metric-number {
    color: #ffffff;
}

.metric-item:hover .metric-label {
    color: #aab4c3;
}

.metric-number {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0a2351;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.metric-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .case-image {
        height: 250px;
    }

    .case-content {
        padding: 2rem 1.5rem;
    }

    .case-content h3 {
        font-size: 1.5rem;
    }

    .case-description {
        font-size: 1rem;
    }

    .case-benefits {
        padding: 1.5rem;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .case-study-card {
        margin-bottom: 3rem;
    }

    .case-image {
        height: 200px;
    }

    .case-content {
        padding: 1.5rem 1rem;
    }

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

    .case-benefits ul li {
        font-size: 0.9rem;
    }
}