/* header.css - modern & rich header */
body{
 font-family: 'Montserrat', sans-serif !important;
}
:root {
  --brand: #111;
  --muted: #666;
  --accent: #111;
  --bg-glass: rgba(255, 255, 255, 0.7);
}

/* Basic reset for header area */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background-color: rgb(0, 0, 0) !important;
}

.navbar {
  padding: 18px 0;
}

/* Brand */
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-name {
 font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand);
  letter-spacing: 1px;
}

.brand-playfair {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.brand-dot {
  color: var(--accent);
  margin: 0 4px;
}

.section-heading {
  text-align: center;
  margin: 60px auto 40px;
  font-family: 'Montserrat', sans-serif;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
 font-family: 'Montserrat', sans-serif;
}

.section-heading h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: #222;
}

.section-heading p {
  font-size: 16px;
  color: #666;
  margin: 8px 0 15px;
}

.section-heading .underline {
  width: 90px;
  height: 4px;
  background: #b09244;
  display: inline-block;
  border-radius: 5px;
}

.hero-banner {
  position: relative;
  overflow: hidden;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  opacity: 0;
  transition: 0.35s ease-in-out;
}

/* Button */
.banner-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transition: 0.35s ease-in-out;
}

/* Hover Effects */
.banner-hover:hover .banner-overlay {
  opacity: 1;
}

.banner-hover:hover .banner-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Nav */
.navbar-nav .nav-link {
  color: white !important;
  padding: 8px 14px;
  border-radius: 8px;
  margin: 0px 15px;
  transition: all .18s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
  background: #b09244;
  transform: translateY(-1px);
}

/* Make center nav visually balanced */
.navbar-collapse {
  flex-basis: auto;
}

/* Smooth hide/show animation for navbar */
.site-header {
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Hidden state */
.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}


/* Header actions (right) */
.header-actions .action-btn {
  background: transparent;
  border: none;
  color: var(--brand);
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, color .12s ease;
}

.header-actions .action-btn:hover {
  transform: translateY(-2px);
  color: var(--accent);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 999px;
  transform: translate(50%, -50%);
}

/* Primary CTA */
.btn-cta {
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: 10px 20px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.12);
  border: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
}

/* Search overlay */
.header-search {
  display: none;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.92));
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-search .search-form {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
}

.search-input {
  flex: 1;
  border-radius: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 15px;
}

.search-submit {
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: 10px 18px;
  border: none;
}

.search-close {
  background: transparent;
  border: none;
  font-size: 18px
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .hero-offset {
    padding-top: 90px;
  }

  /* if you need offset for sticky header + large hero */
  .brand-name {
    font-size: .95rem;
  }

  .nav-link {
    padding: 12px 10px;
  }

  .header-actions .btn-cta {
    display: none;
  }

  /* optional hide CTA on small screens */
}

/* Small visual polish */
.navbar {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Banner */
.hero-banner {
  width: 100%;
  height: 85vh;
  background: #e8d7cf;
  /* soft nude shade like screenshot */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 30px;
  box-sizing: border-box;
  overflow: hidden;
}

/* LEFT TEXT AREA */
.hero-content {
  max-width: 500px;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #333;
  display: inline-block;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 500;
  color: #111;
  margin: 0 0 40px 0;
}

.hero-btn {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
}

.hero-btn:hover {
  opacity: 0.7;
}

.btn-gold {
  background-color: #b09244 !important;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  margin: 0px 10px;
  border: none;
}

.btn-gold:hover {
  background-color: #967a32;
  /* darker gold */
  color: white;
}

/* RIGHT IMAGE AREA */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  height: 100%;
}

.hero-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  /* ❗ full image always visible */
  object-position: right center;
  display: block;
}


/* RESPONSIVE */
@media (max-width: 992px) {

  .hero-banner {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    object-position: center;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }
}

.our-mission {
  background-color: #b0914442 !important;
}

.our-india {
  background-color: #e8d7cf;
}

/* Services  */

/* LEFT column */
/* LEFT column */
.process-left {
  position: sticky;
  top: 100px;
  align-self: start;
}

.label {
  display: inline-block;
  background: #c9d64e;
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}

.process-heading {
  margin: 18px 0 0;
  font-size: 34px;
  line-height: 1.08;
  color: #111;
  font-weight: 800;
}

