*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#0b0f1a;
  color:#fff;
}



/* social media icon css */
/* ===============================
   STICKY SOCIAL ICONS
================================ */

.af-social-sticky{
    position:fixed;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;

    display:flex;
    flex-direction:column;
    gap:12px;
}

.af-social{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    color:#fff;
    font-size:20px;
    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,0.15);

    transition:all .35s ease;
}

.af-social:hover{
    transform:translateX(-8px) scale(1.08);
}

.af-facebook{
    background:#1877f2;
}

.af-instagram{
    background:linear-gradient(
        135deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}

.af-linkedin{
    background:#0077b5;
}

.af-youtube{
    background:#ff0000;
}

.af-whatsapp{
    background:#25d366;
}

/* Mobile */

@media(max-width:768px){

    .af-social-sticky{
        right:12px;
    }

    .af-social{
        width:45px;
        height:45px;
        font-size:18px;
    }
}

/* logo css */
.lsx-brand-logo img{
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px){
    .lsx-brand-logo img{
        height: 50px;
    }
}

@media (max-width: 480px){
    .lsx-brand-logo img{
        height: 40px;
    }
}


/* preloader css */
/* ==========================
   INSTITUTE PRELOADER
========================== */

#af-preloader{
    position:fixed;
    inset:0;
    width:100%;
    height:100vh;

    background:#001c54;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999999;
    transition:all .8s ease;
}

#af-preloader.hide{
    opacity:0;
    visibility:hidden;
}

.af-loader-content{
    text-align:center;
    width:min(90%,800px);
}

.af-loader-logo{
    width:100%;
    max-width:700px;

    animation:
    logoZoom 2s ease forwards;
}

.af-loader-bar{
    width:280px;
    height:4px;

    background:rgba(255,255,255,.15);

    margin:35px auto 20px;

    border-radius:50px;
    overflow:hidden;
}

.af-loader-bar span{
    display:block;
    height:100%;
    width:0;

    background:linear-gradient(
        90deg,
        #d4af37,
        #ffd76a,
        #d4af37
    );

    animation:loading 2.8s linear forwards;
}

.af-loader-content p{
    color:#fff;
    font-size:16px;
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:.8;
}

/* Logo Animation */

@keyframes logoZoom{

    0%{
        opacity:0;
        transform:scale(.6);
    }

    100%{
        opacity:1;
        transform:scale(1);
    }
}

/* Loading Bar */

@keyframes loading{

    from{
        width:0;
    }

    to{
        width:100%;
    }
}

/* Tablet */

@media(max-width:768px){

    .af-loader-logo{
        max-width:500px;
    }

    .af-loader-bar{
        width:220px;
    }

    .af-loader-content p{
        font-size:13px;
    }
}

/* Mobile */

@media(max-width:480px){

    .af-loader-logo{
        max-width:320px;
    }

    .af-loader-bar{
        width:180px;
    }

    .af-loader-content p{
        font-size:11px;
        letter-spacing:1px;
    }
}

/* NAVBAR */
.navbar{
  background:black;
  position:absolute;
  width:100%;
  z-index:999;
}

.navbar-brand{
  font-weight:600;
  color:#d4af37 !important;
}

.navbar-nav .nav-link{
  color:#fff !important;
  margin:0 10px;
  position:relative;
}

.navbar-nav .nav-link::after{
  content:"";
  width:0%;
  height:2px;
  background:#d4af37;
  position:absolute;
  left:0;
  bottom:-5px;
  transition:0.3s;
}

.navbar-nav .nav-link:hover::after{
  width:100%;
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* BACKGROUND */
.hero::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,rgba(0,0,0,0.9),rgba(0,0,0,0.7)),
  url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5');
  background-size:cover;
  background-position:center;
  z-index:1;
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  color: white;
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:60px;
  line-height:1.2;
}

.hero h1 span{
  color:#d4af37;
}

.hero p{
  margin-top:20px;
  color:#bbb;
  font-size:16px;
}

