/* ===================================
   College Page Styles
   =================================== */

/* Page Hero Section */
.ul-page-hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.ul-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/3bg.png') center/cover;
    opacity: 0.05;
}

.ul-page-hero-content {
    position: relative;
    z-index: 2;
}

.ul-page-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ul-page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.college-hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(4, 28, 51, 0.8) 0%,
        rgba(4, 28, 51, 0.6) 30%,
        rgba(4, 28, 51, 0.4) 60%,
        rgba(4, 28, 51, 0.2) 80%,
        transparent 100%
    );
}

/* طبقة بيضاء متدرجة من الأعلى */
.hero-white-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(
        to bottom, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(255, 255, 255, 0.5) 30%, 
        rgba(255, 255, 255, 0.2) 70%, 
        rgba(255, 255, 255, 0) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(40px, 6vh, 80px) 0;
}

.hero-content-wrapper {
    padding: 0 clamp(15px, 2vw, 30px);
}

/* Breadcrumb */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1vw, 12px);
    margin-bottom: clamp(20px, 3vw, 30px);
    font-size: clamp(14px, 0.9vw, 16px);
    color: rgba(255, 255, 255, 0.8);
}

.hero-breadcrumb a {
    color: var(--ul-c3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--white);
}

.hero-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 8px;
}

/* Hero Title */
.hero-main-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: clamp(10px, 1.5vw, 20px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-lato);
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 600;
    color: var(--ul-c3);
    margin-bottom: clamp(25px, 4vw, 40px);
    font-family: var(--font-lato);
}

/* Hero Description */
.hero-description {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(35px, 5vw, 50px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: clamp(15px, 2vw, 25px);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    padding: clamp(12px, 1.5vw, 18px) clamp(25px, 3vw, 35px);
    border-radius: 6px;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.hero-btn.primary {
    background: var(--ul-c3);
    color: var(--ul-primary);
    box-shadow: 0 4px 15px rgba(254, 198, 25, 0.2);
}

.hero-btn.primary:hover {
    background: var(--white);
    color: var(--ul-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 198, 25, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-btn.secondary:hover {
    background: var(--white);
    color: var(--ul-primary);
    transform: translateY(-2px);
}

/* Responsive Design for Hero Banner */
@media screen and (max-width: 991px) {
    .college-hero-banner {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media screen and (max-width: 767px) {
    .college-hero-banner {
        height: 100vh;
        min-height: 550px;
    }
    
    .hero-content-wrapper {
        padding: 0 15px;
    }
    
    .hero-main-title {
        font-size: clamp(36px, 10vw, 60px);
    }
    
    .hero-subtitle {
        font-size: clamp(16px, 4vw, 24px);
    }
    
    .hero-description {
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    .hero-overlay {
        background: linear-gradient(
            to top,
            rgba(4, 28, 51, 0.95) 0%,
            rgba(4, 28, 51, 0.8) 40%,
            rgba(4, 28, 51, 0.6) 70%,
            rgba(4, 28, 51, 0.4) 90%,
            rgba(4, 28, 51, 0.2) 100%
        );
    }
}

/* College Hero Section */
.college-hero {
    padding: clamp(60px, 6.31vw, 120px) 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.college-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('../img/service-vector-1.svg') no-repeat center;
    background-size: contain;
    opacity: 0.05;
    animation: rotateSlowly 20s linear infinite;
}

@keyframes rotateSlowly {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.college-hero-content {
    padding-left: clamp(20px, 2vw, 40px);
}

.college-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 0.63vw, 12px);
    background: var(--ul-c3);
    color: var(--ul-primary);
    padding: clamp(8px, 0.63vw, 12px) clamp(16px, 1.26vw, 24px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(14px, 0.89vw, 17px);
    margin-bottom: clamp(20px, 1.58vw, 30px);
}

.college-hero-title {
    font-size: clamp(28px, 3.15vw, 60px);
    font-weight: 800;
    color: var(--ul-primary);
    line-height: 1.2;
    margin-bottom: clamp(20px, 1.58vw, 30px);
    font-family: var(--font-lato);
}

.college-hero-description {
    font-size: clamp(16px, 1.05vw, 20px);
    color: var(--ul-gray2);
    line-height: 1.6;
    margin-bottom: clamp(30px, 2.36vw, 45px);
}

.college-hero-stats {
    display: flex;
    gap: clamp(20px, 2.1vw, 40px);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: clamp(24px, 2.1vw, 40px);
    font-weight: 800;
    color: var(--ul-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: clamp(13px, 0.84vw, 16px);
    color: var(--ul-gray2);
    font-weight: 500;
}

.college-hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(4, 28, 51, 0.08);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 28, 51, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.college-hero-image:hover .hero-image-overlay {
    opacity: 1;
}

.college-hero-image:hover .hero-img {
    transform: scale(1.05);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--ul-c3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ul-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(254, 198, 25, 0.5);
}

/* Dean Message Section */
.dean-message {
    background: var(--white);
}

.dean-image-wrapper {
    position: relative;
}

.dean-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(4, 28, 51, 0.06);
}

.dean-img {
    width: 100%;
    object-fit: cover;
}

.dean-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--ul-c3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ul-primary);
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(254, 198, 25, 0.15);
}

.dean-message-content {
    padding-right: clamp(20px, 2vw, 40px);
}

.dean-position {
    color: var(--ul-secondary);
    font-size: clamp(16px, 1.05vw, 20px);
    font-weight: 600;
    margin-bottom: clamp(20px, 1.58vw, 30px);
}

.dean-message-text p {
    font-size: clamp(15px, 0.95vw, 18px);
    line-height: 1.7;
    color: var(--ul-gray2);
    margin-bottom: clamp(15px, 1.26vw, 24px);
    position: relative;
    padding-right: 20px;
}

.dean-message-text p:first-child::before {
    content: '"';
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 60px;
    color: var(--ul-c3);
    font-family: serif;
    line-height: 1;
}

.dean-signature {
    margin-top: clamp(25px, 2.1vw, 40px);
    padding-top: clamp(20px, 1.58vw, 30px);
    border-top: 2px solid var(--ul-c3);
}

.signature-text {
    display: block;
    font-size: clamp(18px, 1.26vw, 24px);
    font-weight: 700;
    color: var(--ul-primary);
    margin-bottom: 5px;
}

.signature-title {
    font-size: clamp(14px, 0.89vw, 17px);
    color: var(--ul-secondary);
    font-weight: 500;
}

/* ========== COLLEGE INFO SECTION ========== */
.college-info {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

/* About College Card */
.college-about-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(4, 28, 51, 0.08);
    overflow: hidden;
    padding: clamp(30px, 2.36vw, 45px);
    position: relative;
}

.college-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 198, 25, 0.02);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: -1;
}

.college-about-card:hover::before {
    opacity: 1;
}

.college-about-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 0.63vw, 12px);
    background: var(--ul-c3);
    color: var(--ul-primary);
    padding: clamp(8px, 0.63vw, 12px) clamp(16px, 1.26vw, 24px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(14px, 0.89vw, 17px);
    margin-bottom: clamp(20px, 1.58vw, 30px);
}

.college-about-title {
    font-size: clamp(24px, 2.1vw, 40px);
    font-weight: 700;
    color: var(--ul-primary);
    margin-bottom: clamp(15px, 1.26vw, 24px);
    line-height: 1.3;
}

.college-about-desc {
    font-size: clamp(16px, 1.05vw, 20px);
    line-height: 1.7;
    color: var(--ul-gray2);
    margin-bottom: clamp(25px, 2.1vw, 40px);
}

.college-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(12px, 1vw, 18px);
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.63vw, 12px);
    background: rgba(0, 72, 135, 0.1);
    color: var(--ul-secondary);
    padding: clamp(10px, 0.84vw, 16px) clamp(15px, 1.26vw, 24px);
    border-radius: 25px;
    font-size: clamp(14px, 0.89vw, 17px);
    font-weight: 600;
    border: 1px solid rgba(0, 72, 135, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--ul-secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-tag i {
    font-size: clamp(16px, 1.05vw, 20px);
}

.college-about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 28, 51, 0.1);
}

