:root {
    --brand-green: #538167;
    --brand-yellow: #FDCF09;
    --green: #538167;
    --yellow: #FDCF09;
    --dark: #1A1F1E;
}

.navbar .nav-link {
    font-weight: 500;
        width: 100px;
    text-align: center;
}

.navbar .nav-link:hover {
    color: #ffc107 !important;
}

.navbar-brand,
.nav-link,
.dropdown-toggle {
    color: white !important;
}

/* White hamburger icon */
.navbar-toggler-icon {
    filter: invert(1);
}

/* Desktop header white text */
.navbar-brand,
.navbar-nav .nav-link,
.dropdown-toggle {
    color: white !important;
}

/* Mobile offcanvas link colors */
.offcanvas .nav-link,
.offcanvas .dropdown-item,
.offcanvas .dropdown-toggle {
    color: #000 !important;
}

/* Offcanvas active/hover states */
.offcanvas .nav-link:hover,
.offcanvas .dropdown-item:hover {
    color: #ffc107 !important;
}

.offcanvas-title {
    font-weight: 700;
    color: #000;
}



   /* MOBILE HEADER */
.mobile-search-header {
    
    padding: 10px 12px 14px;
        border-bottom: 1px solid #e9eff4;
}

/* TOP BAR */
.mobile-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* OPEN APP BUTTON */
.open-app-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 500;
}

/* BRAND */
.brand-name {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-dot {
    color: #fff;
    font-size: 28px;
    line-height: 0;
}

/* MENU */
.menu-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
}

/* OFFCANVAS MOBILE MENU */
#mobileMenu {
    width: 280px;
}

#mobileMenu .offcanvas-header {
    border-bottom: 1px solid #eee;
}

#mobileMenu .nav-link {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

#mobileMenu .nav-link:hover {
    color: #e0a800;
}

#mobileMenu .dropdown-menu {
    border-radius: 8px;
}

#mobileMenu .btn-warning {
    height: 48px;
    border-radius: 8px;
}

/* SEARCH BOX */
.mobile-search-box {
    background: #f7f7f7;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0px 12px;
}

.mobile-search-box i {
    font-size: 18px;
    color: #666;
    margin-right: 8px;
}

.mobile-search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    background: #f7f7f7;
}

/* HIDE ON DESKTOP */
@media (min-width: 768px) {
    .mobile-search-header {
        display: none;
    }
}

    


.hero-section {
    height: 90vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.search-bar {
    max-width: 900px;
    border-radius: 20px;
}

.input-group-text {
    font-size: 20px;
}

input,
select {
    height: 60px !important;
}

.hero-section .btn-warning {
    height: 60px;
}

.btn-warning:hover {
    background-color: #e0a800;
}

@media (max-width: 768px) {
    
     .hero-section{
        display: none !important;
    }
}


@media (max-width: 767px) {

   

    .search-bar .col-md-1,
    .search-bar .col-md-4,
    .search-bar .col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .btn-warning {
        width: 100%;
    }
}

/* Section base */
.categories-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(83, 129, 103, 0.04), rgba(253, 207, 9, 0.02));
}


.category-card {
    border: none;
    border-radius: 14px;
    transition: transform .28s cubic-bezier(.2, .9, .3, 1), box-shadow .28s;
    will-change: transform;
    overflow: hidden;
    background: #fff;
}


.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(15, 30, 30, .09);
}


.category-card .card-body {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 140px;
    /* ensures equal height visually */
}


.cat-icon {
    flex: 0 0 88px;
    height: 88px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 20px rgba(83, 129, 103, 0.08);
    background: linear-gradient(135deg, rgba(83, 129, 103, 0.08), rgba(253, 207, 9, 0.04));
}


.cat-icon svg {
    width: 46px;
    height: 46px
}


.cat-title {
    margin: 0;
    font-weight: 700;
    color: #0f3330;
    font-size: 1.05rem;
}


.cat-desc {
    color: #5b6a67;
    font-size: .92rem
}


/* subtle outline on focus for keyboard users */
.category-card:focus-within {
    outline: 3px solid rgba(83, 129, 103, 0.12)
}


/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.2, .9, .3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}


/* Responsive tweaks */
@media (max-width:575px) {
    .category-card .card-body {
        height: 120px
    }

    .cat-icon {
        flex-basis: 72px;
        height: 72px
    }

    .cat-icon svg {
        width: 36px;
        height: 36px
    }
}


.featured-section {
    padding: 70px 0;
    background: #f9fbfa;
}

.listing-card {
    border: none;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.listing-img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.price-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-green);
    color: #fff;
    padding: 6px 14px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.95rem;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.2s;
}

.wishlist-btn:hover {
    background: var(--brand-yellow);
    color: #000;
}

.listing-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1b2d27;
}

.location {
    font-size: 0.9rem;
    color: #54635f;
}

.rating {
    color: var(--brand-yellow);
    font-weight: 700;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

.sellers-section {
    padding: 80px 0;
    background: #f4f7f5;
}

.seller-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.seller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.seller-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(83, 129, 103, 0.12), transparent),
        radial-gradient(circle at bottom left, rgba(253, 207, 9, 0.15), transparent);
    opacity: 0.65;
    z-index: 0;
}

.seller-content {
    position: relative;
    z-index: 2;
}

.seller-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tag {
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .83rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.rating {
    color: var(--yellow);
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-modern {
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 600;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}


.how-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4f2, #ffffff);
    position: relative;
    overflow: hidden;
}

/* Floating blur circles */
.blob {
    position: absolute;
    width: 240px;
    height: 240px;
    background: var(--green);
    filter: blur(120px);
    opacity: 0.25;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite alternate;
}

.blob-1 {
    top: -60px;
    left: -60px;
}

.blob-2 {
    bottom: -60px;
    right: -60px;
    background: var(--yellow);
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-25px);
    }
}

.step-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: all .4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin: 0 auto 25px auto;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-desc {
    color: #5c6764;
    font-size: 1rem;
    line-height: 1.65rem;
}

/* Animated arrow connectors */
@media(min-width:992px) {
    .connector {
        position: absolute;
        top: 50%;
        left: 100%;
        width: 120px;
        height: 3px;
        background: none;
    }

    .connector::after {
        content: '➜';
        position: absolute;
        top: 50%;
        left: -35px;
        transform: translateY(-50%);
        font-size: 26px;
        color: var(--green);
        font-weight: 900;
        animation: arrow-move 1.2s infinite ease-in-out;
    }
}

