/* Reset and Base Styles
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
} */

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
  color: #ffffff;
}

.techx-logo-animation {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.logo-ring {
  position: absolute;
  border: 2px solid #dc2626;
  border-radius: 50%;
  animation: logoSpin 3s linear infinite;
}

.logo-ring:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.logo-ring:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 20px;
  left: 20px;
  animation-delay: -1s;
  animation-direction: reverse;
}

.logo-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 40px;
  left: 40px;
  animation-delay: -2s;
}

.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #dc2626;
  animation: pulse 2s infinite;
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg);
    border-color: #dc2626;
  }
  50% {
    border-color: #ef4444;
  }
  100% {
    transform: rotate(360deg);
    border-color: #dc2626;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.loading-bar {
  width: 250px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 20px auto;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  border-radius: 2px;
  animation: loadingProgress 3s ease-in-out infinite;
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

/* Navigation */
/* .header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1f2937;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: white;
}

.logo-accent {
  color: #dc2626;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: rgba(31, 41, 55, 0.5);
  padding: 12px 32px;
  border-radius: 50px;
}

.nav-link {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #dc2626;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-container {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 14px;
}

.search-input {
  width: 320px;
  padding: 12px 16px 12px 40px;
  background-color: rgba(31, 41, 55, 0.5);
  border: 1px solid #374151;
  border-radius: 50px;
  color: white;
  font-size: 14px;
}

.search-input::placeholder {
  color: #9ca3af;
}

.search-input:focus {
  outline: none;
  border-color: #dc2626;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
} */

/* Hero Section - New Design */
/* .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
} */

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(220, 38, 38, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #dc2626;
  border-radius: 50%;
  animation: particleFloat var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0.6;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
}
.particle:nth-child(2) {
  top: 60%;
  left: 80%;
}
.particle:nth-child(3) {
  top: 30%;
  left: 70%;
}
.particle:nth-child(4) {
  top: 80%;
  left: 20%;
}
.particle:nth-child(5) {
  top: 10%;
  left: 90%;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
  50% {
    transform: translateY(-40px) translateX(-5px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) translateX(-10px);
    opacity: 1;
  }
}

.security-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  animation: waveMove 15s ease-in-out infinite;
}

.wave-1 {
  animation-delay: 0s;
  opacity: 0.3;
}

.wave-2 {
  animation-delay: -5s;
  opacity: 0.2;
  height: 80px;
}

.wave-3 {
  animation-delay: -10s;
  opacity: 0.1;
  height: 60px;
}

@keyframes waveMove {
  0%,
  100% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(-25%);
  }
}

.hero-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-main {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #dc2626;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.badge-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.hero-main h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #ffffff;
  line-height: 1.1;
}

.highlight {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid #dc2626;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

/* .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
} */


/* .btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
} */

.btn-glow {
  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 {
  background-color: #dc2626;
  color: white;
} */

/* .btn-primary:hover {
  background-color: #b91c1c;
  transform: scale(1.05);
} */

.hero-stats-bar {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
}

.stat-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 20px;
}

/* Threat Monitor */
.threat-monitor {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
}

.monitor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.monitor-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.monitor-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}

.status-indicator.active {
  background: #dc2626;
}

.threat-map {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  position: relative;
  height: 200px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  border-radius: 8px;
}

.threat-point {
  position: absolute;
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.threat-pulse {
  width: 12px;
  height: 12px;
  background: #dc2626;
  border-radius: 50%;
  animation: threatPulse 2s infinite;
  position: relative;
}

.threat-pulse::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  border: 2px solid #dc2626;
  border-radius: 50%;
  animation: threatRipple 2s infinite;
}

@keyframes threatPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

