﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #f9fcff;
}

:root {
    --primary-dark: #0B5E42;
    --primary-teal: #1B998B;
    --accent-blue: #2C7DA0;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --gold-glow: #FFFFFF;
}

/* ===== NAVBAR ===== */
.navbar-transparent {
    background: rgb(240 240 240 / 16%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

    .navbar-transparent.scrolled {
        background: rgb(255 255 255 / 96%);
        backdrop-filter: blur(16px);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    }

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    background: linear-gradient(120deg, #FFFFFF, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.2rem;
    transition: 0.2s;
}

    .nav-link:hover {
        color: #FFFFFF !important;
        transform: translateY(-2px);
    }

.dropdown-menu {
    background: rgba(20, 35, 40, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.dropdown-item {
    color: #f0f0f0;
}

    .dropdown-item:hover {
        background: #dd7901;
        color: white;
        border-radius: 12px;
    }

/* Mega Menu */
.mega-menu {
    width: 650px;
    padding: 1.5rem;
    left: auto !important;
    right: 0;
}

.mega-univ-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.75rem;
    transition: 0.2s;
    text-align: center;
    cursor: pointer;
}

    .mega-univ-card:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

    .mega-univ-card img {
        width: 100%;
        height: 70px;
        object-fit: cover;
        border-radius: 16px;
        margin-bottom: 8px;
    }

/* Default (top pe transparent navbar) */
.navbar-transparent .nav-link {
    color: #ffffff !important;
}

/* Mobile view */
@media (max-width: 768px) {
    .navbar-transparent .nav-link {
        color: #000000 !important;
    }
}
/* Scroll hone ke baad */
.navbar-transparent.scrolled .nav-link {
    color: #000000 !important;
}

/* Brand logo text (agar text use ho raha ho) */
.navbar-transparent.scrolled .navbar-brand {
    color: #000 !important;
    background: none;
}

/* Optional: hover color */
.navbar-transparent.scrolled .nav-link:hover {
    color: var(--primary-dark) !important;
}

/* ===== HERO SECTION - ENHANCED ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 780px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: kenburns 6s infinite alternate;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: relative;
    z-index: 3;
    background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.6), rgba(2, 30, 28, 0.88));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Enhanced Glass Card */
.glass-card {
    background: rgba(15, 25, 28, 0.65);
    backdrop-filter: blur(14px);
    border-radius: 40px;
    border: 1px solid rgba(185, 243, 228, 0.25);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

    .glass-card:hover {
        transform: translateY(-5px);
        border-color: #e5ad69;
    }

/* Enhanced Buttons */
.btn-primary-grad {
    background: #dd7901;
    border: none;
    border-radius: 60px;
    padding: 14px 32px;
    font-weight: 700;
    transition: all 0.25s ease;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .btn-primary-grad:hover {
        transform: translateY(-3px);
        box-shadow: #dd7901;
        background: #FFFFFF;
    }

.btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    border-radius: 60px;
    padding: 14px 32px;
    font-weight: 600;
    color: white;
    transition: all 0.25s;
}

    .btn-outline-light-custom:hover {
        background: white;
        color: #dd7901;
        border-color: #dd7901;
        transform: translateY(-3px);
    }

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

    .stat-card:hover {
        background: rgba(185, 243, 228, 0.2);
        transform: translateY(-5px);
        border-color: #e5ad69;
    }

.text-accent {
    color: #e5ad69;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

/* Trust Badges */
.trust-badge-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

    .trust-badge-pill:hover {
        background: rgba(185, 243, 228, 0.25);
        border-color: #FFFFFF;
    }

/* Form Enhancements */
.form-control, .form-select {
    border: none;
    border-radius: 16px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.9);
}

    .form-control:focus, .form-select:focus {
        box-shadow: 0 0 0 3px rgba(185, 243, 228, 0.6);
        background: white;
    }

.input-group-text {
    border: none;
    border-radius: 16px 0 0 16px;
    background: rgba(255, 255, 255, 0.9);
}

/* ===== CARDS & SECTIONS ===== */
.service-card, .team-card, .university-card {
    background: white;
    border-radius: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

    .service-card:hover, .team-card:hover, .university-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 40px -15px #dd7901;
    }

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0F766E, #2C7DA0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonial-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
}

footer {
    background: #0F172A;
    border-radius: 40px 40px 0 0;
}

.social-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    transition: all 0.2s;
    color: white;
}

    .social-icon:hover {
        background: #0F766E;
        transform: translateY(-4px);
    }

/* Top Pill */
.top-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .top-pill .dot {
        width: 8px;
        height: 8px;
        background: #4CAF50;
        border-radius: 50%;
        display: inline-block;
        animation: pulse 1.8s infinite;
    }

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 1200px) {
    .mega-menu {
        width: 550px;
    }
}

@media (max-width: 992px) {
    .navbar-transparent {
        background: rgb(255 255 255 / 96%);
    }

    .mega-menu {
        width: 100%;
        position: static !important;
        background: #0a1a1c;
        margin-top: 0.5rem;
    }

    .dropdown-menu {
        background: #0a1a1c;
        border: none;
    }

    .hero-section {
        min-height: 900px;
        height: auto;
    }

    .hero-overlay {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .display-3 {
        font-size: 2.6rem;
    }

    .stat-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 950px;
    }

    .display-3 {
        font-size: 2rem;
    }

    .counter-number {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .glass-card {
        padding: 1.5rem !important;
        margin-top: 1rem;
    }

    .trust-badges {
        gap: 8px !important;
    }

    .trust-badge-pill {
        font-size: 10px;
        padding: 5px 12px;
    }

    .btn-primary-grad, .btn-outline-light-custom {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .testimonial-card {
        margin: 0.5rem;
        padding: 1.2rem;
    }

    .top-pill {
        font-size: 9px;
        padding: 5px 12px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 1050px;
    }

    .display-3 {
        font-size: 1.8rem;
    }

    .stat-card .fa-2x {
        font-size: 1.6rem;
    }

    .stat-card h4 {
        font-size: 1.1rem;
    }

    .row.g-3 {
        --bs-gutter-y: 0.8rem;
    }

    .btn-primary-grad, .btn-outline-light-custom {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animation for hero content */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-animate {
    animation: fadeSlideUp 0.8s ease-out forwards;
}


@media (max-width: 767px) {
    .trust-badges {
        display: none !important;
    }
}
/* Additional styles for enhanced components */
.stat-card {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

    .stat-card:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

.text-accent {
    color: #e5ad69;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.bg-primary-grad {
    background: #dd7901;
}

.btn-outline-light-custom {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-light-custom:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #dd7901;
        transform: translateY(-2px);
    }

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgb(255 255 255);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.input-group-text {
    border: none;
    border-radius: 12px 0 0 12px;
}

.form-control, .form-select {
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
}

    .form-control:focus, .form-select:focus {
        box-shadow: 0 0 0 3px rgba(185, 243, 228, 0.5);
    }





.hero-slide.active {
    opacity: 1;
}

/*.top-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    color: white;
}*/

.dot {
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-form-section {
    margin-top: 120px;
}

/* Tablet */
@media (max-width: 992px) {
    .hero-form-section {
        margin-top: 60px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-form-section {
        margin-top: 30px;
    }
}

/* ===== PREMIUM SECTION STYLES - Matching Your Glassmorphism Theme ===== */

/* Section Headers with Glow */
.section-glow-badge {
    display: inline-block;
    background: rgba(185, 243, 228, 0.15);
    backdrop-filter: blur(8px);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
    border: #ffffff;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* About Company - Glass Cards */
.about-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    border: 1px solid rgb(255 255 255);
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

    .about-glass-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: #dd7901;
        background: rgba(185, 243, 228, 0.08);
    }

.about-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: #dd7901;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Why Choose Us - 3D Flip Cards */
.why-flip-container {
    perspective: 1500px;
    height: 280px;
}

.why-flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.why-flip-container:hover .why-flip-card {
    transform: rotateY(180deg);
}

.why-flip-front, .why-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 28px;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid #FFFFFF;
}

.why-flip-front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-flip-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-icon-glow {
    width: 70px;
    height: 70px;
    background: #dd7901;
    ;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .why-icon-glow i {
        font-size: 2rem;
        color: #FFFFFF;
    }

@media (max-width: 992px) {
    .why-flip-container {
        height: auto;
        perspective: none;
    }

        .why-flip-container:hover .why-flip-card {
            transform: none;
        }

    .why-flip-back {
        position: relative;
        transform: none;
        margin-top: 1rem;
        background: rgba(0,0,0,0.4);
    }

    .why-flip-front {
        position: relative;
    }
}

/* Admission Process - Animated Timeline */
.admission-timeline-modern {
    position: relative;
}

    .admission-timeline-modern::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #FFFFFF, #dd7901, #FFFFFF);
    }

.admission-step-glow {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

    .admission-step-glow:nth-child(1) {
        animation-delay: 0.1s;
    }

    .admission-step-glow:nth-child(2) {
        animation-delay: 0.2s;
    }

    .admission-step-glow:nth-child(3) {
        animation-delay: 0.3s;
    }

    .admission-step-glow:nth-child(4) {
        animation-delay: 0.4s;
    }

    .admission-step-glow:nth-child(5) {
        animation-delay: 0.5s;
    }

    .admission-step-glow:nth-child(6) {
        animation-delay: 0.6s;
    }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-glow-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: #dd7901;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(185, 243, 228, 0.4);
}

.step-glow-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(185, 243, 228, 0.15);
    transition: all 0.3s;
}

    .step-glow-content:hover {
        transform: translateX(8px);
        border-color: #ffffff;
        background: rgba(185, 243, 228, 0.08);
    }

@media (max-width: 768px) {
    .admission-timeline-modern::before {
        left: 20px;
    }

    .admission-step-glow {
        padding-left: 50px;
    }

    .step-glow-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 16px;
    }
}

/* Testimonials - 3D Carousel Effect */
.testimonial-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid rgba(185, 243, 228, 0.2);
    transition: all 0.4s;
    margin: 0 0.5rem;
}

    .testimonial-glass:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: rgba(185, 243, 228, 0.6);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    }

.testimonial-quote-icon {
    font-size: 3rem;
    color: #FFFFFF;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text-glow {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    font-style: italic;
}

.testimonial-author-glow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(185, 243, 228, 0.2);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    padding: 2px;
}

.author-name {
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.author-univ {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

/* Team Cards - Hover Glow Effect */
.team-premium-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 1.8rem;
    text-align: center;
    border: 1px solid rgba(185, 243, 228, 0.2);
    transition: all 0.4s;
}

    .team-premium-card:hover {
        transform: translateY(-10px);
        border-color: #FFFFFF;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        background: rgba(185, 243, 228, 0.08);
    }

.team-img-premium {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    padding: 4px;
    transition: all 0.4s;
}

.team-premium-card:hover .team-img-premium {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(185, 243, 228, 0.4);
}

.team-social-premium a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(185, 243, 228, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin: 0 4px;
    transition: all 0.3s;
}

    .team-social-premium a:hover {
        background: #FFFFFF;
        color: #0B5E42;
        transform: translateY(-5px);
    }

/* Section Backgrounds */
.bg-premium-dark {
    background: #0F172A;
}

.bg-premium-light {
    background: #0F172A;
}

/* ===== PREMIUM FOOTER - Matching Your Theme Exactly ===== */

.footer-premium {
    background: #ffffff;
    border-radius: 0px 0px 0 0;
    position: relative;
    overflow: hidden;
}

    .footer-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #dd7901, #dd7901, #FFFFFF, #dd7901, #dd7901);
    }

.footer-logo {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(120deg, #FFFFFF, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-heading {
    color: #dd7901;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-link {
    color: #000000;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
    font-size: 0.9rem;
}

    .footer-link:hover {
        color: #dd7901;
        transform: translateX(5px);
    }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #000000;
    font-size: 0.9rem;
    transition: all 0.25s;
}

    .footer-contact-item:hover {
        color: #dd7901;
        transform: translateX(5px);
    }

.footer-contact-icon {
    width: 32px;
    color: #dd7901;
    font-size: 1rem;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    background: #dd7901;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.25s ease;
    text-decoration: none;
}

    .footer-social-icon:hover {
        background: #000000;
        color: white;
        transform: translateY(-3px);
    }

.footer-divider {
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
}

.footer-bottom-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.25s;
}

    .footer-bottom-link:hover {
        color: #dd7901;
    }

.footer-badge {
    background: #dd7901;
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #dd7901;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: #0B5E42;
        transform: translateY(-3px);
    }

@media (max-width: 768px) {
    .footer-premium {
        border-radius: 30px 30px 0 0;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .footer-contact-item {
        font-size: 0.8rem;
    }

    .footer-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
}

/* ===== UNIVERSITY PAGE - WHITE THEME WITH YOUR COLORS ===== */
.uni-page-wrapper {
    padding-bottom: 56px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

/* Hero Section with Background Image */
.uni-hero {
    position: relative;
    background: linear-gradient(135deg, rgb(0 0 0 / 85%), rgba(27, 153, 139, 0.8)), url(https://images.unsplash.com/photo-1562774053-701939374585?w=1920&h=500&fit=crop);
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    margin-bottom: 40px;
}

.uni-hero-content {
    position: relative;
    z-index: 2;
}

.uni-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.uni-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.uni-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Search & Filter Card */
.search-filter-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    padding: 14px 20px 14px 45px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .search-input:focus {
        border-color: #dd7901;
        box-shadow: 0 0 0 3px rgba(221, 121, 1, 0.1);
        outline: none;
    }

.filter-select {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    padding: 14px 20px;
    color: #1e293b;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

    .filter-select:focus {
        border-color: #dd7901;
        outline: none;
    }

/* University Card - Clean White Design */
.uni-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #eef2ff;
}

    .uni-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(221, 121, 1, 0.12);
        border-color: #dd7901;
    }

.uni-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

    .uni-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.uni-card:hover .uni-card-img img {
    transform: scale(1.05);
}

.uni-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dd7901;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.uni-badge-green {
    background: #0B5E42;
}

.uni-card-body {
    padding: 20px;
}

.uni-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.uni-location {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 12px;
}

    .uni-location i {
        color: #dd7901;
        margin-right: 5px;
    }

.uni-fees {
    background: #fef3e8;
    padding: 10px 15px;
    border-radius: 16px;
    margin: 12px 0;
    border-left: 3px solid #dd7901;
}

    .uni-fees span {
        color: #dd7901;
        font-weight: 800;
        font-size: 1.1rem;
    }

    .uni-fees small {
        color: #64748b;
        font-size: 0.7rem;
    }

.uni-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.uni-feature-tag {
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #334155;
    font-weight: 500;
}

    .uni-feature-tag i {
        color: #1B998B;
        margin-right: 4px;
    }

.uni-btn {
    background: linear-gradient(135deg, #dd7901, #e5a045);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .uni-btn:hover {
        transform: translateX(5px);
        background: linear-gradient(135deg, #c46a00, #dd7901);
        color: white;
    }

.uni-link {
    color: #dd7901;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

    .uni-link:hover {
        color: #0B5E42;
        transform: translateX(3px);
        display: inline-block;
    }

/* Pagination */
.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

.page-btn {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 18px;
    color: #334155;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

    .page-btn:hover, .page-btn.active {
        background: #dd7901;
        border-color: #dd7901;
        color: white;
        transform: translateY(-2px);
    }

    .page-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Stats Row */
.uni-stats {
    background: white;
    border-radius: 20px;
    padding: 15px 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2ff;
}

.uni-count {
    color: #dd7901;
    font-weight: 800;
    font-size: 1.2rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 40px;
    border: 1px solid #eef2ff;
}

    .no-results i {
        font-size: 4rem;
        color: #cbd5e1;
        margin-bottom: 20px;
    }

/* Section Title */
.section-title-small {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .uni-hero {
        padding: 60px 0 40px;
    }

        .uni-hero h1 {
            font-size: 2.2rem;
        }

    .section-title-small {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .uni-hero {
        padding: 40px 0 30px;
    }

        .uni-hero h1 {
            font-size: 1.8rem;
        }

        .uni-hero p {
            font-size: 0.9rem;
        }

    .search-filter-card {
        padding: 15px;
    }

    .uni-card-img {
        height: 180px;
    }

    .uni-title {
        font-size: 1rem;
    }

    .page-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .uni-hero h1 {
        font-size: 1.5rem;
    }

    .uni-card-img {
        height: 160px;
    }

    .uni-fees span {
        font-size: 0.9rem;
    }

    .uni-btn {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
}

.service-card i {
    color: #dd7901;
}

.service-card h4 {
    font-weight: 600;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgb(221 121 1 / 28%);
    }