.college-about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 28, 51, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.college-about-image:hover .about-image-overlay {
    opacity: 1;
}

.college-about-image:hover img {
    transform: scale(1.05);
}

.about-play-btn {
    width: 70px;
    height: 70px;
    background: var(--ul-c3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ul-primary);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.about-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(254, 198, 25, 0.5);
}

/* Vision Card - Large Featured */
.college-vision-card.large-card {
    min-height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 28, 51, 0.1);
    transition: all 0.4s ease;
}

.college-vision-card.large-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(4, 28, 51, 0.15);
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.college-vision-card.large-card:hover .vision-overlay,
.college-mission-card.large-card:hover .vision-overlay,
.college-goals-card.large-card:hover .vision-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.vision-content {
    position: relative;
    z-index: 1;
    padding: clamp(30px, 2.36vw, 45px);
    color: white;
}

.vision-icon {
    font-size: 3rem;
    color: #ffffff;
    text-align: left;
    margin-bottom: clamp(20px, 1.58vw, 30px);
}

.vision-title {
    font-size: clamp(24px, 2.1vw, 40px);
    margin-bottom: clamp(15px, 1.26vw, 24px);
    color: #ffffff;
    font-weight: 700;
}

.vision-desc {
    font-size: clamp(16px, 1.05vw, 16px);
    line-height: 1.8;
    margin-bottom: clamp(25px, 2.1vw, 40px);
    color: rgba(255, 255, 255, 0.9);
}

.vision-features {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 0.63vw, 12px);
}

.vision-feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: clamp(6px, 0.53vw, 10px) clamp(12px, 1.05vw, 20px);
    border-radius: 20px;
    font-size: clamp(12px, 0.79vw, 15px);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Mission and Goals Cards - Same as Vision Card */
.college-mission-card.large-card,
.college-goals-card.large-card {
    min-height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 28, 51, 0.1);
    transition: all 0.4s ease;
}

.college-mission-card.large-card:hover,
.college-goals-card.large-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(4, 28, 51, 0.15);
}

.mission-icon,
.goals-icon {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* All cards now use vision-content styling */

.mission-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li {
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.63vw, 12px);
    padding: clamp(6px, 0.53vw, 10px) 0;
    font-size: clamp(13px, 0.84vw, 16px);
    color: var(--ul-gray2);
    font-weight: 500;
}

.mission-points li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--ul-c3);
    color: var(--ul-primary);
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

.goals-stats {
    text-align: center;
}

.goal-stat {
    display: inline-block;
}

.stat-number {
    display: block;
    font-size: clamp(24px, 2.1vw, 40px);
    font-weight: 800;
    color: var(--ul-primary);
    line-height: 1;
    margin-bottom: clamp(5px, 0.42vw, 8px);
}

.stat-label {
    font-size: clamp(12px, 0.79vw, 15px);
    color: var(--ul-gray2);
    font-weight: 500;
}

/* Detailed Goals Section */
.detailed-goals-section {
    margin-top: clamp(60px, 6.31vw, 120px);
}

.detailed-goals-title {
    font-size: clamp(28px, 2.36vw, 45px);
    font-weight: 700;
    color: var(--ul-primary);
    margin-bottom: clamp(15px, 1.26vw, 24px);
}

.detailed-goals-desc {
    font-size: clamp(16px, 1.05vw, 20px);
    color: var(--ul-gray2);
    line-height: 1.6;
    margin-bottom: clamp(40px, 3.15vw, 60px);
}

.detailed-goal-item {
    background: var(--white);
    padding: clamp(25px, 2.1vw, 40px);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(4, 28, 51, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    border-top: 4px solid transparent;
}

.detailed-goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(4, 28, 51, 0.12);
    border-top-color: var(--ul-c3);
}

.goal-item-icon {
    width: clamp(60px, 4.73vw, 90px);
    height: clamp(60px, 4.73vw, 90px);
    background: var(--ul-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(20px, 1.58vw, 30px);
    font-size: clamp(24px, 2.1vw, 40px);
    color: var(--white);
    transition: all 0.4s ease;
}

.detailed-goal-item:hover .goal-item-icon {
    background: var(--ul-c3);
    color: var(--ul-primary);
    animation: pulse 1s infinite;
}

.goal-item-title {
    font-size: clamp(18px, 1.26vw, 24px);
    font-weight: 700;
    color: var(--ul-primary);
    margin-bottom: clamp(12px, 1.05vw, 20px);
}

.goal-item-desc {
    font-size: clamp(14px, 0.89vw, 17px);
    line-height: 1.6;
    color: var(--ul-gray2);
    margin-bottom: 0;
}

/* Background Decorations */
.college-info-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(254, 198, 25, 0.05);
    animation: float 6s ease-in-out infinite;
}

.decoration-circle.circle-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decoration-circle.circle-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

.decoration-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(254, 198, 25, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    animation: float 8s ease-in-out infinite;
}

.decoration-dots.dots-1 {
    top: 20%;
    left: 5%;
    animation-delay: 1s;
}