.process-heading .sub {
  display: block;
  font-weight: 600;
  color: #6b6b6b;
  font-size: 15px;
  margin-top: 10px;
}

/* RIGHT column */
.process-right {
  padding-bottom: 20px;
}

/* Step base */
.process-step {
  display: block;
  margin-bottom: 44px;
  position: relative;
  transition: transform .28s cubic-bezier(.2, .9, .25, 1);
  will-change: transform;
}

/* Inner card */
.step-inner {
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  border: 1px solid rgba(18, 18, 18, 0.04);
  box-shadow: 0 8px 30px rgba(12, 10, 8, 0.04);
  transition: box-shadow .28s ease, transform .28s ease;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* EVEN steps → reverse row */
.process-step:nth-child(even) .step-inner {
  flex-direction: row-reverse;
  text-align: right;
}

/* Meta row */
.step-meta {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 8px;
}

.step-number {
  font-weight: 800;
  font-size: 28px;
  color: #e6a07a;
  opacity: 0.28;
  min-width: 54px;
  text-align: left;
  transition: all .28s cubic-bezier(.2, .9, .25, 1);
  line-height: 1;
}

.step-title {
  margin: 0;
  font-size: 22px;
  color: #111;
  line-height: 1.05;
  font-weight: 800;
}

/* Desc */
.step-desc {
  margin: 6px 0 0;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  transform: translateY(6px);
  transition: opacity .28s ease, transform .28s ease;
}

/* Active state */
.process-step.active .step-inner {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(12, 10, 8, 0.12);
}

.process-step.active .step-number {
  opacity: 1;
  color: #c97f57;
  font-size: 40px;
}

.process-step.active .step-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Accent bar on active (left side) */
.process-step.active::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 22px;
  width: 6px;
  height: 52px;
  border-radius: 6px;
  background: linear-gradient(180deg, #c97f57 0%, #c9d64e 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: opacity .28s ease, transform .28s ease;
}

/* Slight scale on active meta */
.process-step.active .step-inner {
  transform: translateY(-8px) scale(1.004);
}

/* Hover */
.process-step:hover .step-inner {
  transform: translateY(-4px);
}

/* ----------------------------------------- */
/* CIRCLE IMAGE SIDE BY SIDE (NEW) */
/* ----------------------------------------- */

.circle-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.circle-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* For even steps → fix number layout */
.process-step:nth-child(even) .step-meta {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-number {
  text-align: right;
}

/* RESPONSIVE */
@media (max-width:980px) {

  .container {
    grid-template-columns: 1fr;
    padding: 48px 18px;
    gap: 28px;
  }

  .process-left {
    position: relative;
    top: auto;
  }

  .process-heading {
    font-size: 26px;
  }

  .step-inner {
    flex-direction: column !important;
  }

  .circle-img {
    margin-top: 16px;
  }

  .step-meta {
    gap: 12px;
  }

  .step-number {
    font-size: 22px;
    min-width: 44px;
  }

  .process-step {
    margin-bottom: 28px;
  }

  .step-inner {
    padding: 18px;
  }
}

/* -----------------------------------
      TIMELINE WRAPPER
----------------------------------- */
.timeline-wrapper {
  position: relative;
  padding-bottom: 80px;
  font-family: 'Montserrat', sans-serif;
  background: #faf9f6;
  /* Warm white – Zara/H&M style */
}

.timeline-item img {
  border-radius: 20px;
}

/* -----------------------------------
       HEADING
----------------------------------- */
.timeline-heading {
  padding: 50px 0 20px;
  text-align: center;
}

.timeline-heading h1 {
  font-size: 46px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.5px;
}

.timeline-heading p {
  font-size: 16px;
  color: #555;
  margin: 6px 0 15px;
}

.timeline-heading .line {
  width: 85px;
  height: 2px;
  background: #b09244;
  display: inline-block;
  border-radius: 25px;
}

/* -----------------------------------
        TIMELINE SECTION
----------------------------------- */
.timeline-section {
  width: 88%;
  margin: auto;
  padding-top: 40px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  /* Reduced gap */
  align-items: center;
  margin-bottom: 60px;
  /* Reduced white space */
  position: relative;
}

/* Vertical line */
.timeline-row:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  width: 2px;
  height: 75%;
  background: #dcdcdc;
  transform: translateX(-50%);
}

/* Timeline numbers */
.center-date h3 {
  font-size: 28px;
  font-weight: 500;
  color: #111;
  margin: 19px;
}

.center-date span {
  font-size: 14px;
  color: #777;
  letter-spacing: 1px;
}


.form-box {
  box-shadow: 5px 5px 10px grey;
  padding: 30px;
  border-radius: 15px;
}

/* -----------------------------------
        SERVICE CARDS
----------------------------------- */
.content {
  padding: 34px 38px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eee;
  color: #222;

  /* Fashion brand shadow */
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.content:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 30px rgba(0, 0, 0, 0.08);
}

/* Card titles */
.content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Small label */
.content h4 {
  font-size: 13px;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Paragraph */
.content p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-top: 10px;
}

/* -----------------------------------
     OPTIONAL IMAGE INSIDE CARD
----------------------------------- */
.card-image {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* -----------------------------------
      SOFT PASTEL BACKGROUNDS
----------------------------------- */



.card-blue,
.card-purple,
.card-yellow,
.card-green,
.card-orange,
.card-pink,
.card-red {
  color: #111;
  background-color: #ffffff;
}

/* -----------------------------------
          MOBILE RESPONSIVE
----------------------------------- */
@media (max-width: 768px) {
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-row:before {
    left: 20px;
    height: 100%;
  }

  .center-date {
    margin: 10px 0;
    order: -1;
  }
}

/* clients */
/* Text */
.customers-section{font-family:"Montserrat",sans-serif;background:#fff;}
.customer-title{font-size:32px;font-weight:700;margin-bottom:10px;}
.customer-subtitle{color:#4d4d4d;max-width:650px;margin:auto;margin-bottom:50px;}

/* Slider wrapper */
.logo-slider{
    overflow:hidden;
    width:100%;
    padding:20px 0;
    position:relative;
}

/* Track */
.logo-track{
    display:flex;
    width:max-content;
    animation:scroll 25s linear infinite;
    will-change:transform;
}
/* ----- Slider DOTS ----- */
.slider-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:25px;
}

.slider-dots .dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#bfbfbf;
    transition:.3s;
}

.slider-dots .dot.active{
    background:#000;  /* highlight center dot */
    transform:scale(1.3);
}

.slider-dots .dot:hover{
    background:#333;
    transform:scale(1.2);
}


/* Infinite scroll animation */
@keyframes scroll{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);} /* JS will duplicate content automatically */
}

