:root {
    --navy: #071f46;
    --navy-light: #0d2a58;
    --blue: #0d7ce8;
    --blue-glow: rgba(13, 124, 232, 0.15);
    --gold: #f2a900;
    --gold-glow: rgba(242, 169, 0, 0.18);
    --soft-bg: #f5f8fc;
    --white: #ffffff;
    --dark-muted: #667085;
    --border-color: #e9eef8;
    --card-shadow: 0 16px 40px rgba(7, 31, 70, 0.05);
    --hover-shadow: 0 24px 60px rgba(7, 31, 70, 0.12);
}

* {
    box-sizing: border-box;
    transition: all 0.25s ease-out;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1a253c;
    background: #ffffff;
    overflow-x: hidden;
    font-size: 0.92rem;
}
h1, .h1 { font-size: 2rem; }
h2, .h2 { font-size: 1.65rem; }
h3, .h3 { font-size: 1.4rem; }
h4, .h4 { font-size: 1.2rem; }
h5, .h5 { font-size: 1.05rem; }
h6, .h6 { font-size: 0.9rem; }
.display-5 { font-size: calc(1.3rem + 1vw) !important; }
.display-6 { font-size: calc(1.2rem + 0.8vw) !important; }

/* RTL Support - Override alignments */
body.rtl {
    text-align: right !important;
}

body.rtl .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

a {
    text-decoration: none;
    color: var(--blue);
}
a:hover {
    color: var(--navy);
}

/* Navbar */
.brand-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}
.brand-text {
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--navy);
    letter-spacing: -.03em;
}
.brand-text span {
    color: var(--gold);
}
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}
.navbar .nav-link {
    font-weight: 700;
    font-size: 0.85rem;
    color: #334d70;
    border-radius: 999px;
    padding: 0.4rem 0.75rem !important;
    white-space: nowrap;
}
.navbar .nav-link:hover, 
.navbar .nav-link.active {
    background: rgba(13, 124, 232, 0.08);
    color: var(--blue) !important;
}
.btn-student-login {
    border: 2px solid var(--blue);
    color: var(--blue);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem !important;
    white-space: nowrap;
}
.navbar .btn-primary {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem !important;
    white-space: nowrap;
}
.btn-student-login:hover {
    background: var(--blue);
    color: #fff !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--navy-light));
    border: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(13, 124, 232, 0.22);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(13, 124, 232, 0.32);
    filter: brightness(1.08);
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 800;
}
.btn-gold:hover {
    background: #e09d00;
    color: var(--navy);
    transform: translateY(-1px);
}
.text-gold {
    color: var(--gold) !important;
}

/* Hero Section - Matches reference design exactly */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #ffffff;
    height: calc(100vh - 66px);
    min-height: 580px;
    max-height: 780px;
    display: flex;
    flex-direction: column;
}




.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-bg-shapes svg {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
[dir="rtl"] .hero-bg-shapes {
    transform: scaleX(-1);
}
.hero-content {
    position: relative;
    z-index: 5;
}
/* Watermark outlined icons */
.hero-watermark {
    position: absolute;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 2;
    animation: float-slow 8s ease-in-out infinite;
}
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}
.hero-watermark-bulb { top: 10%; left: 4%; font-size: 5.5rem; }
.hero-watermark-book { top: 12%; left: 32%; font-size: 4.5rem; animation-delay: 2s; }
.hero-watermark-pencil { top: 58%; left: 42%; font-size: 4.5rem; animation-delay: 4s; }
.hero-watermark-dots1 { top: 18%; left: 2%; opacity: 0.15; }
.hero-watermark-dots2 { top: 52%; left: 38%; opacity: 0.15; }

