/* Landing Page Specific Styles */
.landing-page-body {
    padding-top: 56px; /* Height of the navbar */
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
}

.landing-nav {
    background-color: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease-in-out;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    background: linear-gradient(45deg, #0f2027, #203a43, #2c5364);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .hero-heading {
    font-weight: 700;
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-section, .process-section, .contact-section {
    padding: 6rem 0;
}

.section-heading {
    margin-top: 0;
    font-weight: 700;
    font-size: 2.5rem;
}

.divider {
    max-width: 3.25rem;
    border-width: 0.2rem;
    border-color: #0d6efd; /* Bootstrap primary */
    opacity: 1;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    height: 100%;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.process-section .process-icon {
    width: 70px;
    height: 70px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-section .process-step {
    margin-top: 2rem;
}

.global-presence-section {
    padding: 6rem 0;
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.global-presence-section .lead {
    font-weight: 300;
}

.location-tags .badge {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8em 1.2em;
    margin: 0.5em;
    border-radius: 50px;
}