
body{
background-image: url('GeorgiaPic.png');
background-size: cover;
background-position: center;
}
.hero {
  height: 100vh;
  color: white;
  text-align: left;
  padding-top: 100px;
  margin-left: 10%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  
}
.apply-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #4CAF50; /* ✅ Same border color */
 background-color: #4CAF50;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.apply-btn:hover {
color: white;
background-color: transparent;
}
/*Header Ka sabhi CSS*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #efefef 0%, #f0f0f0 100%);
  color: rgb(38, 124, 223);
  padding: 2px 0;
  box-shadow: 0 2px 10px rgba(114, 114, 114, 0.1);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 70px;
  width: 100%;
  
}

.header .container {
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  color: rgb(160, 160, 160);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  color: #e0e0e0;
  background: rgba(22, 130, 212, 0.989);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/*Header Ka sabhi CSS*/

/*Footer ka sabhi Css*/
.Sooter {
  display: flex; 
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f2f2f2;
  padding: 0px;
  font-family: sans-serif;
}

.Sooter-section {
  flex: 1 1 200px;
  margin: 10px;
}

.Sooter-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.Sooter-section ul {
  list-style: none;
  padding: 0;
}

.Sooter-section li {
  margin-bottom: 8px;
}

.Sooter-section a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.Sooter-section a:hover {
  color: #000;
}

.social-icons a img {
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/* 📱 Mobile View */
@media (max-width: 600px) {
  .Sooter {
    flex-direction: column;
    align-items: flex-start;
  }

  .Sooter-section {
    width: 100%;
    margin-bottom: 20px;
  }
}
/*Footer ka sabhi Css*/