body {
  font-family: 'Inter', sans-serif;
  font-size: 1.5em;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #002b5c;
  color: white;
  padding: 15px 0;
}

nav {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links .active {
  text-decoration: underline;
}

.slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideAnimation 15s infinite;
}

#slide1 { background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1350&q=80'); animation-delay: 0s; }
#slide2 { background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1350&q=80'); animation-delay: 5s; }
#slide3 { background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1350&q=80'); animation-delay: 10s; }

@keyframes slideAnimation {
  0% {opacity: 0;}
  5% {opacity: 1;}
  30% {opacity: 1;}
  35% {opacity: 0;}
  100% {opacity: 0;}
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  border-radius: 10px;
}

.intro, .services-preview, .cta, .content {
  width: 80%;
  margin: 60px auto;
  text-align: center;
}

.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.box {
  background: #eef4ff;
  padding: 20px;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  background: #0078ff;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 15px;
  background: #002b5c;
  color: white;
  margin-top: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.container {
    width: 85%;
    margin: auto;
    padding: 40px 0;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.job-card h3 {
    margin-top: 0;
    color: #061a40;
}
.job-card p {
    color: #444;
    line-height: 1.6;
}
.apply-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e63946;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}
.apply-btn:hover {
    background: #b81d2a;
}
.more-content,
.more-content1
 {
  display: none; /* Hides the extra content by default */
}

.read-more-btn,
.read-more-btn1
 {
  background-color: #007bff;
  color: white;
  padding: 8px 15px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}