/* Modern Color Scheme - Dark tech theme with vibrant accents */
:root {
  --primary-color: #0a192f; /* Deep navy blue */
  --secondary-color: #64ffda; /* Bright cyan accent */
  --accent-color: #f06292; /* Pink accent for CTAs */
  --text-primary: #ccd6f6; /* Light blue-gray text */
  --text-secondary: #8892b0; /* Muted blue-gray */
  --background-dark: #020c1b; /* Very dark blue */
  --background-light: #112240; /* Dark blue */
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  --success-color: #64ffda;
  --warning-color: #ffd700;
  --error-color: #ff6b6b;
}

/* Override existing colors */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--background-dark);
  line-height: 1.6;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Hero Section Improvements */
.hero_area {
  background: var(--gradient-2);
  position: relative;
}

.hero_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2364ffda' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.slider_section h1,
.slider_section h3 {
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slider_section .btn-box a {
  background: var(--accent-color);
  color: white;
  padding: 12px 35px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240, 98, 146, 0.3);
}

.slider_section .btn-box a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 98, 146, 0.4);
}

/* Modern Service Cards */
.service_section {
  background: var(--background-light);
}

.service_section .box {
  background: var(--background-dark);
  border: 1px solid rgba(100, 255, 218, 0.1);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.service_section .box:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.service_section .box h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.service_section .box p {
  color: var(--text-secondary);
}

/* Modern Buttons */
.btn-primary,
.custom_nav-container .navbar-nav .nav-item .nav-link span {
  background: var(--accent-color);
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e91e63;
  transform: translateY(-2px);
}

/* Navigation Improvements */
.custom_nav-container {
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary-color);
}

/* Info Section */
.info_section {
  background: var(--background-light);
  color: var(--text-primary);
}

.info_section h5 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.info_section p,
.info_section a {
  color: var(--text-secondary);
}

.info_section a:hover {
  color: var(--secondary-color);
}

/* Contact Form Styling */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--background-light);
  border-radius: 10px;
  border: 1px solid rgba(100, 255, 218, 0.1);
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  flex: 1;
}

.contact-form label {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: var(--background-dark);
  border: 1px solid rgba(100, 255, 218, 0.2);
  border-radius: 5px;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.contact-method {
  text-align: center;
  padding: 30px;
  background: var(--background-light);
  border-radius: 10px;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
}

.contact-method i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.contact-method h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-method a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Code Blocks for Technical Content */
pre, code {
  background: var(--background-light);
  color: var(--secondary-color);
  border-radius: 5px;
  padding: 2px 6px;
  font-family: 'Fira Code', monospace;
}

pre {
  padding: 20px;
  overflow-x: auto;
}

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

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

/* Responsive Improvements */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .contact-form .form-row {
    flex-direction: column;
  }
  
  .contact-form {
    padding: 20px;
  }
}