/* ULTRA MODERN VANILLA CSS DESIGN SYSTEM */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&display=swap');

:root {
  --primary-color: #0b1120;
  --secondary-color: #1e293b;
  --accent-glow: #3b82f6;
  --accent-bright: #60a5fa;
  --bg-base: #ffffff;
  --bg-offset: #f8fafc;
  
  --text-heavy: #0f172a;
  --text-medium: #334155;
  --text-light: #64748b;
  --bg-deep: #0f172a;
  --bg-dark: #0b1120;
  
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
  
  --accent-gradient: linear-gradient(135deg, var(--accent-glow), var(--accent-bright));
  --dark-gradient: linear-gradient(135deg, var(--bg-deep), var(--bg-dark));
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* Global Utilities */
h1, h2, h3, h4 {
  color: var(--text-heavy);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }
h2 { font-size: clamp(2rem, 6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 4vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 3vw, 1.3rem); }

.text-gradient {
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--primary-color) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Glassmorphism */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-delay-1 {
  animation: float 8s ease-in-out infinite 2s;
}

.floating-delay-2 {
  animation: float 7s ease-in-out infinite 4s;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(255,255,255, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Text Styles */
.logo-container {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: -2px;
  display: flex;
  align-items: center;
}

.logo-text .accent {
  color: var(--accent-glow);
  font-weight: 700;
}

.logo-text span {
  display: inline-block;
}


.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-medium);
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-glow);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-glow), var(--primary-color));
  background-size: 200% auto;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.5s ease;
  animation: gradient-shift 5s ease infinite;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
  color: #fff;
}

/* Hero Section Advanced */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  overflow: hidden;
  background: radial-gradient(circle at 50% -20%, #e0e7ff 0%, var(--bg-base) 70%);
}

/* Abstract Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: #bfdbfe;
  top: -200px;
  left: -200px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: #dbeafe;
  bottom: -100px;
  right: -100px;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #93c5fd;
  top: 40%;
  left: 60%;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 10;
}

.hero-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 150px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 4.5rem;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-graphics {
  flex: 1;
  position: relative;
  height: 600px;
}

/* Vertical Bubbling System */
.bubbles-system {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

.service-bubble {
  position: absolute;
  bottom: -150px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 12px 25px 12px 12px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  animation: float-up infinite ease-in;
  will-change: transform, opacity, filter;
  z-index: 10;
}

.service-bubble:hover {
  animation-play-state: paused;
  transform: scale(1.05) !important;
  z-index: 100;
  opacity: 1 !important;
  filter: blur(0) !important;
  border-color: rgba(59, 130, 246, 0.4);
}

.bubble-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.bubble-content h4 {
  font-size: 0.95rem; margin-bottom: 2px; color: var(--text-heavy);
}

.bubble-content p {
  font-size: 0.75rem; color: var(--text-light); margin: 0;
}

@keyframes float-up {
  0% { transform: translateY(0px) scale(0.8); opacity: 0; filter: blur(4px); }
  10% { opacity: 1; filter: blur(0px); transform: translateY(-80px) scale(1); }
  50% { box-shadow: 0 15px 35px rgba(59,130,246,0.1); }
  85% { opacity: 1; filter: blur(0px); transform: translateY(-680px) scale(1.1); }
  100% { transform: translateY(-800px) scale(1.15); opacity: 0; filter: blur(8px); }
}

.bubble-1 { left: 5%; animation-duration: 12s; animation-delay: -2s; }
.bubble-2 { left: 45%; animation-duration: 15s; animation-delay: -6s; }
.bubble-3 { left: 20%; animation-duration: 10s; animation-delay: -8s; }
.bubble-4 { left: 55%; animation-duration: 16s; animation-delay: -14s; }
.bubble-5 { left: 15%; animation-duration: 14s; animation-delay: -4s; }
.bubble-6 { left: 60%; animation-duration: 12s; animation-delay: -10s; }
.bubble-7 { left: 35%; animation-duration: 15s; animation-delay: -1s; }
.bubble-8 { left: 2%; animation-duration: 11s; animation-delay: -7s; }

/* Brand Marquee */
.brand-marquee {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: transparent;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.marquee-content {
  display: flex;
  width: 200%;
  animation: scroll 20s linear infinite;
  align-items: center;
  justify-content: space-around;
}

.marquee-content img {
  height: 40px;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s;
}

.marquee-content img:hover {
  filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Next-Gen Grid Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.03) 100%);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

/* Standard Pages */
.page-header {
  padding: 160px 0 80px;
  background: radial-gradient(circle at 50% 0%, #e0e7ff 0%, var(--bg-base) 100%);
  text-align: center;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--bg-offset);
  font-family: inherit;
  transition: all 0.3s;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-glow);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.btn-outline {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--accent-glow);
  color: var(--accent-glow);
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--accent-glow);
  color: #fff;
}

