:root{
	--primary: #7c3aed;
  --primary-light: #a78bfa;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --bg: #0a0e1a;
  --surface: #0f1419;
  --card-bg: rgba(15, 20, 30, 0.4);
  --border: rgba(255,255,255,0.06);
  --text: #e6eef9;
  --text-muted: #94a3b8;
}

* { box-sizing: border-box; }

body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Hero Section */
.hero-section{
  padding: 6rem 0 4rem;
  background: radial-gradient(ellipse at top, rgba(124,58,237,0.15), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(6,182,212,0.1), transparent 60%);
  position: relative;
  overflow: hidden;
}

.min-vh-80{min-height:80vh;display:flex;align-items:center}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--primary-light);
  font-weight: 500;
}

.gradient-text{
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-light-muted{color:var(--text-muted)}

.stats-mini{
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.hero-image-wrapper{
  position: relative;
}

.hero-image-wrapper img{
  border: 1px solid var(--border);
}

.floating-card{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(15, 20, 30, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: float 3s ease-in-out infinite;
}

.floating-card i{font-size:1.5rem}

.card-1{
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2{
  bottom: 15%;
  left: -5%;
  animation-delay: 1.5s;
}

@keyframes float{
  0%, 100%{transform:translateY(0)}
  50%{transform:translateY(-15px)}
}

/* Services Section */
.services-section{
  background: linear-gradient(180deg, transparent, rgba(124,58,237,0.03));
}

.service-card{
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before{
  transform: scaleX(1);
}

.service-card:hover{
  transform: translateY(-8px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 20px 60px rgba(124,58,237,0.2);
}

.service-card.featured{
  border-color: rgba(124,58,237,0.3);
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.04));
}

.service-icon{
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.service-features{
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li{
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.service-features i{font-size:1.125rem}

/* Projects Section */
.projects-section{
  background: var(--surface);
}

.project-card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.project-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.project-image{
  position: relative;
  overflow: hidden;
  height: 240px;
}

.project-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img{
  transform: scale(1.1);
}

.project-overlay{
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.project-tag{
  padding: 0.4rem 1rem;
  background: rgba(124,58,237,0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-content{
  padding: 1.5rem;
}

.project-metrics{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.project-metrics span{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--primary-light);
  font-weight: 500;
}

/* CTA Section */
.cta-section{
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.1), transparent 70%);
}

.cta-card{
  padding: 4rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Buttons */
.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before{
  left: 100%;
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124,58,237,0.4);
}

.btn-outline-light{
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover{
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* Navbar */
.navbar-dark{
  background: rgba(10, 14, 26, 0.8) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-dark .navbar-brand{color:var(--text);font-weight:700;font-size:1.25rem}
.navbar-dark .nav-link{color:rgba(230,238,248,0.8);font-weight:500}
.navbar-dark .nav-link:hover{color:var(--primary-light)}

.brand-mark{
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
}

/* Footer */
.footer-dark{
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

/* Service Detail Cards */
.service-detail-card{
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
}

.service-detail-card:hover{
  transform: translateX(8px);
  border-color: rgba(124,58,237,0.3);
}

.service-check{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(124,58,237,0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.service-check i{
  font-size: 1.5rem;
  color: var(--primary-light);
}

.custom-engagements-card{
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.04));
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Contact Page */
.contact-info-card{
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.contact-form-card{
  padding: 3rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-control{
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
}

.form-control:focus{
  background: rgba(255,255,255,0.04);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(124,58,237,0.15);
  color: var(--text);
}

.form-control::placeholder{
  color: rgba(148,163,184,0.5);
}

.form-label{
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-features i{
  font-size: 1.25rem;
}

/* Utilities */
.text-primary{color:var(--primary-light)!important}
.shadow-lg{box-shadow: 0 25px 60px rgba(0,0,0,0.6)}
.py-7{padding-top:5rem;padding-bottom:5rem}

/* Fixed Navbar */
.fixed-top{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (max-width:768px){
  .hero-section{padding:4rem 0 2rem}
  .min-vh-80{min-height:auto}
  .floating-card{display:none}
  .display-3{font-size:2.5rem}
  .py-7{padding-top:3rem;padding-bottom:3rem}
  .contact-form-card{padding:2rem}
}