:root { --primary: #6366f1; --primary-dark: #4f46e5; --secondary: #ec4899; --dark: #0f172a; --dark-light: #1e293b; --gray: #64748b; --gray-light: #94a3b8; --light: #f8fafc; --white: #ffffff; --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.6; color: var(--dark); background-color: var(--white); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--dark); }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.btn-gradient { background: var(--gradient); color: var(--white) !important; border: none; border-radius: 50px; padding: 12px 32px; font-weight: 600; transition: all 0.3s ease; box-shadow: var(--shadow); }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); opacity: 0.9; }
.btn-outline-light { border: 2px solid var(--white); color: var(--white); border-radius: 50px; padding: 12px 32px; font-weight: 600; background: transparent; transition: all 0.3s ease; }
.btn-outline-light:hover { background: var(--white); color: var(--dark); }
.section-padding { padding: 100px 0; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; }
.section-subtitle { color: var(--gray); text-align: center; max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }
.navbar { background: rgba(15, 23, 42, 0.95) !important; backdrop-filter: blur(10px); padding: 15px 0; transition: all 0.3s ease; }
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow-lg); }
.navbar-brand { font-size: 1.5rem; font-weight: 800; color: var(--white) !important; }
.nav-link { color: rgba(255, 255, 255, 0.8) !important; font-weight: 500; padding: 8px 16px !important; margin: 0 4px; border-radius: 8px; transition: all 0.3s ease; }
.nav-link:hover { color: var(--white) !important; background: rgba(255, 255, 255, 0.1); }
.navbar-toggler { border: none; padding: 8px; }
.navbar-toggler:focus { box-shadow: none; }
.hero-section { min-height: 100vh; background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-section::before { content: ""; position: absolute; width: 600px; height: 600px; background: var(--gradient); border-radius: 50%; filter: blur(150px); opacity: 0.3; top: -200px; right: -200px; }
.hero-section::after { content: ""; position: absolute; width: 400px; height: 400px; background: var(--secondary); border-radius: 50%; filter: blur(120px); opacity: 0.2; bottom: -100px; left: -100px; }
.hero-content { position: relative; z-index: 1; }
.hero-title { font-size: 3.5rem; font-weight: 800; color: var(--white); margin-bottom: 1.5rem; line-height: 1.1; }
.hero-subtitle { font-size: 1.25rem; color: var(--gray-light); margin-bottom: 2rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { position: relative; z-index: 1; }
.hero-image img { border-radius: 20px; box-shadow: var(--shadow-xl); }
.hero-logo-wrapper { position: relative; display: inline-block; animation: float 6s ease-in-out infinite; }
.hero-logo { max-width: 220px; height: auto; opacity: 0.5; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15)); transition: all 0.5s ease; border-radius: 0; box-shadow: none; }
.hero-logo-wrapper:hover .hero-logo { transform: scale(1.03); opacity: 0.6; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.features-section { background: var(--light); }
.feature-card { background: var(--white); border-radius: 20px; padding: 40px 30px; text-align: center; transition: all 0.3s ease; box-shadow: var(--shadow); height: 100%; }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.feature-icon { width: 80px; height: 80px; background: var(--gradient); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: var(--white); }
.feature-card h4 { margin-bottom: 1rem; font-size: 1.25rem; }
.feature-card p { color: var(--gray); margin-bottom: 0; }
.services-section { background: var(--white); }
.service-card { background: var(--light); border-radius: 20px; padding: 40px; height: 100%; transition: all 0.3s ease; border: 2px solid transparent; }
.service-card:hover { border-color: var(--primary); background: var(--white); box-shadow: var(--shadow-lg); }
.service-icon { width: 60px; height: 60px; background: var(--gradient); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--white); margin-bottom: 1.5rem; }
.service-card h4 { margin-bottom: 1rem; }
.service-card p { color: var(--gray); margin-bottom: 1.5rem; }
.service-card ul { list-style: none; padding: 0; margin: 0; }
.service-card ul li { padding: 8px 0; color: var(--gray); display: flex; align-items: center; }
.service-card ul li i { color: var(--primary); margin-right: 10px; }
.projects-section { background: var(--light); color: var(--dark); }
.projects-section .section-title { color: var(--dark); }
.projects-section .section-subtitle { color: var(--gray); }
.project-card { background: var(--white); border-radius: 20px; overflow: hidden; transition: all 0.3s ease; box-shadow: var(--shadow); border: 1px solid rgba(0, 0, 0, 0.05); }
.project-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--primary); }
.project-image { height: 120px; background: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.project-image i { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.project-content { padding: 25px; }
.project-content h4 { color: var(--dark); margin-bottom: 0.5rem; font-size: 1.15rem; }
.project-content p { color: var(--gray); margin-bottom: 1rem; font-size: 0.95rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.project-tag { background: var(--light); color: var(--gray); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; border: 1px solid rgba(0, 0, 0, 0.08); }
.courses-section { background: var(--light); }
.course-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; height: 100%; }
.course-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.course-header { background: var(--gradient); padding: 30px; text-align: center; }
.course-header i { font-size: 3rem; color: var(--white); margin-bottom: 1rem; display: block; }
.course-header h4 { color: var(--white); margin-bottom: 0; }
.course-body { padding: 30px; }
.course-body p { color: var(--gray); margin-bottom: 1.5rem; }
.course-info { display: flex; justify-content: space-between; margin-bottom: 1rem; color: var(--gray); }
.course-price { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; }
.about-section { background: var(--white); }
.about-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-xl); }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--gray); margin-bottom: 1.5rem; }
.about-stats { display: flex; gap: 3rem; margin-top: 2rem; }
.stat-item h3 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.stat-item p { color: var(--gray); margin-bottom: 0; }
.team-section { background: var(--light); }
.team-card { background: var(--white); border-radius: 20px; padding: 30px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.team-avatar { width: 120px; height: 120px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--white); margin: 0 auto 1.5rem; }
.team-card h4 { margin-bottom: 0.5rem; }
.team-card .role { color: var(--primary); font-weight: 600; margin-bottom: 1rem; }
.team-card p { color: var(--gray); margin-bottom: 1.5rem; }
.team-social { display: flex; justify-content: center; gap: 1rem; }
.team-social a { width: 40px; height: 40px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray); transition: all 0.3s ease; }
.team-social a:hover { background: var(--gradient); color: var(--white); }
.consulting-section { background: var(--white); }
.consulting-card { background: var(--light); border-radius: 20px; padding: 40px; height: 100%; }
.consulting-card h4 { margin-bottom: 1rem; display: flex; align-items: center; }
.consulting-card h4 i { color: var(--primary); margin-right: 15px; font-size: 1.5rem; }
.consulting-card p { color: var(--gray); }
.contact-section { background: var(--dark); color: var(--white); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-subtitle { color: var(--gray-light); }
.contact-form { background: var(--dark-light); border-radius: 20px; padding: 40px; }
.form-control { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 10px; padding: 15px 20px; color: var(--white); margin-bottom: 1rem; }
.form-control:focus { background: rgba(255, 255, 255, 0.15); border-color: var(--primary); box-shadow: none; color: var(--white); }
.form-control::placeholder { color: var(--gray-light); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; cursor: pointer; }
select.form-control option { background-color: var(--dark); color: var(--white); }
@supports (-webkit-appearance: none) { select.form-control option { background-color: #0f172a; color: #ffffff; } }
textarea.form-control { min-height: 150px; resize: none; }
.contact-info { padding: 40px; }
.contact-info h3 { color: var(--white); margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; margin-bottom: 2rem; }
.contact-info-item i { width: 50px; height: 50px; background: var(--gradient); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--white); margin-right: 1rem; }
.contact-info-item h5 { color: var(--white); margin-bottom: 0.25rem; }
.contact-info-item p { color: var(--gray-light); margin-bottom: 0; }
.cta-section { background: var(--gradient); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn { background: var(--white); color: var(--primary); border-radius: 50px; padding: 15px 40px; font-weight: 600; transition: all 0.3s ease; }
.cta-section .btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.footer-section { background: var(--dark); color: var(--white); padding: 80px 0 30px; }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 0; }
.footer-title { color: var(--white); font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--gray-light); transition: all 0.3s ease; }
.footer-links a:hover { color: var(--white); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { color: var(--gray-light); margin-bottom: 1rem; display: flex; align-items: center; }
.footer-contact li i { color: var(--primary); }
.social-links { display: flex; gap: 1rem; }
.social-link { width: 45px; height: 45px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.3s ease; }
.social-link:hover { background: var(--gradient); color: var(--white); transform: translateY(-3px); }
.footer-divider { border-color: rgba(255, 255, 255, 0.1); margin: 40px 0 30px; }
.copyright { color: var(--gray-light); font-size: 0.9rem; }
.footer-legal-link { color: var(--gray-light); font-size: 0.9rem; }
.footer-legal-link:hover { color: var(--white); }
.footer-description { color: rgba(255, 255, 255, 0.7); font-size: 1rem; line-height: 1.6; }
.page-header { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%); padding: 150px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ""; position: absolute; width: 500px; height: 500px; background: var(--gradient); border-radius: 50%; filter: blur(150px); opacity: 0.2; top: -200px; right: -200px; }
.page-header h1 { color: var(--white); font-size: 3rem; margin-bottom: 1rem; }
.page-header p { color: var(--gray-light); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
@media (max-width: 991.98px) { .hero-title { font-size: 2.5rem; } .section-title { font-size: 2rem; } .about-stats { gap: 2rem; } .navbar-collapse { background: var(--dark); padding: 20px; border-radius: 15px; margin-top: 15px; } }
@media (max-width: 767.98px) { .hero-title { font-size: 2rem; } .hero-subtitle { font-size: 1rem; } .section-padding { padding: 60px 0; } .about-stats { flex-direction: column; gap: 1.5rem; } .hero-buttons { flex-direction: column; } .hero-buttons .btn { width: 100%; text-align: center; } .page-header { padding: 120px 0 60px; } .page-header h1 { font-size: 2rem; } }

/* Logo Styles */
.navbar-logo { height: 45px; width: auto; filter: brightness(0) invert(1); transition: all 0.3s ease; }
.navbar-logo:hover { transform: scale(1.05); }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }
@media (max-width: 767.98px) { .navbar-logo { height: 35px; } .footer-logo { height: 30px; } }

/* Brand Text Styles */
.brand-text { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.footer-brand .brand-text { font-size: 1.3rem; }
@media (max-width: 767.98px) { .brand-text { font-size: 1.2rem; } .footer-brand .brand-text { font-size: 1.1rem; } }

/* CEO Vision Section - Elegant Style */
.ceo-vision-section { background: var(--light); }
.vision-header { text-align: center; margin-bottom: 2.5rem; }
.vision-label { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 0.75rem; }
.vision-title { font-size: 1.5rem; font-weight: 600; color: var(--dark); margin: 0; line-height: 1.4; }
.ceo-quote-card--elegant { background: var(--white); border-radius: 16px; padding: 40px 50px; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06); position: relative; text-align: left; border: 1px solid rgba(0, 0, 0, 0.04); }
.quote-decoration { position: absolute; top: 40px; left: 50px; width: 3px; height: 40px; background: var(--gradient); border-radius: 2px; opacity: 0.6; }
.ceo-quote--refined { margin-bottom: 1.5rem; padding-left: 20px; }
.ceo-quote--refined p { font-size: 1rem; line-height: 1.85; color: var(--gray); font-style: normal; margin-bottom: 1rem; font-weight: 400; }
.ceo-quote--refined p:last-child { margin-bottom: 0; }
.ceo-quote--refined p strong { color: var(--dark); font-weight: 600; }
.quote-highlight { color: var(--dark) !important; font-weight: 500 !important; margin-top: 1.5rem !important; padding-top: 1rem; border-top: 1px solid var(--light); }
.ceo-signature--minimal { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; margin-top: 0.5rem; }
.signature-line { width: 40px; height: 2px; background: var(--gradient); border-radius: 1px; }
.ceo-info .ceo-name { display: block; font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.ceo-info .ceo-role { display: block; font-size: 0.8rem; color: var(--gray); font-weight: 400; }
@media (max-width: 767.98px) { .vision-title { font-size: 1.25rem; } .ceo-quote-card--elegant { padding: 30px 25px; } .quote-decoration { left: 25px; top: 30px; height: 30px; } .ceo-quote--refined { padding-left: 15px; } .ceo-quote--refined p { font-size: 0.95rem; } }
