/* University Hero Section */
/* University Hero Section - UPDATED */
.uni-hero {
    position: relative;
    min-height: 500px;           /* Increased from 450px */
    display: flex;
    align-items: flex-end;
    padding: 50px 0 40px;         /* Added more padding */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.85));  /* Darker gradient */
}

.uni-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: white;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.uni-hero-content {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-bottom: 30px;         /* Added padding at bottom */
}

.uni-logo {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    flex-shrink: 0;               /* Prevent logo from shrinking */
}

.uni-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.uni-title h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;          /* Increased spacing */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);  /* Stronger shadow */
    line-height: 1.3;
}

.uni-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.3rem;
    margin-bottom: 20px;          /* Increased spacing */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Meta information - IMPROVED VISIBILITY */
.uni-meta {
    display: flex;
    gap: 30px;                    /* Increased gap */
    flex-wrap: wrap;
    padding: 15px 0;              /* Added padding */
    margin-top: 10px;
}

.uni-meta span {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;              /* Increased from 0.95rem */
    font-weight: 500;
    background: rgba(0,0,0,0.4);  /* Added background for contrast */
    padding: 8px 16px;            /* Added padding */
    border-radius: 25px;          /* Rounded background */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);  /* Modern blur effect */
}

.uni-meta span i {
    font-size: 1.2rem;
}

