/* Google Fonts Request: Poppins is linked in HTML */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #fd7e14;
    --dark-color: #212529;
    --light-bg: #f8f9fa;
    --font-main: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar-brand span {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: url('https://images.unsplash.com/photo-1600518464441-9154a4dea432?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    min-height: 85vh;
    /* Almost full viewport height */
    position: relative;
    padding-top: 80px;
    /* Space for fixed navbar */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Card Styling */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Service Card Hover Effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Testimonial Cards */
.card-text.fst-italic {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--primary-color);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

/* Footer Links Hover */
.hover-white:hover {
    color: white !important;
}

/* Animations & Utilities */
.btn-primary {
    padding: 0.6rem 1.5rem;
}

section {
    overflow: hidden;
    /* Prevent horizontal scroll from entry animations */
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
        text-align: center;
    }

    .hero-section .col-lg-7 {
        margin-bottom: 40px;
    }
}

/* Utility Classes */
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* Process Step Hover Effect */
.process-step:hover .icon-box {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.process-step .badge {
    transition: transform 0.3s ease;
}

.process-step:hover .badge {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Network Section Links */
.text-secondary.hover-primary {
    transition: color 0.2s ease;
}

.all-cities .row .col a {
    background-color: #ffc107;
    border-radius: 10px;
    display: block;
    padding: 12px;
    color: #212529 !important;
    /* Force dark color */
    font-weight: 500;
    transition: all 0.3s ease;
}

.all-cities .row .col a:hover {
    background-color: #ffca2c;
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}