/* Logo items */
.logo-track img{
    height:55px;
    margin:0 50px;
    opacity:.85;
    transition:.3s;
    object-fit:contain;
}
.logo-track img:hover{opacity:1;transform:scale(1.06);}

/* Pause on hover */
.logo-slider:hover .logo-track{animation-play-state:paused;}

/* Button */
.see-more-btn{
    background:#1e1e1e;color:#fff;padding:12px 30px;
    font-weight:600;text-decoration:none;transition:.3s;display:inline-block;
}
.see-more-btn:hover{background:#000;}

/* clients */



.contact-container {
  max-width: 1100px;
  margin: 60px auto;
}

.contact-span {
  font-size: 12px;
}

.address-line {
  text-indent: -80px;
  /* Pull first line left */
  padding-left: 80px;
  /* Push whole block right */
  line-height: 1.6;
}

.contact-box {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title h1 {
  font-weight: 700;
}

.underline {
  width: 100px;
  height: 4px;
  background: #b09244;
  margin: 10px auto 0;
  border-radius: 5px;
}

.info-box p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ffffff;
}

.form-control {
  padding: 14px;
  border-radius: 12px;
}

.button {
  padding: 12px;
  font-size: 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, #778aff, #b48aff, #ff7ecb);
  border: none;
}

button:hover {
  opacity: .92;
}


/* Section One  */
/* STATS SECTION */
.stats-section {
  background: #f6f6f6;
  padding: 60px 0;

  /* Make whole section vertically centered */
  display: flex;
  align-items: center;
}

/* Inner row full height so centering works */
.stats-row {
  width: 100%;
  display: flex;
  align-items: center;
}

.stat-box {
  text-align: center;
}

.stat-value {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 18px;
  line-height: 1.3;
  color: #333;
}

.stat-sub {
  font-size: 15px;
  color: #777;
  margin-top: 4px;
}

/* Divider */
.divider {
  border-right: 1px solid #ccc;
  height: 80px;
  margin: auto;
}

@media(max-width: 992px) {
  .divider {
    display: none;
  }
}

/* SECTION WRAPPER 2nd Section*/
.concept-section {
  background: #fff;
  padding: 0;
}

/* IMAGE */
.concept-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT TEXT BLOCK */
.concept-text-block {
  padding: 90px 70px;
}

.concept-title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.concept-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 490px;
  margin-bottom: 35px;
}

