    body {
            background-color: #f8f6f1 !important; /* off white */
            font-family: 'Segoe UI', sans-serif;
        }
    
    
    /* ===== Hero Section ===== */
    .hero {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
    }

    /* ===== Slides ===== */
    .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    /* ===== Overlay ===== */
    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    /* ===== Text Content ===== */
    .hero-content {
      position: absolute;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      color: #f9f9f9;
      max-width: 600px;
      z-index: 2;
      animation: fadeIn 1.2s ease forwards;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .hero-content h1 span {
      display: block;
      color: #d4af37;
    }

    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
      color: #f3f3f3;
    }

    .hero-content button {
      background-color: #d4af37;
      color: #1a1a1a;
      border: none;
      padding: 0.9rem 2rem;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .hero-content button:hover {
      background-color: #b8932c;
      color: white;
    }

    /* ===== Golden Frame ===== */
    .hero-content::before {
      content: "";
      position: absolute;
      top: -25px;
      left: -25px;
      width: 60px;
      height: 60px;
      border-top: 5px solid #d4af37;
      border-left: 5px solid #d4af37;
    }

    /* ===== Navigation Arrows ===== */
    .arrow {
      position: absolute;
      right: 3%;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid #f9f9f9;
      color: #f9f9f9;
      font-size: 1.8rem;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      cursor: pointer;
      z-index: 3;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .arrow:hover {
      background: rgba(255, 255, 255, 0.35);
      transform: scale(1.1);
    }

    .arrow.left {
      bottom: 110px;
    }

    .arrow.right {
      bottom: 40px;
    }

    /* features box  */
     .stats-card {
            background: #fffaf0;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 6px 15px rgba(180, 140, 0, 0.15);
            transition: all 0.3s ease;
        }

        .stats-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(180, 140, 0, 0.25);
        }

        .icon-box {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #d4af37, #b8962e);
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .stats-number {
            font-size: 22px;
            font-weight: 700;
            color: #b8962e;
        }

        .stats-text {
            font-size: 14px;
            color: #7a6a3a;
            margin: 0;
        }

    /* ===== Animation ===== */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-40%);
      }
      to {
        opacity: 1;
        transform: translateY(-50%);
      }
    }


 /* ===== Service Section  ===== */

/* Section */
.services-section {
  background: radial-gradient(circle at top, #fffdf8, #fdfaf5);
}

/* Heading */
.services-heading {
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: 1px;
}

/* Service Box */
.service-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 45px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  height: 100%;
}

/* Icon Wrapper */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a24d, #e7c97b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(201,162,77,0.4);
}

.icon-wrap i {
  font-size: 28px;
  color: #fff;
}

/* Text */
.service-box h4 {
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.service-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* Hover Animation */
.service-box:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 35px 70px rgba(201,162,77,0.35);
}

/* Golden Border Glow */
.service-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 2px solid transparent;
  transition: all 0.45s ease;
}

.service-box:hover::before {
  border-color: #c9a24d;
}

/* Active Highlight */
/* .service-box:hover {
  background: linear-gradient(145deg, #c9a24d, #e6c878);
  transform: translateY(-14px) scale(1.02);
} */

/* .service-box:hover h4,
.service-box:hover p {
  color: #fff;
} */

/* .service-box:hover .icon-wrap {
  background: rgba(255,255,255,0.25);
} */




    /* ===== CATEGORY SECTION ===== */

.category-section {
  background: #fdfaf5;
}

.section-title {
  font-weight: 600;
  color: #222;
}

.section-title span {
  color: #c9a24d;
}

.view-all {
  color: #c9a24d;
  text-decoration: none;
  font-weight: 500;
}

.view-all:hover {
  text-decoration: underline;
}

.category-card {
  background: #fffdf8;
  border-radius: 14px;
  padding: 35px 20px;
  text-align: center;
  border: 1px solid #f0e6d2;
  transition: all 0.35s ease;
  cursor: pointer;
  height: 100%;
}

.category-card i {
  font-size: 34px;
  color: #c9a24d;
  margin-bottom: 15px;
}

.category-card h5 {
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.category-card p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* Hover Effect */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(201, 162, 77, 0.25);
  border-color: #c9a24d;
}

