body {
    font-size: 0.9rem;
    background-color: #fff;
}

.form-control,
.selectize-input,
.card,
.card-header,
.list-group,
.btn,
.form-select {
    border-radius: 0 !important;
}

.content {
    font-size: 1.2rem;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(120deg, #eaf4ff 60%, #ffffff);
    padding: 60px 0;
    overflow: hidden;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}

.hero-title span {
    color: #0d6efd;
}

.hero-sub {
    color: #6b7280;
    margin-top: 15px;
    font-size: 16px;
}

/* SEARCH BOX */
.search-box {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* FEATURE CARDS */
.feature-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #eaf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* RIGHT IMAGE */
.hero-img {
    max-width: 100%;
    border-radius: 20px;
}

.hospital-card {
    transition: all 0.3s ease;
}

.hospital-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 30px;
    background: #eaf4ff;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #cfe2ff;
    transition: .3s;
}

.verified-pill:hover {
    background: #d9ebff;
}


/* Institution show page link to institution vacancy */
.vacancy-btn {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

.vacancy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.6);
    color: #fff;
}

.vacancy-btn i {
    transition: transform 0.3s ease;
}

.vacancy-btn:hover i {
    transform: translateX(4px);
}

.vacancy-btn span {
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease, height 0.4s ease;
}

.vacancy-btn:hover span {
    width: 200px;
    height: 200px;
}



/* Institution Sidebar */
.sidebar-link {
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.sidebar-link:hover {
    background-color: #f1f5ff;
    color: #0d6efd !important;
    padding-left: 12px;
}

.sidebar-link:hover i {
    color: #0d6efd !important;
}

.gradient-text {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Selectize */
/* Match Bootstrap button height */
.selectize-control.single .selectize-input {
    height: 37px !important;
    display: flex;
    align-items: center;
    padding: 0 12px !important;
    border-radius: 6px;
}

/* Remove inner spacing issue */
.selectize-input>input {
    margin: 0 !important;
}

/* Match arrow alignment */
.selectize-control.single .selectize-input:after {
    right: 12px;
    margin-top: -3px;
}



/* Search Button */
.btn-premium-search {
    background: linear-gradient(135deg, #0d6efd, #20c997);
    border: none;
    color: #fff;
    border-radius: 40px;
    font-size: 15px;
    transition: all 0.25s ease;
    box-shadow: 0 5px 14px rgba(13, 110, 253, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-premium-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
    color: #fff;
}

.emergency-bar {
    background: repeating-linear-gradient(-45deg,
            #c82333,
            #c82333 10px,
            #dc3545 10px,
            #dc3545 20px);
    overflow-x: auto;
    white-space: nowrap;
}

/* Hide scrollbar (optional but clean) */
.emergency-bar::-webkit-scrollbar {
    height: 0px;
}

.emergency-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    /* Vertical center */
    justify-content: center;
    /* Horizontal center */
    min-width: max-content;
    /* Important for scroll */
}

.share-buttons a {
    display: inline-block;
    padding: 6px 12px;
    background-color: #0056b3;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.share-buttons a:hover {
    background-color: #0056b3;
}

.course-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Medical Courses */
.course-card {
    transition: all 0.3s ease;
    background: #fff;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10) !important;
}

.course-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    backdrop-filter: blur(5px);
}

.course-title {
    min-height: 52px;
    line-height: 1.4;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.course-card:hover .arrow-btn {
    background: #0d6efd;
    color: #fff;
}

/* Institution Page */
.institution-card {
    transition: all 0.3s ease;
}

.institution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08) !important;
}


.speciality-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}