@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-font {
    font-family: 'Playfair Display', sans-serif;
}

/* ====================== HERO BACKGROUND ====================== */
.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.78)), 
                url('../images/cityscape.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
}

/* ====================== NAV & LOGO ALIGNMENT ====================== */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;     /* Important: Left aligned */
    gap: 2rem;
}

.nav-logo {
    margin-right: auto;               /* Pushes logo to the left */
}

.nav-logo img {
    width: 374px;
    height: 72.8px;
    object-fit: contain;
}

/* Hamburger on the right */
#mobile-menu-button {
    margin-left: auto;
}

/* Desktop menu on the right */
.hidden.md\\:flex {
    margin-left: auto;
}

/* ====================== HERO TEXT ====================== */
.hero-content {
    max-width: 100%;
    width: 100%;
}

.hero-title {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.05;
}

.hero-subtitle {
    max-width: 100%;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}



/* Buttons */
.btn-primary, .professional-btn {
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover, .professional-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(30 64 175 / 0.2);
}

/* Other Components */
.nav-link {
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: #1e40af;
    transform: translateY(-1px);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.trusted-strip {
    overflow: hidden;
    white-space: nowrap;
}
.trusted-strip-inner {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.stat-number {
    font-size: 3.25rem;
    line-height: 1;
    font-weight: 700;
    color: #1e40af;
}

/* Footer Logo */
.footer-logo img {
    width: 274px;
    height: 62.8px;
    object-fit: contain;
}

/* ====================== MEDIA QUERIES ====================== */
@media (max-width: 640px) {
    .nav-logo img {
        width: 220px;
        height: 50px;
    }

    .hero-title {
        font-size: 2.75rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .btn-primary, .professional-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        width: 200px;
        height: 46px;
    }

    .hero-title {
        font-size: 2.45rem;
    }
}

@media (max-width: 640px) {
    .md\:col-span-5 img {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer logo responsive */
@media (max-width: 640px) {
    .footer-logo img {
        width: 240px;
        height: 55px;
    }
}

* ====================== TESTIMONIALS ====================== */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #374151;
}

.testimonial-author {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: #1f2937;
}

.testimonial-position {
    font-size: 0.875rem;
    color: #6b7280;
}