@keyframes arrow-move {
    0% {
        transform: translate(0, -50%);
        opacity: 0.2;
    }

    50% {
        transform: translate(25px, -50%);
        opacity: 1;
    }

    100% {
        transform: translate(50px, -50%);
        opacity: 0;
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}


.testimonial-wrap{
  padding:110px 0;
  background:#ffffff;
  position:relative;
  overflow:hidden;
}

/* Center Title */
.section-title{
  font-size:2.4rem;
  font-weight:800;
  color:var(--dark);
}

.sub-title{
  font-size:1.15rem;
  color:#60706b;
}

/* Slider container */
.testi-slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:30px;
  padding-bottom:20px;
  padding-top:20px;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.testi-slider::-webkit-scrollbar{ display:none; }

/* Individual card */
.testi-box{
  flex:0 0 400px;
  scroll-snap-align:center;
  background:white;
  border-radius:26px;
  padding:30px;
  box-shadow:0 0px 20px rgba(0,0,0,0.08);
  border:1px solid rgba(0,0,0,0.05);
  transition:0.3s ease;
}
.testi-box:hover{
  transform:translateY(-8px);
}

.testi-text{
  font-size:1rem;
  line-height:1.65rem;
  color:#4a5652;
  margin-bottom:20px;
}

/* user */
.user-img{
  width:60px; height:60px;
  border-radius:50%; object-fit:cover;
  border:3px solid #fff;
  box-shadow:0 5px 10px rgba(0,0,0,0.1);
}
.user-name{
  font-weight:700; font-size:1.05rem;
}
.user-role{ color:#6f7c78; font-size:.88rem; }
.rating-stars{ color:var(--yellow); font-size:1.1rem; }

/* arrows */
.arrow-btn{
  position:absolute;
  top:50%; transform:translateY(-50%);
  width:50px; height:50px;
  border-radius:50%;
  background:white;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  font-size:1.5rem;
  z-index:10;
  border:0;
}
.arrow-left{ left:20px; }
.arrow-right{ right:20px; }

@media (max-width:767px){
  .arrow-left, .arrow-right{ display:none; }
}

.new-footer{
  background:#0d1513;
  padding:120px 0 50px;
  position:relative;
  overflow:hidden;
  color:#dfe7e4;
}

/* Floating gradient glow shapes */
.glow{
  position:absolute;
  width:280px; height:280px;
  border-radius:50%;
  filter:blur(120px);
  opacity:0.4;
  animation:float 9s infinite alternate ease-in-out;
}
.glow-1{ background:#538167; top:-80px; left:-40px; }
.glow-2{ background:#FDCF09; bottom:-120px; right:-60px; }

@keyframes float{ from{transform:translateY(0);} to{transform:translateY(30px);} }

/* MAIN WRAP */
.footer-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:40px;
}

/* BRAND BLOCK */
.footer-brand{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.footer-logo{
  font-size:2.2rem;
  font-weight:800;
  color:#fff;
}
.footer-tagline{
  font-size:1rem;
  color:#aeb8b4;
  line-height:1.7rem;
  max-width:320px;
}

/* ICON BAR */
.icon-row{
  display:flex;
  gap:12px;
  margin-top:15px;
}
.icon-row a{
  width:50px; height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff12;
  border-radius:14px;
  backdrop-filter:blur(8px);
  color:#fff;
  font-size:1.4rem;
  transition:0.3s ease;
  text-decoration: none;
}
.icon-row a:hover{
  background:var(--yellow);
  color:#000;
  transform:translateY(-4px);
}

/* TITLES */
.footer-title{
  font-size:1.1rem;
  font-weight:700;
  color:#fff;
  margin-bottom:12px;
}

/* LINKS */
.footer-links a{
  display:block;
  color:#9fb1ac;
  margin-bottom:9px;
  text-decoration:none;
  font-size:.97rem;
  transition:0.25s;
}
.footer-links a:hover{
  color:var(--yellow);
  transform:translateX(5px);
}

/* NEWSLETTER */
.news-box input{
  background:#ffffff0f;
  border:1px solid #ffffff25;
  color:#fff;
  padding:12px;
  border-radius:12px;
}
.news-box input::placeholder{ color:#94a19e; }
.news-box button{
  background:var(--yellow);
  border-radius:12px;
  font-weight:700;
}

/* BOTTOM */
.footer-bottom{
  border-top:1px solid #ffffff18;
  text-align:center;
  margin-top:70px;
  padding-top:25px;
  color:#92a19d;
  font-size:.93rem;
}

.categories-section {
    width: 100%;
    text-align: center;
    padding: 50px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.categories-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.category-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.category-box img {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
}

.category-box p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.category-box:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
/* MORE MENU */
.more-menu {
    max-width: 100%;
    margin: 25px auto 0;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-item {
    text-align: left;
    padding: 12px 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .2s;
}

.menu-item:hover {
    background: #f3f3f3;
}

/* Responsive */
@media(max-width: 768px){
    .categories-grid,
    .more-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stock-ticker {
  background:#0D1117;
  color:white;
  padding:10px 0;
  display:flex;
  align-items:center;
  gap:20px;
  overflow:hidden;
}

.ticker-title {
  font-weight:bold;
  padding-left:20px;
  white-space:nowrap;
}

.ticker-wrap {
  overflow:hidden;
  flex:1;
}

.ticker-move {
  display:flex;
  gap:50px;
  white-space:nowrap;
  animation: scroll 22s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.ticker-item {
  font-size:16px;
  font-weight:500;
}

.green { color:#03C988; }
.red   { color:#FF4E4E; }


/* service section */

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.55)
        ),
        url('../imgs/service-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;

    display: flex;
    align-items: center;
}

.service-btn{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.service-btn:hover{
    background: #facc15;
    color: #111827;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 43px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1E8E3E;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
}

/* SEARCH BOX */
.hero .search-box {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.hero .search-box input {
  flex: 1;
  padding: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  outline: none;
}

.hero .search-box button {
  background: #F9C74F;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.hero .search-box button:hover {
  background: #f6b93b;
}

/* BUTTONS */
.hero .hero-buttons {
  display: flex;
  gap: 15px;
}

.hero .btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero.btn-primary {
  background: #1E8E3E;
  color: #ffffff;
}

.hero .btn-primary:hover {
  background: #166d2d;
}

.hero .btn-secondary {
  background: #F9C74F;
  color: #1F2937;
}

.hero .btn-secondary:hover {
  background: #f6b93b;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero .search-box {
    flex-direction: column;
  }

  .hero .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero .hero-content h1 {
    font-size: 36px;
  }
}


/* SERVICES SECTION */
.services {
  padding: 80px 0;
  background: #ffffff;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: #6B7280;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ICON */
.service-card .icon {
  width: 70px;
  height: 70px;
  background: #F9C74F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card .icon i {
  font-size: 32px;
  color: #1E8E3E;
}

/* TEXT */
.service-card h3 {
  font-size: 20px;
  color: #1F2937;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #6B7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}


/* FEATURED HANDYMEN */
.handymen {
  padding: 80px 0;
  background: #E9F7EF;
}

.handymen-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.handymen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.handyman-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.handyman-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.handyman-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #F9C74F;
  margin-bottom: 15px;
}

/* TEXT */
.handyman-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.handyman-card .service {
  font-size: 14px;
  color: #1E8E3E;
  font-weight: 600;
}

/* RATING */
.rating {
  margin: 10px 0;
  color: #F9C74F;
}

.rating span {
  color: #6B7280;
  font-size: 14px;
  margin-left: 5px;
}

/* PRICE */
.price {
  margin: 10px 0 20px;
  font-size: 15px;
}

/* BUTTON */
.btn-hire {
  display: inline-block;
  padding: 12px 30px;
  background: #1E8E3E;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-hire:hover {
  background: #166d2d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .handymen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .handymen-grid {
    grid-template-columns: 1fr;
  }
}


/* HOW IT WORKS */
.how-it-works {
  padding: 80px 0;
  background: #ffffff;
}

.how-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.how-card {
  background: #E9F7EF;
  padding: 40px 30px;
  border-radius: 20px;
}

.how-card h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #1E8E3E;
  text-align: center;
}

/* STEP */
.step {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  background: #F9C74F;
  color: #1F2937;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  display: flex;
  gap: 15px;
}

.step-content i {
  font-size: 26px;
  color: #1E8E3E;
  margin-top: 2px;
}

.step-content h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.step-content p {
  font-size: 14px;
  color: #6B7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}


/* PREMIUM CTA */
.premium-cta {
  padding: 120px 0;
  background:
    radial-gradient(
      circle at top,
      rgba(249,199,79,0.18),
      rgba(30,142,62,0.85) 60%
    ),
    
    url('../imgs/tools.jpg');
  background-size: cover;
  background-position: center;
}

.cta-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* GLASS BOX */
.cta-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.25),
    inset 0 0 40px rgba(249,199,79,0.15);
}

/* BADGE */
.cta-badge {
  display: inline-block;
  background: rgba(249,199,79,0.2);
  color: #F9C74F;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TEXT */
.cta-box h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 18px;
  color: #E9F7EF;
  max-width: 650px;
  margin: 0 auto 35px;
}

/* ACTIONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 16px 38px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* PRIMARY BUTTON */
.cta-btn.primary {
  background: #F9C74F;
  color: #1F2937;
  box-shadow: 0 10px 30px rgba(249,199,79,0.45);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(249,199,79,0.65);
}

/* OUTLINE BUTTON */
.cta-btn.outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: #ffffff;
}

.cta-btn.outline:hover {
  background: rgba(255,255,255,0.15);
}

/* TRUST LINE */
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: #E9F7EF;
  flex-wrap: wrap;
}

.cta-trust i {
  color: #F9C74F;
  margin-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-box {
    padding: 50px 30px;
  }

  .cta-box h2 {
    font-size: 32px;
  }

  .cta-actions {
    flex-direction: column;
  }
}


.jx-hero-area {
  position: relative;
  padding: 140px 0 70px;
  background:
    url('../imgs/office.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* DARK + BRAND OVERLAY */
.jx-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(249,199,79,0.25), transparent 55%),
    linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    );
  z-index: 1;
}

/* CONTAINER */
.jx-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* CONTENT */
.jx-hero-content {
  flex: 1;
  color: #ffffff;
}

.jx-hero-badge {
  display: inline-block;
  background: rgba(249,199,79,0.18);
  color: #F9C74F;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.jx-hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.jx-hero-content h1 span {
  color: #F9C74F;
}

.jx-hero-content p {
  font-size: 18px;
  color: #E9F7EF;
  max-width: 520px;
  margin-bottom: 35px;
}

/* SEARCH GLASS */
.jx-search-glass {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  margin-bottom: 30px;
}

.jx-search-glass input {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: none;
  outline: none;
}

.jx-btn-search {
  background: #F9C74F;
  color: #1F2937;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* CTAs */
.jx-hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
}

.jx-btn-main {
  background: #F9C74F;
  color: #1F2937;
  padding: 15px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(249,199,79,0.45);
}

.jx-btn-alt {
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 15px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

/* STATS */
.jx-hero-stats {
  display: flex;
  gap: 40px;
}

.jx-hero-stats div strong {
  display: block;
  font-size: 24px;
  color: #F9C74F;
}

.jx-hero-stats div span {
  font-size: 13px;
  color: #E9F7EF;
}

/* MEDIA */
.jx-hero-media {
  flex: 1;
  text-align: center;
}

.jx-hero-media img {
  max-width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .jx-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .jx-search-glass {
    flex-direction: column;
  }

  .jx-hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .jx-hero-stats {
    justify-content: center;
  }
}

/* JOB CATEGORIES */
.jc-section {
  padding: 20px 0;
  background: #ffffff;
}

.jc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.jc-header {
  text-align: center;
  margin-bottom: 20px;
}

.jc-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.jc-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.jc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.jc-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(249,199,79,0.08),
    rgba(30,142,62,0.04)
  );
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  overflow: hidden;
}

.jc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(249,199,79,0.25), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.jc-card:hover::after {
  opacity: 1;
}

.jc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* ICON */
.jc-card i {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 20px;
}

/* TEXT */
.jc-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.jc-card span {
  font-size: 14px;
  color: #6B7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .jc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .jc-grid {
    grid-template-columns: 1fr;
  }

  .jc-header h2 {
    font-size: 32px;
  }
}


/* FEATURED JOBS */
.fj-section {
  padding: 100px 0;
  background: #E9F7EF;
}

.fj-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.fj-header {
  text-align: center;
  margin-bottom: 60px;
}

.fj-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.fj-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.fj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.fj-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
  transition: 0.35s ease;
}

.fj-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.16);
}

