:root {
  --brand-primary: #6366f1; /* #2C3E50;*/
  --brand-accent: #f97316;
  --dark-deep: #0f172a;
  --navy-blue: #050c16;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --glass: rgba(255, 255, 255, 0.8);
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-subtle: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

.btn-premium {
  background: linear-gradient(135deg, var(--brand-primary), #8b5cf6);
  color: white;
  border-radius: 100px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
  position: relative;
  overflow: hidden;
}

.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
  color: white;
}

.btn-orange {
  background: linear-gradient(135deg, var(--brand-accent), #fb923c);
  color: white;
  border-radius: 100px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-orange:hover::before {
  left: 100%;
}

.btn-orange:hover {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: white;
  transform: scale(1.05);
}

.bg-navy {
  background: linear-gradient(135deg, var(--dark-deep), #1e293b) !important;
}
.text-navy {
  color: var(--dark-deep) !important;
}
.text-orange {
  color: var(--brand-accent) !important;
}
.bg-white-10 {
  background: rgba(255, 255, 255, 0.1) !important;
}
.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -1px;
  font-size: 1.75rem;
  color: var(--dark-deep) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-section {
  padding: 140px 0 100px;
  /*background: linear-gradient(135deg, #f0f9ff 0%, #fffbeb 100%);*/
  position: relative;
  overflow: hidden;
  background:#1e293b;
  color: #fff;
}
/*
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(30deg);
  z-index: 0;
}*/

.hero-title {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-title span {
  color: var(--brand-primary);
  position: relative;
}

/*.hero-title span::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: 5px;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 8px;*/
/*  background: rgba(99, 102, 241, 0.2);*/
/*  z-index: -1;*/
/*}*/
.w-183{
 width: 183px;
}
.search-container {
  background: white;
  padding: 2px;
  border-radius: 100px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  max-width: 750px;
  margin: 0 auto;
  transition: var(--transition);
}

.search-container:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.search-container input {
  border: none;
  width: 100%;
  outline: none;
  padding: 0 20px;
  font-weight: 500;
  font-size: 1rem;
}

/* Redesigned Category Section */
.category-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  position: relative;
}

/* .category-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}
*/

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.category-icon {
  font-size: 2.5rem;
  height: 70px;
  width: 70px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--brand-primary);
  transition: var(--transition);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.1);
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--brand-primary), #8b5cf6);
  color: white;
}

.category-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark-deep);
}

.category-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.category-card:hover .category-name {
  color: var(--brand-primary);
}

/* Redesigned CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    #8b5cf6,
    var(--brand-accent)
  );
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ad-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.ad-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.ad-card:hover .ad-img-wrapper img {
  transform: scale(1.15);
}

.ad-price {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 1.1rem;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.icon-wrapper:hover {
  transform: scale(1.1);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.footer-bg {
  background: linear-gradient(135deg, var(--dark-deep), #1e293b);
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: white;
  transform: translateX(8px);
}

.social-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: var(--brand-primary);
  transform: translateY(-3px) scale(1.1);
  border-color: var(--brand-primary);
}

.feature-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--brand-accent);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
      max-width: 90px;
}
.ad-card .fw-bold{
    color: #000 !important ;
}

.ad-card .ad-price{
    color: #000 !important ;
  
}
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 1rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* Header Style */
.about-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f0f9ff 0%, #fffbeb 100%);
  text-align: center;
}

.breadcrumb-item a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}

/* Story Section */
.story-img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Values Cards */
.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--brand-primary);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--brand-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-card {
  text-align: center;
  margin-bottom: 30px;
}

.team-img-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 8px;
  border: 2px dashed var(--brand-primary);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* CTA Section Reuse */
.cta-section {
  padding: 80px 0;
  /*background: linear-gradient(135deg, var(--brand-primary), #8b5cf6);*/
  /*border-radius: 40px;*/
  margin-bottom: 80px;
  color: white;
  background:#1e293b;
}
.listing-icons-list li{
    color: #000;
}
/* .btn-premium {
  background: white;
  color: var(--brand-primary);
  border-radius: 100px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  border: none;
  transition: var(--transition);
}

.btn-premium:hover {
  transform: scale(1.05);
  background: var(--bg-light);
} */