/* Brand styling matching the banner logo */
.hero-brand-container {
    margin-bottom: 2rem;
    position: relative;
}
.hero-brand-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}
.hero-brand-title .text-white {
    color: #ffffff;
}
.hero-brand-title .text-gold {
    color: var(--gold);
}
.hero-brand-title .text-blue {
    color: #0d7ce8;
}
.hero-brand-divider {
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    border: none;
    opacity: 1;
    margin: 0.6rem 0;
}
.hero-brand-slogan {
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    letter-spacing: 0.25em;
    color: #ffffff;
    font-weight: 700;
    opacity: 0.95;
}
[dir="rtl"] .hero-brand-slogan {
    letter-spacing: 0.05em;
}

/* Stats/Value indicators */
.hero-stats-row {
    margin: 1.5rem 0;
}
.hero-stats-row .bi {
    font-size: 1.7rem;
}
.hero-stats-row span {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    line-height: 1.3;
}
[dir="rtl"] .hero-stats-row span {
    letter-spacing: 0px;
}

/* Tagline styled elegant cursive/serif */
.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 1.8rem;
    color: #ffffff;
}
.hero-tagline .text-gold {
    color: var(--gold);
}

/* CTA buttons placement */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Big logo wrap on the right (white side) */
.hero-logo-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.hero-logo-img {
    max-height: 360px;
    max-width: 90%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(7, 31, 70, 0.18));
    animation: float-logo 6s ease-in-out infinite;
}
@keyframes float-logo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero main content area (fills height) */
.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Bottom features bar - docked inside hero */
.hero-bottom-bar {
    background: #ffffff;
    border-top: 1.5px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
    z-index: 10;
    flex-shrink: 0;
}
.hero-bottom-bar .hbb-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 10px 0;
    flex: 1;
    border-right: 1px solid rgba(7,31,70,0.08);
}
.hero-bottom-bar .hbb-item:last-child {
    border-right: none;
}
[dir="rtl"] .hero-bottom-bar .hbb-item {
    border-left: 1px solid rgba(7,31,70,0.08);
    border-right: none;
}
[dir="rtl"] .hero-bottom-bar .hbb-item:last-child {
    border-left: none;
}
.hero-bottom-bar .hbb-item i {
    font-size: 1.5rem;
    color: var(--blue);
}
.hero-bottom-bar .hbb-item span {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    .hero-main {
        padding: 40px 0 20px;
    }
    .hero-logo-img {
        max-height: 220px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-bottom-bar .hbb-item {
        border: none;
        border-bottom: 1px solid rgba(7,31,70,0.06);
    }
}

/* Old styles legacy compatibility */
.hero-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 36px;
    padding: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-card img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Trust Indicators */
.trust-indicators {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}
.trust-item i {
    width: 32px;
    height: 32px;
    background: rgba(13, 124, 232, 0.2);
    color: var(--blue);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
}

/* Sections General */
.section-padding {
    padding: 50px 0;
}
.section-label {
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 0.85rem;
    display: inline-block;
}
.section-title {
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.03em;
}

/* Why Dream2Study Cards */
.value-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 22px;
    height: 100%;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}
.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    opacity: 0;
}
.value-card:hover::before {
    opacity: 1;
}
.value-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(13, 124, 232, 0.08);
    color: var(--blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Services */
.service-card {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    height: 100%;
    box-shadow: var(--card-shadow);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}
.service-card i {
    font-size: 1.4rem;
    color: var(--blue);
    background: rgba(13, 124, 232, 0.08);
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
}

/* Majors Area */
.major-pill-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.major-pill-card:hover {
    border-color: var(--blue);
    box-shadow: var(--hover-shadow);
    transform: scale(1.02);
}
.major-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(13, 124, 232, 0.1), rgba(242, 169, 0, 0.1));
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 1.1rem;
}

