@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  color: #444;
  line-height: 1.6;
  background-color: #f4f4f4;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

header {
  background: #003366;
  color: #fff;
  padding-top: 30px;
  min-height: 70px;
  border-bottom: #00509e 3px solid;
}

header a.logo {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}

nav ul {
  padding: 0;
  list-style: none;
}

nav ul li {
  float: right;
  display: inline;
  padding-left: 10px;
  padding-right: 10px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  padding: 5px 10px;
  transition: background 0.3s ease-in-out;
}

nav ul li a:hover {
  background: #00509e;
  color: #fff;
  border-radius: 5px;
}


.service {
  display: flex;
  flex-direction: row;
}

.service-text {
  flex: 1;
  padding-right: 20px;
  color: #fff; 
}

.service-image img {
  max-width: 100%;
  height: auto;
}

.service ul {
  text-align: left;
}


.hero {
  background: url('hero-bg.jpg') no-repeat center center/cover;
  height: 600px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 50px;
  margin: 0;
  font-weight: bold;
}

.hero p {
  font-size: 20px;
  margin: 20px 0;
}

.hero .btn {
  background: #00509e;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.hero .btn:hover {
  background: #003366;
}

.services {
  padding: 50px 0;
  background: #e9f2fb;
}

.services h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #003366;
}

.service {
  text-align: center;
  margin: 20px 0;
}

.service-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #00509e;
}

.service p {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  text-align: left;
}

.contact {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.contact-image {
  flex: 1;
  margin-right: 20px;
}

.contact-text {
  flex: 1;
  text-align: left;
}

.contact-image img {
  max-width: 100%;
  height: auto;
}

.testimonials {
  background: #f4f4f4;
  padding: 50px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #003366;
}

.testimonial {
  text-align: center;
  margin: 20px 0;
}

.testimonial p {
  font-size: 18px;
  font-style: italic;
  color: #555;
}

.testimonial h4 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #00509e;
}

footer {
  background: #003366;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer .footer-left, footer .footer-right {
  display: inline-block;
  vertical-align: top;
}

footer .footer-left {
  width: 50%;
  text-align: left;
}

footer .footer-right {
  width: 50%;
  text-align: right;
}

footer .social-media img {
  width: 30px;
  margin: 0 5px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  display: inline;
  padding: 0 10px;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

footer ul li a:hover {
  color: #00509e;
}