/* TOP */
.fj-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fj-company {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fj-company img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.fj-company h4 {
  font-size: 18px;
  margin-bottom: 3px;
}

.fj-company span {
  font-size: 14px;
  color: #6B7280;
}

/* TYPE */
.fj-type {
  background: rgba(30,142,62,0.12);
  color: #1E8E3E;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.fj-type.part {
  background: rgba(249,199,79,0.2);
  color: #8a6a00;
}

/* INFO */
.fj-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
  color: #374151;
}

.fj-info i {
  color: #1E8E3E;
  margin-right: 6px;
}

/* ACTIONS */
.fj-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fj-apply-btn {
  background: #1E8E3E;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.fj-apply-btn:hover {
  background: #166d2d;
}

.fj-posted {
  font-size: 13px;
  color: #6B7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .fj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fj-grid {
    grid-template-columns: 1fr;
  }

  .fj-header h2 {
    font-size: 32px;
  }
}


/* HOW IT WORKS – JOBS */
.jw-section {
  padding: 110px 0;
  background: #ffffff;
}

.jw-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.jw-header {
  text-align: center;
  margin-bottom: 70px;
}

.jw-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.jw-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.jw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.jw-card {
  background: linear-gradient(
    180deg,
    rgba(249,199,79,0.08),
    rgba(30,142,62,0.04)
  );
  border-radius: 26px;
  padding: 45px 35px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.jw-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 75px rgba(0,0,0,0.14);
}

/* BADGE */
.jw-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 25px;
}

.jw-badge.seeker {
  background: rgba(30,142,62,0.15);
  color: #1E8E3E;
}

.jw-badge.employer {
  background: rgba(249,199,79,0.25);
  color: #8a6a00;
}

/* STEP */
.jw-step {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.jw-num {
  width: 36px;
  height: 36px;
  background: #F9C74F;
  color: #1F2937;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jw-text {
  display: flex;
  gap: 15px;
}

.jw-text i {
  font-size: 26px;
  color: #1E8E3E;
  margin-top: 2px;
}

.jw-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.jw-text p {
  font-size: 14px;
  color: #6B7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .jw-grid {
    grid-template-columns: 1fr;
  }

  .jw-header h2 {
    font-size: 32px;
  }
}


/* EMPLOYER CTA – HIRE FASTER */
.ec-hirefast {
  position: relative;
  padding: 140px 0;
  background: url('../imgs/office2.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.ec-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(249,199,79,0.22), transparent 55%),
    linear-gradient(
      rgba(17, 94, 55, 0.7),
      rgba(22, 109, 45, 0.7)
    );
  z-index: 1;
}

/* CONTAINER */
.ec-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

/* GLASS CARD */
.ec-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 80px 70px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 35px 90px rgba(0,0,0,0.35),
    inset 0 0 40px rgba(249,199,79,0.18);
}

/* BADGE */
.ec-badge {
  display: inline-block;
  background: rgba(249,199,79,0.22);
  color: #F9C74F;
  padding: 9px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* TEXT */
.ec-card h2 {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 18px;
}

.ec-card p {
  font-size: 18px;
  color: #E9F7EF;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ACTIONS */
.ec-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 35px;
}

.ec-btn-primary {
  background: #F9C74F;
  color: #1F2937;
  padding: 16px 42px;
  border-radius: 45px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(249,199,79,0.5);
  transition: 0.35s;
}

.ec-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(249,199,79,0.7);
}

.ec-btn-outline {
  border: 2px solid rgba(255,255,255,0.65);
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 45px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.ec-btn-outline:hover {
  background: rgba(255,255,255,0.18);
}

/* TRUST */
.ec-trust {
  display: flex;
  justify-content: center;
  gap: 35px;
  font-size: 14px;
  color: #E9F7EF;
  flex-wrap: wrap;
}

.ec-trust i {
  color: #F9C74F;
  margin-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ec-card {
    padding: 55px 30px;
  }

  .ec-card h2 {
    font-size: 32px;
  }

  .ec-actions {
    flex-direction: column;
  }
}


/* BUSINESS LISTING – PREMIUM HERO */
.bl-hero {
  position: relative;
  padding: 150px 0;
  background: url('../imgs/business.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.bl-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(249,199,79,0.25), transparent 55%),
    linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    );
  z-index: 1;
}

/* CONTAINER */
.bl-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* CONTENT */
.bl-hero-content {
  color: #ffffff;
}

/* BADGE */
.bl-hero-badge {
  display: inline-block;
  background: rgba(249,199,79,0.22);
  color: #F9C74F;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* TEXT */
.bl-hero-content h1 {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.bl-hero-content h1 span {
  color: #F9C74F;
}

.bl-hero-content p {
  font-size: 18px;
  color: #E9F7EF;
  max-width: 650px;
  margin: 0 auto 40px;
}

/* SEARCH (GLASS) */
.bl-search-glass {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  padding: 18px;
  border-radius: 22px;
  margin-bottom: 35px;
}

.bl-search-glass input {
  flex: 1;
  padding: 16px;
  border-radius: 14px;
  border: none;
  outline: none;
}

.bl-btn-search {
  background: #F9C74F;
  color: #1F2937;
  border: none;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
}

/* ACTIONS */
.bl-hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.bl-btn-primary {
  background: #F9C74F;
  color: #1F2937;
  padding: 16px 40px;
  border-radius: 45px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(249,199,79,0.5);
}

.bl-btn-secondary {
  border: 2px solid rgba(255,255,255,0.65);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 45px;
  text-decoration: none;
  font-weight: 700;
}

/* TRUST */
.bl-hero-trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: #E9F7EF;
  flex-wrap: wrap;
}

.bl-hero-trust i {
  color: #F9C74F;
  margin-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bl-hero-content h1 {
    font-size: 38px;
  }

  .bl-search-glass {
    flex-direction: column;
  }

  .bl-hero-actions {
    flex-direction: column;
  }
}


/* BUSINESS CATEGORIES */
.bc-section {
  padding: 110px 0;
  background: #ffffff;
}

.bc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.bc-header {
  text-align: center;
  margin-bottom: 70px;
}

.bc-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.bc-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.bc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.bc-card {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(249,199,79,0.10),
      rgba(30,142,62,0.04)
    );
  border-radius: 26px;
  padding: 50px 35px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  overflow: hidden;
}

.bc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(249,199,79,0.30), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.bc-card:hover::after {
  opacity: 1;
}

.bc-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.16);
}

