/* public/assets/css/style.css */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text-dark); background-color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === NAVIGATION === */
header { background-color: var(--white); box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.navbar { padding: 1rem 0; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { max-height: 60px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a { color: var(--text-dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--secondary-color); }
.hamburger { display: none; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--text-dark); margin: 5px 0; transition: all 0.4s ease-in-out; }

/* === GENERAL & HERO === */
.hero { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: var(--white); padding: 6rem 0; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 1rem; opacity: 0.9; }
.hero p { font-size: 1.1rem; max-width: 700px; margin: 0 auto 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: 5px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary { background-color: var(--accent-color); color: var(--white); }
.btn-primary:hover { background-color: #d97706; transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background-color: var(--white); color: var(--primary-color); }
section { padding: 4rem 0; }
section h2 { text-align: center; font-size: 2rem; color: var(--primary-color); margin-bottom: 1rem; }
.section-subtitle { text-align: center; max-width: 800px; margin: 0 auto 3rem; color: var(--text-light); font-size: 1.1rem; }
.page-header { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: var(--white); padding: 4rem 0; text-align: center; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-header p { color: var(--white); opacity: 0.9; }

/* === HOME PAGE COMPONENTS === */
.mission { background-color: var(--bg-light); }
.mission-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.pillar { background-color: var(--white); padding: 2rem; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); text-align: center; }
.pillar i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 1rem; }
.pillar h3 { color: var(--primary-color); margin-bottom: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background-color: var(--white); padding: 2rem; border-radius: 10px; border: 1px solid var(--border-color); transition: all 0.3s; }
.service-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-5px); }
.service-card i { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 1rem; }
.service-card h3 { color: var(--primary-color); margin-bottom: 1rem; }
.service-card p { color: var(--text-light); margin-bottom: 1rem; }
.learn-more { color: var(--secondary-color); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.learn-more:hover { color: var(--primary-color); }
.values { background-color: var(--bg-light); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.value-item { text-align: center; padding: 1.5rem; }
.value-item i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1rem; }
.value-item h3 { color: var(--primary-color); margin-bottom: 0.5rem; font-size: 1.2rem; }
.value-item p { color: var(--text-light); font-size: 0.95rem; }
.cta { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: var(--white); text-align: center; }
.cta h2 { color: var(--white); }
.cta p { font-size: 1.1rem; margin: 1rem auto 2rem; color: var(--white); }

/* === ABOUT PAGE === */
.about-content { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: center; }
.about-image { text-align: center; }
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; }
.mv-card { background-color: var(--white); padding: 2rem; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.mv-card i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 1rem; }
.mv-card h2 { color: var(--primary-color); margin-bottom: 1rem; text-align: left; }
.mv-card p, .mv-card ul { text-align: left; }
.mission-premises { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); }
.mission-premises h3 { color: var(--primary-color); font-size: 1.1rem; margin-bottom: 1rem; }
.mission-premises ul, .vision-list { list-style: none; }
.mission-premises li, .vision-list li { margin-bottom: 0.8rem; display: flex; gap: 0.8rem; align-items: start; }
.mission-premises li i { color: var(--success-color); font-size: 1rem; margin-top: 0.3rem; }
.vision-list { margin-top: 1.5rem; }
.vision-list li i { color: var(--accent-color); margin-top: 0.3rem; }
.values-detailed { display: grid; gap: 2rem; margin-top: 3rem; }
.value-card { display: flex; gap: 1.5rem; background-color: var(--white); padding: 2rem; border-radius: 10px; border: 1px solid var(--border-color); transition: all 0.3s; }
.value-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateX(10px); }
.value-icon { flex-shrink: 0; }
.value-icon i { font-size: 2.5rem; color: var(--secondary-color); }
.value-content h3 { color: var(--primary-color); margin-bottom: 0.5rem; }
.value-content p { color: var(--text-light); line-height: 1.6; }
.approach-intro { font-size: 1.2rem; font-weight: 600; color: var(--primary-color); text-align: center; margin-bottom: 3rem; }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.approach-item { text-align: center; padding: 2rem; }
.approach-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin: 0 auto 1rem; }
.approach-item h3 { color: var(--primary-color); margin-bottom: 0.5rem; }
.clients-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.client-item { text-align: center; padding: 1.5rem; background-color: var(--bg-light); border-radius: 8px; transition: all 0.3s; }
.client-item:hover { background-color: var(--white); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.client-item i { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 1rem; }
.client-item p { color: var(--text-dark); font-weight: 500; }

/* === SERVICES PAGE === */
.service-content { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.service-content.reverse { grid-template-columns: 1fr 200px; }
.service-content.reverse .service-icon-large { order: 2; }
.service-content.reverse .service-info { order: 1; }
.service-icon-large { text-align: center; padding: 2rem; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-radius: 15px; position: sticky; top: 100px; }
.service-icon-large i { font-size: 5rem; color: var(--white); }
.service-info h2 { color: var(--primary-color); margin-bottom: 0.5rem; text-align: left; }
.service-tagline { color: var(--accent-color); font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; }
.service-description h3 { color: var(--primary-color); margin-top: 2rem; margin-bottom: 1rem; font-size: 1.3rem; }
.service-features { list-style: none; margin: 1.5rem 0; }
.service-features li { margin-bottom: 1rem; display: flex; gap: 1rem; align-items: start; padding: 0.5rem; }
.service-features li i { color: var(--success-color); margin-top: 0.2rem; flex-shrink: 0; }
.service-highlight { display: flex; gap: 1.5rem; background-color: #eff6ff; padding: 1.5rem; border-radius: 10px; border-left: 4px solid var(--secondary-color); margin-top: 2rem; }
.service-highlight i { font-size: 2rem; color: var(--accent-color); flex-shrink: 0; }
.service-highlight h4 { color: var(--primary-color); margin-bottom: 0.5rem; }
.training-approach { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin: 2rem 0; }
.approach-box { background-color: var(--white); padding: 2rem; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); text-align: center; }
.approach-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.approach-icon i { font-size: 2rem; color: var(--white); }
.approach-box h4 { color: var(--primary-color); margin-bottom: 0.5rem; }
.service-cta { background-color: var(--accent-color); color: var(--white); padding: 1.5rem; border-radius: 10px; margin-top: 2rem; text-align: center; }
.service-cta p { margin: 0; font-size: 1.1rem; }
.process-steps { display: flex; align-items: center; justify-content: space-between; margin: 2rem 0; flex-wrap: wrap; gap: 1rem; }
.process-step { text-align: center; flex: 1; min-width: 150px; }
.step-number { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; margin: 0 auto 1rem; }
.process-step h4 { color: var(--primary-color); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--text-light); }
.process-arrow { color: var(--secondary-color); font-size: 1.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.why-card { background-color: var(--bg-light); padding: 2rem; border-radius: 10px; text-align: center; transition: all 0.3s; }
.why-card:hover { background-color: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-5px); }
.why-card i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 1rem; }
.why-card h3 { color: var(--primary-color); margin-bottom: 0.5rem; }
.why-card p { color: var(--text-light); }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* === TEAM PAGE === */
.profile-card-large { background-color: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.profile-image-section { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); padding: 3rem; text-align: center; color: var(--white); }
.profile-avatar { width: 150px; height: 150px; background-color: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; border: 4px solid var(--white); }
.profile-avatar i { font-size: 4rem; color: var(--white); }
.profile-title h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.profile-position { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--accent-color); }
.profile-credentials { font-size: 1.1rem; opacity: 0.9; }
.profile-content { padding: 3rem; }
.profile-section { margin-bottom: 3rem; }
.profile-section:last-child { margin-bottom: 0; }
.profile-section h3 { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
.profile-section h3 i { color: var(--secondary-color); }
.profile-section p { color: var(--text-light); line-height: 1.8; font-size: 1.05rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)); }
.timeline-item { position: relative; margin-bottom: 2rem; padding-left: 2rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.4rem; top: 0; width: 15px; height: 15px; background-color: var(--accent-color); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--bg-light); }
.timeline-date { color: var(--accent-color); font-weight: 600; margin-bottom: 0.5rem; }
.timeline-content h4 { color: var(--primary-color); margin-bottom: 0.3rem; }
.timeline-content p { color: var(--text-light); font-size: 1rem; }
.education-item { display: flex; gap: 1.5rem; align-items: start; background-color: var(--bg-light); padding: 1.5rem; border-radius: 10px; }
.education-item i { font-size: 2.5rem; color: var(--secondary-color); }
.education-item h4 { color: var(--primary-color); margin-bottom: 0.3rem; }
.education-item p { margin: 0; font-size: 1rem; }
.specialization { color: var(--accent-color) !important; font-weight: 600; margin-top: 0.5rem !important; }
.institutions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.institution-badge { display: flex; align-items: center; gap: 1rem; background-color: var(--bg-light); padding: 1rem; border-radius: 8px; transition: all 0.3s; }
.institution-badge:hover { background-color: var(--white); box-shadow: 0 4px 8px rgba(0,0,0,0.1); transform: translateX(5px); }
.institution-badge i { font-size: 1.5rem; color: var(--secondary-color); flex-shrink: 0; }
.institution-badge span { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.expertise-tag { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); padding: 0.6rem 1.2rem; border-radius: 25px; font-size: 0.95rem; font-weight: 500; transition: all 0.3s; }
.expertise-tag:hover { transform: translateY(-3px); box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
.network-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.network-card { background-color: var(--white); padding: 2rem; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); text-align: center; transition: all 0.3s; }
.network-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.network-card i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 1rem; }
.network-card h3 { color: var(--primary-color); margin-bottom: 0.8rem; }
.network-card p { color: var(--text-light); }
.join-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.benefit-item { text-align: center; padding: 1.5rem; }
.benefit-item i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1rem; }
.benefit-item h3 { color: var(--primary-color); margin-bottom: 0.5rem; font-size: 1.1rem; }
.benefit-item p { color: var(--text-light); font-size: 0.95rem; }

