/* styles.css - Closer exact visual replica */
:root{--primary:#ff3b4a;--muted:#6c7480;}
*{box-sizing:border-box}
body{font-family: "Inter", "Poppins", Arial, sans-serif;background:#fff;color:#222;}
.navbar{padding-top:8px;padding-bottom:8px;}
.logo{width:36px;height:36px;object-fit:cover;border-radius:8px;}

/* HERO */
.hero-section{position:relative; padding:140px 0 80px; min-height:560px; display:flex; align-items:center;}
.hero-bg{position:absolute; inset:0; background-image: url("../Hero-banner.webp"); background-size:cover; background-position:center; filter:brightness(0.6);}
.hero-inner{position:relative; z-index:2; max-width:980px; margin:auto;}
.hero-title{font-size:42px; font-weight:700; margin-bottom:10px; color:white; text-shadow:0 6px 18px rgba(0,0,0,0.35);}
.hero-sub{font-size:18px; color:rgba(255,255,255,0.9); margin-bottom:22px;}

/* category icons */
.category-cards .cat-item{background:rgba(255,255,255,0.08); border-radius:10px; padding:12px 18px; display:flex; align-items:center; gap:10px; min-width:120px; justify-content:center; backdrop-filter: blur(4px);}
.category-cards .icon{font-size:20px;}

/* search panel */
.search-panel{background:rgba(255,255,255,0.98); padding:18px; border-radius:12px; box-shadow:0 10px 30px rgba(11,25,40,0.12); margin-top:12px; width:1024px;}
.search-tabs .nav-link{border-radius:50px; padding:6px 18px; color:#333; background:#fff; border:1px solid #eee;}
.search-tabs .nav-link.active{background:var(--primary); color:#fff;}

/* listing cards */
.listing-card{border-radius:12px; overflow:hidden; border:none;}
.listing-card .img-wrap{position:relative;}
.listing-card img{height:200px; object-fit:cover; display:block; width:100%;}
.listing-card .rating{position:absolute; left:10px; top:10px; background:var(--primary); color:white; padding:6px 8px; border-radius:8px; font-weight:600;}
.listing-card .badge-pos{position:absolute; right:10px; top:10px; background:#1ec76a; color:white; padding:6px 8px; border-radius:8px; font-weight:600;}

/* category boxes */
.category-box{background:#fff; border-radius:12px; padding:18px; min-height:110px; display:flex; flex-direction:column; align-items:center; justify-content:center;}
.cat-icon{font-size:28px; margin-bottom:6px;}

/* subscribe */
.subscribe-section {
    position: relative;
    background-color: #04373d;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
  }

  /* Circle background effects */
  .subscribe-section::before,
  .subscribe-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
  }

  .subscribe-section::before {
    width: 700px;
    height: 700px;
    top: -150px;
    left: -200px;
  }

  .subscribe-section::after {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -150px;
  }

  .subscribe-section h6 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .subscribe-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
  }

  .subscribe-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 3px solid #fff;
  }

  .subscribe-form input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
  }

  .subscribe-form button {
    background: #f44336;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .subscribe-form button:hover {
    background: #d32f2f;
  }

  @media (max-width: 600px) {
    .subscribe-form {
      flex-direction: column;
    }
    .subscribe-form button {
      width: 100%;
      border-radius: 0 0 6px 6px;
    }
  }

/* responsive */
@media (max-width:991px){
  .hero-title{font-size:34px;}
  .hero-section{padding:100px 0 60px;}
}
@media (max-width:576px){
  .hero-title{font-size:26px;}
  .search-panel .row>*{margin-bottom:8px;}
  .category-cards .cat-item{min-width:90px; padding:10px;}
}

/* Fixed Header (Always Visible) */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Prevent content overlap */
body {
  padding-top: 70px; /* Adjust based on header height */
}

/* Dropdown hover effect (optional) */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  transition: all 0.3s ease;
}

.blg_tag {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 30px;
    border-radius: 4px;
    color: #F41b3b;
    font-size: 13px;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    background: rgb(244 27 59 / 10%);
    margin-bottom: 4px;
}
  .counter-box h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
  }

  .counter-box p {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
  }

  .teal { color: #009688; }
  .orange { color: #ff9800; }
  .red { color: #e53935; }
  
  .text-sky {
    color: #009688 !important;
}
.bg-light-sky {
    background-color: rgba(0, 150, 136, 0.1) !important;
}
.theme-cl {
    color: #F41b3b !important;
}
.uli-list-features .list-uiyt {
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.uli-list-features .list-uiyt .list-iobk {
    width: 100px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f41b3b;
    margin-right: 1rem;
    border-radius: 4px;
    background: rgba(244, 27, 59, 0.1);
    font-size: 18px;
}
.uli-list-features ul li {
    list-style: none;
    display: block;
    padding: 1rem 0;
    max-width: 550px;
}

 footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 40px 0;
  }

  .footer-logo img {
    height: 60px;
    margin-bottom: 12px;
  }

  .footer-logo p {
    color: #555;
    margin-bottom: 5px;
    font-size: 15px;
  }

  .footer-logo a {
    color: #f44336;
    font-size: 18px;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
  }

  .footer-logo a:hover {
    color: #d32f2f;
  }

  .footer-column h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
  }

  .footer-column ul {
    list-style: none;
    padding-left: 0;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    color: #555;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
  }

  .footer-column ul li a:hover {
    color: #f44336;
  }

  .footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    color: #666;
    font-size: 14px;
  }

  .footer-bottom a {
    color: #f44336;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    .footer-logo {
      margin-bottom: 30px;
    }
  }
  .bootstrap-select>.dropdown-toggle {
	  border: solid 1px #e1e1e1;
  }
  
  