/* Timeline/How it works */
.timeline {
    position: relative;
    padding-left: 20px;
}
body.rtl .timeline {
    padding-left: 0;
    padding-right: 20px;
}
.timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 20px;
    bottom: 10px;
    width: 2px;
    background: dashed var(--border-color);
    z-index: 1;
}
body.rtl .timeline::before {
    left: auto;
    right: 20px;
}
.timeline-item {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
body.rtl .timeline-item {
    flex-direction: row-reverse;
}
.timeline-number {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 0 0 6px #ffffff;
}
.timeline-item:hover .timeline-number {
    background: var(--blue);
    transform: scale(1.1);
}
.timeline-content {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    box-shadow: var(--card-shadow);
}

/* Universities Section */
.uni-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--card-shadow);
}
.uni-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}
.uni-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.uni-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.uni-city-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(7, 31, 70, 0.85);
    color: #ffffff;
    backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
}
body.rtl .uni-city-badge {
    right: auto;
    left: 15px;
}
.uni-body {
    padding: 26px;
}
.uni-meta-item {
    font-size: 0.85rem;
    color: var(--dark-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.uni-meta-item i {
    color: var(--blue);
}

/* Accordion FAQ */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--card-shadow);
}
.accordion-button {
    font-weight: 700;
    color: var(--navy);
    padding: 1.2rem;
    background: #ffffff;
}
.accordion-button:not(.collapsed) {
    background: var(--soft-bg);
    color: var(--blue);
    box-shadow: none;
}
.accordion-button::after {
    background-size: 1rem;
}

/* Consultation Form Card */
.form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(7, 31, 70, 0.08);
}
.form-control, .form-select {
    border: 1.5px solid var(--border-color);
    font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-glow);
}

/* Testimonials / Reviews */
.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--card-shadow);
    height: 100%;
}
.student-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #e9eef8;
}
.rating-stars {
    color: var(--gold);
}

/* Student Dashboard Mockup Style */
.dashboard-mockup {
    background: #041024;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.dash-header {
    background: #081730;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dash-body {
    display: flex;
    min-height: 280px;
}
.dash-sidebar {
    width: 25%;
    background: #061429;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 15px;
}
body.rtl .dash-sidebar {
    border-right: none;
    border-left: 1px solid rgba(255,255,255,0.05);
}
.dash-sidebar-item {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.dash-sidebar-item.active {
    background: var(--blue);
    color: #ffffff;
}
.dash-content {
    width: 75%;
    padding: 20px;
    background: #040c1c;
}
.progress-step-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.progress-node {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    position: relative;
    flex: 1;
}
.progress-node::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}
.progress-node:last-child::after {
    display: none;
}
.progress-node-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 5px;
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    color: #fff;
}
.progress-node.completed .progress-node-dot {
    background: #2ec4b6;
}
.progress-node.active .progress-node-dot {
    background: var(--blue);
    box-shadow: 0 0 10px var(--blue);
}
.progress-node.completed {
    color: #2ec4b6;
}
.progress-node.active {
    color: var(--blue);
    font-weight: 700;
}
.dash-checklist-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 0.85rem;
}
.dash-checklist-item .badge-ok {
    color: #2ec4b6;
    background: rgba(46,196,182,0.15);
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.75rem;
}
.dash-checklist-item .badge-pending {
    color: var(--gold);
    background: rgba(242,169,0,0.15);
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.75rem;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #051630, #010814);
    color: #ffffff;
}
.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
.footer-section h6 {
    font-size: 0.95rem;
    letter-spacing: .05em;
}
.footer-section a {
    text-decoration: none;
    transition: color 0.2s;
}
.footer-section a:hover {
    color: var(--gold) !important;
}
.social-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.social-links a, .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    margin: 0;
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
    font-size: 1rem;
}
.social-links a:hover, .social-icon:hover {
    background: var(--hover-color, var(--gold));
    border-color: var(--hover-color, var(--gold));
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}
.footer-link {
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover {
    color: var(--gold) !important;
}

/* Admin Dashboard Table */
.admin-table th {
    background-color: var(--navy);
    color: #fff;
    font-weight: 700;
}

/* Program Advisor Pills styling */
.program-pill {
    background: var(--soft-bg);
    border: 1px solid var(--border-color);
    color: var(--navy);
    font-weight: 700;
    border-radius: 99px;
    padding: 0.5rem 1.2rem;
    transition: all 0.25s ease;
    font-size: 0.85rem;
}
.program-pill:hover {
    background: var(--blue-glow);
    color: var(--blue);
    border-color: var(--blue);
}
.program-pill.active {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(13, 124, 232, 0.25);
}

/* Roadmap horizontal steps styling */
.roadmap-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 991px) {
    .roadmap-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .roadmap-container {
        grid-template-columns: 1fr;
    }
}
.roadmap-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(7, 31, 70, 0.04);
    transition: all 0.25s ease;
    margin-top: 15px;
}
.roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(7, 31, 70, 0.08);
    border-color: var(--blue);
}
.roadmap-step-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy-light));
    color: #ffffff;
    font-weight: 800;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(13, 124, 232, 0.3);
}
[dir="rtl"] .roadmap-step-badge {
    left: auto;
    right: 20px;
}
.roadmap-card-title {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    margin-top: 5px;
    margin-bottom: 8px;
}
.roadmap-card-desc {
    color: var(--dark-muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

/* Custom Responsive Styles */
@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }
    .hero-section {
        text-align: center;
    }
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    .dash-sidebar {
        display: none;
    }
    .dash-content {
        width: 100%;
    }
}

