
  /* ── Root Variables ── */
  .ids__section {
    --ids-gold: #C8A96E;
    --ids-gold-light: #E8D5A8;
    --ids-dark: #1A1714;
    --ids-mid: #4A4540;
    --ids-muted: #414040;
    --ids-line: #C8A96E;
    --ids-bg: #F9F6F1;
    --ids-card-bg: transparent;
    --ids-radius: 30px;
    font-family: 'DM Sans', sans-serif;
  }
 
  /* ── Section Wrapper ── */
  .ids__section {
    width: 100%;
    background-color: transparent;
    padding: 90px 40px 100px;
    box-sizing: border-box;
  }
 
  .ids__container {
    max-width: 1600px;
    margin: 0 auto;
  }
 
  /* ── Section Header ── */
  .ids__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
  }
 
  .ids__header-left {
    flex: 0 0 auto;
  }
 
  .ids__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
 
  .ids__eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--ids-gold);
  }
 
  .ids__eyebrow-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ids-gold);
  }
 
  .ids__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ids-dark);
    margin: 0;
  }
 
  .ids__heading span {
    font-style: italic;
    font-weight: 600;
  }
 
  .ids__header-right {
    flex: 0 1 460px;
  }
 
  .ids__header-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--ids-muted);
    margin: 0;
    padding-top: 4px;
  }
 
  /* ── Divider ── */
  .ids__divider {
    width: 100%;
    height: 1px;
    background: var(--ids-line);
    margin-bottom: 48px;
  }
 
  /* ── Cards Grid ── */
  .ids__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
 
  /* ── Single Card ── */
  .ids__card {
    background: var(--ids-card-bg);
    padding: 44px 36px 40px;
    border: 1px solid var(--ids-line);
    border-right: none;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
    cursor: default;
  }
 
  .ids__card:last-child {
    border-right: 1px solid var(--ids-line);
  }
 
  /* Gold top-bar on hover */
  .ids__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--ids-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
 
  .ids__card:hover::before {
    transform: scaleX(1);
  }
 
  .ids__card:hover {
    background: #FFFDF9;
  }
 
  /* ── Card Number ── */
  .ids__card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--ids-gold-light);
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    display: block;
  }
 
  /* ── Icon Container ── */
  .ids__icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ids-line);
    border-radius: var(--ids-radius);
    transition: border-color 0.3s ease;
  }
 
  .ids__card:hover .ids__icon-wrap {
    border-color: var(--ids-gold);
  }
 
  .ids__icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--ids-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
  }
 
  /* ── Card Title ── */
  .ids__card-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ids-dark);
    margin: 0 0 14px;
    line-height: 1.25;
    letter-spacing: 0.01em;
  }
 
  /* ── Card Description ── */
  .ids__card-desc {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--ids-muted);
    margin: 0 0 36px;
  }
 
  /* ── Explore Link ── */
  .ids__explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ids-mid);
    transition: color 0.3s ease, gap 0.3s ease;
  }
 
  .ids__explore-link:hover {
    color: var(--ids-gold);
    gap: 13px;
  }
 
  .ids__explore-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ids-mid);
    transition: color 0.3s ease;
  }

  /* underline */
  .ids__explore-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1.5px;
    background: var(--ids-gold);
    transition: width 0.35s ease;
  }

  /* hover effect */
  .ids__explore-link:hover {
    color: var(--ids-gold);
  }

  .ids__explore-link:hover::after {
    width: 100%;
  }
 
  /* ── Responsive ── */
  @media (max-width: 1100px) {
    .ids__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .ids__card:nth-child(2) {
      border-right: 1px solid var(--ids-line);
    }
    .ids__card:nth-child(3),
    .ids__card:nth-child(4) {
      border-top: none;
    }
    .ids__card:last-child {
      border-right: 1px solid var(--ids-line);
    }
  }
 
  @media (max-width: 640px) {
    .ids__section {
      padding: 60px 20px 70px;
    }
    .ids__grid {
      grid-template-columns: 1fr;
    }
    .ids__card {
      border-right: 1px solid var(--ids-line);
      border-top: none;
    }
    .ids__card:first-child {
      border-top: 1px solid var(--ids-line);
    }
    .ids__header {
      flex-direction: column;
      align-items: flex-start;
    }
    .ids__header-right {
      flex: 1 1 100%;
    }
  }