/* ICON */
.bc-card i {
  font-size: 44px;
  color: #1E8E3E;
  margin-bottom: 22px;
}

/* TEXT */
.bc-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.bc-card span {
  font-size: 14px;
  color: #6B7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .bc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bc-grid {
    grid-template-columns: 1fr;
  }

  .bc-header h2 {
    font-size: 32px;
  }
}


/* FEATURED BUSINESSES */
.fb-section {
  padding: 110px 0;
  background: #E9F7EF;
}

.fb-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.fb-header {
  text-align: center;
  margin-bottom: 70px;
}

.fb-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.fb-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.fb-card {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.fb-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 85px rgba(0,0,0,0.18);
}

/* IMAGE */
.fb-image {
  position: relative;
  height: 200px;
}

.fb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGE */
.fb-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #F9C74F;
  color: #1F2937;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
}

/* CONTENT */
.fb-content {
  padding: 25px 22px 30px;
}

.fb-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* RATING */
.fb-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #F9C74F;
  margin-bottom: 10px;
}

.fb-rating span {
  color: #6B7280;
  margin-left: 6px;
}

/* META */
.fb-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #374151;
  margin-bottom: 18px;
}

.fb-meta i {
  color: #1E8E3E;
  margin-right: 5px;
}

/* BUTTON */
.fb-btn {
  display: inline-block;
  background: #1E8E3E;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.fb-btn:hover {
  background: #166d2d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .fb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fb-grid {
    grid-template-columns: 1fr;
  }

  .fb-header h2 {
    font-size: 32px;
  }
}


/* REVIEWS & RATINGS */
.ur-section {
  padding: 110px 0;
  background: #ffffff;
}

.ur-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.ur-header {
  text-align: center;
  margin-bottom: 70px;
}

.ur-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.ur-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.ur-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.ur-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 35px 30px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.ur-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 85px rgba(0,0,0,0.18);
}

/* USER */
.ur-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.ur-user img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F9C74F;
}

.ur-user h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.ur-user span {
  font-size: 13px;
  color: #6B7280;
}

/* RATING */
.ur-rating {
  margin-bottom: 12px;
  color: #F9C74F;
}

/* TEXT */
.ur-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ur-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ur-grid {
    grid-template-columns: 1fr;
  }

  .ur-header h2 {
    font-size: 32px;
  }
}

/* BUSINESS OWNER CTA */
.bo-cta-area {
  position: relative;
  padding: 150px 0;
  background: url('../imgs/business1.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.bo-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(249,199,79,0.28), transparent 55%),
    linear-gradient(
      rgba(17, 94, 55, 0.7),
      rgba(22, 109, 45, 0.7)
    );
  z-index: 1;
}

/* CONTAINER */
.bo-cta-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

/* GLASS CARD */
.bo-cta-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  border-radius: 34px;
  padding: 85px 70px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.38),
    inset 0 0 45px rgba(249,199,79,0.2);
}

/* BADGE */
.bo-cta-badge {
  display: inline-block;
  background: rgba(249,199,79,0.25);
  color: #F9C74F;
  padding: 10px 24px;
  border-radius: 45px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 28px;
}

/* TEXT */
.bo-cta-card h2 {
  font-size: 46px;
  color: #ffffff;
  margin-bottom: 18px;
}

.bo-cta-card p {
  font-size: 18px;
  color: #E9F7EF;
  max-width: 720px;
  margin: 0 auto 42px;
}

/* ACTIONS */
.bo-cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
}

.bo-btn-primary {
  background: #F9C74F;
  color: #1F2937;
  padding: 18px 46px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(249,199,79,0.55);
  transition: 0.35s;
}

.bo-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(249,199,79,0.75);
}

.bo-btn-outline {
  border: 2px solid rgba(255,255,255,0.65);
  color: #ffffff;
  padding: 18px 46px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.bo-btn-outline:hover {
  background: rgba(255,255,255,0.18);
}

/* TRUST */
.bo-cta-trust {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  color: #E9F7EF;
  flex-wrap: wrap;
}

.bo-cta-trust i {
  color: #F9C74F;
  margin-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bo-cta-card {
    padding: 55px 30px;
  }

  .bo-cta-card h2 {
    font-size: 32px;
  }

  .bo-cta-actions {
    flex-direction: column;
  }
}


/* BUY & SELL HERO */
.ms-hero {
  position: relative;
  padding: 160px 0;
  background: url('../imgs/shop.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.ms-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(249,199,79,0.25), transparent 55%),
    linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    );
  z-index: 1;
}

/* CONTAINER */
.ms-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* CONTENT */
.ms-hero-content {
  color: #ffffff;
}

/* BADGE */
.ms-hero-badge {
  display: inline-block;
  background: rgba(249,199,79,0.22);
  color: #F9C74F;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 25px;
}

/* HEADING */
.ms-hero-content h1 {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.ms-hero-content h1 span {
  color: #F9C74F;
}

/* TEXT */
.ms-hero-content p {
  font-size: 18px;
  color: #E9F7EF;
  max-width: 680px;
  margin: 0 auto 40px;
}

/* SEARCH */
.ms-search-box {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  padding: 18px;
  border-radius: 22px;
  margin-bottom: 35px;
}

.ms-search-box input {
  flex: 1;
  padding: 16px;
  border-radius: 14px;
  border: none;
  outline: none;
}

.ms-search-btn {
  background: #F9C74F;
  color: #1F2937;
  border: none;
  padding: 16px 30px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
}

/* CTA BUTTONS */
.ms-hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 30px;
}

.ms-btn-sell {
  background: #F9C74F;
  color: #1F2937;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(249,199,79,0.55);
  transition: 0.35s;
}

.ms-btn-sell:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(249,199,79,0.75);
}

.ms-btn-buy {
  border: 2px solid rgba(255,255,255,0.65);
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.ms-btn-buy:hover {
  background: rgba(255,255,255,0.18);
}

/* TRUST */
.ms-hero-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  color: #E9F7EF;
  flex-wrap: wrap;
}

.ms-hero-trust i {
  color: #F9C74F;
  margin-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ms-hero-content h1 {
    font-size: 38px;
  }

  .ms-search-box {
    flex-direction: column;
  }

  .ms-hero-actions {
    flex-direction: column;
  }
}

/* PRODUCT CATEGORIES */
.pc-section {
  padding: 110px 0;
  background: #ffffff;
}

.pc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.pc-header {
  text-align: center;
  margin-bottom: 70px;
}

.pc-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.pc-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.pc-card {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(249,199,79,0.12),
      rgba(30,142,62,0.05)
    );
  border-radius: 28px;
  padding: 52px 38px;
  text-align: center;
  cursor: pointer;
  transition: all 0.45s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}