/* Quick Stats Bar - ADJUSTED POSITION */
.quick-stats {
    background: white;
    padding: 50px 0;              /* Increased padding */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: -30px;            /* Reduced from -50px to show more hero */
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .uni-hero {
        min-height: 450px;
    }
    
    .uni-hero-content {
        flex-direction: column;
        text-align: center;
        padding-bottom: 40px;     /* More space on mobile */
    }
    
    .uni-title h1 {
        font-size: 1.8rem;
    }
    
    .uni-subtitle {
        font-size: 1.1rem;
    }
    
    .uni-meta {
        justify-content: center;
        gap: 15px;
    }
    
    .uni-meta span {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .quick-stats {
        margin-top: -20px;
        padding: 40px 0;
    }
}


.uni-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.uni-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.uni-meta span {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
/* COMPLETE MOBILE RESPONSIVE CSS - Copy & Paste into hst.css */

/* 1. BASE RESET - Prevent horizontal scroll */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* 2. CONTAINER - Always fits screen */
.container {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

/* 3. NAVBAR MOBILE FIX */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.logo h2 {
    font-size: 1.3rem;
    margin: 0;
}

.logo span {
    font-size: 0.8rem;
    display: block;
}

/* MOBILE NAVBAR */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hidden by default */
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 20px;
        width: auto;
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 5px;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: 0.3s;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* 4. HERO SECTION MOBILE */
@media (max-width: 768px) {
    .uni-hero {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        overflow: hidden;
    }
    
    .uni-hero .container {
        padding: 40px 15px 60px;
    }
    
    .hero-bg {
        height: 250px !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .uni-hero-content {
        text-align: center;
    }
    
    .uni-logo img {
        width: 120px;
        height: 120px;
    }
    
    .uni-title h1 {
        font-size: 1.8rem;
        margin: 20px 0;
    }
    
    .breadcrumb {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
}

/* 5. CONTENT LAYOUT MOBILE */
@media (max-width: 768px) {
    .content-layout {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .profile-sidebar {
        order: 2;
        width: 100%;
    }
    
    .profile-main {
        order: 1;
        width: 100%;
    }
    
    /* TABS STACK VERTICALLY */
    .profile-tabs {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        width: 100%;
        padding: 15px;
        text-align: left;
        border-radius: 8px;
        border: 1px solid #ddd;
    }
    
    .tab-btn.active {
        background: #007bff;
        color: white;
    }
}

/* 6. STATS GRID MOBILE */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-item {
        text-align: center;
    }
}

/* 7. GALLERY MOBILE */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }
}

/* 8. CAREER CARDS MOBILE */
@media (max-width: 768px) {
    .career-paths {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .career-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* 9. FOOTER MOBILE */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section ul {
        columns: 1;
    }
}

/* 10. UNIVERSAL MOBILE FIXES */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .uni-title h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}
/* NAVBAR COLORS - Your original styling */
.navbar {
    background: #1a1a2e !important;  /* Dark blue/purple - change to your color */
    color: white;
}

.navbar .nav-links a {
    color: white !important;
    text-decoration: none;
}

.navbar .nav-links a:hover {
    color: #4a90e2 !important;  /* Light blue hover */
}

/* MOBILE MENU COLORS */
@media (max-width: 768px) {
    .nav-links {
        background: #1a1a2e !important;  /* Same dark background */
        color: white;
    }
    
    .nav-links li a {
        color: white !important;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li a:hover {
        background: rgba(255,255,255,0.1);
        color: #4a90e2 !important;
    }
    
    /* Hamburger lines */
    .hamburger span {
        background: white !important;
    }
}


/* Quick Stats Bar */
.quick-stats {
    background: white;
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Profile Content Layout */
.profile-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.content-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

/* Sidebar */
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #ecf0f1;
}

.info-item strong {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.info-item span {
    color: #2c3e50;
    font-weight: 600;
}

.requirement-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.requirement-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.req-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 600;
}

.req-value {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 700;
}

.subject-tags {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.subject-tag {
    background-color: #ecf0f1;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #2c3e50;
}

.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-card h3 {
    color: white;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-btn {
    width: 100%;
    padding: 12px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* Main Content Area */
.profile-main {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}
.no-data-section {
    text-align: center;
    padding: 60px 20px;
    border: 2px dashed #ddd;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.no-data-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.known-facts {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.known-facts h4 {
    color: #007bff;
    margin-bottom: 15px;
}

.contact-research {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

/* Tabs */
.profile-tabs {
    display: flex;
    border-bottom: 2px solid #ecf0f1;
    overflow-x: auto;
}

.tab-btn {
    padding: 18px 30px;
    background: none;
    border: none;
    color: #7f8c8d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.05);
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

/* Tab Content */
.tab-content {
    padding: 40px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.content-card {
    margin-bottom: 40px;
}

.content-card:last-child {
    margin-bottom: 0;
}

.content-card h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 15px;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.content-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Features List */
.features-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.feature-item p {
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    background: white;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

/* Majors List */
.majors-list {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.major-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ecf0f1;
    transition: all 0.3s;
}

.major-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.major-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.major-icon {
    font-size: 3rem;
}

.major-header h3 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.major-degree {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.major-desc {
    color: #555;
    margin-bottom: 20px;
}

.major-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-row strong {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.detail-row span {
    color: #2c3e50;
    font-weight: 600;
}

.major-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.major-subjects span {
    background-color: #667eea;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Projects Timeline */
.projects-timeline {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    position: relative;
}

.project-item::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(to bottom, #667eea, #ecf0f1);
}

.project-item:last-child::before {
    display: none;
}

.project-year {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.project-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #ecf0f1;
    transition: all 0.3s;
}

.project-content:hover {
    border-color: #667eea;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-badge {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-badge.award {
    background-color: #f39c12;
}

.project-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.project-content p {
    color: #555;
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.project-tags span {
    background-color: #ecf0f1;
    color: #555;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Campus Features */
.campus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.campus-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #ecf0f1;
    transition: all 0.3s;
}

.campus-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.campus-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.campus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.campus-card:hover .campus-img img {
    transform: scale(1.1);
}

.campus-card h3 {
    color: #2c3e50;
    padding: 20px 20px 10px;
}

.campus-card p {
    padding: 0 20px 20px;
    color: #555;
    margin: 0;
}

/* Testimonials */
.testimonial-section {
    margin-top: 50px;
}

.testimonial-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card p {
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Career Paths */
.career-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.career-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ecf0f1;
    transition: all 0.3s;
    text-align: center;
}

.career-card:hover {
    border-color: #667eea;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.career-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.career-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.career-card p {
    color: #555;
    margin-bottom: 15px;
}

.salary-range {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.employer-logos {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 15px;
}

.employer-logos h4 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.employer-logo {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    border: 2px solid #ecf0f1;
    transition: all 0.3s;
}

.employer-logo:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

/* CTA Section */
.cta-profile {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-profile h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-profile p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        order: 2;
    }
    
    .profile-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .uni-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .uni-title h1 {
        font-size: 1.8rem;
    }
    
    .uni-meta {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .career-paths,
    .campus-features,
    .majors-list {
        grid-template-columns: 1fr;
    }
}
