/* ------------------ */
/* GLOBAL STYLES */
/* ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF;
  margin: 0;
  padding: 0;
}

/* ------------------ */
/* HEADINGS & TYPOGRAPHY */
/* ------------------ */
h1 {
  font-size: 2rem;
  color: #002A4D;
  text-align: center;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  color: #005FA3;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 0.75rem;
}

/* ------------------ */
/* LINKS & BUTTONS    */
/* ------------------ */
a {
  color: #005FA3;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Call-to-Action Button */
.cta-button {
  display: inline-block;
  text-align: center;
  background-color: #005FA3;
  color: white;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  margin-top: 15px;
}

.cta-button:hover {
  background-color: #004b86;
  transform: scale(1.05);
}

/* ------------------ */
/* HEADER & NAVIGATION */
/* ------------------ */
header {
  background-color: #F0F0F0;
  padding: 1rem;
  border-bottom: 1px solid #CCC;
  text-align: center;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Navigation */
nav {
  background: #005FA3;
  padding: 10px 0;
}

nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  color: white;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    text-align: center;
  }

  nav ul li {
    padding: 5px 0;
  }
}

/* ------------------ */
/* HERO SECTIONS      */
/* ------------------ */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 50px 20px;
}

.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 80%;
}

@media (max-width: 600px) {
  .hero-text {
    width: 90%;
    font-size: 1rem;
  }
}

/* ------------------ */
/* SERVICES LAYOUT    */
/* ------------------ */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  text-align: center;
}

.service-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service-box img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.service-box h3 {
  margin-top: 10px;
  font-size: 1.3rem;
}

/* ------------------ */
/* FEATURES LIST STYLING */
/* ------------------ */
.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px; /* Adds spacing between icon and text */
}

.features li strong {
  font-weight: bold;
}

/* ------------------ */
/* PRICING TABLE REFINEMENTS */
/* ------------------ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #CCC;
  padding: 12px;
  text-align: center;
}

.pricing-table th {
  background-color: #005FA3;
  color: white;
  text-align: center;
}

/* Mobile Pricing Table */
@media (max-width: 600px) {
  .pricing-table {
    display: block;
    overflow-x: auto;
  }
}

/* ------------------ */
/* TESTIMONIALS SECTION */
/* ------------------ */
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 400px;
  text-align: center;
}

blockquote {
  font-style: italic;
  color: #555;
  padding: 10px;
  background: #f9f9f9;
  border-left: 4px solid #005FA3;
  margin: 10px 0;
}

/* ------------------ */
/* FOOTER STYLING     */
/* ------------------ */
footer {
  background-color: #F0F0F0;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #CCC;
}

@media (max-width: 600px) {
  .footer {
    font-size: 0.9rem;
  }
}