.pc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(249,199,79,0.35), transparent 60%);
  opacity: 0;
  transition: 0.45s;
}

.pc-card:hover::after {
  opacity: 1;
}

.pc-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 36px 90px rgba(0,0,0,0.18);
}

/* ICON */
.pc-card i {
  font-size: 46px;
  color: #1E8E3E;
  margin-bottom: 24px;
}

/* TEXT */
.pc-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.pc-card span {
  font-size: 14px;
  color: #6B7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pc-grid {
    grid-template-columns: 1fr;
  }

  .pc-header h2 {
    font-size: 32px;
  }
}


/* FEATURED PRODUCTS */
.fp-section {
  padding: 120px 0;
  background: #E9F7EF;
}

.fp-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.fp-header {
  text-align: center;
  margin-bottom: 70px;
}

.fp-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.fp-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* CARD */
.fp-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 65px rgba(0,0,0,0.1);
  transition: all 0.45s ease;
}

.fp-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 95px rgba(0,0,0,0.2);
}

/* IMAGE */
.fp-image {
  position: relative;
  height: 220px;
}

.fp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PRICE */
.fp-price {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #F9C74F;
  color: #1F2937;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
}

/* CONTENT */
.fp-content {
  padding: 26px 24px 32px;
}

.fp-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* META */
.fp-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
}

.fp-meta i {
  color: #1E8E3E;
  margin-right: 6px;
}

/* RATING */
.fp-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #F9C74F;
  font-size: 14px;
  margin-bottom: 18px;
}

.fp-rating span {
  color: #6B7280;
  margin-left: 6px;
}

/* BUTTON */
.fp-btn {
  display: inline-block;
  background: #1E8E3E;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.fp-btn:hover {
  background: #166d2d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .fp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fp-grid {
    grid-template-columns: 1fr;
  }

  .fp-header h2 {
    font-size: 32px;
  }
}


/* SELLER CTA – POST AD */
.sa-cta {
  position: relative;
  padding: 160px 0;
  background: url('../imgs/shop2.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.sa-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(249,199,79,0.30), transparent 55%),
    linear-gradient(
      rgba(17, 94, 55, 0.7),
      rgba(22, 109, 45, 0.7)
    );
  z-index: 1;
}

/* CONTAINER */
.sa-cta-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

/* GLASS CARD */
.sa-cta-card {
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  border-radius: 36px;
  padding: 90px 75px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow:
    0 42px 110px rgba(0,0,0,0.40),
    inset 0 0 45px rgba(249,199,79,0.22);
}

/* BADGE */
.sa-cta-badge {
  display: inline-block;
  background: rgba(249,199,79,0.28);
  color: #F9C74F;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 30px;
}

/* TEXT */
.sa-cta-card h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 18px;
}

.sa-cta-card p {
  font-size: 18px;
  color: #E9F7EF;
  max-width: 720px;
  margin: 0 auto 44px;
}

/* ACTIONS */
.sa-cta-actions {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 38px;
}

.sa-btn-primary {
  background: #F9C74F;
  color: #1F2937;
  padding: 18px 48px;
  border-radius: 55px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 45px rgba(249,199,79,0.6);
  transition: 0.35s;
}

.sa-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(249,199,79,0.8);
}

.sa-btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff;
  padding: 18px 48px;
  border-radius: 55px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.sa-btn-outline:hover {
  background: rgba(255,255,255,0.18);
}

/* TRUST */
.sa-cta-trust {
  display: flex;
  justify-content: center;
  gap: 38px;
  font-size: 14px;
  color: #E9F7EF;
  flex-wrap: wrap;
}

.sa-cta-trust i {
  color: #F9C74F;
  margin-right: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sa-cta-card {
    padding: 60px 32px;
  }

  .sa-cta-card h2 {
    font-size: 34px;
  }

  .sa-cta-actions {
    flex-direction: column;
  }
}


/* WHY CHOOSE US – MARKETPLACE */
.wc-marketplace {
  padding: 120px 0;
  background: #ffffff;
}

.wc-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.wc-header {
  text-align: center;
  margin-bottom: 80px;
}

.wc-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.wc-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.wc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.wc-card {
  background: linear-gradient(
    180deg,
    rgba(249,199,79,0.10),
    rgba(30,142,62,0.04)
  );
  border-radius: 30px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.45s ease;
  box-shadow: 0 22px 65px rgba(0,0,0,0.08);
}

.wc-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 95px rgba(0,0,0,0.18);
}

/* ICON */
.wc-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: rgba(249,199,79,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-icon i {
  font-size: 34px;
  color: #1E8E3E;
}

/* TEXT */
.wc-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.wc-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wc-grid {
    grid-template-columns: 1fr;
  }

  .wc-header h2 {
    font-size: 32px;
  }
}


/* DROPDOWN CONTAINER */
.jobs-dropdown {
  position: relative;
}

/* MENU BOX */
.jobs-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 520px;
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: none;
  display: none;
}

/* GRID */
.jobs-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* LINKS */
.jobs-dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #1F2937;
  text-decoration: none;
  transition: 0.25s;
}

.jobs-dropdown-grid a i {
  font-size: 18px;
  color: #1E8E3E;
}

/* HOVER */
.jobs-dropdown-grid a:hover {
  background: #F1FDF6;
  color: #1E8E3E;
}

/* SHOW ON HOVER (DESKTOP) */
.jobs-dropdown:hover .jobs-dropdown-menu {
  display: block;
}

/* MOBILE FIX */
@media (max-width: 992px) {
  .jobs-dropdown-menu {
    width: 100%;
    position: static;
    box-shadow: none;
  }

  .jobs-dropdown-grid {
    grid-template-columns: 1fr;
  }
}

/* BUY & SELL DROPDOWN */
.market-dropdown {
  position: relative;
}

.market-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 540px;
  padding: 22px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 22px 65px rgba(0,0,0,0.16);
  border: none;
  display: none;
}

/* GRID */
.market-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* LINKS */
.market-dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  color: #1F2937;
  text-decoration: none;
  transition: 0.25s;
}

.market-dropdown-grid a i {
  font-size: 18px;
  color: #1E8E3E;
}

/* HOVER */
.market-dropdown-grid a:hover {
  background: #F1FDF6;
  color: #1E8E3E;
}

/* HIGHLIGHT CTA */
.market-dropdown-grid a.highlight {
  background: #1E8E3E;
  color: #ffffff;
  font-weight: 600;
}

.market-dropdown-grid a.highlight i {
  color: #F9C74F;
}

.market-dropdown-grid a.highlight:hover {
  background: #166d2d;
}

/* SHOW ON HOVER (DESKTOP) */
.market-dropdown:hover .market-dropdown-menu {
  display: block;
}

/* MOBILE */
@media (max-width: 992px) {
  .market-dropdown-menu {
    width: 100%;
    position: static;
    box-shadow: none;
  }

  .market-dropdown-grid {
    grid-template-columns: 1fr;
  }
}


/* BUSINESS DROPDOWN */
.biz-dropdown {
  position: relative;
}

.biz-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 560px;
  padding: 22px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 22px 65px rgba(0,0,0,0.16);
  border: none;
  display: none;
}

/* GRID */
.biz-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* LINKS */
.biz-dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  color: #1F2937;
  text-decoration: none;
  transition: 0.25s;
}

.biz-dropdown-grid a i {
  font-size: 18px;
  color: #1E8E3E;
}

/* HOVER */
.biz-dropdown-grid a:hover {
  background: #F1FDF6;
  color: #1E8E3E;
}

/* CTA HIGHLIGHT */
.biz-dropdown-grid a.biz-highlight {
  background: #1E8E3E;
  color: #ffffff;
  font-weight: 600;
}

.biz-dropdown-grid a.biz-highlight i {
  color: #F9C74F;
}

.biz-dropdown-grid a.biz-highlight:hover {
  background: #166d2d;
}

/* SHOW ON HOVER */
.biz-dropdown:hover .biz-dropdown-menu {
  display: block;
}

