/* ====== UR VETERINARY MEDICINE WEBSITE COMPLETE CSS ====== */

/* ====== ROOT VARIABLES ====== */
:root {
    /* UR Brand Colors */
    --ur-green: #008542;
    --ur-dark-green: #006837;
    --ur-blue: #0056B3;
    --ur-light-blue: #4A90E2;
    --ur-gold: #FFB81C;
    --accent-orange: #FF6B35;
    --text-dark: #2D3748;
    --text-light: #718096;
    --white: #FFFFFF;
    --gray-light: #F7FAFC;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== RESET & BASE STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

html {
    font-size: 16px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ====== LAYOUT & CONTAINERS ====== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--ur-dark-green);
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ur-green), var(--ur-blue));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ur-green), var(--ur-dark-green));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--ur-green);
    border: 2px solid var(--ur-green);
}

.btn-secondary:hover {
    background: var(--ur-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--ur-green);
    font-weight: 600;
    padding: 15px 35px;
}

.btn-light:hover {
    background: var(--ur-gold);
    color: var(--ur-dark-green);
    transform: translateY(-3px);
}

/* ====== TOP BAR ====== */
.top-bar {
    background: linear-gradient(90deg, var(--ur-dark-green), var(--ur-green));
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-contact i {
    margin-right: 6px;
    color: var(--ur-gold);
}

.top-bar-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-actions a {
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    white-space: nowrap;
}

.top-bar-actions a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ====== HEADER & NAVIGATION ====== */
header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ur-green), var(--ur-dark-green));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-text h1 {
    font-size: 1.4rem;
    color: var(--ur-dark-green);
    margin-bottom: 4px;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 12px 18px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--ur-green);
    background: rgba(0, 133, 66, 0.1);
}

.nav-link.active {
    color: var(--ur-green);
    font-weight: 600;
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: linear-gradient(90deg, var(--ur-green), var(--ur-blue));
    border-radius: 1.5px;
}

.nav-link i.fa-chevron-down {
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    transition: var(--transition);
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
    border-left-color: var(--ur-green);
    padding-left: 25px;
}

.dropdown-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--ur-green);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-column h4 {
    font-size: 1.1rem;
    color: var(--ur-dark-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 133, 66, 0.2);
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    transition: var(--transition);
}

.mega-menu-link:hover {
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
    transform: translateX(5px);
}

.mega-menu-link i {
    margin-right: 12px;
    color: var(--ur-green);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ur-dark-green);
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

/* Mobile Navigation Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    transition: var(--transition);
    z-index: 1001;
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-item {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 15px;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.mobile-nav-link.active {
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
}

.mobile-dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 15px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.mobile-dropdown-btn:hover {
    background: var(--gray-light);
}

.mobile-dropdown-btn i {
    transition: var(--transition);
}

.mobile-dropdown-btn.open i:last-child {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.mobile-dropdown-menu.open {
    max-height: 500px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mobile-dropdown-link {
    display: block;
    padding: 10px 15px;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.mobile-dropdown-link:hover {
    color: var(--ur-green);
    background: var(--gray-light);
}

/* ====== PAGE HEADER ====== */
.page-header {
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    color: var(--white);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 600,75 400,75S200,50 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 30px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--ur-gold);
    text-decoration: none;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* ====== PROGRAMMES PAGE STYLES ====== */
.programme-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--text-dark);
}

.tab-btn:hover {
    border-color: var(--ur-green);
    color: var(--ur-green);
}