.decoration-dots.dots-2 {
    bottom: 25%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Faculty Section - Using Home Page Styles */

/* College CTA Section */
.college-cta.modern-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafe 50%, #ffffff 100%);
    padding: clamp(80px, 7.5vw, 140px) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(254, 198, 25, 0.08));
    animation: floatAnimation 20s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 15%;
    animation-delay: -10s;
}

.circle-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: -60px;
    animation-delay: -5s;
}

.cta-medical-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.medical-icon {
    position: absolute;
    font-size: 24px;
    color: rgba(0, 123, 255, 0.15);
    animation: gentleFloat 15s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: -3s;
}

.icon-3 {
    top: 60%;
    right: 5%;
    animation-delay: -7s;
}

.icon-4 {
    bottom: 15%;
    right: 40%;
    animation-delay: -10s;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(10deg); }
    75% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.15; }
    50% { transform: translateY(-15px) scale(1.1); opacity: 0.25; }
}

.college-cta-content {
    position: relative;
    z-index: 1;
}

.cta-text {
    padding-left: clamp(20px, 2vw, 40px);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ul-c3);
    color: var(--ul-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: clamp(20px, 2vw, 35px);
    box-shadow: none;
}

.cta-badge i {
    font-size: 16px;
}

.cta-title {
    font-size: clamp(32px, 3.2vw, 56px);
    font-weight: 800;
    color: var(--ul-primary);
    line-height: 1.2;
    margin-bottom: clamp(20px, 2vw, 35px);
    background: linear-gradient(135deg, var(--ul-primary), var(--ul-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: clamp(18px, 1.2vw, 22px);
    color: var(--ul-primary);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: clamp(25px, 2.5vw, 40px);
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: clamp(20px, 2vw, 30px);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--ul-primary);
    opacity: 0.9;
}

.feature-highlight i {
    color: var(--ul-c3);
    font-size: 18px;
    flex-shrink: 0;
}

.cta-actions-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: clamp(30px, 3vw, 45px);
    /* ظل مخفف جداً */
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 1.5vw, 25px);
    align-items: stretch;
    margin-bottom: clamp(25px, 2.5vw, 35px);
}

.cta-btn {
    width: 100%;
    justify-content: center;
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight: 600;
    padding: clamp(14px, 1.2vw, 22px) clamp(30px, 2.5vw, 45px);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--ul-primary), var(--ul-secondary));
    color: var(--white);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, var(--ul-secondary), var(--ul-primary));
}

.cta-btn.secondary {
    background: var(--white) !important;
    color: var(--ul-primary) !important;
    border: 2px solid var(--ul-primary);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-btn.secondary:hover {
    background: var(--ul-primary) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3) !important;
}

.cta-contact-info {
    border-top: 1px solid rgba(0, 123, 255, 0.15);
    padding-top: clamp(20px, 2vw, 30px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--ul-primary);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-item:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.contact-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ul-c3), #ffd700);
    color: var(--ul-primary);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--ul-primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading animations */
.college-hero-content,
.dean-message-content,
.faculty-member,
.news-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.college-hero-content {
    animation-delay: 0.2s;
}

.dean-message-content {
    animation-delay: 0.3s;
}

.faculty-member:nth-child(1) { animation-delay: 0.1s; }
.faculty-member:nth-child(2) { animation-delay: 0.2s; }
.faculty-member:nth-child(3) { animation-delay: 0.3s; }
.faculty-member:nth-child(4) { animation-delay: 0.4s; }
.faculty-member:nth-child(5) { animation-delay: 0.5s; }
.faculty-member:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced hover effects */
.college-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(4, 28, 51, 0.1);
}

.goal-item:hover .goal-icon {
    animation: pulse 1s infinite;
}

.faculty-member:hover .faculty-name {
    color: var(--ul-c3);
}

.news-item:hover .news-title a {
    color: var(--ul-c3);
}

/* Custom scrollbar */
.college-tabs-nav::-webkit-scrollbar {
    height: 4px;
}

.college-tabs-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
}

.college-tabs-nav::-webkit-scrollbar-thumb {
    background: var(--ul-c3);
    border-radius: 2px;
}

.college-tabs-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(254, 198, 25, 0.8);
}