/* MOBILE */
@media (max-width: 992px) {
  .biz-dropdown-menu {
    width: 100%;
    position: static;
    box-shadow: none;
  }

  .biz-dropdown-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICES DROPDOWN */
.svc-dropdown {
  position: relative;
}

.svc-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 560px;
  padding: 22px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 22px 65px rgba(0,0,0,0.16);
  border: none;
  display: none;
}

/* GRID */
.svc-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
}

/* LINKS */
.svc-dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  color: #1F2937;
  text-decoration: none;
  transition: 0.25s;
}

.svc-dropdown-grid a i {
  font-size: 18px;
  color: #1E8E3E;
}

/* HOVER */
.svc-dropdown-grid a:hover {
  background: #F1FDF6;
  color: #1E8E3E;
}

/* CTA */
.svc-dropdown-grid a.svc-highlight {
  background: #1E8E3E;
  color: #ffffff;
  font-weight: 600;
}

.svc-dropdown-grid a.svc-highlight i {
  color: #F9C74F;
}

.svc-dropdown-grid a.svc-highlight:hover {
  background: #166d2d;
}

/* SHOW ON HOVER */
.svc-dropdown:hover .svc-dropdown-menu {
  display: block;
}

/* MOBILE */
@media (max-width: 992px) {
  .svc-dropdown-menu {
    width: 100%;
    position: static;
    box-shadow: none;
  }

  .svc-dropdown-grid {
    grid-template-columns: 1fr;
  }
}


/* SERVICES PACKAGES */
.sp-section {
  padding: 120px 0;
  background: #F1FDF6;
}

.sp-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.sp-header {
  text-align: center;
  margin-bottom: 70px;
}

.sp-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.sp-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.sp-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px 38px;
  text-align: center;
  box-shadow: 0 22px 65px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
}

.sp-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 38px 90px rgba(0,0,0,0.18);
}

/* POPULAR */
.sp-card.popular {
  border: 2px solid #F9C74F;
  transform: scale(1.05);
}

.sp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F9C74F;
  color: #1F2937;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

/* TEXT */
.sp-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.sp-price {
  font-size: 36px;
  font-weight: 800;
  color: #1E8E3E;
  margin-bottom: 8px;
}

.sp-desc {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 25px;
}

/* FEATURES */
.sp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.sp-features li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #374151;
}

.sp-features i {
  color: #1E8E3E;
  margin-right: 8px;
}

.sp-features li.disabled {
  color: #9CA3AF;
}

.sp-features li.disabled i {
  color: #EF4444;
}

/* BUTTON */
.sp-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: #1E8E3E;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.sp-btn:hover {
  background: #166d2d;
}

.sp-btn.highlight {
  background: #F9C74F;
  color: #1F2937;
}

.sp-btn.highlight:hover {
  background: #f6b93b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sp-grid {
    grid-template-columns: 1fr;
  }

  .sp-card.popular {
    transform: none;
  }
}
/* BUSINESS PACKAGES */
.bp-section {
  padding: 120px 0;
  background: #F9FAFB;
}

.bp-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.bp-header {
  text-align: center;
  margin-bottom: 70px;
}

.bp-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.bp-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.bp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.bp-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px 38px;
  text-align: center;
  box-shadow: 0 22px 65px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
}

.bp-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 38px 90px rgba(0,0,0,0.18);
}

/* POPULAR */
.bp-card.popular {
  border: 2px solid #F9C74F;
  transform: scale(1.05);
}

.bp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F9C74F;
  color: #1F2937;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

/* TEXT */
.bp-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.bp-price {
  font-size: 36px;
  font-weight: 800;
  color: #1E8E3E;
  margin-bottom: 8px;
}

.bp-desc {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 25px;
}

/* FEATURES */
.bp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.bp-features li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #374151;
}

.bp-features i {
  color: #1E8E3E;
  margin-right: 8px;
}

.bp-features li.disabled {
  color: #9CA3AF;
}

.bp-features li.disabled i {
  color: #EF4444;
}

/* BUTTON */
.bp-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: #1E8E3E;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.bp-btn:hover {
  background: #166d2d;
}

.bp-btn.highlight {
  background: #F9C74F;
  color: #1F2937;
}

.bp-btn.highlight:hover {
  background: #f6b93b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .bp-grid {
    grid-template-columns: 1fr;
  }

  .bp-card.popular {
    transform: none;
  }
}

/* BUY & SELL PACKAGES */
.mp-section {
  padding: 120px 0;
  background: #F1FDF6;
}

.mp-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.mp-header {
  text-align: center;
  margin-bottom: 70px;
}

.mp-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.mp-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.mp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.mp-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px 38px;
  text-align: center;
  box-shadow: 0 22px 65px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
}

.mp-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 38px 90px rgba(0,0,0,0.18);
}

/* POPULAR */
.mp-card.popular {
  border: 2px solid #F9C74F;
  transform: scale(1.05);
}

.mp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F9C74F;
  color: #1F2937;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

/* TEXT */
.mp-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.mp-price {
  font-size: 36px;
  font-weight: 800;
  color: #1E8E3E;
  margin-bottom: 8px;
}

.mp-desc {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 25px;
}

/* FEATURES */
.mp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.mp-features li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #374151;
}

.mp-features i {
  color: #1E8E3E;
  margin-right: 8px;
}

.mp-features li.disabled {
  color: #9CA3AF;
}

.mp-features li.disabled i {
  color: #EF4444;
}

/* BUTTON */
.mp-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: #1E8E3E;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.mp-btn:hover {
  background: #166d2d;
}

.mp-btn.highlight {
  background: #F9C74F;
  color: #1F2937;
}

.mp-btn.highlight:hover {
  background: #f6b93b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mp-grid {
    grid-template-columns: 1fr;
  }

  .mp-card.popular {
    transform: none;
  }
}


/* JOBS PACKAGES */
.jp-section {
  padding: 120px 0;
  background: #F9FAFB;
}

.jp-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.jp-header {
  text-align: center;
  margin-bottom: 70px;
}

.jp-header h2 {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 10px;
}

.jp-header p {
  font-size: 17px;
  color: #6B7280;
}

/* GRID */
.jp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.jp-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px 38px;
  text-align: center;
  box-shadow: 0 22px 65px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
}

.jp-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 38px 90px rgba(0,0,0,0.18);
}

/* POPULAR */
.jp-card.popular {
  border: 2px solid #F9C74F;
  transform: scale(1.05);
}

.jp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F9C74F;
  color: #1F2937;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

/* TEXT */
.jp-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.jp-price {
  font-size: 36px;
  font-weight: 800;
  color: #1E8E3E;
  margin-bottom: 8px;
}

.jp-desc {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 25px;
}

/* FEATURES */
.jp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.jp-features li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #374151;
}

.jp-features i {
  color: #1E8E3E;
  margin-right: 8px;
}

.jp-features li.disabled {
  color: #9CA3AF;
}

.jp-features li.disabled i {
  color: #EF4444;
}

/* BUTTON */
.jp-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: #1E8E3E;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.jp-btn:hover {
  background: #166d2d;
}

.jp-btn.highlight {
  background: #F9C74F;
  color: #1F2937;
}

.jp-btn.highlight:hover {
  background: #f6b93b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .jp-grid {
    grid-template-columns: 1fr;
  }

  .jp-card.popular {
    transform: none;
  }
}


/* SERVICES LISTING */
.sl-section {
   padding: 120px 0;
  background: linear-gradient(180deg, #ffffff, #F1FDF6);
}

.sl-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.sl-header {
  text-align: center;
  margin-bottom: 50px;
}

.sl-header h1 {
  font-size: 44px;
  color: #1E8E3E;
  margin-bottom: 8px;
}

.sl-header p {
  font-size: 17px;
  color: #6B7280;
}

/* SEARCH */
.sl-search {
  display: flex;
  gap: 14px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  margin-bottom: 60px;
}

.sl-search input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  outline: none;
}

.sl-search button {
  background: #1E8E3E;
  color: #ffffff;
  border: none;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.sl-search button i {
  margin-right: 6px;
}

/* GRID */
.sl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.sl-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 20px 55px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.sl-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 38px 85px rgba(0,0,0,0.18);
}