/* How We Work Section Styling */
.how-we-work-item {
    border: 1px solid #caa35b86;
    padding: 20px; /* agar already padding hai toh hata dena */
}










.bundiplanes1-section {
    padding: 90px 20px;
    background: #0f0f0f;
    font-family: 'Poppins', sans-serif;
}

.bundiplanes1-container {
    max-width: 1400px;
    margin: auto;
}

/* HEADING */
.bundiplanes1-heading {
    text-align: center;
    margin-bottom: 60px;
}

.bundiplanes1-heading h2 {
    font-size: 38px;
    color: #fff;
}

.bundiplanes1-heading p {
    color: #aaa;
}

/* GRID */
.bundiplanes1-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.bundiplanes1-card {
    position: relative;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(202,163,91,0.3);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* HOVER */
.bundiplanes1-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(202,163,91,0.2);
    border-color: #caa35b;
}

/* TEXT */
.bundiplanes1-card h3 {
    color: #fff;
    font-size: 22px;
}

.bundiplanes1-price {
    color: #caa35b;
    font-weight: 600;
    margin: 10px 0;
}

.bundiplanes1-best {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 15px;
}

.bundiplanes1-card ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.bundiplanes1-card ul li {
    color: #ddd;
    margin-bottom: 6px;
    font-size: 14px;
}

.bundiplanes1-desc {
    color: #999;
    font-size: 13px;
    margin-bottom: 20px;
}

/* BUTTON */
.bundiplanes1-btn {
    display: inline-block;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #caa35b;
    color: #caa35b;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.bundiplanes1-btn:hover {
    background: #caa35b;
    color: #000;
}

/* BADGE */
.bundiplanes1-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: #caa35b;
    color: #000;
    padding: 5px 40px;
    font-size: 12px;
    transform: rotate(45deg);
}

/* HIGHLIGHT */
.bundiplanes1-highlight {
    border-width: 2px;
    transform: scale(1.04);
}

/* TABLET */
@media (max-width: 1024px) {
    .bundiplanes1-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .bundiplanes1-grid {
        grid-template-columns: 1fr;
    }

    .bundiplanes1-heading h2 {
        font-size: 28px;
    }
}











.bundifooterbanner {
  background: linear-gradient(135deg, #000000, #0a0a0a);
  border-top: 1px solid #caa35b;
  border-bottom: 1px solid #caa35b;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* gold glow */
.bundifooterbanner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(202,163,91,0.15), transparent 70%);
  filter: blur(60px);
}

.bundifooterbanner-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* 🔥 Gradient Heading */
.bundifooterbanner-content h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ffffff, #caa35b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bundifooterbanner-content p {
  color: #bfbfbf;
  font-size: 15px;
  line-height: 1.6;
}

.bundifooterbanner-actions {
  display: flex;
  gap: 15px;
}

/* Common button */
.bundifooterbanner-btn {
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  min-width: 170px;
}

/* 🔘 Primary - White */
.bundifooterbanner-btn.primary {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.bundifooterbanner-btn.primary:hover {
  background: transparent;
  color: #caa35b;
  border: 1px solid #caa35b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(202,163,91,0.25);
}

/* 🔘 Secondary - Transparent Gold */
.bundifooterbanner-btn.secondary {
  background: transparent;
  color: #caa35b;
  border: 1px solid #caa35b;
}

.bundifooterbanner-btn.secondary:hover {
  background: #caa35b;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(202,163,91,0.35);
}

/* shine effect */
.bundifooterbanner-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
}

.bundifooterbanner-btn:hover::after {
  left: 120%;
  transition: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
  .bundifooterbanner {
    padding: 40px 15px;
  }

  .bundifooterbanner-container {
    flex-direction: column;
    text-align: center;
  }

  .bundifooterbanner-content h2 {
    font-size: 22px;
  }

  .bundifooterbanner-content p {
    font-size: 14px;
  }

  /* 🔥 buttons same row */
  .bundifooterbanner-actions {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .bundifooterbanner-btn {
    width: 50%;
    font-size: 13px;
    padding: 12px 10px;
  }
}