:root {
  --gold: #E2B176;
  --dark: #0a0a0a;
}

body {
  padding-top: 80px;
  background: var(--dark);
}

.header {
  background-color: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: white !important;
  text-decoration: none;
}

.gold {
  color: var(--gold);
}

/* বাটন আরও বড় */
.cta-btn {
  background: var(--gold);
  color: black;
  border: none;
  padding: 14px 35px;
  /* বড় করা হয়েছে */
  border-radius: 50px;
  font-weight: 900;
  font-size: 16px;
  transition: 0.3s;
}

/* বোল্ড আন্ডারলাইন */
.navbar-nav .nav-link {
  color: white !important;
  font-weight: 900;
  font-size: 16px;
  position: relative;
  padding: 10px 15px !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 5px;
  /* মোটা আন্ডারলাইন */
  bottom: 0;
  left: 15px;
  background: var(--gold);
  border-radius: 10px;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 30px);
}

/* শপিং ব্যাজ */
.badge-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gold);
  color: black;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}

/* হ্যামবার্গার আইকন ডিজাইন */
.hamburger-icon span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  margin: 6px 0;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #111;
    padding: 20px;
    margin-top: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* -=====================================================================================-- Mobile Menu Styles --- */

.hero-section {
  width: 100%;
  min-height: 90vh;
  padding: 80px 0;
  position: relative;
  /* Premium Dark Overlay & Background */
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.9) 30%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0.1) 100%),
    url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding-top: 200px;
  /* Header space */
}

/* Badge Style */
.hero-badge {
  display: inline-block;
  background: rgba(226, 177, 118, 0.1);
  color: #E2B176;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid rgba(226, 177, 118, 0.2);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 8vw, 80px);
  /* Fluid typography */
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.gold-text {
  color: #E2B176;
  font-style: italic;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Button Upgrades */
.btn-gold {
  background: linear-gradient(90deg, #E2B176, #f5d5ae);
  color: #000;
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(226, 177, 118, 0.2);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(226, 177, 118, 0.4);
  background: #fff;
}

.btn-demo {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* User Trust Section */
.avatar-stack img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #0a0a0a;
  margin-left: -15px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.stars {
  color: #E2B176;
  font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?q=80&w=2000');
    background-position: center;
    text-align: center;
  }

  .hero-left-box {
    margin: 0 auto;
  }

  .hero-btns,
  .user-trust {
    justify-content: center;
  }

  .avatar-stack {
    justify-content: center;
  }
}


/*====================================================================================================*/

:root {
  --gold: #E2B176;
  --dark-bg: #0a0a0a;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-hover: rgba(255, 255, 255, 0.08);
}

.cat-section {
  background-color: var(--dark-bg);
  padding: 100px 0;
}

.cat-subtitle {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 800;
  display: block;
  margin-bottom: 15px;
}

.cat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  /* Responsive font size */
  color: #fff;
  font-weight: 900;
}

.gold-italic {
  color: var(--gold);
  font-style: italic;
}

/* Card Style */
.cat-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 30px;
  height: 100%;
  /* Ensures cards in a row have same height */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(226, 177, 118, 0.1);
  color: var(--gold);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.cat-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cat-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.cat-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  margin-top: auto;
  /* Pushes link to bottom */
}

/* Hover Effects */
.cat-card:hover {
  background: var(--glass-hover);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 177, 118, 0.1);
}

.cat-card:hover .icon-box {
  background: var(--gold);
  color: #000;
  transform: scale(1.1);
}

.cat-card:hover .cat-link {
  gap: 15px;
}

/* Featured Card Style */
.featured {
  border-color: rgba(226, 177, 118, 0.3);
  background: rgba(226, 177, 118, 0.02);
}

/*=====================================================================================*/

.features-section {
  padding: 100px 0;
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Background Subtle Glow */
.features-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 177, 118, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.features-header {
  position: relative;
  z-index: 1;
}

.feat-subtitle {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 800;
  display: block;
  margin-bottom: 15px;
}

.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 48px);
  color: #fff;
  font-weight: 900;
}

.gold-italic {
  color: var(--gold);
  font-style: italic;
}

/* Feature Card */
.feat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 35px;
  border-radius: 35px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  z-index: 1;
}

.feat-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  margin: 0 auto 30px auto;
  border: 1px solid rgba(226, 177, 118, 0.2);
  transition: 0.5s;
}

.feat-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.feat-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.7;
}

/* Hover State */
.feat-card:hover {
  background: rgba(226, 177, 118, 0.04);
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.feat-card:hover .feat-icon-wrapper {
  background: var(--gold);
  color: #000;
  transform: rotateY(180deg);
}

/* Active State */
.active-feat {
  border-color: rgba(226, 177, 118, 0.3);
  background: rgba(226, 177, 118, 0.02);
}


/*=====================================================================================*/

.pricing-premium {
  padding: 100px 0;
  background-color: #0a0a0a;
  color: white;
}

.sub-badge {
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.title-v2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin: 15px 0;
}

.header-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

/* Price Card Base */
.price-card-v2 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 35px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
}

.price-card-v2:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(226, 177, 118, 0.3);
}

/* Featured Card Style */
.featured-v2 {
  background: rgba(226, 177, 118, 0.05);
  border: 2px solid var(--gold);
  transform: scale(1.05);
  /* ডেস্কটপে একটু বড় দেখাবে */
  z-index: 2;
}

.popular-ribbon {
  position: absolute;
  top: 20px;
  right: 30px;
  background: var(--gold);
  color: black;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 15px;
  border-radius: 50px;
  text-transform: uppercase;
}

.plan-type {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.amount {
  font-size: 45px;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
}

.period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.534);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

.feat-list {
  list-style: none;
}

.feat-list li {
  margin-bottom: 15px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feat-list i {
  font-size: 18px;
  color: var(--gold);
}

.dim {
  opacity: 0.3;
}

/* Buttons */
.btn-p-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-p-outline:hover {
  background: white;
  color: black;
}

.btn-p-gold {
  background: var(--gold);
  border: none;
  color: black;
  padding: 15px;
  border-radius: 50px;
  font-weight: 900;
  transition: 0.3s;
}

.btn-p-gold:hover {
  background: white;
  transform: scale(1.02);
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
  .featured-v2 {
    transform: scale(1);
    margin: 20px 0;
  }
}


/*=====================================================================================*/

/* About Section Styles */
.about-section {
  background: #0a0a0a;
}

.about-subtitle {
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 800;
  font-size: 14px;
}



.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 45px);
  font-weight: 900;
}

.image-experience-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--gold);
  color: #000;
  padding: 20px 30px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.exp-number {
  font-size: 30px;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.exp-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.feat-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold);
}

.btn-about-gold {
  background: var(--gold);
  color: #000;
  transition: 0.3s;
}

.btn-about-gold:hover {
  background: #fff;
  transform: translateY(-5px);
}

/* Footer Styles */
.main-footer {
  background: #080808;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icon:hover {
  background: var(--gold);
  color: black;
  transform: translateY(-3px);
}

.footer-links a:hover {
  color: var(--gold) !important;
  padding-left: 5px;
}

.btn-gold {
  background: var(--gold);
  color: black;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .image-experience-card {
    left: 20px;
    bottom: 10px;
    padding: 15px 20px;
  }
}