* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003366;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav-cta {
  background-color: #fdd835;
  color: #000;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
  background-color: #ffe95b;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem 3rem;
  max-width: 500px;
  border-radius: 8px;
}

.overlay .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0073e6;
  margin-bottom: 0.5rem;
}

.overlay h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #002244;
}

.overlay p {
  margin-bottom: 1.5rem;
  color: #333;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta {
  background-color: #fdd835;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta:hover {
  background-color: #ffe95b;
  transform: translateY(-1px);
}

.cta.secondary {
  background: transparent;
  border: 2px solid #fdd835;
  color: #002244;
}

.cta.secondary:hover {
  background: #fdd835;
  color: #000;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background-color: #fff;
  padding: 3rem 2rem;
  text-align: center;
  gap: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-box {
  border: 1px solid #eaeaea;
  padding: 2rem 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366;
}

.feature-box h3 {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

.feature-box p {
  margin-top: 0.75rem;
  color: #555;
  line-height: 1.5;
}

.metrics {
  background: linear-gradient(135deg, #002244, #004a99);
  color: #fff;
  padding: 3rem 2rem;
}

.metrics-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.metric h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metric p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.about {
  background-color: #fff;
  padding: 5rem 2rem;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.about__pic {
  position: relative;
  margin-bottom: 60px;
  right: 50px;
  width: 100%;
}

.about__pic img:first-child {
  width: 600px;
  max-width: none;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  display: block;
}

.about__pic .little_pic {
  position: absolute;
  bottom: -40px;
  right: -350px;
  width: 300px;
  border: 10px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.about-text {
  flex: 1 1 400px;
  max-width: 500px;
}

.about-text .tagline {
  color: #0056b3;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-text h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1rem;
}

.about-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
  color: #333;
}

.about-text .cta {
  background-color: #fdd835;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-text .cta:hover {
  background-color: #ffe95b;
}

.services {
  background-color: #f8f9fa;
  padding: 5rem 2rem;
  text-align: center;
}

.services-header {
  max-width: 700px;
  margin: auto;
  margin-bottom: 3rem;
}

.services-header .tagline {
  color: #0056b3;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 2rem;
  color: #222;
  margin: 0.5rem 0 1rem;
}

.services-header p {
  color: #555;
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.service-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #003366;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.price {
  display: block;
  font-weight: bold;
  color: #fdd835;
  font-size: 1rem;
}

.view-all {
  margin-top: 3rem;
}

.view-all .cta {
  background-color: #fdd835;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-all .cta:hover {
  background-color: #ffe95b;
}

.testimonials {
  background-color: #fff;
  padding: 5rem 2rem;
}

.testimonials-header {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.testimonials-header .tagline {
  color: #0056b3;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.testimonials-header h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1rem;
}

.testimonials-header p {
  color: #555;
  line-height: 1.6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card .quote {
  font-style: italic;
  color: #003366;
  line-height: 1.7;
}

.client-name {
  font-weight: 600;
  color: #002244;
}

.client-meta {
  font-size: 0.9rem;
  color: #555;
}

.owner {
  background-color: #fff;
  padding: 5rem 2rem;
}

.owner-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: auto;
}

.owner-photo img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.owner-text {
  flex: 1 1 400px;
  max-width: 500px;
}

.owner-text .tagline {
  color: #0056b3;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.owner-text h2 {
  font-size: 2rem;
  color: #222;
  margin: 0.5rem 0 1rem;
}

.owner-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.owner-text blockquote {
  font-style: italic;
  color: #003366;
  background: #f8f9fa;
  padding: 1rem;
  border-left: 4px solid #fdd835;
  margin-bottom: 1.5rem;
}

.owner-text .cta {
  background-color: #fdd835;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.owner-text .cta:hover {
  background-color: #ffe95b;
}

.process {
  background-color: #f8f9fa;
  padding: 5rem 2rem;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.process-header .tagline {
  color: #0056b3;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.process-header h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1rem;
}

.process-header p {
  color: #555;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #fdd835;
  color: #002244;
  font-weight: 700;
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #003366;
}

.process-step p {
  color: #555;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(0,34,68,0.95), rgba(0,79,164,0.95)), url('assets/hero_img.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

.quote-section {
  background-color: #f8f9fa;
  padding: 5rem 2rem;
}

.quote-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1100px;
  margin: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.quote-form {
  flex: 1 1 400px;
  background-color: #0056b3;
  color: #fff;
  padding: 3rem 2rem;
}

.quote-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #fff;
}

.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
}

textarea {
  resize: none;
}

.quote-image {
  flex: 1 1 400px;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.footer {
  background-color: #003366;
  color: #fff;
  padding-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem 3rem;
}

.footer h3, .footer h4 {
  margin-bottom: 1rem;
}

.footer p {
  line-height: 1.6;
  color: #dcdcdc;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #dcdcdc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fdd835;
}

.footer-bottom {
  background-color: #002244;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #bbb;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 3rem auto;
  }

  .hero-image {
    min-height: 70vh;
  }

  .about__pic {
    right: 0;
  }

  .about__pic .little_pic {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  nav ul {
    width: 100%;
    justify-content: center;
  }

  .overlay {
    padding: 1.8rem;
    margin: 2.5rem 1rem;
  }

  .hero-image {
    background-position: center 30%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .features,
  .services,
  .testimonials,
  .owner,
  .process,
  .quote-section {
    padding: 4rem 1.5rem;
  }

  .metrics {
    padding: 3rem 1.5rem;
  }

  .quote-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .overlay {
    margin: 2rem 1rem;
  }

  .hero-image {
    background-position: center 35%;
  }

  .about__pic img:first-child {
    width: 100%;
    max-width: 100%;
  }

  .about__pic .little_pic {
    position: static;
    width: 80%;
    margin-top: 1.5rem;
    border-width: 6px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}
