/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f4f7fc;
  color: #222;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #000;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 5%;
}
nav {
  text-align: right;
  padding-right: 5%;
}
nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #004080, #0066cc);
  color: white;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
}

/* Sections */
section {
  padding: 60px 20px;
}
h2 {
  text-align: center;
  color: #003366;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Services */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0 10%;
}
.card {
  background: white;
  padding: 20px;
  border-left: 5px solid #004080;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

/* Job Listings */
.job-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 10%;
}
.job-card {
  background: #ffffff;
  padding: 20px;
  border-left: 5px solid #007acc;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Resume Upload Form */
form {
  background: white;
  max-width: 600px;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
form input,
form select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}
form button {
  width: 100%;
  padding: 12px;
  background: #004080;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
form button:hover {
  background: #0059b3;
}

/* Contact */
#contact p {
  text-align: center;
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #002b5c;
  color: white;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    text-align: center;
    padding: 10px;
  }
  nav a {
    display: block;
    margin: 10px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .container, section {
    padding: 30px 15px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 100;
}
.whatsapp-float img {
  width: 30px;
  height: 30px;
}
.logo img {
  height: 50px;
  width: auto;
  vertical-align: middle;
}


