body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  background: #0a2a4d;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
}

.hero {
  background: #0a2a4d;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  margin-bottom: 10px;
}
.logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}
/* Mission & Vision icons only */
/* Mission & Vision sections */
.mission, .vision {
  text-align: center;   /* centers everything inside */
  margin: 40px auto;
  max-width: 600px;     /* keeps content neat */
}

/* Mission & Vision icons only */
.icon {
  width: 150px;          /* resize logo */
  height: auto;         /* keep aspect ratio */
  display: block;       /* ensures it behaves like a block element */
  margin: 0 auto 15px;  /* centers horizontally + adds spacing below */
}

/* Company Profile section */
.company-profile {
  text-align: center;   /* centers heading + text */
  margin: 40px auto;
  max-width: 700px;     /* keeps content neat */
}

.services-logo {
  position: top;     /* pins image to viewport */
  top: 10;
  left: 0;
  width: 100vw;        /* full viewport width */
  height: 100vh;       /* full viewport height */
  object-fit: cover;   /* keeps aspect ratio, crops if needed */
  display: block;
  
}

.section {
  padding: 60px 20px;
}

.section-title {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.column {
  flex: 1;
  min-width: 300px;
}

.address {
  margin-top: 20px;
  line-height: 1.6;
}
