﻿body {
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.6;
  color: #333
}

.navbar {
  background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
}

.navbar-brand {
  font-size: 1.5rem;
  color: #fff !important
}

.nav-link {
  color: #fff !important;
  font-weight: 400;
  transition: color 0.3s ease
}

.nav-link:hover,
.nav-link.active {
  color: #ff6f00 !important
}

.hero-section {
  background: linear-gradient(135deg, #1a237e 0%, #303f9f 70%, #ff6f00 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center
}


.btn-primary {
  background: #ff6f00;
  border: #ff6f00;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease
}

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

.btn-outline-light {
  border: 2px solid #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease
}

.btn-outline-light:hover {
  background: #fff;
  color: #1a237e;
  transform: translateY(-2px)
}

.feature-item {
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease
}

.feature-item:hover {
  transform: translateY(-5px)
}

.card {
  border-radius: 15px;
  transition: transform 0.3s ease
}

.card:hover {
  transform: translateY(-5px)
}

.stat-item h4 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem
}

.cta-section {
  background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
  color: #fff
}

.footer-section {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: #fff
}

.contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}

.form-control {
  border-radius: 10px;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  transition: border-color 0.3s ease
}

.form-control:focus {
  border-color: #ff6f00;
  box-shadow: 0 0 0 0.2rem rgba(255, 111, 0, 0.25)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #1a237e
}

.text-primary {
  color: #ff6f00 !important
}

.bg-light {
  background-color: #f8f9fa !important
}

section {
  scroll-margin-top: 80px
}