* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  scroll-behavior: smooth;
}

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

/* Sticky Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #2e86de 0%, #1e5bb8 100%);
  color: white;
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Adjust body for fixed navbar */
body {
  padding-top: 60px;
}

/* Header */
header {
  background: linear-gradient(135deg, #2e86de 0%, #1e5bb8 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

header .tagline {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.95;
}

/* Services Section */
.services {
  padding: 80px 20px;
  background-color: white;
}

.services h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: #2e86de;
  font-weight: 700;
}

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

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
  }
}

.service-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2e86de;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  color: #2e86de;
  margin-bottom: 15px;
}

.service-icon i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
}

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

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Quote Section */
.quote-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quote-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #2e86de;
  font-weight: 700;
}

.form-message {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 600;
  display: none;
}

.form-message-success {
  display: block;
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  display: block;
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.quote-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e86de;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #2e86de 0%, #1e5bb8 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(46, 134, 222, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  padding: 40px 20px 20px;
}

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

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #2e86de;
}

.footer-section p {
  line-height: 1.8;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-section a {
  color: #2e86de;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #5ba3f5;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
    font-size: 0.9rem;
  }

  header h1 {
    font-size: 1.8rem;
  }

  header .tagline {
    font-size: 1rem;
  }

  .services h2,
  .quote-section h2 {
    font-size: 1.8rem;
  }

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

  .quote-form {
    padding: 25px;
  }

  .services,
  .quote-section {
    padding: 50px 20px;
  }
}

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

  .nav-brand {
    font-size: 1rem;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.8rem;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .services h2,
  .quote-section h2 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 16px;
  }

  .service-icon {
    font-size: 2rem;
  }
}