/* ========== LABORATORIES SECTION ========== */
.ul-laboratories {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.ul-laboratories::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(254, 198, 25, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.ul-laboratories::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 72, 135, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Laboratory Cards */
.laboratory-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(4, 28, 51, 0.08);
    border: 1px solid rgba(254, 198, 25, 0.1);
}

/* Add pseudo-element for gradient background effect */
.laboratory-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
    border-radius: 16px;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.laboratory-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(4, 28, 51, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.laboratory-card:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Featured Lab */
.featured-lab {
    height: 450px;
    position: relative;
}

.lab-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.lab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-lab:hover .lab-image {
    transform: scale(1.05);
}

.lab-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(4, 28, 51, 0.8) 0%,
        rgba(0, 72, 135, 0.7) 50%,
        rgba(4, 28, 51, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.featured-lab:hover .lab-overlay {
    opacity: 1;
}

.lab-overlay-content {
    text-align: center;
    color: white;
    padding: 40px;
    transform: translateY(30px);
    transition: transform 0.5s ease;
}

.featured-lab:hover .lab-overlay-content {
    transform: translateY(0);
}

.lab-icon {
    width: 80px;
    height: 80px;
    background: var(--ul-c3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--ul-primary);
    animation: pulse 2s infinite;
}

.lab-title {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.lab-description {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.lab-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.lab-feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Lab Stats Container */
.lab-stats-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.lab-stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(4, 28, 51, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.lab-stat-card:hover {
    transform: translateX(-5px);
    border-left-color: var(--ul-c3);
    box-shadow: 0 8px 25px rgba(4, 28, 51, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ul-primary) 0%, var(--ul-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 800;
    color: var(--ul-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: clamp(14px, 1vw, 16px);
    color: var(--ul-gray2);
    font-weight: 500;
}

/* Standard Labs */
.standard-lab {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.lab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.lab-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ul-c3) 0%, #f0c14b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ul-primary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.laboratory-card:hover .lab-icon-small {
    transform: scale(1.1);
}

.lab-category {
    background: rgba(0, 72, 135, 0.1);
    color: var(--ul-secondary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.laboratory-card:hover .lab-category {
    background: var(--ul-secondary);
    color: white;
    transform: scale(1.05);
}

.lab-name {
    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 700;
    color: var(--ul-primary);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.laboratory-card:hover .lab-name {
    color: var(--ul-secondary);
    transform: translateY(-2px);
}

.lab-desc {
    color: var(--ul-gray2);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    font-size: clamp(14px, 1vw, 16px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.laboratory-card:hover .lab-desc {
    color: var(--ul-primary);
}

.lab-equipment {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(254, 198, 25, 0.2);
    font-size: 14px;
    color: var(--ul-gray2);
    transition: all 0.3s ease;
}

.equipment-item:first-child {
    border-top: none;
}

.laboratory-card:hover .equipment-item {
    color: var(--ul-primary);
    transform: translateX(5px);
}

.equipment-item i {
    width: 20px;
    color: var(--ul-c3);
    font-size: 16px;
    transition: all 0.3s ease;
}

.laboratory-card:hover .equipment-item i {
    color: var(--ul-secondary);
    transform: scale(1.1);
}

/* Lab CTA Section */
.lab-cta-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(4, 28, 51, 0.08);
    position: relative;
    overflow: hidden;
}

.lab-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(254, 198, 25, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.lab-cta-content {
    padding-right: 20px;
}

.lab-cta-title {
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    color: var(--ul-primary);
    margin-bottom: 15px;
}

.lab-cta-desc {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--ul-gray2);
    line-height: 1.6;
    margin-bottom: 0;
}

.lab-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.lab-tour-btn,
.lab-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 160px;
    justify-content: center;
    font-size: 15px;
}

.lab-tour-btn {
    background: var(--ul-c3);
    color: var(--ul-primary);
    box-shadow: 0 4px 15px rgba(254, 198, 25, 0.2);
}

.lab-tour-btn:hover {
    background: var(--ul-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 198, 25, 0.3);
}

.lab-info-btn {
    background: transparent;
    color: var(--ul-primary);
    border: 2px solid var(--ul-primary);
}

.lab-info-btn:hover {
    background: var(--ul-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Animations */
@keyframes labPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(254, 198, 25, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(254, 198, 25, 0);
    }
}

.lab-icon {
    animation: labPulse 3s infinite;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .lab-stats-container {
        margin-top: 30px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .lab-stat-card {
        flex: 1;
        min-width: 200px;
    }
    
    .lab-cta-content {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .lab-cta-actions {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .featured-lab {
        height: 350px;
    }
    
    .lab-overlay-content {
        padding: 30px 20px;
    }
    
    .standard-lab {
        padding: 25px 20px;
    }
    
    .lab-features {
        flex-direction: column;
        align-items: center;
    }
    
    .lab-feature-tag {
        justify-content: center;
        width: 100%;
        max-width: 250px;
    }
    
    .lab-stats-container {
        flex-direction: column;
    }
    
    .lab-stat-card {
        min-width: auto;
    }
    
    .lab-cta-actions {
        flex-direction: column;
    }
    
    .lab-tour-btn,
    .lab-info-btn {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .lab-cta-section {
        padding: 30px 20px;
    }
    
    .equipment-item {
        font-size: 13px;
    }
    
    .lab-feature-tag {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* ========== ACADEMIC SCHEDULES SECTION ========== */
.ul-schedules {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ul-schedules::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 72, 135, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.ul-schedules::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(254, 198, 25, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

/* Featured Schedule Card */
.featured-schedule {
    background: linear-gradient(135deg, var(--ul-primary) 0%, var(--ul-secondary) 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 28, 51, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-schedule::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.featured-schedule:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 28, 51, 0.2);
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.schedule-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.schedule-meta {
    flex: 1;
}

.schedule-type {
    background: rgba(254, 198, 25, 0.2);
    color: var(--ul-c3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.schedule-title {
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.schedule-period {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

.schedule-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.schedule-highlights {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.highlight-item i {
    font-size: 18px;
    color: var(--ul-c3);
}

.schedule-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    min-width: 150px;
    justify-content: center;
}

.schedule-btn.primary {
    background: var(--ul-c3);
    color: var(--ul-primary);
}

.schedule-btn.primary:hover {
    background: white;
    color: var(--ul-primary);
    transform: translateY(-2px);
}

.schedule-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.schedule-btn.secondary:hover {
    background: white;
    color: var(--ul-primary);
    border-color: white;
    transform: translateY(-2px);
}

/* Exam Entry Cards */
.exam-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.exam-entry-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(4, 28, 51, 0.08);
    border: 1px solid rgba(254, 198, 25, 0.1);
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-height: 0;
}

.exam-entry-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
    border-radius: 16px;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.exam-entry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(4, 28, 51, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    text-decoration: none;
    color: inherit;
}

.exam-entry-card:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.exam-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.exam-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--ul-primary) 0%, var(--ul-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.exam-entry-card:hover .exam-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(4, 28, 51, 0.2);
}

.exam-header-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.exam-title {
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 700;
    color: var(--ul-primary);
    margin: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
    flex: 1;
}

.exam-entry-card:hover .exam-title {
    color: var(--ul-secondary);
}

.exam-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.exam-badge.monthly {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.exam-badge.final {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.exam-entry-card:hover .exam-badge {
    transform: scale(1.05);
}

.exam-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.exam-desc {
    color: var(--ul-gray2);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: clamp(13px, 0.9vw, 15px);
    transition: all 0.3s ease;
}

.exam-entry-card:hover .exam-desc {
    color: var(--ul-primary);
}

.exam-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.exam-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--ul-c3);
    background: rgba(254, 198, 25, 0.1);
    padding: 4px 10px;
    border-radius: 10px;
}

.exam-status {
    font-size: 12px;
    font-weight: 500;
    color: var(--ul-secondary);
}

.exam-status-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.exam-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ul-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 2;
    flex-shrink: 0;
    margin-left: 10px;
}

.exam-entry-card:hover .exam-arrow {
    transform: translateX(-3px);
    color: var(--ul-secondary);
}

/* Schedule Notifications */
.schedule-notifications {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(4, 28, 51, 0.08);
    position: relative;
    overflow: hidden;
}

.schedule-notifications::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(254, 198, 25, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.notification-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ul-c3) 0%, #f0c14b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--ul-primary);
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.notification-title {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    color: var(--ul-primary);
    margin-bottom: 10px;
}

.notification-desc {
    font-size: clamp(14px, 1.2vw, 16px);
    color: var(--ul-gray2);
    margin-bottom: 0;
    line-height: 1.6;
}

.notification-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.notification-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 160px;
    justify-content: center;
    font-size: 15px;
}

.notification-btn.subscribe {
    background: var(--ul-c3);
    color: var(--ul-primary);
    box-shadow: 0 4px 15px rgba(254, 198, 25, 0.2);
}

.notification-btn.subscribe:hover {
    background: var(--ul-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 198, 25, 0.3);
}

.notification-btn.download {
    background: transparent;
    color: var(--ul-primary);
    border: 2px solid var(--ul-primary);
}

.notification-btn.download:hover {
    background: var(--ul-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .schedule-highlights {
        gap: 20px;
    }
    
    .exam-cards-container {
        margin-top: 30px;
        flex-direction: row;
        gap: 15px;
    }
    
    .exam-entry-card {
        flex: 1;
        min-width: 250px;
    }
    
    .notification-content {
        margin-bottom: 20px;
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }
    
    .notification-actions {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .featured-schedule {
        padding: 30px 20px;
    }
    
    .schedule-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .schedule-highlights {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .schedule-actions {
        flex-direction: column;
    }
    
    .schedule-btn {
        width: 100%;
    }
    
    .exam-cards-container {
        flex-direction: column;
    }
    
    .exam-entry-card {
        min-width: auto;
    }
    
    .notification-actions {
        flex-direction: column;
    }
    
    .notification-btn {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .schedule-type-card {
        padding: 25px 20px;
    }
    
    .schedule-notifications {
        padding: 30px 20px;
    }
    
    .detail-item {
        font-size: 13px;
    }
    
    .schedule-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* Enhanced shadow effects */
.college-hero-image,
.dean-image,
.faculty-member,
.news-item {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.college-hero-image:hover,
.dean-image:hover {
    box-shadow: 0 8px 25px rgba(4, 28, 51, 0.1);
}

/* Gradient text effects */
.college-hero-title {
    color: var(--ul-primary);
}

.cta-title {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced button animations */
.ul-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ul-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.ul-btn:hover::before {
    left: 100%;
}

/* Modern CTA Responsive Design */
@media (max-width: 991.98px) {
    .cta-actions-container {
        margin-top: clamp(30px, 4vw, 50px);
        padding: clamp(25px, 3vw, 35px);
    }
    
    .cta-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px 25px;
    }
    
    .feature-highlight {
        flex-basis: calc(50% - 12px);
        font-size: 15px;
    }
    
    .cta-title {
        margin-bottom: clamp(15px, 2vw, 25px);
    }
}

@media (max-width: 767.98px) {
    .college-cta.modern-cta {
        padding: clamp(50px, 6vw, 80px) 0;
    }
    
    .cta-circle {
        display: none;
    }
    
    .medical-icon {
        font-size: 20px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-highlight {
        flex-basis: 100%;
        font-size: 14px;
    }
    
    .cta-actions {
        gap: 15px;
    }
    
    .cta-contact-info {
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
    }
    
    .contact-item {
        font-size: 13px;
        gap: 8px;
    }
    
    .contact-item i {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}

@media (max-width: 575.98px) {
    .cta-text {
        padding-left: 0;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .cta-badge i {
        font-size: 14px;
    }
}

/* Enhanced card effects */
.college-tabs-wrapper,
.faculty-member,
.news-item {
    position: relative;
}

.college-tabs-wrapper::before,
.faculty-member::before,
.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(254, 198, 25, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: -1;
}

.college-tabs-wrapper:hover::before,
.faculty-member:hover::before,
.news-item:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: clamp(20px, 2vw, 30px);
    }
    
    .news-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(15px, 1.5vw, 20px);
    }
    
    .dean-message-content {
        padding-right: 0;
        margin-top: clamp(30px, 3vw, 40px);
    }
    
    .college-hero-content {
        padding-left: 0;
        margin-bottom: clamp(30px, 3vw, 40px);
    }
    
    .cta-actions {
        margin-top: clamp(20px, 2vw, 30px);
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* College Info Responsive */
    .college-about-card {
        text-align: center;
    }
    
    .college-about-image {
        margin-top: clamp(30px, 3vw, 40px);
    }
    
    .college-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: clamp(10px, 1vw, 15px);
    }
    
    .college-vision-card.large-card {
        min-height: 350px;
    }
    
    .detailed-goals-section {
        margin-top: clamp(40px, 4vw, 60px);
    }
}

@media screen and (max-width: 767px) {
    .faculty-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: clamp(20px, 2vw, 25px);
    }
    
    .college-hero-stats {
        justify-content: center;
    }

    /* College Info Mobile */
    .college-features-grid {
        grid-template-columns: 1fr;
        gap: clamp(8px, 1vw, 12px);
    }
    
    .college-vision-card.large-card {
        min-height: 300px;
    }
    
    .vision-content {
        padding: clamp(20px, 2vw, 30px);
    }
    
    .vision-features {
        justify-content: center;
    }
    
    .mission-card-bg,
    .goals-card-bg {
        padding: clamp(20px, 2vw, 30px);
        min-height: 120px;
    }
    
    .mission-content,
    .goals-content {
        padding: clamp(20px, 2vw, 30px);
    }
    
    .detailed-goal-item {
        padding: clamp(20px, 2vw, 30px);
    }
}

@media screen and (max-width: 575px) {
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .news-sidebar {
        grid-template-columns: 1fr;
    }

    /* College Info Extra Small Devices */
    .college-about-badge {
        font-size: clamp(12px, 2vw, 14px);
        padding: clamp(6px, 1vw, 8px) clamp(12px, 2vw, 16px);
    }
    
    .college-about-title {
        font-size: clamp(20px, 4vw, 28px);
    }
    
    .college-about-desc {
        font-size: clamp(14px, 3vw, 16px);
    }
    
    .vision-title,
    .mission-title,
    .goals-title {
        font-size: clamp(16px, 3vw, 20px);
    }
    
    .vision-desc,
    .mission-desc,
    .goals-desc {
        font-size: clamp(13px, 2.5vw, 15px);
    }
    
    .detailed-goals-title {
        font-size: clamp(22px, 4vw, 32px);
    }
    
    .detailed-goals-desc {
        font-size: clamp(14px, 3vw, 16px);
    }
    
    .goal-item-title {
        font-size: clamp(16px, 3vw, 20px);
    }
    
    .goal-item-desc {
        font-size: clamp(13px, 2.5vw, 15px);
    }
}

/* Fixed height for vision, mission, and goals cards */
.college-vision-card,
.college-mission-card,
.college-goals-card {
    height: 530px !important;
    display: flex;
    flex-direction: column;
}

.college-vision-card .card-body,
.college-mission-card .card-body,
.college-goals-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Style for "المزيد" text */
.read-more-text {
    color: var(--ul-c3) !important;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    padding-top: 15px;
    transition: all 0.3s ease;
}

.read-more-text:hover {
    color: var(--ul-c2) !important;
    text-decoration: none;
}

/* ========== COLLEGE INFO CARDS SECTION ========== */
.college-info-cards {
    background: #f8f9fa;
    padding: 30px 0;
}

.college-info-card {
    background: var(--white);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(4, 28, 51, 0.08);
    box-shadow: 0 4px 12px rgba(4, 28, 51, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.college-info-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 30%, transparent 100%);
    border-radius: 0%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.college-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(4, 28, 51, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.college-info-card:hover::before {
    width: 120%;
    height: 120%;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.info-card-icon i {
    font-size: 22px;
    color: var(--ul-secondary);
    transition: all 0.3s ease;
}

.college-info-card:hover .info-card-icon {
    background-color: var(--ul-secondary);
}

.college-info-card:hover .info-card-icon i {
    color: var(--white);
}

.info-card-content {
    position: relative;
    z-index: 1;
}

.info-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ul-gray2);
    margin: 0 0 8px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.college-info-card:hover .info-card-title {
    color: var(--ul-primary);
}

.info-card-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--ul-primary);
    margin: 0;
    line-height: 1.1;
}

.info-card-text {
    font-size: 15px;
    color: var(--ul-primary);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.info-card-text a {
    color: var(--ul-gray2);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.info-card-text a:hover {
    color: var(--ul-secondary);
}

/* Responsive */
@media screen and (max-width: 991px) {
    .college-info-card {
        padding: 20px 15px;
    }
    
    .info-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .info-card-icon i {
        font-size: 20px;
    }
    
    .info-card-title {
        font-size: 13px;
    }
    
    .info-card-value {
        font-size: 20px;
    }
    
    .info-card-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .college-info-card {
        padding: 18px 12px;
    }
    
    .info-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .info-card-icon i {
        font-size: 18px;
    }
    
    .info-card-title {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .info-card-value {
        font-size: 18px;
    }
    
    .info-card-text {
        font-size: 13px;
    }
    
    .info-card-text a {
        font-size: 12px;
    }
}

/* ========== VISION MISSION GOALS ACCORDION ========== */
.college-vmg-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.college-vmg-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--ul-primary);
    margin-bottom: 10px;
}

.college-vmg-section .section-subtitle {
    font-size: 18px;
    color: var(--ul-gray2);
}

.vmg-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.vmg-accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(4, 28, 51, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.vmg-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(4, 28, 51, 0.12);
    transform: translateY(-2px);
}

.vmg-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vmg-accordion-header::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--ul-c3) 0%, #f0c14b 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.vmg-accordion-header.active::before,
.vmg-accordion-header:hover::before {
    opacity: 1;
}

.vmg-accordion-header.active {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.vmg-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vmg-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.1);
    color: var(--ul-secondary);
}

.vmg-accordion-header.active .vmg-icon,
.vmg-accordion-header:hover .vmg-icon {
    background: var(--ul-secondary);
    color: var(--white);
    transform: scale(1.05);
}

.vmg-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ul-primary);
    margin: 0;
    transition: all 0.3s ease;
}

.vmg-accordion-header.active .vmg-title,
.vmg-accordion-header:hover .vmg-title {
    color: var(--ul-secondary);
}

.vmg-arrow {
    font-size: 18px;
    color: var(--ul-gray2);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.vmg-accordion-header.active .vmg-arrow {
    transform: rotate(180deg);
    color: var(--ul-secondary);
}

.vmg-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.vmg-accordion-body.active {
    max-height: 500px;
}

.vmg-body-content {
    padding: 0 30px 30px 110px;
}

.vmg-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ul-gray2);
    margin: 0;
}

.vmg-goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vmg-goals-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.vmg-goals-list li:last-child {
    border-bottom: none;
}

.vmg-goals-list li:hover {
    padding-right: 10px;
    background: rgba(212, 175, 55, 0.03);
}

.vmg-goals-list li i {
    color: var(--ul-c3);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vmg-goals-list li:hover i {
    transform: scale(1.2);
    color: var(--ul-secondary);
}

.vmg-goals-list li span {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ul-gray2);
    transition: all 0.3s ease;
}

.vmg-goals-list li:hover span {
    color: var(--ul-primary);
}

/* Responsive */
@media screen and (max-width: 991px) {
    .vmg-accordion-header {
        padding: 20px 25px;
    }
    
    .vmg-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .vmg-title {
        font-size: 20px;
    }
    
    .vmg-body-content {
        padding: 0 25px 25px 95px;
    }
    
    .vmg-text {
        font-size: 15px;
    }
    
    .vmg-goals-list li span {
        font-size: 15px;
    }
}

@media screen and (max-width: 575px) {
    .college-vmg-section .section-title {
        font-size: 28px;
    }
    
    .college-vmg-section .section-subtitle {
        font-size: 16px;
    }
    
    .vmg-accordion-header {
        padding: 18px 20px;
    }
    
    .vmg-header-content {
        gap: 15px;
    }
    
    .vmg-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .vmg-title {
        font-size: 18px;
    }
    
    .vmg-arrow {
        font-size: 16px;
    }
    
    .vmg-body-content {
        padding: 0 20px 20px 80px;
    }
    
    .vmg-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .vmg-goals-list li {
        gap: 12px;
        padding: 10px 0;
    }
    
    .vmg-goals-list li i {
        font-size: 16px;
    }
    
    .vmg-goals-list li span {
        font-size: 14px;
    }
}

/* ===================================
   Quick Links Section
   =================================== */
.quick-links-section {
    background: #f8f9fa;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--ul-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(4, 28, 51, 0.06);
}

.quick-link-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 30%, transparent 100%);
    border-radius: 0%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.quick-link-item:hover {
    box-shadow: 0 4px 12px rgba(4, 28, 51, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.quick-link-item:hover::before {
    width: 120%;
    height: 120%;
}

.quick-link-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--ul-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.quick-link-item:hover .quick-link-icon {
    background: var(--ul-secondary);
    color: var(--white);
    transform: scale(1.1);
}

.quick-link-text {
    font-size: 16px;
    font-weight: 600;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.quick-link-arrow {
    font-size: 16px;
    color: var(--ul-gray2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.quick-link-item:hover .quick-link-arrow {
    color: var(--ul-secondary);
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-link-item {
        padding: 18px 20px;
    }
    
    .quick-link-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .quick-link-text {
        font-size: 15px;
    }
}

/* ===================================
   SYLLABUS PAGE STYLES
   =================================== */

/* Program Description Card */
.program-description-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.program-description-card:hover {
    border-color: #d4af37;
}

.program-desc-content {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.program-desc-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.program-desc-info i {
    font-size: 36px;
    color: #d4af37;
    flex-shrink: 0;
}

.program-desc-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a52;
    margin: 0 0 5px 0;
}

.program-desc-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.program-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #dc3545;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.program-download-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    color: #fff;
}

.program-download-btn i {
    font-size: 16px;
}

/* Course Stages */
.courses-stages {
    margin-top: 60px;
}

.stage-section {
    margin-bottom: 60px;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.stage-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a332 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.stage-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a52;
    margin: 0;
}

/* Courses Table */
.courses-table-wrapper {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.courses-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.courses-table thead {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
}

.courses-table thead th {
    padding: 20px 15px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: none;
    white-space: nowrap;
}

.courses-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.courses-table tbody tr:last-child {
    border-bottom: none;
}

.courses-table tbody tr:hover {
    background-color: #f8f9fa;
}

.courses-table tbody td {
    padding: 20px 15px;
    text-align: center;
    font-size: 14px;
    color: #333;
    border: none;
    vertical-align: middle;
}

.course-code {
    display: inline-block;
    background: #e8f4f8;
    color: #1a3a52;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.units-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a332 100%);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #dc3545;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.pdf-download-btn:hover {
    background: #c82333;
    color: #fff;
    transform: scale(1.1);
}

/* ===================================
   MONTHLY EXAMS SCHEDULE STYLES
   =================================== */

/* Monthly Exams Section */
.monthly-exams-section {
    background: #f8f9fa;
    position: relative;
}

.exams-header {
    margin-bottom: 50px;
}

.exams-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ul-c3);
    color: var(--ul-primary);
    padding: 10px 24px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.exams-badge i {
    font-size: 18px;
}

.section-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--ul-primary);
    margin-bottom: 15px;
}

.section-description {
    font-size: clamp(16px, 1.1vw, 18px);
    color: var(--ul-gray2);
    max-width: 700px;
    margin: 0 auto;
}

/* Stages Accordion */
.stages-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stage-accordion-item {
    background: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 72, 135, 0.1);
}

.stage-accordion-item:hover {
    transform: translateY(-2px);
    border-color: var(--ul-c3);
}

.stage-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.stage-accordion-header:hover {
    background: rgba(0, 72, 135, 0.02);
}

.stage-accordion-header.active {
    background: rgba(0, 72, 135, 0.05);
    border-bottom: 1px solid rgba(0, 72, 135, 0.1);
}

.stage-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stage-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ul-secondary) 0%, #003666 100%);
    color: var(--white);
    font-size: 22px;
}

.stage-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stage-title {
    font-size: clamp(18px, 1.3vw, 24px);
    font-weight: 700;
    color: var(--ul-primary);
    margin: 0;
}

.stage-meta {
    font-size: clamp(13px, 0.9vw, 15px);
    color: var(--ul-gray2);
    font-weight: 500;
}

.stage-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 72, 135, 0.1);
    transition: all 0.3s ease;
}

.stage-arrow i {
    color: var(--ul-secondary);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.stage-accordion-header.active .stage-arrow i {
    transform: rotate(180deg);
}

.stage-accordion-header:hover .stage-arrow {
    background: var(--ul-secondary);
}

.stage-accordion-header:hover .stage-arrow i {
    color: var(--white);
}

.stage-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.stage-accordion-body.active {
    max-height: 2000px;
}

.stage-body-content {
    padding: 30px;
    background: var(--white);
}

/* Exam Schedule Table */
.exam-schedule-table {
    width: 100%;
}

.table-responsive {
    overflow-x: auto;
}

.exams-table {
    width: 100%;
    background: var(--white);
}

.exams-table thead {
    background: var(--ul-primary);
}

.exams-table thead th {
    padding: 18px 15px;
    font-size: clamp(14px, 0.9vw, 16px);
    font-weight: 700;
    color: var(--white);
    text-align: right;
    white-space: nowrap;
}

.exams-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 72, 135, 0.1);
}

.exams-table tbody tr:hover {
    background: rgba(254, 198, 25, 0.05);
}

.exams-table tbody td {
    padding: 20px 15px;
    font-size: clamp(14px, 0.9vw, 15px);
    color: var(--ul-gray2);
    vertical-align: middle;
}

.exam-date,
.hall-info,
.exam-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.exam-date i,
.hall-info i,
.exam-time i {
    color: var(--ul-secondary);
    font-size: 16px;
}

.subject-name {
    color: var(--ul-primary);
    font-weight: 700;
    font-size: clamp(15px, 1vw, 16px);
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ul-c3);
    color: var(--ul-primary);
    font-weight: 700;
    font-size: 14px;
}

.empty-field {
    color: #ccc;
    font-style: italic;
}

.exam-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

.detail-badge.theory {
    background: rgba(0, 72, 135, 0.1);
    color: var(--ul-secondary);
}

.detail-badge.attendance {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.detail-badge.practical {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

/* Section Badges */
.section-badge.section-a {
    background: rgba(0, 72, 135, 0.1);
    color: var(--ul-secondary);
}

.section-badge.section-c {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Teacher Name */
.teacher-name {
    color: var(--ul-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.teacher-name i {
    color: var(--ul-secondary);
    font-size: 14px;
}

/* Day Separator Row */
.day-separator-row {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.15) 20%, 
        rgba(212, 175, 55, 0.25) 50%, 
        rgba(212, 175, 55, 0.15) 80%, 
        transparent 100%);
    border-top: 2px solid var(--ul-c3);
    border-bottom: 2px solid var(--ul-c3);
    position: relative;
}

.day-separator-row td {
    padding: 8px 0 !important;
    height: 20px;
    position: relative;
}

.day-separator-row td::before {
    content: '✦';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--ul-c3);
    font-size: 16px;
    opacity: 0.6;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 18px;
    color: var(--ul-gray2);
    margin: 0;
}

/* Action Buttons */
.exams-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--ul-secondary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
    border: 1px solid transparent;
}

.action-btn:hover {
    background: var(--ul-primary);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--ul-secondary);
}

.action-btn.download-btn {
    background: var(--ul-c3);
    color: var(--ul-primary);
    border-color: var(--ul-c3);
}

.action-btn.download-btn:hover {
    background: #e5b81c;
    color: var(--ul-primary);
    border-color: #e5b81c;
}

.action-btn i {
    font-size: 18px;
}

/* ===================================
   RESPONSIVE - SYLLABUS & MONTHLY EXAMS
   =================================== */

@media (max-width: 1200px) {
    .stage-title {
        font-size: 28px;
    }

    .courses-table thead th {
        font-size: 13px;
        padding: 18px 12px;
    }

    .courses-table tbody td {
        font-size: 13px;
        padding: 18px 12px;
    }
}

@media (max-width: 992px) {
    .program-desc-content {
        padding: 20px 25px;
    }

    .program-desc-info i {
        font-size: 32px;
    }

    .program-desc-info h4 {
        font-size: 16px;
    }

    .program-desc-info p {
        font-size: 13px;
    }

    .stage-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .stage-title {
        font-size: 26px;
    }

    .stage-accordion-header {
        padding: 20px;
    }

    .stage-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .stage-header-content {
        gap: 15px;
    }

    .stage-body-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .program-desc-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .program-desc-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .program-desc-info i {
        font-size: 28px;
    }

    .program-desc-info h4 {
        font-size: 16px;
    }

    .program-download-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }

    .stage-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .stage-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .stage-title {
        font-size: 24px;
    }

    .stage-accordion-header {
        padding: 18px 15px;
    }

    .stage-header-content {
        gap: 12px;
    }

    .stage-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .stage-arrow {
        width: 35px;
        height: 35px;
    }

    .stage-body-content {
        padding: 15px;
    }

    /* Mobile Table Design */
    .courses-table thead,
    .exams-table thead {
        display: none;
    }

    .courses-table tbody tr,
    .exams-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        background: var(--white);
        padding: 15px;
    }

    .courses-table tbody td,
    .exams-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .courses-table tbody td:last-child,
    .exams-table tbody td:last-child {
        border-bottom: none;
        justify-content: center;
    }

    .courses-table tbody td::before,
    .exams-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #1a3a52;
        margin-left: 15px;
    }

    .courses-table tbody td:last-child::before,
    .exams-table tbody td:last-child::before {
        content: '';
        display: none;
    }

    .exams-table tbody td {
        padding: 12px 0;
    }

    .exams-table tbody td::before {
        color: var(--ul-primary);
        margin-left: 10px;
    }

    .exam-date,
    .hall-info,
    .exam-time {
        flex-direction: row-reverse;
    }

    /* Day Separator for Mobile */
    .day-separator-row {
        display: block;
        margin: 20px 0;
        padding: 0;
        border: none;
        border-top: 2px solid var(--ul-c3);
        border-bottom: 2px solid var(--ul-c3);
    }

    .day-separator-row td {
        display: block;
        padding: 10px 0 !important;
        border: none;
    }

    .exams-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .program-desc-content {
        padding: 15px;
    }

    .program-desc-info h4 {
        font-size: 15px;
    }

    .program-desc-info p {
        font-size: 12px;
    }

    .program-download-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .stage-title {
        font-size: 20px;
    }

    .courses-stages {
        margin-top: 40px;
    }

    .stage-section {
        margin-bottom: 40px;
    }

    .stage-meta {
        font-size: 12px;
    }

    .exams-badge {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Print Styles - Syllabus & Monthly Exams */
@media print {
    .ul-header,
    .ul-footer,
    .ul-sidebar,
    .exams-actions,
    .stage-arrow,
    .program-download-btn {
        display: none !important;
    }

    .ul-page-hero {
        display: none;
    }

    .stage-accordion-body {
        max-height: none !important;
    }

    .stage-accordion-item {
        page-break-inside: avoid;
    }

    .courses-table,
    .exams-table {
        page-break-inside: avoid;
        font-size: 12px;
    }

    .courses-table thead th,
    .courses-table tbody td,
    .exams-table thead th,
    .exams-table tbody td {
        padding: 10px 8px;
    }

    .stage-section {
        page-break-inside: avoid;
        margin-bottom: 30px;
    }
}

/* ===================================
   VALEDICTORIANS PAGE STYLES (Simple List)
   =================================== */

.valedictorians-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.valedictorian-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: 8px;
    border-right: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(4, 28, 51, 0.06);
}

.valedictorian-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(4, 28, 51, 0.12);
}

.valedictorian-item:nth-child(1) {
    border-right-color: #D4A517;
}

.valedictorian-item:nth-child(2) {
    border-right-color: #95989A;
}

.valedictorian-item:nth-child(3) {
    border-right-color: #A0652A;
}

/* Rank Number */
.rank-number {
    min-width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rank-number i {
    font-size: 20px;
    margin-bottom: 2px;
}

.rank-number span {
    font-size: 14px;
    font-weight: 600;
}

.rank-number.rank-1 {
    background: #D4A517;
}

.rank-number.rank-2 {
    background: #95989A;
}

.rank-number.rank-3 {
    background: #A0652A;
}

/* Student Details Simple */
.student-details-simple {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.student-name-simple {
    font-size: 20px;
    font-weight: 700;
    color: var(--ul-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.valedictorian-item:hover .student-name-simple {
    color: var(--ul-secondary);
}

.student-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.grade-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--ul-c3);
    color: var(--ul-primary);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(254, 198, 25, 0.2);
    transition: all 0.3s ease;
}

.valedictorian-item:hover .grade-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(254, 198, 25, 0.3);
}

/* Responsive Design for Valedictorians */
@media screen and (max-width: 991px) {
    .valedictorian-item {
        padding: 18px 20px;
        gap: 15px;
    }
    
    .rank-number {
        min-width: 55px;
        height: 55px;
        font-size: 16px;
    }
    
    .rank-number i {
        font-size: 18px;
    }
    
    .student-name-simple {
        font-size: 18px;
    }
    
    .grade-badge {
        font-size: 14px;
        padding: 7px 14px;
    }
}

@media screen and (max-width: 767px) {
    .student-details-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .valedictorian-item {
        padding: 15px;
        gap: 12px;
    }
    
    .rank-number {
        min-width: 50px;
        height: 50px;
        font-size: 14px;
    }
    
    .rank-number i {
        font-size: 16px;
    }
    
    .student-name-simple {
        font-size: 17px;
    }
    
    .grade-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media screen and (max-width: 575px) {
    .valedictorians-list {
        gap: 12px;
    }
    
    .valedictorian-item {
        padding: 12px;
        gap: 10px;
        border-right-width: 3px;
        border-radius: 6px;
    }
    
    .rank-number {
        min-width: 45px;
        height: 45px;
        border-radius: 6px;
    }
    
    .rank-number i {
        font-size: 14px;
        margin-bottom: 1px;
    }
    
    .rank-number span {
        font-size: 12px;
    }
    
    .student-name-simple {
        font-size: 16px;
    }
    
    .grade-badge {
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 5px;
    }
}