:root {
  --primary-blue: #101f61;
  --secondary-blue: #2b4cb6;
  --accent-blue: #4171fc;
  --light-blue: #7fd8ff;
  --extra-light-blue: #a6e4ff;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
}

/* Background - Clean White */
body {
  background-color: var(--bg-light);
  min-height: 100vh;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text-primary);
}

/* Navbar Styling */
.navbar {
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-blue) !important;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
}

.nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  color: var(--text-secondary) !important;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-blue) !important;
}

/* Card Styling */
.custom-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(65, 113, 252, 0.1);
  border-color: var(--accent-blue);
}

/* Hero Section */
.hero-section {
/*  padding-top: 40px;
  min-height: 75vh;
*/
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0f7ff 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234171fc' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

/* Hero Text Styles */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.hero-gradient-text {
  background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-text {
  color: var(--text-secondary);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-text-light-bg {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(16, 31, 97, 0.08);
  border: 1px solid var(--border-light);
}

/* Button Styling */
.btn-primary-custom {
  background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue));
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: white;
}

.btn-primary-custom:hover {
  background: linear-gradient(45deg, var(--secondary-blue), var(--accent-blue));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(65, 113, 252, 0.2);
  color: white;
}

.btn-light-custom {
  background: var(--bg-white);
  color: var(--primary-blue);
  border: 2px solid var(--border-light);
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-light-custom:hover {
  background: var(--accent-blue);
  color: white;
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(65, 113, 252, 0.2);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--accent-blue);
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
  background: var(--accent-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(65, 113, 252, 0.2);
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

.section-title {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* Feature Icons */
.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 16px rgba(65, 113, 252, 0.15);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: white;
  padding: 60px 0 30px;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-blue);
}

/* Badge Styling */
.badge-custom {
  background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
  color: white;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
}

/* Tech Stack Items */
.tech-stack-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-stack-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: 0 10px 20px rgba(65, 113, 252, 0.1);
}

/* Form Styling */
.form-control-custom {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  background: var(--bg-white);
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(65, 113, 252, 0.1);
  outline: none;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 40px 0;
}

/* Code Block */
.code-block {
  background: var(--primary-blue);
  color: var(--light-blue);
  border-radius: 10px;
  padding: 1.5rem;
  font-family: 'Courier New', monospace;
  border-left: 4px solid var(--accent-blue);
  overflow-x: auto;
}

/* Statistics */
.stat-number {
  font-size: 3rem !important;
  font-weight: 800 !important;
  color: var(--primary-blue) !important;
  line-height: 1 !important;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 2rem !important;
  }
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

/* Testimonial */
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-blue);
  opacity: 0.1;
  font-family: Georgia, serif;
}

/* Pricing Card */
.pricing-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--accent-blue);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(65, 113, 252, 0.15);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-blue);
  box-shadow: 0 20px 40px rgba(65, 113, 252, 0.15);
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Progress Bar */
.progress-custom {
  height: 8px;
  border-radius: 4px;
  background: var(--border-light);
  overflow: hidden;
}

.progress-custom .progress-bar {
  background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .pricing-card.featured {
    transform: none;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-section {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-text-light-bg {
    padding: 2rem;
  }
  
  .btn-primary-custom,
  .btn-light-custom,
  .btn-outline-light-custom {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.custom-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Loading Spinner */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-light);
  border-radius: 50%;
  border-top-color: var(--accent-blue);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Add this to your CSS file or in a <style> tag in header */
.btn-pricing {
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.btn-pricing .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
}

/* Optional: Add a subtle glow effect */
.btn-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    rgba(255,255,255,0.1) 0%, 
    rgba(255,255,255,0.3) 50%, 
    rgba(255,255,255,0.1) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-pricing:hover::before {
  transform: translateX(100%);
}

/* Payment form */

.step-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.step-indicator.active {
  background-color: #0d6efd;
  color: white;
}

.step-line {
  height: 2px;
  background-color: #e9ecef;
  position: relative;
  top: -8px;
}

.step-label {
  color: #6c757d;
  transition: color 0.3s ease;
}

.step-indicator.active + .step-label {
  color: #0d6efd;
  font-weight: 500;
}

.list-group-item {
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6 !important;
}

.list-group-item:hover {
  background-color: #f8f9fa;
}

.list-group-item input[type="radio"]:checked + div + div .fw-bold {
  color: #0d6efd;
}

/* Blue hamburger button styling */
.navbar-toggler {
  background-color: #0d6efd !important; /* Bootstrap primary blue */
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:hover {
  background-color: #0b5ed7 !important; /* Darker blue on hover */
  opacity: 0.9;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
