:root {
    --primary-color: #7d1538; /* UTM Maroon */
    --secondary-color: #f4b942; /* UTM Gold */
    --accent-color: #c41e3a; /* Darker red accent */
    --text-color: #333;
    --bg-color: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(125, 21, 56, 0.1);
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #7d1538 0%, #c41e3a 100%);
    min-height: 100vh;
    color: var(--text-color);
}

.hero-section {
    background: linear-gradient(rgba(125, 21, 56, 0.8), rgba(196, 30, 58, 0.8)), 
                url('/api/placeholder/1920/1080') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.logo-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 50px auto;
    max-width: 800px;
    box-shadow: var(--card-shadow);
    animation: fadeInUp 1s ease-out;
}

.header-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.faculty-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faculty-subtitle {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.talent-management-header {
    background: linear-gradient(135deg, var(--secondary-color), #ffd700);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.talent-management-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.current-datetime {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(125, 21, 56, 0.2);
    color: inherit;
    text-decoration: none;
    border-top-color: var(--secondary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--secondary-color);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.floating-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-nav .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.floating-nav .btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(244, 185, 66, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* UTM Logo styling */
.utm-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.utm-logo {
    height: 100px;
    margin-right: 20px;
}

.utm-text {
    text-align: left;
}

.utm-main-title {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}

.utm-subtitle {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.utm-tagline {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 5px;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .service-card {
        margin: 15px;
    }
    .hero-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .talent-management-header h2 {
        font-size: 2rem;
    }
    .utm-logo-container {
        flex-direction: column;
        text-align: center;
    }
    .utm-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .utm-text {
        text-align: center;
    }
    .utm-main-title {
        font-size: 2.2rem;
    }
    .utm-subtitle {
        font-size: 1.4rem;
    }
}