body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f7fa;
  color: #1a1a1a;
  line-height: 1.6;
  background-image: url("bg.jpg");
  background-repeat: repeat;
}

header {
  background: linear-gradient(90deg, #13405f, #0d3751);
  color: #ffffff;
  padding: 30px 5px;
  text-align: center;
}

header img {
      max-width: 180px;
      margin-bottom: 15px;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  background: #ffffff;
}
 /* Container holding the image and the text */
.headercontainer {
  position: relative;
  text-align: center;
  color: white;
}
/* Centered text */
.centered {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
} 
h1 {
  color: #FFFFFF;
}

h2 {
  color: #000000;
}

section {
  margin-bottom: 40px;
}

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

.service-box {
      background: white;
      padding: 12px;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }
	
.cta {
  background-color: #ffffff;
  border-left: 6px solid #0b3c5d;
  padding: 25px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

a {
  color: #0b3c5d;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.btn {
      display: inline-block;
      background: linear-gradient(90deg, #0b3c5d, #06283d);
      color: white;
      padding: 6px 10px;
      border-radius: 4px;
      margin-top: 8px;
    }
.btn:hover {
   opacity: 0.8;
}
	
footer {
  background: linear-gradient(90deg, #13405f, #0d3751);
  /* background-color: #0b3c5d; */
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
 
footer img {
      max-width: 180px;
      margin-bottom: 15px;
}
footer a {
  color: #ffffff;
  margin: 0 10px;
}
