/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

/* Navbar Styling - Same as other pages */
.navbar {
  background: linear-gradient(135deg, #213749 0%, #37556F 50%, #213749 100%);
  border-bottom: 1px solid #37556F;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2px 0;
  min-height: 50px;
}

.navbar-brand {
  color: #3ed3fa !important;
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 0 0 3px rgba(62, 211, 250, 0.2);
}

.navbar-brand img {
    height: 48px;
    margin-left: 44px;
    border-radius: 2px;
    width: 200px;
}
.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.navbar-nav .nav-link:hover {
  color: #3ed3fa !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #3ed3fa, #37556F);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Main Content */
.container {
  margin-top: 0px;
  padding: 2px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(55, 85, 111, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(62, 211, 250, 0.1) 0%, transparent 50%);
  background-repeat: repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(62,211,250,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3ed3fa, #37556F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #3ed3fa;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary {
  background: linear-gradient(135deg, #37556F, #3ed3fa);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3ed3fa, #37556F);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(62, 211, 250, 0.3);
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease 0.8s both;
}

.floating-card {
  background: linear-gradient(145deg, rgba(62, 211, 250, 0.1), rgba(55, 85, 111, 0.1));
  border: 1px solid rgba(62, 211, 250, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.floating-card h3 {
  color: #3ed3fa;
  font-weight: 700;
  margin-bottom: 1rem;
}

.floating-card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3ed3fa, #37556F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border: 1px solid rgba(62, 211, 250, 0.2);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3ed3fa, #37556F);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #3ed3fa;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  color: #3ed3fa;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: rgba(62, 211, 250, 0.1);
  color: #3ed3fa;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(62, 211, 250, 0.2);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  padding: 80px 0;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3ed3fa, #37556F);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #3ed3fa, transparent);
  transform: translateY(-50%);
}

.process-step:last-child .step-number::after {
  display: none;
}

.process-step h4 {
  color: #3ed3fa;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step p {
  color: #ccc;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #37556F 0%, #213749 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-description {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  position: relative;
  z-index: 2;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: #37556F;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #000;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(62, 211, 250, 0.2);
}

.footer p {
  color: #ccc;
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .process-step .step-number::after {
    display: none;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .container {
    margin-top: 0px;
    padding: 2px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Back to top button styling */
.back-to-top { 
  position: fixed; 
  right: 16px; 
  bottom: 16px; 
  background: linear-gradient(45deg, #37556F, #3ed3fa); 
  color: #12202b; 
  border: none; 
  border-radius: 50%; 
  width: 50px; 
  height: 50px; 
  font-weight: 800; 
  font-size: 1.2rem;
  box-shadow: 0 8px 18px rgba(62,211,250,0.25); 
  cursor: pointer; 
  display: none; 
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(62,211,250,0.35);
  background: linear-gradient(45deg, #3ed3fa, #37556F);
}

.back-to-top.show { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.1rem !important;
  }
  
  .hero-description {
    font-size: 1rem !important;
  }
  
  .section-title {
    font-size: 2.2rem !important;
  }
  
  .service-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .process-step {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .cta-title {
    font-size: 2rem !important;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin: 0 !important;
  }
  
  /* Navbar mobile fixes */
  .navbar-brand {
    font-size: 0.9rem;
  }
  /* .navbar-brand img {
    height: 20px;
  } */
  .navbar-nav .nav-link {
    font-size: 0.8rem;
    margin: 0 4px;
  }
  
  /* Back to top button mobile */
  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
  }
  
  .service-card {
    padding: 15px 12px;
  }
  
  .process-step {
    padding: 15px 12px;
  }
  
  .cta-title {
    font-size: 1.8rem !important;
  }
}

/* Mobile navbar improvements */
@media (max-width: 768px) {
  .navbar {
    padding: 5px 0;
  }
  
  .navbar-toggler {
    padding: 4px 8px;
    font-size: 0.9rem;
  }
  
  .navbar-collapse {
    background: rgba(33, 55, 73, 0.95);
    margin-top: 10px;
    border-radius: 8px;
    padding: 15px;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 15px;
    margin: 2px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(62, 211, 250, 0.1);
    transform: none;
  }
  
  .dropdown-menu {
    background: rgba(43, 42, 40, 0.95);
    border: 1px solid rgba(62, 211, 250, 0.2);
    margin-top: 5px;
  }
  
  .dropdown-item {
    color: white !important;
    padding: 8px 15px;
  }
  
  .dropdown-item:hover {
    background: rgba(62, 211, 250, 0.1);
    color: #3ed3fa !important;
  }
}