.tab-btn.active {
    background: var(--ur-green);
    color: var(--white);
    border-color: var(--ur-green);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.programme-details {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
}

.programme-sidebar {
    background: var(--gray-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.info-box {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--ur-green);
}

.info-box h4 {
    color: var(--ur-dark-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.info-box h4 i {
    color: var(--ur-blue);
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box li i {
    color: var(--ur-green);
    margin-top: 3px;
    flex-shrink: 0;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.module-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--ur-blue);
    transition: var(--transition);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-card h4 {
    color: var(--ur-dark-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-card h4 i {
    color: var(--ur-blue);
}

.module-card ul {
    list-style: none;
    padding-left: 0;
}

.module-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.module-card li:last-child {
    border-bottom: none;
}

.module-card li i {
    color: var(--ur-green);
    margin-top: 3px;
    flex-shrink: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(0, 133, 66, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ur-green), var(--ur-dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: white;
    font-size: 1.8rem;
}

.feature-item h4 {
    color: var(--ur-dark-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.programme-highlights {
    background: rgba(0, 133, 66, 0.05);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.programme-highlights h3 {
    color: var(--ur-dark-green);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-item i {
    color: var(--ur-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

.apply-cta {
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    color: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 60px 0;
}

.apply-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.apply-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* ====== NEWS SPECIFIC STYLES ====== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 220px;
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--ur-dark-green);
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.news-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.calendar-section {
    background: var(--gray-light);
    padding: 60px 0;
}

.calendar-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}

.calendar-day {
    padding: 10px;
    font-weight: 600;
    color: var(--ur-dark-green);
    background: rgba(0, 133, 66, 0.1);
    border-radius: var(--radius-sm);
}

.calendar-date {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.calendar-date:hover {
    background: rgba(0, 133, 66, 0.05);
}

.calendar-date.has-event {
    background: linear-gradient(135deg, var(--ur-green), var(--ur-dark-green));
    color: white;
    font-weight: 600;
}

.event-list {
    margin-top: 40px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    border-left: 4px solid var(--ur-green);
    transition: var(--transition);
}

.event-item:hover {
    background: rgba(0, 133, 66, 0.05);
    transform: translateX(5px);
}

.event-date {
    text-align: center;
    min-width: 80px;
    background: rgba(0, 133, 66, 0.1);
    padding: 10px;
    border-radius: var(--radius-md);
}

.event-day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ur-dark-green);
}

.event-month {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.webinar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.webinar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.webinar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.webinar-header {
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    color: white;
    padding: 25px;
    text-align: center;
}

.webinar-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.webinar-body {
    padding: 25px;
}

.webinar-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.gallery-section {
    background: var(--gray-light);
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 104, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.press-releases {
    margin-top: 60px;
}

.press-item {
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border-left: 4px solid var(--ur-gold);
    transition: var(--transition);
}

.press-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.press-date {
    color: var(--ur-green);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

/* ====== NEWS ARTICLE STYLES ====== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    padding: 60px 0;
}

.article-main {
    max-width: 800px;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.article-header {
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.article-date {
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-author {
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--ur-dark-green);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.article-excerpt {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    border-left: 4px solid var(--ur-gold);
    padding-left: 20px;
}

.article-featured-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 104, 55, 0.9);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 2rem;
    color: var(--ur-dark-green);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 133, 66, 0.2);
    font-family: 'Poppins', sans-serif;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--ur-dark-green);
    margin: 30px 0 15px;
    font-family: 'Poppins', sans-serif;
}

.article-content h4 {
    font-size: 1.2rem;
    color: var(--ur-dark-green);
    margin: 25px 0 10px;
}

.article-content p {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.article-content ul, .article-content ol {
    margin: 20px 0 20px 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.article-content blockquote {
    border-left: 4px solid var(--ur-green);
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(0, 133, 66, 0.05);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ur-dark-green);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-content blockquote p {
    margin: 0;
}

.article-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 500;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 30px 0;
    box-shadow: var(--shadow-md);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-lg);
}

.widget-header {
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.widget-content {
    padding: 25px;
}

.related-articles-widget .related-articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article-item {
    display: block;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.related-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-article-item:hover {
    transform: translateX(5px);
}

.related-article-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-article-title {
    font-size: 1rem;
    color: var(--ur-dark-green);
    line-height: 1.4;
    font-weight: 500;
    transition: var(--transition);
}

.related-article-item:hover .related-article-title {
    color: var(--ur-green);
}

.share-widget .share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.share-button {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-linkedin { background: #0077b5; }
.share-whatsapp { background: #25d366; }
.share-email { background: var(--ur-green); }

.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: var(--transition);
}

.quick-link:hover {
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
    transform: translateX(5px);
}

.quick-link i {
    color: var(--ur-green);
    width: 20px;
}

.author-box {
    background: rgba(0, 133, 66, 0.05);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-top: 60px;
    border-left: 4px solid var(--ur-green);
}

.author-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ur-green), var(--ur-dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--ur-dark-green);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.author-title {
    color: var(--ur-green);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-tags {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 15px;
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag:hover {
    background: var(--ur-green);
    color: white;
    transform: translateY(-2px);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.article-navigation .nav-item {
    max-width: 45%;
    transition: var(--transition);
}

.article-navigation .nav-item:hover {
    transform: translateX(5px);
}

.nav-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.nav-title {
    font-size: 1.1rem;
    color: var(--ur-dark-green);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.newsletter-cta {
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    color: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 80px;
}

/* ====== HOME PAGE STYLES ====== */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23008542" width="1200" height="600"/><path fill="%23006837" opacity="0.3" d="M0 300L50 283.3C100 266.7 200 233.3 300 216.7C400 200 500 200 600 216.7C700 233.3 800 266.7 900 283.3C1000 300 1100 300 1150 300L1200 300L1200 600L1150 600C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600L0 600Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: 25px 25px 15px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.card-icon.green {
    background: linear-gradient(135deg, var(--ur-green), var(--ur-dark-green));
}

.card-icon.blue {
    background: linear-gradient(135deg, var(--ur-blue), var(--ur-light-blue));
}

.card-icon.gold {
    background: linear-gradient(135deg, var(--ur-gold), #FFA500);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--ur-dark-green);
}

.card-body {
    padding: 0 25px 25px;
    color: var(--text-light);
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stats-section {
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ur-gold);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ====== FOOTER ====== */
footer {
    background: linear-gradient(135deg, var(--ur-dark-green), #004d2e);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--ur-gold), var(--ur-blue));
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--ur-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
    color: var(--ur-gold);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--ur-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ====== FACULTY STYLES ====== */
.faculty-directory {
    padding: 60px 0;
}

.faculty-controls {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.search-container {
    position: relative;
    margin-bottom: 25px;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.search-input:focus {
    outline: none;
    border-color: var(--ur-green);
    box-shadow: 0 0 0 3px rgba(0, 133, 66, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.filter-controls {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--ur-dark-green);
}

.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.filter-select:focus {
    outline: none;
    border-color: var(--ur-green);
}

.filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.filter-tag {
    padding: 8px 16px;
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-tag:hover {
    background: var(--ur-green);
    color: white;
}

.filter-tag.active {
    background: var(--ur-green);
    color: white;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.faculty-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.faculty-image {
    height: 280px;
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.faculty-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.status-available { color: #059669; }
.status-on-leave { color: #DC2626; }
.status-sabbatical { color: #D97706; }

.faculty-content {
    padding: 30px;
}

.faculty-name {
    font-size: 1.5rem;
    color: var(--ur-dark-green);
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.faculty-title {
    color: var(--ur-blue);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faculty-department {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.faculty-expertise {
    margin-bottom: 20px;
}

.expertise-title {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    padding: 4px 10px;
    background: var(--gray-light);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.faculty-contact {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--ur-green);
    width: 20px;
}

.faculty-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.category-btn:hover {
    background: rgba(0, 133, 66, 0.1);
    border-color: var(--ur-green);
}

.category-btn.active {
    background: var(--ur-green);
    color: white;
    border-color: var(--ur-green);
}

.faculty-stats {
    background: rgba(0, 133, 66, 0.05);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover {
    border-color: var(--ur-green);
    background: rgba(0, 133, 66, 0.1);
}

.page-btn.active {
    background: var(--ur-green);
    color: white;
    border-color: var(--ur-green);
}

.faculty-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.quick-stat {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quick-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quick-stat i {
    font-size: 2rem;
    color: var(--ur-green);
    margin-bottom: 10px;
}

.icon-vet { color: #008542; }
.icon-anatomy { color: #006837; }
.icon-microbiology { color: #0056B3; }
.icon-surgery { color: #FF6B35; }
.icon-pathology { color: #FFB81C; }
.icon-parasitology { color: #4A90E2; }
.icon-pharmacology { color: #00A896; }
.icon-animal-production { color: #8B4513; }
.icon-aquaculture { color: #1E90FF; }

/* ====== FACULTY PROFILE STYLES ====== */
.profile-container {
    padding: 60px 0;
}

.profile-header {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 40px;
}

.profile-top {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 40px;
}

.profile-image {
    position: relative;
}

.profile-img {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin-bottom: 20px;
}

.profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.content-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    transition: var(--transition);
}

.content-section:hover {
    box-shadow: var(--shadow-lg);
}

.content-section .section-title {
    font-size: 1.5rem;
    color: var(--ur-dark-green);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 133, 66, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.content-section .section-title i {
    color: var(--ur-gold);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ur-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--ur-green);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--ur-green);
}

.timeline-date {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-title {
    font-weight: 600;
    color: var(--ur-dark-green);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.timeline-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.publication-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.publication-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.publication-item:last-child {
    border-bottom: none;
}

.pub-title {
    font-weight: 600;
    color: var(--ur-dark-green);
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.pub-details {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.pub-link {
    color: var(--ur-green);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.pub-link:hover {
    color: var(--ur-dark-green);
    transform: translateX(5px);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.course-card {
    background: var(--gray-light);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--ur-green);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.course-code {
    color: var(--ur-green);
    font-weight: 600;
    margin-bottom: 5px;
}

.course-name {
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.course-level {
    font-size: 0.85rem;
    color: var(--text-light);
}

.sidebar-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    transition: var(--transition);
}

.sidebar-section:hover {
    box-shadow: var(--shadow-lg);
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--ur-dark-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Poppins', sans-serif;
}

.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.profile-stat-item {
    text-align: center;
    padding: 15px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.profile-stat-item:hover {
    background: rgba(0, 133, 66, 0.1);
}

.profile-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ur-green);
    margin-bottom: 5px;
}

.profile-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-item {
    padding: 15px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--ur-blue);
    transition: var(--transition);
}

.project-item:hover {
    transform: translateX(5px);
}

.project-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ur-dark-green);
}

.project-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.status-ongoing { background: #D1FAE5; color: #065F46; }
.status-completed { background: #DBEAFE; color: #1E40AF; }

.affiliation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: var(--transition);
}

.affiliation-item:hover {
    background: rgba(0, 133, 66, 0.1);
    transform: translateX(5px);
}

.research-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.research-tag {
    background: rgba(0, 133, 66, 0.1);
    color: var(--ur-green);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
}

.research-tag:hover {
    background: var(--ur-green);
    color: white;
    transform: translateY(-3px);
}

/* ====== DEAN'S WELCOME PAGE STYLES ====== */
.header {
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    color: var(--white);
    padding: 100px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 600,75 400,75S200,50 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
}

.header-content { 
    position: relative; 
    z-index: 2; 
}

.header h1 { 
    font-size: 2.8rem; 
    margin-bottom: 15px; 
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 20px;
}

.main-content { 
    padding: 60px 0; 
}

.grid { 
    display: grid; 
    grid-template-columns: 1fr 2fr; 
    gap: 40px; 
}

.dean-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    position: sticky;
    top: 20px;
    border-top: 5px solid var(--ur-gold);
}

.dean-img {
    width: 150px; 
    height: 150px;
    background: linear-gradient(135deg, var(--ur-green), var(--ur-dark-green));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.dean-name { 
    font-size: 1.5rem; 
    color: var(--ur-dark-green); 
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.dean-title { 
    color: var(--ur-blue); 
    font-weight: 600; 
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.welcome-content { 
    padding: 20px 0; 
}

.section { 
    margin-bottom: 40px; 
}

.highlight {
    background: rgba(0, 133, 66, 0.05);
    border-left: 4px solid var(--ur-green);
    padding: 25px;
    margin: 25px 0;
    font-style: italic;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quote-author {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: 600;
    color: var(--ur-green);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.vm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--ur-green);
}

.vm-card:nth-child(2) {
    border-top-color: var(--ur-blue);
}

.vm-card h4 {
    font-size: 1.2rem;
    color: var(--ur-dark-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.vm-card h4 i { 
    font-size: 1.4rem; 
}

.dean-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ur-green);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.dean-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ur-green);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-text { 
    font-size: 0.95rem; 
    color: var(--text-light);
    line-height: 1.4;
}

.cta {
    background: linear-gradient(135deg, var(--ur-dark-green), var(--ur-green));
    color: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,100L50,90C100,80,200,60,300,60C400,60,500,80,600,90C700,100,800,100,900,90C1000,80,1100,60,1150,50L1200,40L1200,0L1150,0C1100,0,1000,0,900,0C800,0,700,0,600,0C500,0,400,0,300,0C200,0,100,0,50,0L0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.cta-content { 
    position: relative; 
    z-index: 2; 
}

.cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta-buttons {
    display: flex; 
    gap: 15px; 
    justify-content: center;
    margin-top: 25px; 
    flex-wrap: wrap;
}

.cta .btn {
    padding: 14px 30px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.cta .btn-primary {
    background: var(--ur-gold);
    color: var(--ur-dark-green);
    font-weight: 600;
}

.cta .btn-primary:hover {
    background: #ffcc33;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 184, 28, 0.2);
}

.cta .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--ur-green);
    transform: translateY(-3px);
}

/* ====== ADDITIONAL UTILITY STYLES ====== */
.info-box-content {
    background: rgba(0, 133, 66, 0.05);
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    border-left: 4px solid var(--ur-blue);
}

.testimonial-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    border-left: 4px solid var(--ur-gold);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-small {
    width: 40px;
    height: 40px;
    background: var(--ur-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.profile-contact-card {
    background: rgba(0, 133, 66, 0.05);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    border-left: 4px solid var(--ur-green);
}

/* ====== ANIMATIONS ====== */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    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); }
}

/* ====== RESPONSIVE MEDIA QUERIES ====== */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .mega-menu {
        width: 700px;
    }
}

@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mega-menu {
        width: 100%;
        left: 0;
        right: 0;
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .programme-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .grid { 
        grid-template-columns: 1fr; 
    }
    
    .dean-card { 
        position: static; 
        max-width: 400px; 
        margin: 0 auto 40px;
    }
}

@media (min-width: 993px) {
    .mobile-nav {
        display: none !important;
    }
    .mobile-menu-btn {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .profile-top {
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .programme-tabs {
        margin: 30px -15px;
        padding: 0 15px 10px;
    }
    
    .tab-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mobile-nav {
        width: 280px;
        right: -280px;
    }
    
    .programme-details {
        grid-template-columns: 1fr;
    }
    
    .curriculum-grid,
    .features-grid,
    .programmes-grid,
    .news-grid,
    .webinar-grid,
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .apply-cta {
        padding: 40px 25px;
    }
    
    .apply-cta h2 {
        font-size: 1.8rem;
    }
    
    .header { 
        padding: 80px 0 40px; 
    }
    
    .header h1 { 
        font-size: 2.3rem; 
    }
    
    .dean-stats-grid { 
        grid-template-columns: 1fr; 
    }
    
    .vision-mission-grid { 
        grid-template-columns: 1fr; 
    }
    
    .cta { 
        padding: 40px 25px; 
    }
    
    .cta-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
    
    .cta .btn { 
        width: 100%; 
        max-width: 250px; 
        justify-content: center; 
    }
    
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        font-size: 0.9rem;
    }
    
    .calendar-date {
        padding: 10px 5px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .event-date {
        align-self: flex-start;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
    
    .article-title {
        font-size: 2.5rem;
    }
    
    .article-featured-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .apply-cta .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .apply-cta .btn:last-child {
        margin-bottom: 0;
    }
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-excerpt {
        font-size: 1.1rem;
    }
    
    .article-featured-image {
        height: 300px;
    }
    
    .article-content h2 {
        font-size: 1.8rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 30px;
    }
    
    .article-navigation .nav-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .programme-tabs {
        gap: 5px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .apply-cta h2 {
        font-size: 1.6rem;
    }
    
    .programme-sidebar {
        padding: 20px;
    }
    
    .info-box {
        padding: 15px;
    }
    
    .container { 
        padding: 0 15px; 
    }
    
    .header h1 { 
        font-size: 2rem; 
    }
    
    .header p { 
        font-size: 1.1rem; 
    }
    
    .cta { 
        padding: 35px 20px; 
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
    }
    
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-featured-image {
        height: 250px;
    }
    
    .newsletter-cta {
        padding: 40px 20px;
    }
}