
:root {
  --primary-color: #002f6c;
  --primary-dark: #001d42;
  --primary-light: #0047a0;
  --accent-color: #00b4d8;
  --success-color: #28a745;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  color: white;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 47, 108, 0.3);
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 47, 108, 0.4);
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.btn-primary-custom {
  background: var(--primary-color);
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 47, 108, 0.3);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 120px 0 80px;
  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 width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.1s both;
}

.hero-section .lead {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
  animation: fadeInUp 1s ease 0.4s both;
}

.btn-hero {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  margin: 10px;
  transition: all 0.3s ease;
}

.btn-light-custom {
  background: white;
  color: var(--primary-color);
  border: none;
}

.btn-light-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-custom {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats Section */
.stats-section {
  background: white;
  padding: 60px 0;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 47, 108, 0.1);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* What is AMS Section */
.what-is-ams {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ams-description {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 47, 108, 0.08);
}

.ams-description h3 {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ams-description p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.highlight-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-box li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}

.highlight-box li:before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 20px;
}

/* Key Features Section */
.features-section {
  padding: 80px 0;
  background: white;
}

.feature-card {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 47, 108, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 32px;
  color: white;
}

.feature-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card li {
  padding: 8px 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 25px;
  font-size: 15px;
}

.feature-card li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* AI Agents Section */
.agents-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.agent-category {
  background: white;
  border-radius: 15px;
  padding: 35px 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.agent-category:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 47, 108, 0.1);
}

.agent-category h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.agent-category h4 i {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.agent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.agent-tag {
  background: var(--bg-light);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.feature-card i
 {
    font-size: 26px;
    color: white;
    margin-bottom: 20px;
    padding-top: 20px;
}

.agent-tag:hover {
  background: var(--primary-color);
  color: white;
}

/* Safety Section */
.safety-section {
  padding: 80px 0;
  background: white;
}

.safety-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-light);
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 47, 108, 0.15);
}

.safety-icon {
  width: 90px;
  height: 90px;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 40px;
  color: white;
}

.safety-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.safety-card p {
  color: var(--text-dark);
  line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: var(--primary-color);
  color: white;
}

.benefits-section .section-title,
.benefits-section .section-subtitle {
  color: white;
}

.benefit-item {
  display: flex;
  align-items: start;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-content p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 36px;
  }
  
  .hero-section .lead {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .btn-hero {
    padding: 12px 25px;
    font-size: 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .ams-description {
    padding: 30px;
  }
}



  .card-hover {
    transition: all 0.3s ease;
  }

  .card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .card i {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .card:hover i {
    transform: scale(1.2);
    color: #0056b3;
  }
.btn-color{
  border: 1px solid #001f47;
  color: #001f47;
}
.btn-color:hover{
  background-color: #001f47;
  color: white;
}
.btn-color:hover .icon-arrow  {
  color: white !important;
}




  .card-hover {
    transition: all 0.3s ease;
  }

  .card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  }

  .card-hover i {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .card-hover:hover i {
    transform: scale(1.2);
    color: #0056b3;
  }

  .text-color {
    color: #0d6efd;
  }