.sl-card i {
  font-size: 42px;
  color: #1E8E3E;
  margin-bottom: 20px;
}

.sl-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.sl-card p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 18px;
}

.sl-card a {
  display: inline-block;
  text-decoration: none;
  background: #F9C74F;
  color: #1F2937;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.sl-card a:hover {
  background: #f6b93b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sl-search {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .sl-grid {
    grid-template-columns: 1fr;
  }

  .sl-header h1 {
    font-size: 32px;
  }
}




/* HEADER */
.sl-header {
  text-align: center;
  margin-bottom: 55px;
}

.sl-subtitle {
  color: #F9C74F;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.sl-header h1 {
  font-size: 48px;
  color: #1E8E3E;
  margin: 6px 0;
}

.sl-header p {
  color: #6B7280;
  font-size: 17px;
}

/* SEARCH */
.premium-search {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* GRID */
.sl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* CARD */
.sl-card.premium {
  position: relative;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 48px 38px;
  text-align: center;
  box-shadow: 0 30px 85px rgba(0,0,0,0.12);
  transition: 0.45s ease;
}

.sl-card.premium:hover {
  transform: translateY(-18px);
  box-shadow: 0 55px 130px rgba(0,0,0,0.2);
}

.sl-card i {
  font-size: 44px;
  color: #1E8E3E;
  margin-bottom: 18px;
}

.sl-card h3 {
  font-size: 22px;
}

.sl-card p {
  color: #6B7280;
  font-size: 14px;
  margin: 10px 0 18px;
}

.sl-card a {
  background: #F9C74F;
  color: #1F2937;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
}

/* BADGE */
.sl-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #1E8E3E;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
}

/* PAGINATION */
.sl-pagination {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.pg-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #1E8E3E;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.pg-btn:hover {
  background: #1E8E3E;
  color: #ffffff;
}

.pg-btn.active {
  background: #F9C74F;
  color: #1F2937;
}

.pg-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sl-grid {
    grid-template-columns: 1fr;
  }

  .sl-header h1 {
    font-size: 34px;
  }
}




/* PAGE */
.fv-page {
  max-width: 1100px;
  margin: auto;
  padding: 140px 20px 80px;
}

/* HERO */
.fv-hero h1 {
  font-size: 38px;
  margin-bottom: 6px;
}

.fv-hero p {
  color: #6B7280;
}

.fv-meta {
  margin-top: 10px;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.fv-meta i {
  color: #F9C74F;
}

/* FILTERS */
.fv-filters {
  display: flex;
  gap: 10px;
  margin: 35px 0 45px;
  flex-wrap: wrap;
}

.fv-filters button {
  background: #F3F4F6;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  height: fit-content;
}

.fv-filters button.active {
  background: #1E8E3E;
  color: #fff;
}

.fv-filters select {
  margin-left: auto;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  height: fit-content !important;
}

/* SECTIONS */
.fv-section {
  margin-bottom: 45px;
}

.fv-section h3 {
  font-size: 20px;
  margin-bottom: 18px;
}

/* CARD (LIST STYLE) */
.fv-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  margin-bottom: 14px;
  transition: 0.2s;
}

.fv-card:hover {
  background: #F9FAFB;
}

.fv-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

/* INFO */
.fv-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.fv-info span {
  font-size: 13px;
  color: #6B7280;
}

.fv-info p {
  font-size: 14px;
  color: #374151;
  margin-top: 4px;
}

/* CTA */
.fv-cta {
  margin-left: auto;
  text-align: right;
}

.fv-cta span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.fv-cta a {
  background: #1E8E3E;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* SPONSORED */
.fv-card.sponsored {
  border-color: #F9C74F;
  background: #FFFBEA;
}

/* PAGINATION */
.fv-pagination {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 60px;
}

.fv-pagination a {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.fv-pagination a.active {
  font-weight: 700;
  color: #1E8E3E;
}

.fv-pagination a.disabled {
  opacity: 0.4;
  pointer-events: none;
}




/* PAGE */
.pp-page {
  max-width: 1100px;
  margin: auto;
  padding: 140px 20px 80px;
}

/* HEADER */
.pp-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 35px;
}

.pp-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.pp-basic h1 {
  font-size: 26px;
}

.pp-basic p {
  color: #6B7280;
}

.pp-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  margin-top: 6px;
}

.pp-meta i {
  color: #F9C74F;
}

/* LAYOUT */
.pp-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* BOX */
.pp-box {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 22px;
}

.pp-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* SERVICES */
.pp-services {
  list-style: none;
  padding: 0;
}

.pp-services li {
  padding: 6px 0;
  font-size: 14px;
}

/* TAGS */
.pp-tags span {
  display: inline-block;
  background: #F3F4F6;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin: 6px 6px 0 0;
}

/* REVIEWS */
.pp-review {
  margin-bottom: 14px;
}

.pp-review span {
  color: #F9C74F;
  font-size: 13px;
}

.pp-view-all {
  font-size: 14px;
  color: #1E8E3E;
  text-decoration: none;
  font-weight: 600;
}

/* BOOKING CARD */
.pp-booking {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  position: sticky;
  top: 30px;
}

.pp-price {
  font-size: 16px;
  margin-bottom: 14px;
}

.pp-booking select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  margin-bottom: 12px;
}

.pp-btn {
  width: 100%;
  background: #1E8E3E;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
}

.pp-note {
  font-size: 13px;
  color: #6B7280;
  margin-top: 12px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pp-layout {
    grid-template-columns: 1fr;
  }

  .pp-booking {
    position: static;
  }
}



/* PAGE */
.jl-page {
  max-width: 1100px;
  margin: auto;
  padding: 140px 20px 80px;
}

/* HEADER */
.jl-header h1 {
  font-size: 34px;
  margin-bottom: 6px;
}

.jl-header p {
  color: #6B7280;
}

/* SEARCH */
.jl-search {
  display: flex;
  gap: 12px;
  margin: 30px 0 40px;
}

.jl-search input,
.jl-search select {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
}

.jl-search button {
  background: #1E8E3E;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* JOB LIST */
.jl-list {
  border-top: 1px solid #E5E7EB;
}

/* JOB ROW */
.jl-job {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px;
  border-bottom: 1px solid #E5E7EB;
}

.jl-job:hover {
  background: #F9FAFB;
}

/* SPONSORED */
.jl-job.sponsored {
  background: #FFFBEA;
}

.jl-tag {
  position: absolute;
  background: #F9C74F;
  color: #1F2937;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
}

/* MAIN */
.jl-main h3 {
  font-size: 18px;
  margin-bottom: 4px;
  margin-top: 30px;
}

.company {
  font-size: 14px;
  color: #374151;
}

/* META */
.jl-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #6B7280;
  margin-top: 6px;
}

.jl-meta i {
  margin-right: 4px;
}

/* SIDE */
.jl-side {
  text-align: right;
  min-width: 160px;
      padding: 30px 0px;
}

