
/* Blue Button */
.enquire {
  background: #1fa2c9;
}

.enquire:hover {
  background: #178db0;
}

/* Orange Button */
.tour {
  background: #f28c28;
}

.tour:hover {
  background: #d97706;
}

/* Hide on small devices (optional) */
@media (max-width: 768px) {
  .floating-buttons {
    display: none;
  }
}

.career {
    padding: 40px;
    background-color: #f5f5f5;
    text-align: center;
}

.job {
    background: white;
    margin: 20px auto;
    padding: 20px;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.job h3 {
    color: #2c3e50;
}

button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* RESET */
body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#f4f7fb;
}

/* HERO (UPGRADED) */
.hero{
  height:80vh;
  background:url('https://images.unsplash.com/photo-1523240795612-9a054b0db644') center/cover no-repeat;
  position:relative;
}

.overlay{
  background:linear-gradient(120deg, rgba(0,0,0,0.75), rgba(30,60,114,0.85));
  height:100%;
  color:white;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.overlay h1{
  font-size:52px;
  margin-bottom:10px;
}

.overlay p{
  font-size:18px;
  opacity:0.9;
}

/* BUTTON */
.btn{
  background:linear-gradient(45deg,#ff7a18,#ffb347);
  padding:12px 26px;
  color:white;
  text-decoration:none;
  border-radius:30px;
  margin-top:15px;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.08);
}

/* WHY SECTION (IMPROVED BUT SAME CONTENT) */
.why{
  padding:60px 20px;
  text-align:center;
  background:white;
}

.cards{
  display:flex;
  gap:25px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:30px;
}

.card{
  width:270px;
  border-radius:15px;
  overflow:hidden;
  background:white;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:0.4s;
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

/* JOBS (CENTER + CLEAN GAP) */
.jobs{
  background:#f6f9ff;
  padding:60px 20px;
  text-align:center;
}
</div>/* SECTION */
.job-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #004a99;
}

/* WRAPPER */
.job-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD DESIGN */
.job-card.pro {
  width: 420px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
}

/* HOVER EFFECT */
.job-card.pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* HEADER */
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-header h3 {
  margin: 0;
  color: #004a99;
}

/* TAG */
.tag {
  background: #00aeef;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

/* LOCATION */
.location {
  margin: 10px 0;
  color: #666;
}

/* SECTION */
.job-section h4 {
  margin-top: 15px;
  color: #00aeef;
}

.job-section ul {
  padding-left: 15px;
  margin: 5px 0;
}

.job-section li {
  margin-bottom: 5px;
}

/* BUTTON */
.apply-btn {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(90deg, #004a99, #00aeef);
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  opacity: 0.9;
}




/* APPLY BUTTON */
.job-card button{
  background:linear-gradient(45deg,#1e3c72,#2a5298);
  color:white;
  border:none;
  padding:8px 18px;
  border-radius:20px;
  cursor:pointer;
}


/* MODAL */
.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
}

.modal-content{
  background:white;
  padding:25px;
  width:90%;
  max-width:450px;
  border-radius:15px;
  text-align:center;
  animation:fadeIn 0.3s ease;
  position:relative;
}

.close{
  position:absolute;
  right:15px;
  top:10px;
  font-size:22px;
  cursor:pointer;
}

/* FORM */
.modal input,
.modal textarea{
  width:100%;
  padding:10px;
  margin:8px 0;
  border-radius:8px;
  border:1px solid #ddd;
}

.modal button{
  background:linear-gradient(45deg,#ff7a18,#ffb347);
  color:white;
  padding:12px;
  border:none;
  width:100%;
  border-radius:8px;
  cursor:pointer;
}

/* ANIMATION */
@keyframes fadeIn{
  from{transform:scale(0.8);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

/* RESPONSIVE */
@media(max-width:768px){
  .overlay h1{font-size:32px;}
  .job-card{flex-direction:column;gap:10px;}
}

.bottom-banner{
  margin-top:50px;
  height:350px;
  background:url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bottom-banner::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
}

.banner-content{
  position:relative;
  color:white;
  text-align:center;
  z-index:1;
  padding:20px;
}

.banner-content h2{
  font-size:32px;
  margin-bottom:10px;
}

.banner-content p{
  font-size:16px;
  opacity:0.9;
}
/* ADD THIS AT VERY END OF STYLE TAG */

/* BOTTOM GALLERY */
.bottom-gallery{
  background:white;
  padding:70px 20px;
  text-align:center;
}

.bottom-gallery h2{
  font-size:32px;
  margin-bottom:10px;
}

.bottom-gallery p{
  color:#555;
  margin-bottom:30px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:15px;
  max-width:1100px;
  margin:auto;
}

.gallery-grid img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  transition:0.4s;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

.career-cta {
    background: linear-gradient(135deg, #004a99, #00aeef);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.career-cta-content {
    max-width: 800px;
    margin: auto;
}

.career-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.career-cta p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #004a99;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #f1f1f1;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #004a99;
}