/* BUTTON */
.concept-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.concept-btn:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .concept-text-block {
    padding: 50px 30px;
    text-align: center;
  }

  .concept-description {
    max-width: 100%;
  }
}

/* Product */
/* FULL SCREEN SECTION */
.fashion-section {
  height: 100vh;
  /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
}

/* 80% WIDTH CONTAINER */
.fashion-grid {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  /* Equal height right boxes */
  gap: 20px;
  height: 100%;
  /* Fill full height of 100vh */
}

/* LEFT BIG BOX (TAKES FULL HEIGHT) */
.big-box {
  grid-row: span 2;
  position: relative;
  height: 100%;
}

/* COMMON BOX STYLE */
.fashion-box {
  position: relative;
  background: #f7f7f7;
  padding: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* TEXT BOX */
.text-box {
  max-width: 300px;
  z-index: 3;
}

/* IMAGE PERFECT ALIGNMENT */
.fashion-box img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .fashion-section {
    height: auto;
    padding: 40px 0;
  }

  .fashion-grid {
    width: 90%;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .big-box {
    height: 450px;
  }

  .fashion-box {
    height: 300px;
  }

  .fashion-box img {
    opacity: 0.3;
    width: 100%;
    height: 100%;
    /* object-position: center; */
  }
}

.navbar-toggler-icon {
  background-color: white !important;
}

.about-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
}

/* -------- Left Video Style ---------- */
.about-video {
  position: relative;
  overflow: hidden;
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1);
}

/* -------- Right Content Style ---------- */
.about-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;

  background: rgb(246, 246, 246);
  position: relative;
}

/* Premium gold accent line */
/* .about-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50px;
  width: 5px;
  height: 90px;
  background: linear-gradient(#d4af37, #b8860b);
  border-radius: 10px;
} */

/* .about-content  {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
} */

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
  width: 90%;
}
/* =======================
   MOBILE RESPONSIVE
   ======================= */
@media (max-width: 768px) {

  .about-wrapper {
    grid-template-columns: 1fr; /* stack video + content */
    min-height: auto;
  }

  .about-video video {
    height: 250px;        /* reasonable height for mobile */
    object-fit: cover;
  }

  .about-content {
    padding: 50px 25px;   /* better spacing for small screens */
    text-align: left;
  }

  .about-content::before {
    left: 0;
    top: 20px;
    height: 60px;
  }

  .about-content h2 {
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .about-content p {
    font-size: 16px;
    width: 100%;
  }
}


.scroll-down-btn {
  position: absolute;
  right: 30px;
  /* adjust to move left/right */
  bottom: 30px;
  /* adjust height */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s ease;
}

.scroll-down-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.scroll-down-btn span {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  /* makes arrow down */
  margin-top: -3px;
}

/* Section 3 */
/* FULL WIDTH SECTION */
.promo-two {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

/* CENTERED WRAPPER - MATCH EXACT SPACING */
.promo-wrapper {
  width: 92%;
  /* Clotya uses approx 92–95% */
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* EACH CARD */
.promo-card {
  position: relative;
  height: 340px;
  /* EXACT height from screenshot */
  padding: 45px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
}

/* BACKGROUND COLORS */
.bg-grey {
  background: #e6e6e4;
}

.bg-beige {
  background: #e9d6bb;
}

/* TEXT CONTENT */
.promo-content {
  max-width: 320px;
  z-index: 3;
}
a{
  text-decoration: none;
  color: #000;
}

.tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  z-index: 999;
}

.promo-content h2 {
  margin: 15px 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.promo-content p {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
}

/* BUTTON */
.promo-btn {
  color: #111;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* IMAGE ALIGNMENT */
.promo-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .promo-wrapper {
    grid-template-columns: 1fr;
  }

  .promo-card {
    height: 300px;
  }

  .promo-card img {
    width: 100%;
    height: 100%;
    opacity: .35;
    object-position: center;
  }
}






/* Footer  */