.salary {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

/* APPLY BUTTON */
.apply-btn {
  background: #1E8E3E;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* PAGINATION */
.jl-pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.jl-pagination a {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.jl-pagination a.active {
  font-weight: 700;
  color: #1E8E3E;
}

.jl-pagination a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .jl-job {
    flex-direction: column;
  }

  .jl-side {
    text-align: left;
  }
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 900px) {

  /* PAGE PADDING */
  .jl-page {
    padding: 30px 16px 60px;
  }

  /* HEADER */
  .jl-header h1 {
    font-size: 26px;
  }

  .jl-header p {
    font-size: 14px;
  }

  /* SEARCH BAR STACK */
  .jl-search {
    flex-direction: column;
    gap: 10px;
  }

  .jl-search input,
  .jl-search select,
  .jl-search button {
    width: 100%;
  }

  /* JOB ROW */
  .jl-job {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px;
  }
  .jl-side{
    padding:  0px;
  }

  /* JOB TITLE */
  .jl-main h3 {
    font-size: 16px;
  }

  /* META STACK */
  .jl-meta {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
  }

  /* RIGHT SIDE → BOTTOM */
  .jl-side {
    width: 100%;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .salary {
    font-size: 14px;
    margin-bottom: 0;
  }

  .apply-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .jl-header h1 {
    font-size: 22px;
  }

  .jl-meta {
    flex-direction: column;
    gap: 6px;
  }

  .jl-side {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
  }

  /* PAGINATION */
  .jl-pagination {
    gap: 10px;
    font-size: 13px;
  }
}



/* PAGE */
.jc-page {
  max-width: 1100px;
  margin: auto;
  padding: 140px 20px 80px;
}

/* HEADER */
.jc-breadcrumb {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 6px;
}

.jc-header h1 {
  font-size: 34px;
  margin-bottom: 6px;
}

.jc-header p {
  color: #6B7280;
}

.jc-meta {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  font-size: 14px;
}

/* FILTERS */
.jc-filters {
  display: flex;
  gap: 12px;
  margin: 30px 0 45px;
  flex-wrap: wrap;
}

.jc-filters input,
.jc-filters select {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  height: fit-content !important;
}

.jc-filters button {
  background: #1E8E3E;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* SECTION */
.jc-section {
  margin-bottom: 0px;
}

.jc-section h3 {
  font-size: 20px;
  margin-bottom: 18px;
}

/* JOB ROW */
.jc-job {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px ;
  border-bottom: 1px solid #E5E7EB;
}

.jc-job:hover {
  background: #F9FAFB;
}

/* SPONSORED */
.jc-job.sponsored {
  background: #FFFBEA;
}

.jc-tag {
  position: absolute;
  background: #F9C74F;
  color: #1F2937;
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
}

/* FEATURED */
.jc-job.featured {
  border-left: 4px solid #1E8E3E;
  padding-left: 14px;
}

/* MAIN */
.jc-main h4 {
  font-size: 18px;
  margin-bottom: 4px;
  margin-top: 30px;
}

.company {
  font-size: 14px;
  color: #374151;
}

/* INFO */
.jc-info {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #6B7280;
  margin-top: 6px;
}

/* APPLY */
.jc-side {
  min-width: 120px;
  text-align: right;
  padding: 30px 0px;
}

.jc-apply {
  background: #1E8E3E;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* PAGINATION */
.jc-pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.jc-pagination a {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.jc-pagination a.active {
  font-weight: 700;
  color: #1E8E3E;
}

.jc-pagination a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .jc-job {
    flex-direction: column;
  }

  .jc-side {
    text-align: left;
    margin-top: 10px;
  }

  .jc-filters {
    flex-direction: column;
  }
}


/* PAGE */
.jd-page {
  max-width: 1100px;
  margin: auto;
  padding: 140px 20px 80px;
}

/* HEADER */
.jd-header h1 {
  font-size: 32px;
  margin-bottom: 4px;
}

.jd-company {
  font-size: 16px;
  color: #374151;
}

.jd-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #6B7280;
  margin-top: 10px;
}

/* LAYOUT */
.jd-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 35px;
}

/* BOX */
.jd-box {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 22px;
}

.jd-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.jd-box ul {
  padding-left: 18px;
}

.jd-box li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* APPLY CARD */
.jd-apply-card {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  position: sticky;
  top: 30px;
}

.jd-salary {
  font-size: 15px;
  margin: 14px 0;
}

/* BUTTONS */
.jd-apply-btn {
  width: 100%;
  background: #1E8E3E;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
}

.jd-save-btn {
  width: 100%;
  background: #F3F4F6;
  border: none;
  padding: 10px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
}

.jd-note {
  font-size: 13px;
  color: #6B7280;
  text-align: center;
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .jd-layout {
    grid-template-columns: 1fr;
  }

  .jd-apply-card {
    position: static;
  }
  .jd-page{
    padding: 40px 20px 80px;
  }
}



/* PAGE */
.cp-page {
  max-width: 1100px;
  margin: auto;
  padding: 140px 20px 80px;
}

/* HEADER */
.cp-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 35px;
}

.cp-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 10px;
}

.cp-info h1 {
  font-size: 28px;
}

.cp-tagline {
  color: #6B7280;
  margin: 4px 0;
}

.cp-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #6B7280;
  margin-top: 6px;
}

.cp-meta i {
  color: #1E8E3E;
}

/* LAYOUT */
.cp-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* BOX */
.cp-box {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 22px;
}

.cp-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* DETAILS */
.cp-details {
  list-style: none;
  padding: 0;
}

.cp-details li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* JOB LIST */
.cp-job {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #E5E7EB;
}

.cp-job:last-child {
  border-bottom: none;
}

.cp-job h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.cp-job span {
  font-size: 13px;
  color: #6B7280;
}

/* APPLY BTN */
.cp-apply {
  background: #1E8E3E;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

/* SIDEBAR */
.cp-card {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  position: sticky;
  top: 30px;
}

.cp-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.cp-card li {
  font-size: 14px;
  margin-bottom: 10px;
}

.cp-card i {
  color: #F9C74F;
  margin-right: 6px;
}

/* FOLLOW BTN */
.cp-follow {
  display: block;
  text-align: center;
  background: #F3F4F6;
  padding: 10px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  color: #111827;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cp-layout {
    grid-template-columns: 1fr;
  }

  .cp-card {
    position: static;
  }

  .cp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cp-page {
  
  padding: 40px 20px 80px;
}
}




/* PAGE */
.pl-page {
  max-width: 1200px;
  margin: auto;
  padding: 140px 20px 80px;
}

/* HEADER */
.pl-header h1 {
  font-size: 32px;
  margin-bottom: 6px;
}

.pl-header p {
  color: #6B7280;
}

/* FILTER BAR */
.pl-filters {
  display: flex;
  gap: 12px;
  margin: 30px 0 40px;
  flex-wrap: wrap;
}

.pl-filters input,
.pl-filters select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  flex: 1;
  height: fit-content !important;
}

/* GRID */
.pl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.pl-card {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: 0.2s;
  position: relative;
}

.pl-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* IMAGE */
.pl-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* INFO */
.pl-info {
  padding: 14px;
}

.pl-info h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.pl-info strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.pl-info p {
  font-size: 13px;
  color: #6B7280;
}

/* FEATURED */
.pl-card.featured {
  border-color: #F9C74F;
}

.pl-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #F9C74F;
  color: #1F2937;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 14px;
  font-weight: 700;
}

/* PAGINATION */
.pl-pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.pl-pagination a {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.pl-pagination a.active {
  font-weight: 700;
  color: #1E8E3E;
}

.pl-pagination a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-filters {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .pl-grid {
    grid-template-columns: 1fr;
  }
}




/* PAGE */
.pd-page {
  max-width: 1200px;
  margin: auto;
  padding: 140px 20px 80px;
}

/* HEADER */
.pd-header h1 {
  font-size: 30px;
  margin-bottom: 6px;
}

.pd-meta {
  font-size: 14px;
  color: #6B7280;
}

/* LAYOUT */
.pd-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

/* GALLERY */
.pd-gallery {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 14px;
}

.pd-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
}

.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pd-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #E5E7EB;
}

/* BOX */
.pd-box {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  margin-top: 22px;
}

.pd-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* DETAILS */
.pd-details {
  list-style: none;
  padding: 0;
}

.pd-details li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* RIGHT */
.pd-card {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  position: sticky;
  top: 30px;
}

.pd-card h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

/* BUTTONS */
.pd-chat-btn {
  width: 100%;
  background: #1E8E3E;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
}

.pd-call-btn {
  width: 100%;
  background: #F3F4F6;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
}

/* SAFE NOTE */
.pd-safe {
  font-size: 13px;
  color: #6B7280;
  text-align: center;
  margin-top: 12px;
}

/* SELLER */
.pd-seller {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  margin-top: 22px;
}

.pd-seller-box {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pd-seller-box img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.pd-seller span {
  font-size: 13px;
  color: #6B7280;
}

.pd-profile {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #1E8E3E;
  font-weight: 600;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pd-layout {
    grid-template-columns: 1fr;
  }

  .pd-card {
    position: static;
  }

  .pd-main-img {
    height: 260px;
  }
}
