/* Website Styles - MCS HR System Integration */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.navbar { position: sticky; top: 0; background: white; box-shadow: var(--shadow); z-index: 1000; padding: 15px 0; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; }
.logo a { text-decoration: none; }
.mobile-toggle { display: none; flex-direction: column; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 3px; background: var(--text-dark); margin: 3px 0; transition: all 0.3s; }
.nav-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: all 0.3s; padding: 8px 0; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); }
.btn-register, .btn-download { padding: 8px 20px !important; border-radius: 25px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: white !important; }
.hero-section { position: relative; height: 600px; overflow: hidden; }
.hero-slider { height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); opacity: 0; transition: opacity 1s; }
.slide.active { opacity: 1; }
.slide-content { height: 100%; display: flex; align-items: center; text-align: center; }
.hero-title { font-size: 56px; font-weight: 700; color: white; margin-bottom: 20px; animation: slideInDown 1s; }
.hero-description { font-size: 24px; color: white; margin-bottom: 30px; animation: slideInUp 1s; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }
.btn { padding: 12px 30px; font-size: 16px; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s; display: inline-block; }
.btn-primary { background: white; color: var(--primary-color); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--primary-color); }
.btn-white { background: white; color: var(--primary-color); }
.slider-controls { position: absolute; top: 50%; width: 100%; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 20px; z-index: 3; }
.slider-btn { background: rgba(255,255,255,0.2); border: 2px solid white; color: white; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: all 0.3s; font-size: 20px; }
.slider-btn:hover { background: white; color: var(--primary-color); }
.quick-links-section { padding: 60px 0; background: var(--bg-light); }
.quick-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.quick-link-card { background: white; padding: 40px 30px; border-radius: 15px; text-align: center; text-decoration: none; color: var(--text-dark); box-shadow: var(--shadow); transition: all 0.3s; }
.quick-link-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.quick-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; color: white; }
.quick-link-card h3 { font-size: 20px; margin-bottom: 10px; }
.quick-link-card p { color: var(--text-light); font-size: 14px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
.section-header p { font-size: 18px; color: var(--text-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 40px 30px; border-radius: 15px; box-shadow: var(--shadow); text-align: center; transition: all 0.3s; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-icon { width: 80px; height: 80px; margin: 0 auto 25px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; color: white; }
.service-card h3 { font-size: 20px; margin-bottom: 15px; }
.service-card p { color: var(--text-light); margin-bottom: 20px; }
.service-link { color: var(--primary-color); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.stats-section { padding: 80px 0; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; color: white; }
.stat-number { font-size: 48px; font-weight: 700; margin-bottom: 10px; }
.stat-label { font-size: 16px; opacity: 0.9; }
.cta-section { padding: 80px 0; background: var(--bg-light); text-align: center; }
.cta-content h2 { font-size: 36px; font-weight: 700; margin-bottom: 20px; }
.cta-content p { font-size: 18px; color: var(--text-light); margin-bottom: 30px; }
.footer { background: #1a202c; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: white; font-size: 20px; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: all 0.3s; }
.footer-links a:hover { color: white; padding-left: 5px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 15px; }
.footer-contact i { color: var(--primary-color); }
.footer-contact a { color: rgba(255,255,255,0.8); text-decoration: none; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s; }
.social-link:hover { background: var(--primary-color); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; }
.footer-note { font-style: italic; opacity: 0.7; margin-top: 15px; }
@keyframes slideInDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: white; flex-direction: column; padding: 30px; transition: all 0.3s; box-shadow: var(--shadow-lg); }
    .nav-menu.active { left: 0; }
    .hero-title { font-size: 36px; }
    .hero-description { font-size: 18px; }
    .quick-links-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}