/* === CONTACT PAGE === */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.contact-info h2, .contact-form-wrapper h2 { color: var(--primary-color); margin-bottom: 1rem; }
.contact-details { margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-item i { font-size: 1.5rem; color: var(--secondary-color); margin-top: 0.2rem; }
.contact-item h3 { color: var(--primary-color); margin-bottom: 0.3rem; font-size: 1.1rem; }
.contact-item p { color: var(--text-light); }
.contact-form { background-color: var(--bg-light); padding: 2rem; border-radius: 10px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-dark); font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border: 1px solid var(--border-color); border-radius: 5px; font-family: inherit; font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary-color); }
.alert { padding: 1rem; border-radius: 5px; margin-bottom: 1.5rem; }
.alert-success { background-color: #d1fae5; color: #065f46; border-left: 4px solid var(--success-color); }
.alert-error { background-color: #fee2e2; color: #991b1b; border-left: 4px solid var(--error-color); }
.alert ul { margin-left: 1.5rem; }

/* === FOOTER === */
footer { background-color: var(--text-dark); color: var(--white); padding: 3rem 0 1rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3 { margin-bottom: 1rem; color: var(--white); }
.footer-section p { color: #d1d5db; margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section ul li a { color: #d1d5db; text-decoration: none; transition: color 0.3s; }
.footer-section ul li a:hover { color: var(--accent-color); }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: var(--secondary-color); color: var(--white); border-radius: 50%; text-decoration: none; transition: background-color 0.3s, transform 0.3s; }
.social-links a:hover { background-color: var(--accent-color); transform: scale(1.1); }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter-form input { flex: 1; padding: 0.8rem; border: none; border-radius: 5px; font-size: 0.95rem; }
.newsletter-form button { padding: 0.8rem 1.5rem; background-color: var(--accent-color); color: var(--white); border: none; border-radius: 5px; font-weight: 600; cursor: pointer; transition: background-color 0.3s; }
.newsletter-form button:hover { background-color: #d97706; }
#newsletter-message { margin-top: 0.5rem; font-size: 0.9rem; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #374151; }
.footer-bottom p { color: #9ca3af; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu { display: none; position: absolute; top: 80px; left: 0; right: 0; background-color: var(--white); flex-direction: column; width: 100%; padding: 1rem 0; box-shadow: 0 4px 6px rgba(0,0,0,0.1); text-align: center; }
    .nav-menu li { padding: 0.8rem 1rem; }
    .nav-menu.active { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
    .hero h1 { font-size: 2rem; }
    .contact-wrapper, .services-grid, .values-grid, .footer-content { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .about-content, .mv-grid { grid-template-columns: 1fr; }
    .value-card { flex-direction: column; text-align: center; }
    .service-content, .service-content.reverse { grid-template-columns: 1fr; }
    .service-content.reverse .service-icon-large, .service-content.reverse .service-info { order: initial; }
    .service-icon-large { position: static; }
    .process-steps { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); }
    .profile-content { padding: 2rem 1.5rem; }
    .timeline { padding-left: 1.5rem; }
    .institutions-grid { grid-template-columns: 1fr; }
    .expertise-tags { justify-content: center; }
}

