@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --bg-dark: #07090f;
  --bg-card: #111827;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent-cyan: #00f0ff;
  --accent-blue: #0088ff;
  --glow: 0 0 20px rgba(0, 240, 255, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Animated Orbs */
.bg-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 20s infinite alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-blue);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-cyan);
  bottom: -200px;
  right: -100px;
  animation-duration: 25s;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7, 9, 15, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.3s ease;
}

.logo-link {
  display: block;
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 50px;
  /* Exact CSS filter to colorize black/white image to #00f0ff (Cyan) */
  filter: brightness(0) saturate(100%) invert(64%) sepia(43%) saturate(6295%) hue-rotate(146deg) brightness(104%) contrast(104%);
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: brightness(0) saturate(100%) invert(64%) sepia(43%) saturate(6295%) hue-rotate(146deg) brightness(110%) contrast(110%) drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-cyan);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Sections */
section {
  padding: 100px 50px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Section */
#hero {
  text-align: center;
  padding-top: 150px;
  align-items: center;
}

.hero-subtitle {
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 50px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--accent-cyan);
  border-radius: 30px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
  transform: translateY(-3px);
}

/* Headings */
.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subtitle {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  margin-bottom: 50px;
}

/* About Section */
#about {
  min-height: auto;
  padding-top: 150px;
  padding-bottom: 100px;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-box {
  background: rgba(17, 24, 39, 0.6);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex: 1;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Grid */
#services {
  padding-top: 100px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
  display: inline-block;
  padding: 15px;
  background: rgba(0, 136, 255, 0.1);
  border-radius: 15px;
}

.service-card:hover .service-icon {
  color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  color: var(--text-muted);
}

.service-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 0.9rem;
}

/* Leadership */
#leadership {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.profile-card {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.profile-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.profile-name {
  font-size: 2rem;
  margin-bottom: 5px;
}

.profile-title {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Contact */
#contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.8), transparent);
}

.contact-container {
  display: flex;
  gap: 50px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 60px;
  backdrop-filter: blur(10px);
}

.contact-info {
  flex: 1;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

.contact-item-text h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-item-text a, .contact-item-text span {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-text a:hover {
  color: var(--accent-cyan);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .about-content { flex-direction: column; }
  .contact-container { flex-direction: column; padding: 30px; }
  nav { padding: 20px; }
  .nav-links { display: none; } /* Simplified for mobile purely CSS */
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
