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

:root {
  --primary-color: #00e676; /* Vibrant Green */
  --secondary-color: #0b1120; /* Deep Dark Space Blue */
  --text-light: #94a3b8;
  --text-dark: #0f172a;
  --glass-bg: rgba(11, 17, 32, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-light);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--secondary-color);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Navbar */
.navbar {
  transition: all 0.4s ease;
  padding: 1.5rem 0;
  background: transparent;
  z-index: 1000;
}
.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.5px;
}
.navbar-brand i {
  color: var(--primary-color);
  font-size: 2rem;
}

.nav-link {
  color: #cbd5e1 !important;
  font-weight: 500;
  margin: 0 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
  white-space: nowrap;
}
.nav-link:hover {
  color: #fff !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

.btn-custom {
  background: var(--primary-color);
  color: #022c22 !important;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.2);
  text-decoration: none;
  display: inline-block;
}
.btn-custom:hover {
  background: #00c663;
  color: #022c22 !important;
  border-color: #00c663;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.5);
}
.btn-outline-custom {
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(5px);
}
.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(11,17,32,0.95) 0%, rgba(11,17,32,0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(0, 230, 118, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 230, 118, 0.2);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero-title span {
  background: linear-gradient(120deg, var(--primary-color), #00c6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 650px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Base Sections */
.section-padding {
  padding: 120px 0;
}
.section-bg-dark {
  background: #080d18;
}
.section-subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}
.section-title.text-center::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* About Section */
.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.about-image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.about-image-wrapper:hover img {
  transform: scale(1.05);
}
.about-glow {
  position: absolute;
  top: -20%; left: -20%; width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.feature-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #fff;
  font-size: 1.1rem;
}
.feature-list i {
  color: var(--primary-color);
  font-size: 1.5rem;
  background: rgba(0, 230, 118, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Cards (Glassmorphism Services) */
.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}
.glass-card:hover::before {
  left: 150%;
}
.glass-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 230, 118, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.card-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,230,118,0.2), rgba(0,230,118,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 1px solid rgba(0,230,118,0.1);
  transition: transform 0.4s ease;
}
.glass-card:hover .card-icon-wrap {
  transform: rotateY(180deg);
  background: var(--primary-color);
}
.glass-card:hover .card-icon {
  color: var(--text-dark);
}
.card-icon {
  font-size: 2rem;
  color: var(--primary-color);
  transition: color 0.4s ease;
}
.card-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.card-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* Feature Boxes (Advantages) */
.feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.feature-box:hover {
  background: rgba(0, 230, 118, 0.03);
  border-color: rgba(0, 230, 118, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  width: 65px;
  height: 65px;
  background: rgba(0, 230, 118, 0.08);
  color: var(--primary-color);
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}
.feature-box:hover .feature-icon {
  background: var(--primary-color);
  color: #022c22;
  transform: scale(1.1) rotate(5deg);
}
.feature-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Call To Action */
.cta-section {
  position: relative;
  background: linear-gradient(45deg, #0b1120, #0a192f);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  background: #040812;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo i { color: var(--primary-color); }
.footer-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}
.footer-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}
.footer-links a i {
  font-size: 0.8rem;
  margin-right: 8px;
  color: var(--primary-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}
.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}
.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  margin-right: 12px;
  transition: all 0.3s;
  text-decoration: none;
}
.social-icons a:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-5px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 60px;
  padding-top: 25px;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .hero-section { height: auto; min-height: 100vh; }
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.2rem; }
  .navbar-collapse {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  }
  .nav-link { margin: 10px 0; padding-bottom: 0; }
  .nav-item .btn { width: 100%; margin-top: 10px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .section-padding { padding: 60px 0; }
  .cta-title { font-size: 1.8rem; }
  .glass-card { padding: 30px 20px; }
  .cta-section { padding: 60px 20px; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .card-icon-wrap { width: 60px; height: 60px; margin-bottom: 15px; }
  .card-icon { font-size: 1.5rem; }
  .about-image-wrapper { margin-top: 30px; }
}