/* ===== PREMIUM STUDENT LOGIN REDESIGN ===== */
.student-login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #071f46 0%, #041024 50%, #0a1e3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}
.student-login-page::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(13,124,232,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.student-login-page::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(242,169,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.login-glass-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    padding: 40px 38px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}
.login-glass-card .login-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(13,124,232,0.3));
    margin-bottom: 20px;
}
.login-glass-card h2 {
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.login-glass-card .subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
}
.login-glass-card label {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}
.login-glass-card .input-group-text {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: rgba(255,255,255,0.5) !important;
    border-right: none !important;
}
.login-glass-card .form-control {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-left: none !important;
    color: #ffffff !important;
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
}
.login-glass-card .form-control::placeholder {
    color: rgba(255,255,255,0.3) !important;
}
.login-glass-card .form-control:focus {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(13,124,232,0.6) !important;
    box-shadow: 0 0 0 3px rgba(13,124,232,0.15) !important;
}
.login-glass-card .form-control:focus + .input-group-text,
.login-glass-card .input-group:focus-within .input-group-text {
    border-color: rgba(13,124,232,0.6) !important;
}
.login-glass-card .btn-login {
    background: linear-gradient(135deg, #0d7ce8, #0a5fb5);
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 99px;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(13,124,232,0.35);
    transition: all 0.25s ease;
}
.login-glass-card .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(13,124,232,0.45);
    filter: brightness(1.1);
}
.login-glass-card .forgot-link {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}
.login-glass-card .forgot-link:hover {
    color: var(--gold);
}
.login-glass-card .form-check-input {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
.login-glass-card .form-check-label {
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.8rem;
}
.login-demo-badge {
    background: rgba(242,169,0,0.1);
    border: 1px solid rgba(242,169,0,0.2);
    border-radius: 12px;
    padding: 14px 18px;
}
.login-demo-badge code {
    background: rgba(255,255,255,0.08);
    color: #f2a900;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.82rem;
}
.login-info-col h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}
.login-info-col p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
}
.login-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.login-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(13,124,232,0.15);
    border: 1px solid rgba(13,124,232,0.2);
    display: grid;
    place-items: center;
    color: #0d7ce8;
    font-size: 1rem;
    flex-shrink: 0;
}
.login-feature-text strong {
    color: rgba(255,255,255,0.85);
    font-size: 0.87rem;
    display: block;
}
.login-feature-text span {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
}

/* ===== PREMIUM ADVISOR WIDGET CARD ===== */
.advisor-widget-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(7,31,70,0.06);
}
.advisor-widget-card .advisor-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}
.advisor-widget-card .advisor-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--navy-light));
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS PREMIUM ===== */
.testimonial-card {
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 4rem;
    color: var(--blue);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}
