body { font-family: Arial, sans-serif; margin:0; }
header { background:#0b3c5d; color:#fff; padding:15px; }
nav a { color:#fff; margin-right:15px; text-decoration:none; font-weight:bold; }
.hero { padding:20px; background:#f4f6f8; text-align:center; }
.section { padding:10px; }
footer { background:#0b3c5d; color:#fff; text-align:center; padding:10px; }

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0b3c5d;
  padding: 10px 20px;
  color: white;
}

.logo img {
  height: 80px;
}

.title h1 {
  margin: 0;
  font-size: 40px;
  text-align: center;
}

.main-nav {
  background: #1c7293;
  padding: 10px;
  text-align: center;
}

.main-nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a:hover {
  text-decoration: underline;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* Slider container */
/* Slider box */
.slider {
    width: 100%;
    overflow: hidden;
    background: #fff;   /* optional */
}

.slides {
    display: flex;
	transition: transform 0.8s ease-in-out;
}

.slides img {
    width: 100%;
    min-width: 100%;
    height: 400px;           
    object-fit: contain;     
    flex-shrink: 0;
}

/* Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.side-by-side {
  display: flex;          /* THIS IS THE KEY */
  align-items: center;
  gap: 30px;
}

.text-content {
  width: 60%;
}

.image-content {
  width: 40%;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.apply-form {
max-width: 700px;
margin: auto;
background: #f9f9f9;
padding: 30px;
border-radius: 10px;
}


.apply-form label {
font-weight: bold;
display: block;
margin-top: 15px;
}


.apply-form input,
.apply-form select,
.apply-form textarea {
width: 100%;
padding: 10px;
margin-top: 5px;
}


.checkbox-group label {
display: block;
font-weight: normal;
}


.apply-form button {
margin-top: 20px;
background: #1c7293;
color: white;
border: none;
padding: 12px 20px;
font-size: 16px;
cursor: pointer;
}


.apply-form button:hover {
background: #0b3c5d;
}