@keyframes threatRipple {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

.threat-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.threat-info span {
  color: #dc2626;
  font-weight: 600;
}

.threat-point:hover .threat-info {
  opacity: 1;
}

.threat-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.threat-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.category-icon.critical {
  background: rgba(220, 38, 38, 0.2);
  color: #dc2626;
}

.category-icon.high {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.category-icon.medium {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.category-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-count {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.category-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.category-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-left: 47px;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  animation: barFill 2s ease-in-out;
}

.bar-fill.critical {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.bar-fill.high {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.bar-fill.medium {
  background: linear-gradient(90deg, #eab308, #facc15);
}

.scan-progress {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 20px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-header span:first-child {
  color: #ffffff;
  font-weight: 500;
}

.progress-percentage {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.1rem;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  border-radius: 4px;
  animation: progressFill 3s ease-in-out;
}

@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: var(--width, 73%);
  }
}

.scan-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.scan-details span:first-child {
  color: rgba(255, 255, 255, 0.8);
}

.scan-time {
  color: #dc2626;
  font-weight: 500;
}

/* Security Dashboard */
.security-dashboard {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h3 {
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}

.status-dot.active {
  background: #dc2626;
}

.security-metrics {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 4px solid;
}

.metric-card:nth-child(1) {
  border-left-color: #dc2626;
}

.metric-card:nth-child(2) {
  border-left-color: #f59e0b;
}

.metric-card:nth-child(3) {
  border-left-color: #eab308;
}

.metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.metric-icon.critical {
  background: rgba(220, 38, 38, 0.2);
  color: #dc2626;
}

.metric-icon.high {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.metric-icon.medium {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.metric-info {
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.security-chart {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 20px;
}

.chart-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.risk-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.risk-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  min-width: 50px;
}

.bar-container {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  animation: barFill 2s ease-in-out;
}

.bar-fill.critical {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.bar-fill.high {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.bar-fill.medium {
  background: linear-gradient(90deg, #eab308, #facc15);
}

.bar-fill.low {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.bar-value {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  min-width: 30px;
  text-align: right;
}

@keyframes barFill {
  from {
    width: 0%;
  }
  to {
    width: var(--width, 100%);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(31, 41, 55, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #ffffff;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features i {
  color: #10b981;
  font-size: 0.9rem;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 20px;
}

/* Enhanced Methodology Section */
.methodology {
  padding: 100px 0;
  background: rgb(0, 0, 0);
}

.methodology-overview {
  margin-bottom: 60px;
}

.methodology-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.method-stat {
  text-align: center;
}

.method-stat .stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 5px;
}

.method-stat .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.methodology-phases {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.phase-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.phase-item:hover {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.1);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.phase-number {
  font-size: 2rem;
  font-weight: 800;
  color: #dc2626;
  min-width: 60px;
}

.phase-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
}

.phase-title {
  flex: 1;
}

.phase-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.phase-duration {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.phase-content {
  padding: 30px;
}

.phase-description {
  margin-bottom: 30px;
}

.phase-description p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1.1rem;
}

.phase-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.phase-activities h4,
.phase-tools h4,
.phase-deliverables h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phase-activities ul,
.phase-deliverables ul {
  list-style: none;
}

.phase-activities li,
.phase-deliverables li {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 20px;
}

.phase-activities li::before,
.phase-deliverables li::before {
  content: "•";
  color: #dc2626;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-tag {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #dc2626;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.methodology-footer {
  margin-top: 60px;
  text-align: center;
}

.methodology-standards h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

.standards-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.standard-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  min-width: 120px;
  transition: all 0.3s ease;
}

.standard-item:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-5px);
}

.standard-item i {
  font-size: 2rem;
  color: #dc2626;
}

.standard-item span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.toggle-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: #ffffff;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: #dc2626;
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.discount-badge {
  background: #dc2626;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #dc2626;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 38, 38, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.price {
  margin-bottom: 30px;
}

.currency {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #dc2626;
}

.period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features i {
  font-size: 0.9rem;
}

.pricing-features .fas.fa-check {
  color: #10b981;
}

.pricing-features .fas.fa-times {
  color: rgba(255, 255, 255, 0.3);
}

.pricing-features .unavailable {
  color: rgba(255, 255, 255, 0.4);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: rgb(0, 0, 0);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
}

.info-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.info-content p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: #dc2626;
  background: rgba(10, 10, 10, 0.8);
  padding: 0 5px;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.close {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #dc2626;
}

.modal-body {
  padding: 30px;
}

.modal-body p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-body h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 20px 0 10px 0;
}

.modal-body ul {
  list-style: none;
  margin-bottom: 20px;
}

.modal-body li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 20px;
}

.modal-body li::before {
  content: "•";
  color: #dc2626;
  position: absolute;
  left: 0;
}

.modal-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc2626;
}

.demo-video {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 60px;
  text-align: center;
  margin-bottom: 20px;
}

.video-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.video-placeholder i {
  font-size: 4rem;
  color: #dc2626;
  margin-bottom: 15px;
}

.video-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.demo-highlights {
  margin-top: 20px;
}

.demo-highlights h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.demo-highlights ul {
  list-style: none;
}

.demo-highlights li {
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 20px;
}

.demo-highlights li::before {
  content: "▶";
  color: #dc2626;
  position: absolute;
  left: 0;
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 3000;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .methodology-stats {
    gap: 30px;
  }

  .phase-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .standards-grid {
    gap: 15px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-card,
  .contact-form {
    padding: 25px;
  }

  .security-dashboard {
    padding: 20px;
  }

  /* .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  } */

  .phase-content {
    padding: 20px;
  }

  .phase-header {
    padding: 20px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .phase-number {
    font-size: 1.5rem;
    min-width: auto;
  }

  .phase-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-menu a:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .pricing-card,
  .contact-form,
  .security-dashboard,
  .phase-item {
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero-background,
  .floating-elements,
  .modal {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .section-header h2,
  .hero-text h1 {
    color: black !important;
    -webkit-text-fill-color: black !important;
  }
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.cert-item i {
  color: #dc2626;
  font-size: 1rem;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  color: #dc2626;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-details span {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 3px;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.newsletter-signup {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.newsletter-signup h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.newsletter-form {
  margin-bottom: 10px;
}

.input-group {
  display: flex;
  gap: 10px;
}

.input-group input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-group .btn {
  padding: 12px 15px;
  min-width: auto;
}

.newsletter-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  transform: translateY(-3px);
}
.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}

.security-badge i {
  color: #10b981;
  font-size: 0.9rem;
}
