/* ===== HOME PAGE STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

/* Hero Banner */
.hero-banner {
    min-height: 85vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: white; padding: 60px 20px; position: relative;
    background-size: cover !important; background-position: center center !important;
    background-repeat: no-repeat !important; width: 100%; overflow: hidden;
}
.hero-banner::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); z-index: 1; }
.hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 3; width: 100%; animation: fadeInUp 1.5s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-title { font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 700; margin-bottom: 20px; line-height: 1.2; color: white; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); }
.hero-subtitle { font-size: clamp(1.1rem, 3vw, 1.5rem); margin-bottom: 15px; color: #ffffff; font-weight: 400; text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); }
.hero-motto { font-size: clamp(1.3rem, 4vw, 1.8rem); font-style: italic; margin-bottom: 30px; font-weight: 600; text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255, 255, 255, 0.3); border: 2px solid white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; cursor: pointer; transition: all 0.3s ease; z-index: 30; backdrop-filter: blur(5px); }
.hero-arrow:hover { background: rgba(255, 255, 255, 0.6); transform: translateY(-50%) scale(1.1); }
.hero-arrow-left { left: 30px; } .hero-arrow-right { right: 30px; }
.hero-indicators { position: absolute; bottom: 30px; left: 0; right: 0; display: flex; justify-content: center; gap: 12px; z-index: 10; flex-wrap: wrap; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); border: 2px solid rgba(255, 255, 255, 0.8); cursor: pointer; transition: all 0.3s ease; }
.hero-dot.active { background: white; transform: scale(1.2); box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }

/* Stats Bar */
.stats-bar { background: white; padding: 40px 20px; box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15); margin-top: -30px; position: relative; z-index: 10; border-radius: 15px; max-width: 1000px; margin-left: auto; margin-right: auto; width: 95%; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-item { padding: 25px 15px; border-radius: 10px; transition: transform 0.3s ease; }
.stat-item:hover { transform: translateY(-5px); }
.stat-item h3 { font-size: clamp(2rem, 5vw, 2.8rem); color: #1a4f8c; margin-bottom: 10px; font-weight: 800; }
.stat-item p { color: #666; font-size: 1rem; font-weight: 600; text-transform: uppercase; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #1a4f8c; margin-bottom: 15px; font-weight: 800; position: relative; padding-bottom: 15px; }
.section-header h2::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, #e63946, #ff6b6b); border-radius: 2px; }
.section-header p { font-size: 1rem; color: #555; max-width: 700px; margin: 0 auto; }
.section-badge { display: inline-block; background: #e63946; color: white; padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 15px; }

/* Page Highlights */
.page-highlights { padding: 80px 20px; background: #f8f9fa; }
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; }
.highlight-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.highlight-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.card-header { padding: 25px 25px 15px; background: #f8f9fa; border-bottom: 1px solid #eee; }
.card-icon { font-size: 2.5rem; color: #1a4f8c; margin-bottom: 15px; }
.card-header h3 { font-size: 1.3rem; color: #1a4f8c; margin-bottom: 10px; font-weight: 700; }
.card-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.card-content p { color: #555; line-height: 1.6; margin-bottom: 20px; font-size: 0.95rem; flex-grow: 1; }
.card-features { margin: 15px 0; padding: 0; list-style: none; }
.card-features li { padding: 6px 0; color: #666; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.card-features li i { color: #2a9d8f; }
.read-more-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 25px; background: #1a4f8c; color: white; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; margin-top: auto; width: fit-content; }
.read-more-btn:hover { background: #2a9d8f; gap: 12px; }

/* Visual Content */
.visual-content-section { padding: 80px 20px; background: white; }
.content-grid { max-width: 1400px; margin: 0 auto; }
.content-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: #f8f9fa; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; margin-bottom: 40px; }
.content-item:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); }
.content-item.reverse { direction: rtl; } .content-item.reverse > * { direction: ltr; }
.content-image { height: 100%; min-height: 350px; position: relative; overflow: hidden; }
.image-slider { width: 100%; height: 100%; position: relative; overflow: hidden; }
.slider-images { width: 100%; height: 100%; position: relative; }
.slider-images img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; visibility: hidden; }
.slider-images img.active { opacity: 1; visibility: visible; z-index: 2; }
.slider-dots { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 20; flex-wrap: wrap; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); border: 2px solid rgba(255, 255, 255, 0.8); cursor: pointer; transition: all 0.3s ease; padding: 0; }
.slider-dot.active { background: white; transform: scale(1.2); box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(255, 255, 255, 0.3); border: 2px solid white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease; z-index: 30; backdrop-filter: blur(5px); }
.slider-arrow:hover { background: rgba(255, 255, 255, 0.5); transform: translateY(-50%) scale(1.1); }
.slider-arrow.left { left: 20px; } .slider-arrow.right { right: 20px; }
.image-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(transparent, rgba(26, 79, 140, 0.9)); color: white; z-index: 25; pointer-events: none; }
.image-overlay h4 { font-size: 1.2rem; margin-bottom: 5px; font-weight: 600; }
.image-overlay p { font-size: 0.85rem; opacity: 0.9; }
.content-text { padding: 40px; }
.content-text h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #1a4f8c; margin-bottom: 15px; font-weight: 700; position: relative; padding-bottom: 10px; }
.content-text h3::after { content: ""; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: linear-gradient(90deg, #e63946, #ff6b6b); border-radius: 2px; }
.content-text p { color: #555; line-height: 1.6; margin-bottom: 20px; font-size: 1rem; }
.content-features { margin: 20px 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.content-features li { padding: 8px 0; color: #444; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.content-features li i { color: #2a9d8f; width: 20px; text-align: center; }
.content-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 25px; background: #1a4f8c; color: white; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; margin-top: 10px; }
.content-cta:hover { background: #2a9d8f; transform: translateY(-2px); gap: 12px; }

/* Departments Showcase */
.departments-showcase { padding: 80px 20px; background: linear-gradient(135deg, #1a4f8c 0%, #2a9d8f 100%); }
.departments-showcase .section-header h2 { color: white; }
.departments-showcase .section-header h2::after { background: white; }
.departments-showcase .section-header p { color: rgba(255, 255, 255, 0.9); }
.departments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1400px; margin: 40px auto 0; }
.department-card { background: white; border-radius: 15px; padding: 35px 25px; text-align: center; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; height: 100%; }
.department-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); }
.department-icon { font-size: 3rem; color: #1a4f8c; margin-bottom: 20px; }
.department-card h4 { font-size: 1.5rem; color: #1a4f8c; margin-bottom: 15px; font-weight: 700; }
.department-card p { color: #666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.department-list { text-align: left; margin: 15px 0 20px; padding-left: 20px; color: #555; list-style-type: disc; flex-grow: 1; }
.department-list li { margin-bottom: 8px; font-size: 0.9rem; }
.department-link { color: #e63946; text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s ease; padding: 10px 0; border-top: 1px solid #eee; margin-top: 10px; }
.department-link:hover { gap: 12px; color: #ff6b6b; }
.btn-view-all { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: white; color: #1a4f8c; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.3s ease; margin-top: 50px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
.btn-view-all:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); gap: 15px; }

/* Partners */
.partners-section { padding: 80px 20px; background: white; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1400px; margin: 40px auto 0; }
.partner-card { background: #f8f9fa; border-radius: 15px; padding: 30px 20px; text-align: center; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; align-items: center; border: 1px solid rgba(0, 0, 0, 0.05); height: 100%; }
.partner-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); border-color: #1a4f8c; }
.partner-logo { width: 120px; height: 120px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; padding: 15px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); border: 3px solid transparent; transition: all 0.3s ease; overflow: hidden; }
.partner-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.partner-card:hover .partner-logo { border-color: #e63946; }
.partner-card h4 { font-size: 1.2rem; color: #1a4f8c; margin-bottom: 10px; font-weight: 700; }
.partner-industry { background: #e63946; color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 15px; display: inline-block; }
.partner-card p { color: #666; font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }
.partner-contact { display: flex; align-items: center; justify-content: center; gap: 10px; color: #555; font-size: 0.85rem; margin-bottom: 20px; }
.partner-contact i { color: #1a4f8c; }
.partner-link { color: #1a4f8c; text-decoration: none; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; padding: 8px 20px; background: rgba(26, 79, 140, 0.1); border-radius: 50px; }
.partner-link:hover { background: #1a4f8c; color: white; gap: 12px; }
.partners-cta { text-align: center; margin-top: 50px; padding: 30px; background: linear-gradient(135deg, rgba(26, 79, 140, 0.05) 0%, rgba(42, 157, 143, 0.05) 100%); border-radius: 15px; max-width: 800px; margin-left: auto; margin-right: auto; }
.partners-cta h3 { color: #1a4f8c; font-size: 1.5rem; margin-bottom: 15px; }
.partners-cta p { color: #555; margin-bottom: 20px; }
.btn-partner { display: inline-flex; align-items: center; gap: 10px; padding: 12px 35px; background: linear-gradient(135deg, #e63946, #ff6b6b); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; }
.btn-partner:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3); gap: 15px; }

/* Video Modal */
.video-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); z-index: 10000; align-items: center; justify-content: center; padding: 20px; }
.video-modal.active { display: flex; }
.modal-content { position: relative; width: 100%; max-width: 800px; }
.close-modal { position: absolute; top: -40px; right: 0; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.close-modal:hover { transform: scale(1.2); }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.text-center { text-align: center; }

@media (max-width: 992px) {
    .content-item { grid-template-columns: 1fr; gap: 0; } .content-item.reverse { direction: ltr; } .content-image { min-height: 300px; } .content-text { padding: 30px; } .hero-arrow { width: 40px; height: 40px; font-size: 1.2rem; } .hero-arrow-left { left: 15px; } .hero-arrow-right { right: 15px; }
}
@media (max-width: 768px) {
    .hero-banner { min-height: 70vh; } .stats-bar { margin-top: -20px; padding: 30px 15px; } .stats-grid { gap: 20px; } .stat-item { padding: 20px; } .page-highlights, .visual-content-section, .departments-showcase, .partners-section { padding: 60px 15px; } .slider-arrow { width: 35px; height: 35px; font-size: 1rem; } .slider-arrow.left { left: 10px; } .slider-arrow.right { right: 10px; } .hero-arrow { width: 35px; height: 35px; font-size: 1rem; } .hero-arrow-left { left: 10px; } .hero-arrow-right { right: 10px; } .content-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-banner { min-height: 60vh; } .card-header, .card-content { padding: 20px; } .content-text { padding: 20px; } .content-text h3 { font-size: 1.3rem; } .department-card { padding: 25px 15px; } .department-card h4 { font-size: 1.3rem; } .partner-card { padding: 20px 15px; } .partner-logo { width: 100px; height: 100px; } .partners-cta { padding: 20px; } .partners-cta h3 { font-size: 1.3rem; } .btn-view-all { padding: 12px 30px; font-size: 0.9rem; }
}