/* BUTTON */
.hero-btn{
  margin-top:25px;
  padding:12px 30px;
  border:none;
  background:#d4af37;
  color:#000;
  font-weight:600;
  border-radius:5px;
  transition:0.3s;
}

.hero-btn:hover{
  background:#fff;
}

/* FLOAT SHAPES */
.shape{
  position:absolute;
  width:200px;
  height:200px;
  border:1px solid rgba(255,255,255,0.1);
  transform:rotate(45deg);
  animation:float 6s infinite ease-in-out;
}

.shape1{ top:10%; left:15%; }
.shape2{ bottom:10%; right:15%; }

@keyframes float{
  0%,100%{transform:translateY(0) rotate(45deg);}
  50%{transform:translateY(-20px) rotate(45deg);}
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero h1{
    font-size:32px;
  }
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#0b0f1a;
  color:#fff;
}

/* SECTION */
/* SECTION */
.fs-section{
  background:#0b0b0f;
  padding:90px 20px;
  color:#fff;
}

/* CONTAINER */
.fs-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.fs-image{
  position:relative;
}

.fs-image img{
  width:100%;
  border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,0.7);
  transition:0.5s;
}

.fs-image img:hover{
  transform:scale(1.03);
}

/* CONTENT */
.fs-content h5{
  color:#c9a96e;
  letter-spacing:2px;
  font-size:14px;
  margin-bottom:10px;
}

.fs-content h2{
  font-size:42px;
  font-weight:600;
  margin-bottom:20px;
  line-height:1.3;
}

.fs-content p{
  color:#aaa;
  line-height:1.7;
  margin-bottom:15px;
  font-size:15px;
}

/* BUTTON */
.fs-btn{
  margin-top:15px;
  padding:12px 28px;
  background:#c9a96e;
  border:none;
  color:#000 !important;
  font-weight:600;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

.fs-btn:hover{
  background:#fff;
  color:#000 !important;
}

/* RESPONSIVE */
@media(max-width:992px){
  .fs-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .fs-content h2{
    font-size:32px;
  }
}

@media(max-width:600px){
  .fs-content h2{
    font-size:26px;
  }

  .fs-content p{
    font-size:14px;
  }
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#0b0b0f;
  color:#fff;
}

/* SECTION */
.career{
  padding:40px 20px;
  background-color: black;
}

.container{
  max-width:1200px;
  margin:auto;
  padding: 10px 10px;
}

/* TOP IMAGE */
.top-img img{
  width: 100%;
    border-radius: 12px;
    margin-bottom: 50px;
    height: 330px;
    object-fit: cover;
}

/* TITLE */
.title{
  text-align:center;
  margin-bottom:40px;
}

.title h2{
  font-size:34px;
  margin-bottom:10px;
  color: wheat;
  font-weight: 600;
}

.title p {
  color:#fff;
}

/* SERVICES */
.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:30px;
}

.service-card{
  background:#141418;
  padding:30px;
  border-radius:10px;
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-8px);
}

.service-icon{
  font-size:28px;
  color:#c9a96e;
  margin-bottom:15px;
}

.service-card h4{
    color: #c9a96e;
}
.service-card h4{
  margin-bottom:10px;
}

.service-card p{
  color:#fff;
  font-size:14px;
}

/* OPENINGS */
.openings{
  margin-top:70px;
}

.openings small{
  color:#c9a96e;
}

.openings h2{
  margin:10px 0 30px;
  font-size:30px;
  color: wheat;
}

/* JOB GRID */
.jobs{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.job-card{
  background:#141418;
  padding:20px;
  border-radius:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.job-info h4{
  margin-bottom:5px;
  /* font-weight: 600; */
  color: white;
}

.job-info p{
  font-size:13px;
  color:#aaa;
}

.apply-btn{
  background:#c9a96e;
  color:#000;
  border:none;
  padding:8px 15px;
  border-radius:6px;
  cursor:pointer;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:992px){
  .services{
    grid-template-columns:1fr 1fr;
  }

  .jobs{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .services{
    grid-template-columns:1fr;
  }

  .title h2{
    font-size:26px;
  }
}