[dir="rtl"] .testimonial-card::before {
    right: auto;
    left: 16px;
}


/* ===== DESTINATION TABS ===== */
#destinationTabs .nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
}
#destinationTabs .nav-link.active {
    background: var(--navy);
    color: #fff;
}

/* ===== INPUT GROUP RTL & FORM FIXES ===== */
.input-group {
    display: flex !important;
    width: 100% !important;
}

.input-group .form-control,
.input-group .form-select {
    flex: 1 1 auto !important;
    width: 1% !important;
    min-width: 0 !important;
}

[dir="rtl"] .input-group > .input-group-text:first-child {
    border-radius: 0 0.5rem 0.5rem 0 !important;
    border-left: none !important;
    border-right: 1px solid #ced4da !important;
}

[dir="rtl"] .input-group > .form-control:last-child,
[dir="rtl"] .input-group > .form-select:last-child {
    border-radius: 0.5rem 0 0 0.5rem !important;
    border-right: none !important;
    border-left: 1px solid #ced4da !important;
}

/* ===== FOOTER NEWSLETTER PILL GROUP (LTR & RTL) ===== */
.newsletter-pill-group {
    background: #ffffff !important;
    border-radius: 50rem !important;
    padding: 4px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
}

.newsletter-pill-group .form-control {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #071f46 !important;
    font-size: 0.88rem !important;
    padding: 0.4rem 0.9rem !important;
}

.newsletter-pill-group .form-control::placeholder {
    color: #8fa0b5 !important;
}

.newsletter-pill-group .btn-gold {
    border-radius: 50rem !important;
    background: var(--gold) !important;
    color: var(--navy) !important;
    border: none !important;
    padding: 0.5rem 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.newsletter-pill-group .btn-gold:hover {
    background: #e09d00 !important;
    color: var(--navy) !important;
}

/* ====================================================
   ULTRA-RESPONSIVE MEDIA QUERIES (320px - 2560px)
   ==================================================== */

/* 1. Ultra-Wide & 4K/2K Displays (1441px - 2560px) */
@media (min-width: 1441px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1380px !important;
    }
    body {
        font-size: 1rem;
    }
    .hero-section {
        min-height: 720px;
    }
}

/* 2. Laptops & Large Desktops (1200px - 1440px) */
@media (min-width: 1200px) and (max-width: 1440px) {
    .container {
        max-width: 1220px;
    }
}

/* 3. Tablets & Small Laptops (769px - 1199px) */
@media (min-width: 769px) and (max-width: 1199px) {
    .section-padding {
        padding: 50px 0 !important;
    }
    .hero-section {
        min-height: 600px;
    }
}

/* 4. Mobile Landscape & Small Tablets (481px - 768px) */
@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0 !important;
    }
    .display-5 {
        font-size: 1.6rem !important;
    }
    .display-6 {
        font-size: 1.35rem !important;
    }
    .hero-section {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .uni-card, .value-card, .service-card {
        margin-bottom: 12px;
    }
    .roadmap-container {
        grid-template-columns: 1fr !important;
    }
}

/* 5. Ultra-Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    body {
        font-size: 0.88rem;
    }
    .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .display-5 {
        font-size: 1.4rem !important;
        line-height: 1.25 !important;
    }
    .display-6 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }
    .brand-text {
        font-size: 1rem !important;
    }
    .brand-logo {
        width: 32px !important;
        height: 32px !important;
    }
    .btn {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    #destinationTabs .nav-link {
        font-size: 0.78rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    .newsletter-pill-group {
        flex-direction: column !important;
        border-radius: 1rem !important;
        padding: 6px !important;
    }
    .newsletter-pill-group .form-control {
        text-align: center !important;
        width: 100% !important;
    }
    .newsletter-pill-group .btn-gold {
        width: 100% !important;
        margin-top: 6px !important;
    }
}