/* Active Card */
.category-card:active {
  background: linear-gradient(135deg, #c9a24d, #e6c878);
  color: #fff;
}

.category-card:active i,
.category-card:active h5,
.category-card:active p {
  color: #fff;
}


    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.3rem;
      }

      .hero-content button {
        padding: 0.8rem 1.5rem;
      }

      .arrow {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
      }
    }

    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 1.8rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .arrow {
        right: 2%;
      }
    }


    /*----------------- Section how job wrok ---------------------*/
    

/* SECTION */
.jobpilot-section{
padding:50px 0;
text-align:center;
}

/* TITLE */
.section-title{
font-size:36px;
font-weight:600;
margin-bottom:70px;
}

/* WRAPPER */
.steps-wrapper{
display:flex;
align-items:flex-start;
justify-content:space-between;
position:relative;
gap:30px;
}



/* STEP */
.step-item{
width:23%;
opacity:0;
transform:translateY(25px);
transition:all .8s ease;
}

.step-item.show{
opacity:1;
transform:none;
}

/* ICON */
.step-icon{
width:60px;
height:60px;
border-radius:50%;
background:#f1ebd9;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 20px;
color:#d4af37;
font-size:22px;
box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* .step-icon{
color:white;
} */

.strp-icon i{
    color: #d4af37;   
 }

/* CARD */
.highlight{
background:white;
padding:10px 5px;
border-radius:14px;
box-shadow:0 20px 45px rgba(0,0,0,.1);
}

/* TEXT */
.step-item h5{
font-size:18px;
font-weight:600;
margin-bottom:10px;
}

.step-item p{
font-size:14px;
color:#6b7280;
line-height:1.6;
}

/* ARROWS */
.arrow_1{
position:absolute;
top:35px;
width:140px;
height:60px;
border-top:2px dashed #d4af37;
border-radius:50%;
animation:dash 3s linear infinite;
}

.arrow-1{ left:20%; }
.arrow-2{ left:46%; }
.arrow-3{ left:72%; }

@keyframes dash{
to{background-position:200px;}
}

/* RESPONSIVE */
@media(max-width:991px){
.steps-wrapper{
flex-direction:column;
}

.step-item{
width:100%;
}

.arrow_1{
display:none;
}
}

/*----------------- Section of job  ---------------------*/
/* SECTION */
.recent-jobs-section{
background:#fdfaf3;
}

/* VIEW ALL */
.view-all{
color:#b8961f;
font-weight:600;
text-decoration:none;
}

.view-all:hover{
text-decoration:underline;
}

/* CARD */
.job-card{
background:white;
border-radius:18px;
padding:22px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 10px 25px rgba(0,0,0,.06);
margin-bottom:22px;
transition:.4s;
border-left:6px solid #d4af37;
}

.job-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* LEFT */
.job-left{
display:flex;
gap:18px;
}

/* LOGO */
.logo-circle{
width:60px;
height:60px;
border-radius:14px;
background:#f6edd3;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.logo-circle img{
width:100%;
}

/* META */
.meta{
display:flex;
flex-wrap:wrap;
gap:14px;
font-size:14px;
color:#666;
}

.meta i{
color:#d4af37;
}

/* BADGE */
.time-badge{
background:#f6edd3;
color:#b8961f;
padding:4px 10px;
border-radius:20px;
font-size:12px;
display:inline-block;
margin-bottom:6px;
}

/* RIGHT */
.job-right{
display:flex;
align-items:center;
gap:15px;
}

.save{
font-size:20px;
color:#999;
cursor:pointer;
transition:.3s;
}

.save:hover{
color:#d4af37;
}

.btn-details{
background:linear-gradient(135deg,#d4af37,#b8961f);
color:white;
padding:7px 18px;
border-radius:25px;
font-size:14px;
text-decoration:none;
}

.btn-details:hover{
opacity:.9;
}

/* RESPONSIVE */
@media(max-width:768px){

.job-card{
flex-direction:column;
align-items:flex-start;
gap:15px;
}

.job-right{
width:100%;
justify-content:space-between;
}

}
