:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.card {
    transition: transform 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
}

.list-group-item {
    border-left: none;
    border-right: none;
    background-color: transparent;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    .hero .col-md-8 {
        order: 2;
    }
    .hero .col-md-4 {
        order: 1;
        margin-bottom: 20px;
    }
}
/* ===== MOBILE NAVBAR STYLING ===== */
@media (max-width: 991px) {

    .navbar-collapse {
        background: linear-gradient(135deg, #0a192f, #1b3a57);
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        backdrop-filter: blur(10px);
    }

    .nav-link-premium {
        background: rgba(255,255,255,0.05);
        margin: 6px 0;
        padding: 10px;
        border-radius: 8px;
        text-align: center;
        transition: 0.3s;
    }

    .nav-link-premium:hover {
        background: rgba(255,255,255,0.15);
        transform: scale(1.03);
    }

    /* Toggle button (hamburger) styling */
    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }
}
/* Contact Section Icons */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    box-shadow: 0 4px 10px rgba(13,110,253,0.3);
}

.card {
    border-radius: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    border: none;
    transition: all 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(13,110,253,0.4);
}

.social-icons a {
    transition: transform 0.2s, color 0.2s;
    display: inline-block;
}
.social-icons a:hover {
    transform: translateY(-3px);
    color: #0d6efd !important;
}