/* General */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #111;
}

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

.logo img {
  width: 50px;
}

nav a {
  margin: 0 15px;
  color: #ddd;
  text-decoration: none;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.9;
}

.link {
  margin-left: 20px;
  color: #4facfe;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  padding: 60px 40px;
}

.hero-left {
  max-width: 50%;
}

.hero-left h1 {
  font-size: 3rem;
  margin: 15px 0;
}

.hero-left p {
  color: #aaa;
  margin-bottom: 20px;
}

.tag {
  background: #003;
  color: #4facfe;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Stats & Form */
.hero-right {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  width: 35%;
}

.stats p {
  margin: 8px 0;
  font-size: 1rem;
}

.quote-form {
  margin-top: 20px;
  padding: 15px;
  background: #0f0f0f;
  border-radius: 10px;
}

.quote-form h3 {
  margin-top: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border: none;
  border-radius: 6px;
}

.quote-form button {
  width: 100%;
  margin-top: 10px;
}

/* Services Section */
.services {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.services .card {
  flex: 1;
  margin: 10px;
  padding: 20px;
  background: #111;
  border-radius: 10px;
}

/* Info Section */
.info-section {
  display: flex;
  justify-content: space-between;
  padding: 40px;
}

.info-section .card {
  flex: 1;
  margin: 10px;
  padding: 20px;
  background: #111;
  border-radius: 10px;
}

.info-section ul {
  list-style: none;
  padding: 0;
}

.info-section ul li {
  margin: 8px 0;
}

/* Progress Circle */
.progress-circle {
  margin-top: 10px;
  width: 40px;
  height: 40px;
  border: 5px solid #333;
  border-top: 5px solid #00f2fe;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

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

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  background: #0a0a0a;
  color: #bbb;
  font-size: 0.9rem;
}

.footer a {
  color: #4facfe;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
