* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #87abff, #F0F0F0);
  align-items: center;
  text-align: center;
}
.content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 70px;
  width: 100%;
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1751d8;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  text-align: center;
  z-index: 1;
}
.footer a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer span {
  font-size: 10px;
  margin-top: 3px;
}
.logo {
  margin-top: 20px;
  text-align: center;
}
.logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.logo img {
  width: 75px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
.logo img:hover {
  transform: scale(1.1);
}
.logo svg {
  display: block;
  margin: 10px auto;
  width: 50px;
  height: 20px;
  transition: transform 0.3s ease-in-out;
}
.logo a:hover svg {
  transform: scale(1.2);
}
.company-name {
  font-size: 20px;
  font-weight: 1000;
  color: #1751d8;
  margin-top: 5px;
}
.ceo {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #333;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
.ceo span {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}
.ad-container {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: auto;
  animation: fadeIn 1.5s ease-in-out;
  margin: 5px;
}
.ad-container span{
  color: black;
  background-color: #ffcc00;
  padding: 3px;
  font-size: 20px;
}
h1 {
  font-size: 22px;
}
p {
  font-size: 16px;
  margin: 15px 0;
}
.apply-container {
  margin-top: 0px;
}
.form-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.apply-container input {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  flex: 1;
  max-width: 200px;
}
.cta-button {
  background: #ffcc00;
  color: #333;
  padding: 10px 20px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease-in-out;
}
.cta-button:hover {
  background: #1751d8;
  color: white;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #1751d8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
  margin: 10px auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.partners-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-top: 10px;
  max-width: auto;
}
.partners-container img {
  width: 100px;  /* Adjust size */ 
  height: 50px;
  opacity: 0.9;  /* Faded effect */
  transition: opacity 0.3s ease-in-out;
  filter: grayscale(100%);
}
@media (max-width: 768px) {
  .logo img {
      width: 60px;
  }
  .footer {
      padding: 8px 0;
  }
  .footer a {
      font-size: 22px;
  }
  .footer span {
      font-size: 12px;
  }
  p {
    font-size: 16px;
    margin: 10px 0;
  }
}