.dashboard-banner {
  background: url('../cover.webp') no-repeat center center/cover;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  color: #fff;
}

.banner-overlay {
 /* background: rgba(0, 0, 0, 0.4);  */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.user-img img {
  width: 80px;
  height: 80px;
  border: 3px solid #fff;
  object-fit: cover;
}

.add-listing-btn {
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.add-listing-btn:hover {
  background: #ff4c61;
  color: #fff !important;
}

@media (max-width: 768px) {
  .dashboard-banner {
    height: auto;
    padding: 40px 0;
    text-align: center;
  }
/*
  .container {
    flex-direction: column;
  }
*/
  .add-listing-btn {
    margin-top: 15px;
  }
}
 
 .goodup-dashboard-nav ul li a
 {
    color: #555962;
    display: block;
    padding: 12px 25px;
    transition: 0.3s;
    cursor: pointer;
    font-weight: 400;
    position: relative;
    font-size: 15px;
    letter-spacing: 0.5px;
	text-decoration: none;
}

.list-group-item.active {
    z-index: 2;
    color: var(--bs-list-group-active-color);
    background-color: #F41b3b;
    border-color: #F41b3b;
}

.contact-card {
      max-width: 400px;
      margin: 20px auto;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      padding: 25px;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #e9ecef;
    }
    .contact-item:last-child {
      border-bottom: none;
    }
    .icon-box {
      width: 45px;
      height: 45px;
      background: #f1f5f9;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: red;
    }
    .contact-text h6 {
      margin: 0;
      font-weight: 600;
      color: #02885f;
    }
    .contact-text p, .contact-text a {
      margin: 0;
      font-size: 15px;
      color: #495057;
      text-decoration: none;
    }
    .contact-text a:hover {
      text-decoration: underline;
    }
	
	.profile-card {
      max-width: 350px;
      margin: 5px auto;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      padding: 30px 20px;
    }
    .profile-card img {
      width: 90px;
      height: 90px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .stats {
      display: flex;
      justify-content: space-around;
      margin: 20px 0;
    }
    .stats div {
      text-align: center;
    }
    .stats h5 {
      margin: 0;
      font-weight: 600;
    }
    .stats small {
      color: #6c757d;
    }
    .btn-outline-primary {
      border-radius: 8px;
      font-weight: 500;
    }
    .btn-danger {
      border-radius: 8px;
      font-weight: 600;
    }
	
/*Socila media style in listibg details*/

.social-card {
      
      background: #fff;
      border-radius: 15px;
      
    }
    .social-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #e9ecef;
    }
    .social-item:last-child {
      border-bottom: none;
    }
    .icon-box {
      width: 45px;
      height: 45px;
      background: #f1f5f9;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: red;
    }
    .social-text h6 {
      margin: 0;
      font-weight: 600;
      color: #02885f;
    }
    .social-text p, .social-text a {
      margin: 0;
      font-size: 15px;
      color: #495057;
      text-decoration: none;
    }
    .social-text a:hover {
      text-decoration: underline;
    }
	