/* =============================================================
   RGS College of Pharmacy — Main Stylesheet
   File: public/assets/styles.css
   NOTE: Keep ALL CSS here. Never put CSS in .blade.php files
         to avoid @media Blade ParseError conflicts.
   ============================================================= */

/* ========== CSS VARIABLES ========== */
:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-blue: #3399ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #546e7a;
    --shadow: rgba(0, 102, 204, 0.1);
}

/* ========== BASE RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ========== TOP INFO BAR ========== */
.top-info-bar {
    background: var(--dark-blue);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-info-bar a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-info-bar a:hover {
    opacity: 0.8;
}

.top-info-bar i {
    margin-right: 5px;
}

.contact-info-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.login-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.login-btn {
    background: var(--white);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.login-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== MAIN HEADER ========== */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px var(--shadow);
    position: relative;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    height: 70px;
    width: auto;
}

.college-info h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.2;
}

.college-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.header-contact {
    text-align: right;
}

.header-contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.header-contact-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* ========== NAVIGATION BAR ========== */
.main-navbar {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #0078e6 100%);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.main-navbar .container {
    position: relative;
}

.navbar-toggler {
    display: none;
}

.navbar-nav {
    width: 100%;
    justify-content: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 600;
    padding: 18px 22px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    border-radius: 8px;
    margin: 4px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 0 !important;
}

.nav-link:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

/* ========== DROPDOWN MENU ========== */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown-menu {
    background: var(--white);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-top: 0px !important;
    padding: 12px 0;
    min-width: 280px;
    display: none;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1000;
    pointer-events: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 6px solid var(--white);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.dropdown-item::before {
    content: '›';
    font-size: 1.3rem;
    color: var(--primary-blue);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-weight: 700;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.08) 0%, transparent 100%);
    border-left-color: var(--primary-blue);
    padding-left: 20px;
    color: var(--primary-blue);
    text-decoration: none;
}

.dropdown-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-toggle::after {
    margin-left: 8px;
    transition: transform 0.3s ease;
    border-top-width: 0.35em;
    border-right-width: 0.35em;
    border-bottom: 0;
    border-left-width: 0.35em;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar-brand {
    display: none;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-navbar,
.mobile-menu-overlay,
.mobile-menu {
    display: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background-image: url('/assets/slider-images/homepage-slider-1.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255, 255, 255, 0.03) 35px,
        rgba(255, 255, 255, 0.03) 70px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-hashtag {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-accreditation {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-accreditation div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hero-accreditation i {
    color: var(--white);
    font-size: 1.3rem;
}

.hero-btn-wrap {
    margin-top: 350px;
}

/* ========== BUTTONS ========== */
.btn-apply {
    background: var(--white);
    color: var(--primary-blue);
    padding: 15px 40px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-apply:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-learn-more {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-learn-more:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-submit {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    width: 100%;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
    color: var(--white);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

.btn-directions i {
    font-size: 1.2rem;
}

/* ========== SECTION TITLE ========== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
}

/* ========== ACCREDITATION SECTION ========== */
.accreditation-section {
    padding: 50px;
    background: var(--white);
}

.accreditation-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.accreditation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
}

.accreditation-logo {
    height: 100px;
    width: auto;
    margin: 0 auto 20px;
    object-fit: contain;
    display: block;
}

.accreditation-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.accreditation-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ========== NOTIFICATIONS PANEL ========== */
.notification-panel {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.notification-panel:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
}

.notification-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.notification-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.notification-body {
    padding: 20px;
    flex-grow: 1;
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    gap: 15px;
}

.notification-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.notification-icon {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 2px;
}

.notification-icon.urgent {
    color: #dc3545;
}

.notification-content p {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}

.notification-body::-webkit-scrollbar {
    width: 6px;
}

.notification-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notification-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.notification-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* ========== NEWS & EVENTS SLIDER ========== */
.news-events-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.news-slider-container {
    position: relative;
    padding: 0 60px;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 102, 204, 0.2);
}

.news-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    position: relative;
    flex-shrink: 0;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.news-date {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    width: fit-content;
    flex-shrink: 0;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
    flex-shrink: 0;
}

.news-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 135px;
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.custom-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s;
}

.custom-nav-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-50%) scale(1.1);
}

.custom-prev-btn { left: 0; }
.custom-next-btn { right: 0; }

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ========== COURSES SECTION ========== */
.courses-section {
    padding: 80px 0;
    background: var(--white);
}

.course-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.4s;
    height: 100%;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
}

.course-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
}

.course-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.course-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
}

.course-body {
    padding: 35px;
}

.course-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-body ul li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
}

