﻿/*Job Visa Page*/
.hero {
    background: url('https://images.unsplash.com/photo-1591696331119-7c769d47c28f?auto=format&fit=crop&w=1470&q=80') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 0;
}

.section-title {
    font-weight: 600;
}

.form-section {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
}/*navbar*/

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #0d6efd;
        transition: width 0.3s ease-in-out;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }
/*Blogs*/

.blog-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease-in-out;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    height: 220px;
    object-fit: cover;
}

.card-title {
    font-size: 1.25rem;
    color: #333;
}

.card-text {
    font-size: 0.95rem;
}
/*BlogDetails*/
ol li {
    margin-bottom: 0.5rem;
}

a.text-dark:hover {
    color: #0d6efd;
    text-decoration: underline;
}
/*Visa category*/
.counter-box {
    background: linear-gradient(145deg, #f3f4f6, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .counter-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.counter-icon {
    font-size: 40px;
    color: #e02454;
    margin-bottom: 20px;
    background: #ffe5ec;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
}

.counter-title {
    font-size: 18px;
    font-weight: 600;
    color: #003a66;
    margin-bottom: 10px;
}

.counter-value {
    font-size: 34px;
    font-weight: 800;
    color: #0d6efd;
}

.counter-suffix {
    font-size: 24px;
    font-weight: 600;
    color: #e02454;
    margin-left: 5px;
}
/*Appointment*/
.appointment-section {
    background: linear-gradient(135deg, #f0f8ff, #e6e6ff);
    padding: 70px 0;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.appointment-form {
    background: #fff;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

    .appointment-form h3 {
        margin-bottom: 30px;
        color: #003a66;
        font-weight: 700;
        text-align: center;
    }

.form-control,
select {
    border-radius: 12px;
    border: 1px solid #ced4da;
    padding: 12px 16px;
    box-shadow: none;
    transition: 0.3s;
}

    .form-control:focus,
    select:focus {
        border-color: #003a66;
        box-shadow: 0 0 0 0.15rem rgba(0, 58, 102, 0.15);
    }

.btn-appointment {
    background-color: #e02454;
    border-color: #e02454;
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .btn-appointment:hover {
        background-color: #bf1c45;
    }

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-icon {
    width: 60px;
    margin: auto;
    display: block;
    margin-bottom: 15px;
}
/*main panel*/

.carousel-item {
    height: 100vh;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}


/*index home page left panel design*/
/* Base style */