/* Premium Footer Modern */
.footer {
  background: var(--bg-deep);
  color: #fff;
  padding: 100px 0 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
}

.footer::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: var(--accent-glow);
  filter: blur(120px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  filter: blur(120px);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

.footer-col h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col h3::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent-glow);
  display: block;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-col a .fa-chevron-right {
  font-size: 0.8rem;
  color: var(--accent-glow);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-col a:hover .fa-chevron-right {
  opacity: 1;
  transform: translateX(0);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
  background: var(--accent-glow);
  border-color: var(--accent-glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.social-icon i {
  opacity: 1 !important;
  transform: none !important;
}

.footer-bottom-bar {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 25px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--accent-glow);
}

.logo-container img { height: 45px; object-fit: contain; }
.menu-toggle { display: none; font-size: 1.5rem; color: var(--text-heavy); cursor: pointer; }

/* RESPONSIVE DESIGN - MEDIA QUERIES */

@media (max-width: 1100px) {
  .hero-text h1 { font-size: 3.5rem; }
  .hero-layout { gap: 40px; }
}

@media (max-width: 968px) {
  .navbar { padding: 15px 0 !important; }
  .logo-container img { height: 35px; }
  
  .menu-toggle { display: block; }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-base);
    flex-direction: column;
    padding: 50px 30px;
    gap: 30px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow-y: auto;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .hero-layout {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
    min-height: auto;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text h1 { font-size: 3rem; }
  .hero-text p { margin: 0 auto 30px; }
  .hero-text div { justify-content: center; }
  
  .hero-graphics {
    width: 100%;
    height: 400px;
  }
  
  .bubbles-system { height: 400px; }
  
  section { padding: 80px 0 !important; }
  .page-header { padding: 140px 0 60px; }
  
  .features-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .hero-text h1 { font-size: 2.5rem; }
  .hero-text p { font-size: 1.1rem; }
  
  .btn-primary { width: 100%; text-align: center; }
  .hero-text div { flex-direction: column; width: 100%; }
  
  .container { padding: 0 20px; }
  
  h2 { font-size: 2.2rem !important; }
  
  .marquee-content img { height: 30px; }

  /* Fixed Footer Grid Utilities */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  
  
/* About Page Specialties */
.process-section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-offset);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  margin-top: 60px;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: rgba(59, 130, 246, 0.1);
  z-index: 1;
}

.process-step {
  padding: 40px 30px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--accent-glow);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-text {
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.leadership-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-base);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease;
}

.member-info {
  padding: 30px;
  text-align: center;
}

.member-role {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent-glow);
  background: rgba(59, 130, 246, 0.05);
  padding: 5px 15px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 15px;
}

.social-pill {
  display: inline-flex;
  gap: 15px;
  margin-top: 20px;
}

.social-pill a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.social-pill a:hover {
  color: var(--accent-glow);
}

@media (max-width: 968px) {
  .process-grid::before { display: none; }
}