.course-body ul li:last-child {
    border-bottom: none;
}

.course-body ul li i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========== MODAL ========== */
.modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-title {
    font-weight: 700;
    font-size: 1.8rem;
}

.application-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.application-form .form-control,
.application-form .form-select {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
}

.application-form .form-control:focus,
.application-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
}

/* ========== LOCATION SECTION ========== */
.location-section {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(0, 102, 204, 0.02) 35px,
        rgba(0, 102, 204, 0.02) 70px
    );
    pointer-events: none;
}

.location-section .container {
    position: relative;
    z-index: 1;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.15);
    transition: all 0.4s ease;
    border: 3px solid var(--white);
    background: var(--white);
    padding: 10px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.25);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--white);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* =====================================================
   RESPONSIVE / MEDIA QUERIES
   ===================================================== */

/* ---- Tablet ---- */
@media (max-width: 992px) {
    .hero-section {
        background-size: cover;
        background-position: center right;
        background-attachment: scroll;
        min-height: 550px;
        padding: 60px 0;
    }

    .hero-hashtag { font-size: 3rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-btn-wrap { margin-top: 250px; }

    .section-title { font-size: 2rem; }

    .header-contact {
        text-align: left;
        margin-top: 15px;
    }

    .login-buttons {
        margin-top: 10px;
        justify-content: flex-start;
    }

    .news-slider-container { padding: 0 50px; }
    .news-content { min-height: 280px; }

    .notifications-col { margin-top: 40px; }

    .map-container iframe { height: 400px; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .top-info-bar { display: none !important; }
    .main-header { display: none !important; }
    .main-navbar { display: none !important; }

    body { padding-top: 60px; }

    .mobile-navbar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
        padding: 16px 20px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .mobile-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-brand i { font-size: 1.5rem; }

    .mobile-menu-btn {
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .mobile-menu-btn:hover { transform: scale(1.1); }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1100;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        z-index: 1200;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu.active { right: 0; }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
        border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 700;
    }

    .mobile-menu-logo i { font-size: 1.5rem; }

    .mobile-menu-close {
        background: none;
        border: none;
        color: var(--white);
        font-size: 2rem;
        cursor: pointer;
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .mobile-menu-links { padding: 30px 0; }

    .mobile-nav-item { border-bottom: 1px solid #e9ecef; }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 25px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        background: linear-gradient(90deg, rgba(0, 102, 204, 0.08) 0%, transparent 100%);
        color: var(--primary-blue);
        padding-left: 30px;
    }

    .mobile-nav-item.has-dropdown > .mobile-nav-link::after {
        content: '\F282';
        font-family: 'bootstrap-icons';
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .mobile-nav-item.has-dropdown.open > .mobile-nav-link::after {
        transform: rotate(180deg);
    }

    .mobile-dropdown {
        max-height: 0;
        overflow: hidden;
        background: #f8f9fa;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-nav-item.has-dropdown.open .mobile-dropdown {
        max-height: 500px;
    }

    .mobile-dropdown-link {
        display: block;
        padding: 14px 25px 14px 45px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 0.95rem;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .mobile-dropdown-link:hover {
        background: var(--white);
        color: var(--primary-blue);
        border-left-color: var(--primary-blue);
        padding-left: 50px;
    }

    .hero-section {
        min-height: 400px;
        padding: 20px 0;
        background-size: cover;
        background-position: left center;
        background-attachment: scroll;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: auto;
    }

    .hero-hashtag { font-size: 2rem; margin-bottom: 15px; }
    .hero-title { font-size: 1.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-btn-wrap { margin-top: 200px; }

    .hero-accreditation {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .btn-apply {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .section-title.text-start {
        text-align: center !important;
    }

    .section-title.text-start::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .course-header h3 { font-size: 2rem; }

    .news-slider-container { padding: 0 40px; }
    .news-image-wrapper { height: 220px; }
    .news-content { min-height: 300px; padding: 25px; }

    .custom-nav-btn {
        width: 40px;
    ...
}
