/* Font */
/* @import url('https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&family=Pompiere&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&family=Playfair+Display:wght@400..900&display=swap");

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* ─── CSS VARIABLES ─── */
:root {
  --deep-forest: #1a2e1a;
  --moss: #2d4a2d;
  --sage: #5c7a4e;
  --gold: #c9a84c;
  --gold-light: #f1bb32;
  --gold-mid: #dfad0a;
  --cream: #cffdc47e;
  --warm-white: #faf8f3;
  --earth: #8b6914;
  --forest-mid: #377d3e;
  --white: #ffffff;
  --dark: #181810;
  --forest: #1b2b1f;
  --rk-deep-forest: #377d3e;
  --rk-forest-mid: #2e602e;
  --rk-moss: #2e602e;
  --rk-sage: #5c7a4e;
  --rk-gold: #dfad0a;
  --rk-gold2: #dfad0a;
  --rk-border: rgba(200, 168, 78, 0.15);
  --rk-border-soft: rgba(255, 255, 255, 0.07);
  --rk-white: #ffffff;
  --rk-t1: rgba(255, 255, 255, 0.9);
  --rk-t2: rgba(255, 255, 255, 0.952);
  --rk-t3: rgba(255, 255, 255, 0.952);

  /* page aliases */
  --primary: #377d3e;
  --primary-dark: #377d3e;
  --primary-light: #5c7a4e;
  --primary-pale: #faf8f3;
  --gold2: #dfc06e;
  --border-light: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(200, 168, 78, 0.15);
  --t1: rgba(255, 255, 255, 0.9);
  --t2: rgba(255, 255, 255, 0.55);
  --t3: rgba(255, 255, 255, 0.28);
  --dt1: #1a2e1a;
  --dt2: rgba(26, 46, 26, 0.6);
}

html {
  scroll-behavior: smooth;
}
/* appfav start */

  .app-fab {
    position: fixed;
    bottom: 24px;
    right: 18px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
 
  @media (max-width: 768px) {
    .app-fab { display: flex; }
  }
 
  /* ── Expanded card ── */
  .app-card {
    width: 235px;
    background: #1a3a1e;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.4);
    transform-origin: bottom right;
    display: none;
    position: relative;
  }
 
  .app-card.open {
    display: block;
    animation: rwCardExpand 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  }
 
  @keyframes rwCardExpand {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
  }
 
  /* Shimmer top border */
  .app-card-shimmer {
    height: 2px;
    background: linear-gradient(90deg, #1a3a1e, #c9a84c, #4a8c52, #c9a84c, #1a3a1e);
    background-size: 200% 100%;
    animation: rwShimmer 2.5s linear infinite;
  }
 
  @keyframes rwShimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
  }
 
  .app-card-body {
    padding: 14px 14px 12px;
    position: relative;
    overflow: hidden;
  }
 
  /* Floating leaf particles */
  .rw-leaf {
    position: absolute;
    border-radius: 50% 0;
    opacity: 0;
    pointer-events: none;
    animation: rwFloatLeaf 3.5s ease-in-out infinite;
  }
 
  @keyframes rwFloatLeaf {
    0%   { opacity: 0; transform: translate(0,0) rotate(0deg) scale(0.6); }
    20%  { opacity: 0.7; }
    80%  { opacity: 0.4; }
    100% { opacity: 0; transform: translate(-22px,-38px) rotate(160deg) scale(1.1); }
  }
 
  /* Top row */
  .app-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
 
  .rw-app-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2d5c34, #c9a84c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: rwIconPulse 2.5s ease-in-out infinite;
  }
 
  @keyframes rwIconPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
    50%      { box-shadow: 0 0 0 5px rgba(201,168,76,0.2); }
  }
 
  .rw-app-icon i {
    font-size: 20px;
    color: #f5f7ec;
  }
 
  .rw-app-info h4 {
    color: #f5f7ec;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
  }
 
  .rw-app-info p {
    color: #a8c9ab;
    font-size: 9px;
    margin: 2px 0 0;
    letter-spacing: 0.4px;
    font-family: 'DM Sans', sans-serif;
  }
 
  .rw-close-btn {
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #a8c9ab;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    transition: background 0.2s;
  }
 
  .rw-close-btn:hover { background: rgba(255,255,255,0.15); }
 
  .rw-close-btn i { font-size: 11px; }
 
  /* Stars */
  .rw-stars-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 11px;
  }
 
  .rw-stars { display: flex; gap: 2px; }
 
  .rw-stars i {
    font-size: 10px;
    color: #c9a84c;
    animation: rwStarPop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
  }
 
  .rw-stars i:nth-child(1) { animation-delay: 0.05s; }
  .rw-stars i:nth-child(2) { animation-delay: 0.10s; }
  .rw-stars i:nth-child(3) { animation-delay: 0.15s; }
  .rw-stars i:nth-child(4) { animation-delay: 0.20s; }
  .rw-stars i:nth-child(5) { animation-delay: 0.25s; color: rgba(201,168,76,0.3); }
 
  @keyframes rwStarPop {
    from { opacity: 0; transform: scale(0) rotate(-20deg); }
    to   { opacity: 1; transform: scale(1) rotate(0deg); }
  }
 
  .rw-stars-label {
    font-size: 9px;
    color: #a8c9ab;
    font-family: 'DM Sans', sans-serif;
  }
 
  .rw-free-pill {
    margin-left: auto;
    font-size: 9px;
    color: #c9a84c;
    border: 1px solid rgba(201,168,76,0.35);
    padding: 2px 8px;
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    animation: rwBreathe 2s ease-in-out infinite;
  }
 
  @keyframes rwBreathe {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.4; }
  }
 
  /* Store buttons */
  .rw-store-btns { display: flex; gap: 7px; }
 
  .rw-store-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
 
  .rw-store-btn:hover {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.4);
  }
 
  .rw-store-btn i {
    font-size: 18px;
    color: #f5f7ec;
    flex-shrink: 0;
  }
 
  .rw-store-lbl span:first-child {
    display: block;
    font-size: 7px;
    color: #a8c9ab;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.2;
  }
 
  .rw-store-lbl span:last-child {
    display: block;
    font-size: 11px;
    color: #f5f7ec;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'DM Sans', sans-serif;
  }
 
  /* ── FAB circle ── */
  .rw-fab-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
  .rw-fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3a1e, #2d5c34);
    border: 2.5px solid #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(26,58,30,0.55);
    position: relative;
    flex-shrink: 0;
    animation: rwFabBounce 3s ease-in-out infinite;
    transition: transform 0.2s ease;
  }
 
  .rw-fab-btn:active { transform: scale(0.93); }
 
  @keyframes rwFabBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
  }
 
  .rw-fab-btn i {
    font-size: 24px;
    color: #f5f7ec;
  }
 
  .rw-fab-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 13px;
    height: 13px;
    background: #c9a84c;
    border-radius: 50%;
    border: 2px solid #f5f7ec;
    animation: rwDotPing 1.8s ease-in-out infinite;
  }
 
  @keyframes rwDotPing {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.4); }
  }
 
  /* Sliding tooltip */
  .rw-fab-label {
    background: #1a3a1e;
    color: #c9a84c;
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.4);
    white-space: nowrap;
    letter-spacing: 0.6px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 12px rgba(26,58,30,0.3);
    animation: rwLabelSlide 3.5s ease-in-out infinite;
  }
 
  @keyframes rwLabelSlide {
    0%   { opacity: 0; transform: translateX(10px); }
    15%  { opacity: 1; transform: translateX(0); }
    75%  { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(10px); }
  }
/* appfav end */

/* anv bar section start */
/* ============================================================
   NAVBAR COMPLETE RESPONSIVE CSS
   Replace or append to your existing navbar CSS
   ============================================================ */

/* ─── Base Navbar ─── */
.navbar {
  position: sticky !important;
  top: 0;
  z-index: 1030 !important;
  padding: 0 !important;
  background: rgba(40, 113, 40, 0.97) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  transition: box-shadow 0.3s;
  flex-direction: column;
  align-items: stretch;
}
.navbar.scrolled {
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4); */
}

/* ─── TOP BAR ─── */
.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  width: 100%;
  gap: 16px;
}

/* ─── Brand / Logo ─── */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c9a84c, #f1bb32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.logo-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}
.logo-text {
  min-width: 0;
}
.logo-text .brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #f1bb32;
  text-transform: uppercase;
  line-height: 1.2;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-text .brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
}

/* ─── Middle App Section ─── */
.mob-app-wrap {
  background: #1a4d1a;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.app-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.phone-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  animation: bounce-phone 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.ripple-ring {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: ripple 2s ease-out infinite;
}
.ripple-ring:nth-child(2) { animation-delay: 0.7s; }
.app-text { color: #fff; }
.app-heading { font-size: 15px; font-weight: 600; margin: 0 0 2px; color: #fff; }
.app-sub { font-size: 12px; color: rgba(255, 255, 255, 0.6); margin: 0; }
.app-right { display: flex; align-items: center; gap: 10px; }
.app-cta-btn {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #1a4d1a;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s;
  display: inline-block;
}
.app-cta-btn:hover { transform: scale(1.04); color: #1a4d1a; }
.app-cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-20deg);
  animation: shimmer 2.4s ease-in-out infinite;
}

/* ─── Mobile Login (shows only on mobile) ─── */
.log-mob {
  display: none; /* hidden by default, shown via media query */
}
.nav-cta-mob {
  background: transparent;
  color: #dfad0a;
  font-family: "Jost", sans-serif;
  font-size: 13px !important;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  text-decoration: none !important;
}

/* ─── Right Side: Socials + Login + Hamburger ─── */
.navbar-top-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
}
.nav-social:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.nav-social--yt:hover { background: #ff0000; border-color: #ff0000; }
.nav-cta {
  background: transparent;
  border: 1px solid #c9a84c;
  color: #c9a84c !important;
  padding: 7px 20px;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none !important;
}
.nav-cta:hover { background: #c9a84c; color: #1a2e1a !important; }

/* ─── Hamburger ─── */
.navbar-toggler {
  padding: 0 !important;
  display: none;
  box-shadow: none !important;
  border: none !important;
  background: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,168,76,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 26px;
  height: 26px;
  display: block;
}

/* ─── BOTTOM BAR (Desktop Nav) ─── */
.navbar-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  width: 100%;
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.navbar-nav .nav-link {
  color: #e7dfdf;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  padding: 11px 13px !important;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 13px;
  right: 100%;
  height: 2px;
  background: #c9a84c;
  transition: right 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f1bb32 !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  right: 13px;
}

/* ─── OFF-CANVAS DRAWER ─── */
.nav-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s;
}
.nav-drawer-overlay.open { display: block; opacity: 1; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  bottom: 0;
  width: 300px;
  z-index: 1050;
  background: rgba(10, 20, 10, 0.99);
  border-left: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  overflow-y: auto;
}
.nav-drawer.open { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  flex-shrink: 0;
}
.drawer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer-logo .logo-icon {
  width: 36px;
  height: 36px;
  font-size: 15px;
}
.drawer-logo .brand-name {
  font-size: 0.85rem;
  color: #f1bb32;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.drawer-close {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: rgba(255, 255, 255, 0.6);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.drawer-close:hover { background: rgba(201, 168, 76, 0.15); color: #c9a84c; border-color: #c9a84c; }

.drawer-nav { padding: 12px 0; flex: 1; }
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  transition: all 0.25s;
}
.drawer-nav a:hover,
.drawer-nav a.active-link {
  color: #f1bb32;
  background: rgba(201, 168, 76, 0.07);
  padding-left: 30px;
}

.drawer-footer {
  padding: 18px 24px 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  flex-shrink: 0;
}
.drawer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.drawer-socials .nav-social { display: flex !important; }
.drawer-cta {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: transparent;
  border: 1px solid #c9a84c;
  color: #c9a84c !important;
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none !important;
}
.drawer-cta:hover { background: #c9a84c; color: #1a2e1a !important; }

/* ─── Keyframes ─── */
@keyframes bounce-phone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Large Desktop (≥1400px) ── */
@media (min-width: 1400px) {
  .navbar-top    { padding: 12px 72px; }
  .navbar-bottom { padding: 0 72px; }
  .navbar-nav .nav-link { font-size: 0.7rem !important; padding: 12px 14px !important; }
  .logo-text .brand-name { font-size: 1.1rem; }
}

/* ── Medium Desktop (1200–1399px) ── */
@media (max-width: 1399px) and (min-width: 1200px) {
  .navbar-top    { padding: 10px 36px; }
  .navbar-bottom { padding: 0 36px; }
  .navbar-nav .nav-link { font-size: 0.63rem !important; padding: 11px 10px !important; }
}

/* ── Small Desktop (992–1199px) ── */
@media (max-width: 1199px) and (min-width: 992px) {
  .navbar-top    { padding: 10px 24px; }
  .navbar-bottom { padding: 0 24px; }
  .navbar-nav .nav-link { font-size: 0.58rem !important; padding: 10px 8px !important; letter-spacing: 0.1em; }
  .logo-text .brand-name { font-size: 0.9rem; }
  .mob-app-wrap  { padding: 10px 12px; gap: 12px; }
  .app-heading   { font-size: 13px; }
  .app-cta-btn   { font-size: 12px; padding: 7px 14px; }
}

/* ── Tablet & Mobile (≤991px): Hide bottom nav, show hamburger ── */
@media (max-width: 991px) {
  /* Hide bottom nav bar */
  .navbar-bottom { display: none !important; }

  /* Show hamburger */
  .navbar-toggler {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Hide the app banner */
  .mob-app-wrap { display: none !important; }

  /* Hide desktop socials + login from top-right */
  .navbar-top-right .nav-social { display: none !important; }
  .navbar-top-right .nav-cta    { display: none !important; }

  /* Show mobile login */
  .log-mob { display: block !important; }

  .navbar-top { padding: 10px 20px; gap: 12px; }
  .logo-icon  { width: 48px; height: 48px; }
  .logo-text .brand-name { font-size: 0.9rem; }
}

/* ── Large Phone (576–767px) ── */
@media (max-width: 767px) {
  .navbar-top { padding: 9px 16px; gap: 10px; }
  .logo-icon  { width: 42px; height: 42px; }
  .logo-text .brand-name { font-size: 0.78rem; letter-spacing: 0.08em; }
  .logo-text .brand-sub  { display: none; }
  .navbar-brand { gap: 10px; }
}

/* ── Standard Mobile (≤575px) ── */
@media (max-width: 575px) {
  .navbar-top { padding: 8px 14px; gap: 8px; }
  .logo-icon  { width: 38px !important; height: 38px !important; font-size: 16px; }
  .logo-text .brand-name { font-size: 0.7rem; letter-spacing: 0.06em; }
  .logo-text .brand-sub  { display: none; }
  .navbar-brand { gap: 8px; flex: 1; min-width: 0; }
  .logo-text { min-width: 0; overflow: hidden; }
  .nav-cta-mob { font-size: 12px !important; }
  .nav-drawer  { width: 285px; }
  .navbar-top-right { gap: 10px; }
}

/* ── Small Mobile (≤400px) ── */
@media (max-width: 400px) {
  .navbar-top { padding: 8px 10px; gap: 6px; }
  .logo-icon  { width: 34px !important; height: 34px !important; }
  .logo-text .brand-name {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .navbar-brand { gap: 7px; flex: 1; min-width: 0; }
  .nav-cta-mob { font-size: 11px !important; letter-spacing: 0.1em; }
  .navbar-toggler-icon { width: 22px; height: 22px; }
  .nav-drawer  { width: 265px; }
  .drawer-nav a { padding: 12px 18px; font-size: 0.68rem; }
  .drawer-header { padding: 14px 16px; }
  .drawer-footer { padding: 14px 16px 22px; }
}

/* ── Extra Small Mobile (≤360px) ── */
@media (max-width: 360px) {
  .navbar-top { padding: 7px 8px; gap: 5px; }
  .logo-icon  { width: 30px !important; height: 30px !important; }
  .logo-text .brand-name {
    font-size: 0.52rem;
    max-width: 125px;
  }
  .navbar-brand { gap: 6px; }
  .nav-cta-mob { font-size: 10px !important; letter-spacing: 0.08em; }
  .nav-drawer  { width: 250px; right: -260px; }
  .drawer-nav a { padding: 11px 16px; font-size: 0.63rem; }
}

/* ── Prevent scroll when drawer is open ── */
body.drawer-open { overflow: hidden; }
/* anv bar section end */

/* comapny name sectiion */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 14px;
}

.eyebrow.light {
  color: var(--gold-light);
}
.eyebrow.light::before,
.eyebrow.light::after {
  background: var(--gold-light);
}

.eyebrow.center {
  justify-content: center;
}
.eyebrow.center::before {
  display: none;
}
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-mid);
}

.display-heading {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  font-size: clamp(32px, 3.6vw, 50px);
}
.display-heading em {
  font-style: italic;
  color: var(--gold-mid);
}
.display-heading.light {
  color: var(--white);
}
.display-heading.light em {
  color: var(--gold-light);
}

.cta-block {
  background: var(--forest-mid);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "RISHIKUL WELLNESS ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", serif;
  font-size: clamp(80px, 9vw, 200px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
}

.cta-block p {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  max-width: 500px;
  margin: 18px auto 36px;
  line-height: 1.8;
  position: relative;
  letter-spacing: 0.8px;
}

.cta-btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  position: relative;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  background: var(--gold-mid);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-gold:hover {
  background: var(--gold);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

svg.arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Welcome section  start*/
.welcome {
  padding: 88px 0 96px;
  background: var(--cream);
}
.welcome-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.welcome-left {
}

.welcome-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.85;
  margin: 20px 0 32px;
}

.welcome-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-mid);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.read-more-link:hover {
  color: var(--gold);
}

/* What We Offer chips */
.offer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 12px;
  color: var(--soft);
  font-weight: 400;
  border-radius: 100px;
}

/* Welcome Right — image mosaic */
.welcome-right {
  position: relative;
}

.img-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 280px 180px;
  gap: 12px;
}

.img-mosaic .im-1 {
  grid-row: 1 / 3;
  background-image: url("../Image/event-img/Rishikul Organic Agro Farm111-01-01.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.img-mosaic .im-2 {
  grid-row: 1;
  background-image: url("../Image/event-img/Rishikul Naturopathy Hospital  Web Banner-01-01.jpg");
  background-size: cover;
  background-position: 100% center;
  background-repeat: no-repeat;
}
.img-mosaic .im-3 {
  grid-row: 2;
  position: relative;
  background-image: url("../Image/event-img/Rishikul Organic Resort Web Banner183-01-01.jpg");
  background-size: cover;
  background-position: 90% center;
  background-repeat: no-repeat;
}

.img-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.mosaic-badge {
  position: absolute;
  bottom: -12px;
  left: -16px;
  background: var(--dark);
  padding: 14px 20px;
  z-index: 2;
}
.mosaic-badge .num {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.mosaic-badge .lbl {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Advantage section  start*/

/* ── SECTION ── */
.rk-section {
  background: var(--rk-deep-forest);
  padding: 104px 0 108px;
  position: relative;
  overflow: hidden;
  font-family: "Jost", sans-serif;
}
.rk-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 168, 78, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── WRAP ── */
.rk-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
  z-index: 1;
}

/* ── HEADER GRID ── */
.rk-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

/* ── EYEBROW LABEL ── */
.rk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rk-gold);
  margin-bottom: 20px;
}
.rk-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--rk-gold);
  flex-shrink: 0;
}

/* ── MAIN HEADING ── */
.rk-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--rk-white);
  letter-spacing: -0.01em;
  margin: 0;
}
.rk-heading em {
  font-style: italic;
  color: var(--rk-gold2);
  display: block;
}

/* ── INTRO BLOCK ── */
.rk-intro-line {
  width: 32px;
  height: 1px;
  background: var(--rk-gold);
  opacity: 0.4;
  margin-bottom: 22px;
}
.rk-intro-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.7px;
}
.rk-intro-text strong {
  color: var(--white);
  font-weight: 600;
}

/* ── SEPARATOR ── */
.rk-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rk-border),
    transparent
  );
  margin-bottom: 52px;
  border: none;
}

/* ── CARDS LABEL ── */
.rk-cards-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rk-t3);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.rk-cards-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rk-border-soft);
}

/* ── CARDS GRID ── */
.rk-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

/* ── SINGLE CARD ── */
.rk-card {
  background: var(--rk-forest-mid);
  padding: 40px 40px 40px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  /* reset any bootstrap card styles */
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.rk-card:hover {
  background: var(--rk-moss);
}

/* left gold bar on hover */
.rk-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--rk-gold);
  transition: height 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}
.rk-card:hover::before {
  height: 100%;
}

/* large background number */
.rk-card-bg-num {
  position: absolute;
  bottom: -16px;
  right: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  pointer-events: none;
}

/* card top row: icon + index */
.rk-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.rk-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(200, 168, 78, 0.1);
  border: 1px solid var(--rk-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.rk-card:hover .rk-card-icon {
  background: rgba(200, 168, 78, 0.18);
  border-color: rgba(200, 168, 78, 0.35);
}

.rk-card-idx {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(200, 168, 78, 0.35);
}

.rk-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--rk-white);
  line-height: 1.2;
  margin-bottom: 12px;
  margin-top: 0;
}
.rk-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--rk-t2);
  line-height: 1.82;
  margin: 0;
  letter-spacing: 0.8px;
}

/* ── QUOTE STRIP ── */
.rk-quote-strip {
  background: var(--rk-moss);
  padding: 44px 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.rk-quote-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rk-gold), transparent);
}

.rk-q-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 100px;
  line-height: 0.7;
  color: var(--rk-gold);
  opacity: 0.2;
  user-select: none;
  flex-shrink: 0;
}
.rk-q-mark.rk-close {
  transform: rotate(180deg);
}

.rk-q-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.68;
  text-align: center;
  margin: 0;
}
.rk-q-text em {
  font-style: italic;
  color: var(--rk-gold2);
  font-weight: 400;
}

.rk-q-source {
  margin-top: 14px;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rk-t3);
}

/* ── STATS ROW ── */
.rk-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--rk-border-soft);
  border-bottom: 1px solid var(--rk-border-soft);
}

.rk-stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--rk-border-soft);
  position: relative;
  transition: background 0.25s;
  overflow: hidden;
}
.rk-stat:last-child {
  border-right: none;
}
.rk-stat:hover {
  background: rgba(200, 168, 78, 0.04);
}

.rk-stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--rk-gold);
  transition: width 0.4s ease;
}
.rk-stat:hover::after {
  width: 50%;
}

.rk-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 300;
  color: var(--rk-gold2);
  line-height: 1;
  margin-bottom: 8px;
}
.rk-stat-unit {
  font-size: 20px;
  vertical-align: super;
}
.rk-stat-lbl {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rk-t3);
  line-height: 1.6;
}

/* ── SCROLL REVEAL ── */
.rk-sr {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.rk-sr.rk-on {
  opacity: 1;
  transform: none;
}

.rk-sg > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rk-sg.rk-on > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}
.rk-sg.rk-on > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.13s;
}
.rk-sg.rk-on > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}
.rk-sg.rk-on > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.31s;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .rk-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rk-cards {
    grid-template-columns: 1fr;
  }
  .rk-quote-strip {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }
  .rk-q-mark {
    display: none;
  }
  .rk-stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .rk-wrap {
    padding: 0 24px;
  }
  .rk-section {
    padding: 72px 0 80px;
  }
  .rk-stats {
    grid-template-columns: 1fr 1fr;
  }
}
/* Advantage section  end*/

/* product section start  */

/* ══════════════════════════════
   SECTION
══════════════════════════════ */
.rk-prod-section {
  background: var(--cream);
  padding: 96px 0 108px;
  font-family: "Jost", sans-serif;
  position: relative;
}
.rk-prod-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 168, 74, 0.3),
    transparent
  );
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.rk-prod-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
}

.rk-prod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 14px;
}
.rk-prod-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-mid);
  flex-shrink: 0;
}

.rk-prod-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.01em;
}
.rk-prod-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── VIEW ALL BUTTON ── */
.rk-prod-view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  background: transparent;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-family: "Jost", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.rk-prod-view-all:hover {
  background: var(--deep-forest);
  color: var(--white);
  border-color: var(--deep-forest);
}
.rk-prod-view-all svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s;
}
.rk-prod-view-all:hover svg {
  transform: translateX(3px);
}

/* ══════════════════════════════
   CAROUSEL
══════════════════════════════ */
.rk-prod-carousel {
  position: relative;
}
.rk-prod-carousel-track-wrap {
  overflow: hidden;
  border: 1px solid rgba(196, 168, 74, 0.15);
}
.rk-prod-grid {
  display: flex;
  gap: 1px;
  background: rgba(196, 168, 74, 0.15);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.rk-prod-grid .rk-prod-card {
  flex: 0 0 calc(25% - 1px);
  min-width: 0;
}

/* ── ARROWS ── */
.rk-prod-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1.5px solid rgba(196, 168, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.rk-prod-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}
.rk-prod-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.25s;
}
.rk-prod-arrow:hover svg {
  stroke: var(--white);
}
.rk-prod-arrow-prev {
  left: -23px;
}
.rk-prod-arrow-next {
  right: -23px;
}
.rk-prod-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ── DOTS ── */
.rk-prod-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.rk-prod-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(196, 168, 74, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    transform 0.25s;
}
.rk-prod-dot.rk-active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ══════════════════════════════
   PRODUCT CARD
══════════════════════════════ */
.rk-prod-card {
  background: var(--cream);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.rk-prod-card:hover {
  background: var(--white);
}

/* ── IMAGE WRAPPER ── */
.rk-prod-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}
.rk-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rk-prod-card:hover .rk-prod-img-wrap img {
  transform: scale(1.07);
}

/* badge */
.rk-prod-badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}

/* hover overlay */
.rk-prod-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 16, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  z-index: 3;
}
.rk-prod-card:hover .rk-prod-overlay {
  visibility: visible;
}

.rk-prod-quick-view {
  padding: 10px 24px;
  background: var(--warm-white);
  color: var(--dark);
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.rk-prod-quick-view:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── CARD BODY ── */
.rk-prod-body {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(196, 168, 74, 0.15);
}

.rk-prod-category {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 7px;
}

.rk-prod-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 16px;
  line-height: 1.2;
}

.rk-prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rk-prod-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}
.rk-prod-price small {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--sage);
  margin-right: 2px;
  vertical-align: middle;
}

/* add button */
.rk-prod-add-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 168, 74, 0.35);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s;
  flex-shrink: 0;
}
.rk-prod-add-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.rk-prod-add-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.25s;
}
.rk-prod-add-btn:hover svg {
  stroke: var(--white);
}

/* ══════════════════════════════
   BOTTOM CTA ROW
══════════════════════════════ */
.rk-prod-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
}
.rk-prod-bottom-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 168, 74, 0.3));
  max-width: 180px;
}
.rk-prod-bottom-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(196, 168, 74, 0.3));
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .rk-prod-grid .rk-prod-card {
    flex: 0 0 calc(50% - 1px);
  }
}
@media (max-width: 640px) {
  .rk-prod-section {
    padding: 64px 0 80px;
  }
  .rk-prod-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .rk-prod-grid .rk-prod-card {
    flex: 0 0 calc(100% - 1px);
  }
}
/* product section end  */

/* Food supplyment section  start*/
.rk-essentials-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background: var(--rk-deep-forest);
  font-family: "Outfit", sans-serif;
}

/* Noise overlay */
.rk-essentials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Gold glow top-right */
.rk-essentials-section::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(200, 168, 78, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.rk-essentials-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── TWO-COLUMN LAYOUT ── */
.rk-essentials-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 960px) {
  .rk-essentials-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rk-essentials-img-col {
    order: -1;
  }
  .rk-essentials-wrap {
    padding: 0 24px;
  }
  .rk-essentials-section {
    padding: 64px 0 80px;
  }
}

/* ── LEFT: CONTENT ── */
.rk-essentials-content {
}

.rk-essentials-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  animation: rkFadeUp 0.6s 0.05s both;
}
.rk-essentials-tag::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rk-gold);
  opacity: 0.6;
}
.rk-essentials-tag span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rk-gold);
}

.rk-essentials-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--rk-t1);
  margin-bottom: 14px;
  animation: rkFadeUp 0.6s 0.12s both;
}
.rk-essentials-title em {
  font-style: italic;
  color: var(--rk-gold2);
}

.rk-essentials-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--rk-t2);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 48px;
  animation: rkFadeUp 0.6s 0.2s both;
}

/* ── CARDS GRID ── */
.rk-essentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 540px) {
  .rk-essentials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CARD ── */
.rk-ess-card {
  position: relative;
  background: var(--rk-forest-mid);
  border: 1px solid var(--rk-border);
  border-radius: 14px;
  padding: 28px 26px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  cursor: default;
}

.rk-ess-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 168, 78, 0.05) 0%,
    transparent 60%
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.rk-ess-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 168, 78, 0.32);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(200, 168, 78, 0.07);
}
.rk-ess-card:hover::before {
  opacity: 1;
}

/* Bottom reveal line */
.rk-ess-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rk-gold), transparent);
  transition: width 0.5s ease;
}
.rk-ess-card:hover::after {
  width: 55%;
}

/* Ghost number */
.rk-ess-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(200, 168, 78, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.35s;
}
.rk-ess-card:hover .rk-ess-num {
  color: rgba(200, 168, 78, 0.13);
}

/* Left accent bar */
.rk-ess-bar {
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, var(--rk-gold) 0%, transparent 100%);
  border-radius: 0 2px 2px 0;
  opacity: 0.3;
  transition:
    opacity 0.4s ease,
    top 0.4s ease,
    bottom 0.4s ease,
    border-radius 0.4s ease;
}
.rk-ess-card:hover .rk-ess-bar {
  opacity: 0.8;
  top: 0;
  bottom: 0;
  border-radius: 0;
}

.rk-ess-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rk-gold);
  opacity: 0.7;
  margin-bottom: 8px;
}

.rk-ess-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--rk-t1);
  line-height: 1.25;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.rk-ess-card:hover .rk-ess-heading {
  color: var(--rk-gold2);
}

.rk-ess-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--rk-t2);
  line-height: 1.8;
}

/* Stagger */
.rk-ess-card:nth-child(1) {
  animation: rkFadeUp 0.6s 0.25s both;
}
.rk-ess-card:nth-child(2) {
  animation: rkFadeUp 0.6s 0.33s both;
}
.rk-ess-card:nth-child(3) {
  animation: rkFadeUp 0.6s 0.41s both;
}
.rk-ess-card:nth-child(4) {
  animation: rkFadeUp 0.6s 0.49s both;
}

/* ── GOLD DIVIDER ── */
.rk-essentials-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.rk-essentials-divider::before,
.rk-essentials-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 168, 78, 0.3),
    transparent
  );
}
.rk-essentials-divider-dot {
  width: 5px;
  height: 5px;
  background: var(--rk-gold);
  border-radius: 50%;
  opacity: 0.6;
}

/* ── FOOTER BAND ── */
.rk-essentials-band {
  padding: 24px 30px;
  background: linear-gradient(
    135deg,
    rgba(200, 168, 78, 0.08),
    rgba(200, 168, 78, 0.03)
  );
  border: 1px solid var(--rk-border);
  border-left: 3px solid rgba(200, 168, 78, 0.5);
  border-radius: 0 14px 14px 0;
  animation: rkFadeUp 0.7s 0.55s both;
}
.rk-essentials-band p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--rk-t2);
  line-height: 1.8;
}
.rk-essentials-band strong {
  font-weight: 600;
  color: var(--rk-t1);
}

/* ── RIGHT: IMAGE COLUMN ── */
.rk-essentials-img-col {
  position: sticky;
  top: 40px;
  animation: rkFadeUp 0.8s 0.35s both;
}

.rk-essentials-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--rk-border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

/* Decorative corner accent */
.rk-essentials-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 168, 78, 0.12) 0%,
    transparent 40%,
    transparent 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

/* Glow behind the image */
.rk-essentials-img-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(200, 168, 78, 0.25),
    transparent 50%
  );
  z-index: -1;
}

.rk-essentials-img-frame img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.rk-essentials-img-frame:hover img {
  transform: scale(1.03);
}

/* Small badge on image */
.rk-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(26, 46, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--rk-border);
  border-radius: 10px;
  padding: 12px 18px;
}
.rk-img-badge-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rk-gold);
  margin-bottom: 3px;
}
.rk-img-badge-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--rk-t1);
}

/* ── ANIMATION ── */
@keyframes rkFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Food supplyment section  start*/

/* Excellence section start  */
.rk-pillars-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background: var(--cream);
  font-family: "Outfit", sans-serif;
}

/* Subtle dot pattern on cream bg */
.rk-pillars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(26, 46, 26, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Soft green glow bottom-left */
.rk-pillars-section::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(45, 74, 45, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.rk-pillars-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── HEADER ── */
.rk-pillars-header {
  margin-bottom: 64px;
  animation: rkPillarUp 0.6s 0.05s both;
}

.rk-pillars-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.rk-pillars-tag::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rk-gold);
  opacity: 0.8;
}
.rk-pillars-tag span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rk-gold);
}

.rk-pillars-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--deep-forest);
}
.rk-pillars-title em {
  font-style: italic;
  color: var(--sage);
}

/* ── TWO-COLUMN LAYOUT ── */
.rk-pillars-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

@media (max-width: 960px) {
  .rk-pillars-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rk-pillars-wrap {
    padding: 0 24px;
  }
  .rk-pillars-section {
    padding: 64px 0 80px;
  }
}

/* ── LEFT: IMAGE ── */
.rk-pillars-img-col {
  position: sticky;
  top: 40px;
  animation: rkPillarUp 0.7s 0.15s both;
}

.rk-pillars-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 72px rgba(26, 46, 26, 0.18),
    0 0 0 1px rgba(26, 46, 26, 0.08);
}

/* Overlay tint */
.rk-pillars-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 46, 26, 0.05) 0%,
    transparent 45%,
    rgba(26, 46, 26, 0.25) 100%
  );
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}

.rk-pillars-img-frame img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  transition: transform 0.6s ease;
}
.rk-pillars-img-frame:hover img {
  transform: scale(1.03);
}

/* Gold corner accent */
.rk-pillars-img-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--rk-gold);
  border-left: 2px solid var(--rk-gold);
  border-radius: 20px 0 0 0;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}

/* Badge over image */
.rk-pillars-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 168, 78, 0.3);
  border-radius: 10px;
  padding: 11px 18px;
}
.rk-pillars-badge-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rk-gold);
  margin-bottom: 3px;
}
.rk-pillars-badge-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--deep-forest);
}

/* ── RIGHT: CONTENT ── */
.rk-pillars-content {
}

/* ── PILLAR ITEM ── */
.rk-pillar-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26, 46, 26, 0.08);
  position: relative;
  transition: background 0.3s;
}
.rk-pillar-item:first-child {
  padding-top: 0;
}
.rk-pillar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rk-pillar-num {
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: rgba(26, 46, 26, 0.1);
  line-height: 1;
  width: 48px;
  text-align: right;
  padding-top: 2px;
  transition: color 0.3s;
  user-select: none;
}
.rk-pillar-item:hover .rk-pillar-num {
  color: rgba(200, 168, 78, 0.35);
}

.rk-pillar-body {
  flex: 1;
}

.rk-pillar-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--deep-forest);
  margin-bottom: 10px;
  line-height: 1.25;
  transition: color 0.3s;
}
.rk-pillar-item:hover .rk-pillar-heading {
  color: var(--sage);
}

.rk-pillar-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: rgb(26, 46, 26);
  line-height: 1.8;
}

/* Left gold reveal bar */
.rk-pillar-item::before {
  content: "";
  position: absolute;
  left: -48px;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: linear-gradient(180deg, var(--rk-gold), transparent);
  opacity: 0;
  border-radius: 2px;
  transition:
    opacity 0.3s,
    top 0.3s,
    bottom 0.3s;
}
.rk-pillar-item:first-child::before {
  top: 0;
}
.rk-pillar-item:hover::before {
  opacity: 1;
  top: 0;
  bottom: 0;
}

/* ── PRODUCT RANGES ── */
.rk-pillar-ranges {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rk-range-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(26, 46, 26, 0.04);
  border: 1px solid rgba(26, 46, 26, 0.07);
  border-left: 3px solid var(--rk-gold);
  border-radius: 0 10px 10px 0;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.rk-range-item:hover {
  background: rgba(26, 46, 26, 0.07);
  border-left-color: var(--sage);
}

.rk-range-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-forest);
  white-space: nowrap;
  flex-shrink: 0;
}

.rk-range-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(26, 46, 26, 0.6);
  line-height: 1.6;
}

/* Stagger animations */
.rk-pillar-item:nth-child(1) {
  animation: rkPillarUp 0.55s 0.2s both;
}
.rk-pillar-item:nth-child(2) {
  animation: rkPillarUp 0.55s 0.3s both;
}
.rk-pillar-item:nth-child(3) {
  animation: rkPillarUp 0.55s 0.4s both;
}
.rk-pillar-item:nth-child(4) {
  animation: rkPillarUp 0.55s 0.5s both;
}

/* ── ANIMATION ── */
@keyframes rkPillarUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 680px) {
  .rk-pillar-item::before {
    display: none;
  }
  .rk-pillar-num {
    font-size: 32px;
    width: 36px;
  }
  .rk-range-item {
    flex-direction: column;
    gap: 4px;
  }
}
/* Excellence section end  */

/* why our product start */

.rk-why-section {
  background: var(--rk-deep-forest);
  font-family: "Outfit", sans-serif;
  padding: 100px 0;
}

.rk-why-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── LAYOUT ── */
.rk-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── IMAGE ── */
.rk-why-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  animation: rkFade 0.7s 0.1s both;
}

.rk-why-img img {
  display: block;
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  filter: brightness(0.88);
  transition: transform 0.6s ease;
}
.rk-why-img:hover img {
  transform: scale(1.03);
}

/* thin gold border */
.rk-why-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(200, 168, 78, 0.18);
  pointer-events: none;
}

/* ── CONTENT ── */
.rk-why-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rk-why-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  animation: rkFade 0.6s 0.05s both;
}
.rk-why-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rk-gold);
  opacity: 0.7;
}
.rk-why-tag span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rk-gold);
}

.rk-why-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--rk-t1);
  margin-bottom: 12px;
  animation: rkFade 0.6s 0.1s both;
}
.rk-why-title em {
  font-style: italic;
  color: var(--rk-gold2);
}

.rk-why-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--rk-t2);
  line-height: 1.8;
  margin-bottom: 48px;
  animation: rkFade 0.6s 0.15s both;
}

/* ── FEATURE LIST ── */
.rk-why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 44px;
}

.rk-why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding-left 0.3s;
  cursor: default;
}
.rk-why-item:first-child {
  padding-top: 0;
}
.rk-why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rk-why-item:hover {
  padding-left: 6px;
}

.rk-why-item-num {
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--rk-gold);
  opacity: 0.55;
  width: 24px;
  padding-top: 3px;
  transition: opacity 0.3s;
}
.rk-why-item:hover .rk-why-item-num {
  opacity: 1;
}

.rk-why-item-body {
}

.rk-why-item-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--rk-t1);
  margin-bottom: 5px;
  transition: color 0.3s;
}
.rk-why-item:hover .rk-why-item-title {
  color: var(--rk-gold2);
}

.rk-why-item-text {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.8px;
  color: var(--rk-t2);
  line-height: 1.75;
}

/* Stagger */
.rk-why-item:nth-child(1) {
  animation: rkFade 0.5s 0.2s both;
}
.rk-why-item:nth-child(2) {
  animation: rkFade 0.5s 0.27s both;
}
.rk-why-item:nth-child(3) {
  animation: rkFade 0.5s 0.34s both;
}
.rk-why-item:nth-child(4) {
  animation: rkFade 0.5s 0.41s both;
}

/* ── CTA ── */
.rk-why-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 13px 30px;
  border: 1px solid rgba(200, 168, 78, 0.4);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rk-gold);
  text-decoration: none;
  transition:
    background 0.3s,
    border-color 0.3s,
    gap 0.3s;
  animation: rkFade 0.5s 0.46s both;
}
.rk-why-cta:hover {
  background: rgba(200, 168, 78, 0.08);
  border-color: var(--rk-gold);
  gap: 16px;
}

@keyframes rkFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .rk-why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rk-why-img img {
    height: 340px;
  }
  .rk-why-wrap {
    padding: 0 24px;
  }
  .rk-why-section {
    padding: 72px 0;
  }
}
/* why our product end */
/* testimonial section start */

.rk-ts {
  background: var(--cream);
  padding: 80px 0 90px;
  font-family: "Outfit", sans-serif;
}

.rk-ts-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── HEADING ── */
.rk-ts-head {
  text-align: center;
  margin-bottom: 48px;
}

.rk-ts-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.rk-ts-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.1;
}

.rk-ts-title em {
  font-style: italic;
  color: var(--sage);
}

/* ── SLIDER ── */
.rk-ts-overflow {
  overflow: hidden;
}

.rk-ts-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── CARD ── */
.rk-ts-card {
  flex: 0 0 calc(33.333% - 14px);
  border-radius: 12px;
  overflow: hidden;
  background: var(--forest);
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 2px 16px rgba(26, 46, 26, 0.1);
}
.rk-ts-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 46, 26, 0.18);
}

.rk-ts-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #243a28;
}

.rk-ts-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.rk-ts-thumb img {
  display: none;
}

/* card info */
.rk-ts-info {
  padding: 14px 16px 18px;
}
.rk-ts-cat {
  display: none;
}
.rk-ts-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── DOTS ── */
.rk-ts-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.rk-ts-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(26, 46, 26, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    width 0.3s,
    border-radius 0.3s;
}
.rk-ts-dot.on {
  width: 22px;
  border-radius: 4px;
  background: var(--forest);
}

/* ── ARROWS ── */
.rk-ts-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.rk-ts-arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26, 46, 26, 0.2);
  background: transparent;
  color: var(--forest);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    color 0.25s;
}
.rk-ts-arr:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

@media (max-width: 760px) {
  .rk-ts-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 500px) {
  .rk-ts-card {
    flex: 0 0 80%;
  }
  .rk-ts-inner {
    padding: 0 20px;
  }
}
/* testimonial section end */

/* Buttons */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: var(--forest-mid);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-dark:hover {
  background: var(--forest);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: transparent;
  color: var(--dark);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
}
.btn-outline:hover {
  background: var(--forest-mid);
  color: var(--white);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  background: var(--gold-mid);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-gold:hover {
  background: var(--gold);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

svg.arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .advantage-layout {
    grid-template-columns: 1fr;
  }
  .adv-img-col {
    height: 320px;
  }
  .pillars-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ranges-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .welcome-grid {
    grid-template-columns: 1fr;
  }
  .pillars-main-grid {
    grid-template-columns: 1fr;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .ranges-row {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-list {
    grid-template-columns: 1fr;
  }
  .img-mosaic {
    grid-template-rows: 200px 140px;
  }
}

/* Welcome section  end*/

.search-bar {
  display: flex;
  align-items: center;
  border: 2px solid #808a8b;
  border-radius: 60px;
  overflow: hidden;
  width: fit-content;
}

.president {
  border: 0;
}

/* product card */
.card-img {
  background-color: white;
}

/*  */

.card-title {
  text-align: center;
}

.face-Scrub {
  display: block;
  margin: auto;
}
/* 
#team-president{
    height: 250px;
    width: 300px;
    align-items: center;
} */
.card-img-top {
  height: 250px;
  width: 250px;
}

.d-flex .form-control {
  background-color: transparent;
  font-size: 12px;
  border: none;
  border-radius: 60px 0 0 60px;
  padding: 10px 20px;
  outline: none;
  box-shadow: none;
  width: 250px;
}

.d-flex .form-control:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

.d-flex .btn {
  border: none;
  border-radius: 0 60px 60px 0;
  padding: 10px 20px;
  background-color: #3e79b5;
  color: #fff;
  transition: background 0.3s ease-in-out;
}

.d-flex .btn:hover {
  background-color: #808a8b;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle::after {
  content: " ▼";
  font-size: 12px;
  color: white;
  margin-left: 5px;
  transition: transform 0.3s ease-in-out;
}

.logo-head {
  background-color: #005eff;
  padding: 0%;
}

.nav-item.dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item .dropdown-menu {
  border-radius: 0;
  text-align: center;
}

.nav-item .dropdown-menu a {
  padding: 0px 0px;
}

/* -----Navbar End----- */

/* Hero section start */

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/* Slider track */
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.77, 0, 0.18, 1);
}

/* Individual slide */
.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background image layer — Ken Burns zoom */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* transform: scale(1.06); */
  transition: transform 6s ease;
}

.slide.active .slide-bg {
  /* transform: scale(1); */
}

/* Dark gradient overlay (heavier on left, lighter right) */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0, 0, 0, 0.897) 0%,
    rgba(0, 0, 0, 0.65) 35%,
    rgba(0, 0, 0, 0.35) 65%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

/* Bottom fade */
.slide-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(10, 20, 10, 0.55), transparent);
}

/* Slide text content */
.slide-content {
  position: relative;
  z-index: 3;
  padding: 0 80px;
  max-width: 700px;
}

/* Animate-in on active */
.slide .slide-tag,
.slide .slide-title,
.slide .slide-sub,
.slide .slide-actions {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.slide.active .slide-tag {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}
.slide.active .slide-title {
  opacity: 1;
  transform: none;
  transition-delay: 0.48s;
}
.slide.active .slide-sub {
  opacity: 1;
  transform: none;
  transition-delay: 0.64s;
}
.slide.active .slide-actions {
  opacity: 1;
  transform: none;
  transition-delay: 0.78s;
}

/* Tag */
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.slide-tag::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Title */
.slide-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.slide-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.slide-title strong {
  font-weight: 600;
  display: block;
}

/* Subtitle */
.slide-sub {
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  max-width: 420px;
}

/* Action buttons row */
.slide-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Primary button */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--earth));
  color: #0d1a0d;
  border: none;
  padding: 14px 36px;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201, 168, 76, 0.45);
}

/* Ghost button */
.btn-ghost {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 13px 28px;
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Thumbnail strip (bottom right) */
.slide-thumbs {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.thumb {
  width: 64px;
  height: 44px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: all 0.3s;
  flex-shrink: 0;
}

.thumb.active {
  opacity: 1;
  border-color: var(--gold);
  width: 80px;
  height: 54px;
}

.thumb:hover {
  opacity: 0.85;
}

/* Prev / Next arrow buttons */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(10, 20, 10, 0.45);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev {
  left: 24px;
}
.slider-next {
  right: 24px;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

/* Dot navigation */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 80px;
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.35s;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.dot.active {
  width: 30px;
  border-radius: 4px;
  background: var(--gold);
  border-color: var(--gold);
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.slider-progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  width: 0%;
}

/* Slide counter */
.slide-counter {
  position: absolute;
  left: 80px;
  bottom: 70px;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Cormorant Garamond", serif;
}

.counter-current {
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}
.counter-sep {
  font-size: 0.75rem;
  margin: 0 2px;
}
.counter-total {
  font-size: 0.85rem;
}

/* Scroll hint (vertical, right side) */
.scroll-hint {
  position: absolute;
  right: 28px;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}

/* ─── KEYFRAMES ─── */
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */

.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep-forest);
  font-weight: 500;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::before {
  content: "✦";
  font-size: 0.5rem;
}

/* Hero section end */

/* Hero section start */
.carousel-item {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-caption-fixed {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: #fff;
}

.carousel-caption-fixed h1 {
  font-weight: 700;
  font-size: 48px;
}

.carousel-caption-fixed p {
  font-size: 15px;
  font-weight: 500;
}

#carouselExample {
  width: 100vw;
  height: 100vh;
}

.carousel-control-prev .carousel-control-prev-icon {
  background-color: #000;
  border-radius: 60px;
}

.carousel-control-next .carousel-control-next-icon {
  background-color: #000;
  border-radius: 60px;
}

.sla {
  display: block;
  margin: auto;
}

/* Hero section End */

/* rishikul logo */
.rishikulLogo {
  padding-left: 10px;
}

/* Whatsapp */

.whatsapp-btn-container {
  position: fixed;
  right: 30px;
  opacity: 0;
  bottom: -50px;
  padding: 24px;
  animation: fade-up 1000ms forwards;
  animation-delay: 1000ms;
}

@keyframes fade-up {
  100% {
    bottom: 24px;
    opacity: 1;
  }
}

.whatsapp-btn-container .whatsapp-btn {
  font-size: 48px;
  color: #25d366;
  display: inline-block;
  transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover {
  transform: scale(1.2);
}

.whatsapp-btn-container span {
  position: absolute;
  top: 0;
  left: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #075e54;
  transform: rotateZ(20deg) translateX(10px);
  opacity: 0;
  transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover + span {
  transform: rotateZ(0deg) translateX(0px);
  opacity: 1;
}

/* Founder start*/
.bio-section-fluid {
  margin: 100px 0;
}

.bio-hero-container {
  width: 80%;
}

.bio-hero-container .heading h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.bio-hero-container .heading p {
  font-size: 15px;
  margin-bottom: 40px;
}

.circle-container {
  text-align: center;
}

.circle-icon p {
  font-size: 15px;
}

.circle-icon {
  width: 70px;
  height: 70px;
  border-radius: 1000px;
  background-color: #fff;
  border-top: 5px solid #377d3e;
  border-right: 5px solid #377d3e;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.circle-icon i {
  font-size: 30px;
  color: #377d3e;
}

.founder-img {
  background-image: url("/Image/backgroundImg/blceo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
}

/* Hero section end */

/* Brother comapny Products start*/
.hero-product-container {
  width: 80%;
  margin: 100px 0;
}

.hero-product-container .heading h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero-product-container .heading h5 {
  margin-bottom: 20px;
}

.hero-product-container .heading p {
  font-size: 15px;
}

.hero-product-container .card {
  border-radius: 0;
  margin-bottom: 10px;
  border: none;
  transition: all 0.3s ease;
}

.hero-product-container .card-title {
  font-size: 18px;
}

.hero-product-container .card:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}

.hero-product-container .card-body {
  display: flex;
  justify-content: space-between;
}

.hero-product-container .card img {
  border-radius: 0;
}

.button-secondary {
  border: none;
  background-color: #d1e29b;
  padding: 10px 40px;
  border: 1px solid #808a8b;
  transition: all 0.3s ease;
  margin-top: 50px;
  text-decoration: none;
  color: #377d3e;
}

.button-secondary:hover {
  background-color: transparent;
  color: #808a8b;
}

.button-secondary a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.button-class {
  margin: 20px 0;
}

/* Brother company products end */

/* Why our prpducts start*/
.why-our-container {
  width: 80%;
  margin: 100px 0;
}

.why-our-container .heading h1 {
  font-size: 50px;
  margin-bottom: 50px;
}

.why-our-img {
  background-image: url("/Image/backgroundImg/yOurProduct.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-our-container .card {
  border: none;
}

.why-our-container .card-body {
  padding: 0;
  font-size: 15px;
}

.why-our-container .card-body h5 {
  padding: 0;
  font-size: 18px;
}

.why-our-container .card .col-md-4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-our-container .card i {
  font-size: 50px;
  color: #377d3e;
}

/* why our product end */

/* 3-card-design start*/
.three-card-design {
  width: 80%;
  margin: 100px 0;
}

.three-card-design .card {
  border: none;
  border-radius: 0;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.three-card-design p {
  font-size: 15px;
}

.three-card-design .card i {
  font-size: 70px;
  color: #808a8b;
}

/* 3-card-design end */

/* Testimonials  start*/
.testi-container {
  width: 80%;
  margin-bottom: 50px;
}

.testi-container h1 {
  font-size: 50px;
  margin-bottom: 50px;
}

.testi-container .card {
  transition: all 0.3s ease;
}

.testi-container .card:hover {
  transform: translateY(-5px);
}

/*  Testimonials  end */

/* footer */

footer {
  background: #377d3e;
  padding: 70px 60px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 60px;
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

.footer-brand h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  /* color: rgba(245, 240, 232, 0.4); */
  color: var(--white);
  font-weight: 300;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rk-gold2);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  /* color: rgba(245, 240, 232, 0.45); */
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  max-width: 1300px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: white;
  letter-spacing: 0.1em;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.6);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Footer-container start*/
.brand-title {
  font-weight: 700;
}

.footer-heading {
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.nav-link {
  transition: color 0.3s ease;
}

.newsletter-form .form-control {
  border-radius: 0;
  padding: 0.75rem;
  font-size: 15px;
}

.newsletter-form .btn-primary {
  background-color: #d1e29b;
  color: #377d3e;
  border: 1px solid #808a8b;
  border-radius: 0;
}

.newsletter-form .btn-primary:hover {
  background-color: transparent;
  color: #808a8b;
  border: 1px solid #808a8b;
}

.social-links {
  display: flex;
  padding: 4rem;
  margin-bottom: 0%;
  gap: 1.5rem;
  justify-content: end;
  align-items: center;
  float: right;
}

.social-links2 {
  position: absolute;
  top: 50px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 1000;
}
.company-name {
  padding: 3.5rem;
  padding-left: 2%;
  margin-bottom: 0%;
  font-weight: 900;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.logo-head h1 {
  margin-top: 50px;
  padding-left: 20px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  white-space: nowrap;
}
.rishikul-logo {
  display: flex;
  justify-content: flex-end;
}

.social-link-fb {
  color: blue;
  background-color: white;
  font-size: 1.25rem;
  transition: color 0.3s ease;
  padding-right: -50px;
  border: 1px solid #808a8b;
}

.social-link-yt {
  color: red;
  background-color: white;
  font-size: 1.25rem;
  transition: color 0.3s ease;
  float: right;
  border: 1px solid #808a8b;
}

.social-link:hover {
  background-color: red;
  color: #fff;
}

.rishikul-logo-head {
  display: flex;
  justify-content: flex-end;
}
/* .footer-team{
    margin-top: 60em;
} */

/* Footer end */

.testi-navbar {
  margin-bottom: 1000px;
}

/* Testimonials */
.youtube-video {
  margin-top: 200px;
  color: #000;
}

/* Trending News Box */
.container-trending-news .col-sm-2 {
  background-color: #d1e29b;
  color: #377d3e;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.container-trending-news .col-sm-10 {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  position: absolute;
  will-change: transform;
}

.marquee-item {
  font-size: 15px;
  color: #495057;
  display: inline-block;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(60vw);
    /* Starts immediately */
  }

  100% {
    transform: translateX(-160%);
    /* Moves left smoothly */
  }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .container-trending-news .col-sm-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .container-trending-news .col-sm-10 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .container-trending-news .col-sm-2 p {
    font-size: 1rem;
  }

  .marquee-item {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .container-trending-news .col-sm-2 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .container-trending-news .col-sm-10 {
    flex: 0 0 65%;
    max-width: 65%;
  }

  .container-trending-news .col-sm-2 p {
    font-size: 0.9rem;
  }

  .marquee-item {
    font-size: 0.9rem;
  }
}

/* Trending News Box End*/

.bg-custom-blue {
  background-color: #001f81;
}

/* Contact Us Start */
.contact-container {
  width: 80%;
}
/* .contact-border .col-lg-6 {
    border: 2px solid #ddd; 
    padding: 20px;/* 
    border-radius: 10px; 
  } */

.contact-container .heading h1 {
  margin-top: 150px;
  font-size: 50px;
  margin-bottom: 50px;
}

.contact-container .col-lg-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-container .col-lg-6 i {
  font-size: 50px;
  margin-bottom: 20px;
  color: #377d3e;
}

.contact-container .col-lg-6 h4 {
  color: #377d3e;
  margin-bottom: 20px;
}

.contact-container .col-lg-6 p {
  line-height: 0.5;
  font-size: 15px;
  color: #377d3e;
}

.contact-container .contact-form {
  margin: 50px 0;
}

.contact-container .contact-form h1 {
  margin-bottom: 20px;
}

.contact-container .contact-form input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin: 10px 0;
  outline: none;
  color: #808a8b;
}

.contact-container .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 15px;
  margin: 10px 0;
  height: 150px;
  outline: none;
  color: #808a8b;
}

.contact-container .map-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container .map-col iframe {
  width: 100%;
  height: 450px;
}

.map-col .card {
  border-radius: 0;
  margin-bottom: 50px;
}

/* Contact Us End */

/* About Us Start */
.gallery-container {
  margin-top: 150px;
}

/* About Us Start */
.about-container {
  width: 80%;
  margin: 50px 0;
}

.about-container .heading {
  margin-bottom: 50px;
}

.about-container .heading h1 {
  margin-top: 50px;
  font-size: 50px;
  margin-bottom: 20px;
}

.about-container .heading p {
  font-size: 15px;
}

.about-who-we-are-row {
  background-image: url("/Image/backgroundImg/about-who-we-are.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-who-we-are-row .content {
  /* background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)); */
  background: #377d3e;
  height: 100%;
  color: #fff;
  padding: 5%;
}

.about-who-we-are-row .content h1 {
  font-size: 50px;
}

.about-who-we-are-row .content p {
  font-size: 15px;
}

.about-who-we-are-row .row .card {
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
}

.about-who-we-are-row .row .card p {
  font-size: 15px;
}

.about-who-we-are-row .row .card i {
  font-size: 80px;
}

.about-who-we-are-row .row .card .col-md-4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-vision {
  margin: 50px 0;
}

.mission-vision h1 {
  font-size: 50px;
}

.mission-vision .row {
  margin: 50px 0;
}

.mission-vision .row h3 {
  margin-bottom: 20px;
  text-decoration: underline;
}

.mission-vision .row p {
  font-size: 15px;
}

.count-container {
  width: 80%;
}

.counter-row {
  margin: 50px 0;
}

.count-container .count-card {
  height: 250px;
  border-radius: 0;
  background-color: #377d3e;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.count-card:hover {
  transform: translateY(-7px);
}

.count-card h1 {
  font-weight: bold;
}

.count-card i {
  font-size: 50px;
  margin: 20px 0px;
}

/* About Us End */

/* Testi start*/
.testi {
  margin-top: 150px;
}

/* Testi End*/

/* Gallery Start */
.gallery-container {
  /* width: %; */
  margin-top: 0em;
}

.gallery-container .row .col-lg-6,
.gallery-container .row .col-lg-6 {
  margin: 5px 0;
  height: 10vh;
}

.gallery-container .row .col-lg-6 h1 {
  font-size: 50px;
}

.gallery-container .row .col-lg-6 p {
  font-size: 15px;
  margin: 0;
}

.gallery-container .row .col-lg-6 .card {
  padding: 0;
  border-radius: 0;
  text-align: center;
  background-color: #495057;
  color: #fff;
  border: none;
}

.gallery-card1 {
  position: relative;
  top: 150px;
  right: 10px;
  rotate: -30deg;
}

.gallery-card2 {
  position: relative;
  top: 0px;
  right: 30px;
  z-index: 1;
}

.gallery-card3 {
  position: relative;
  top: 150px;
  left: 100px;
}

.gallery-card4 {
  position: relative;
  bottom: 50px;
  right: 0px;
  rotate: 20deg;
}

.gallery-card1,
.gallery-card2,
.gallery-card3,
.gallery-card4 {
  overflow: hidden;
}

.gallery-container .row .col-lg-6 .card img {
  border-radius: 0;
  transition: transform 0.1s ease-in-out;
  display: block;
  width: 100%;
  height: auto;
}

.gallery-card:hover img {
  transform: scale(1.1);
  /* Zoom effect on hover */
}

.gallery-card-overlay {
  position: relative;
  overflow: hidden;
}

.gallery-card-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  z-index: 1;
}

.gallery-card:hover .gallery-card-overlay::before {
  opacity: 1;
}

.icon-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: opacity 0.1s ease-in-out;
}

.gallery-card:hover .icon-link {
  opacity: 1;
}

/* Another gallery sec */
.gallery-img-icon {
  color: whitesmoke;
  font-size: 40px;
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-section .gallery-img-icon i:hover {
  color: whitesmoke;
  font-size: 40px;
  position: absolute;
  top: 37%;
  left: 50%;
  transform: all 0.3s ease;
}

/* Another gallery sec */

/* Team Section start */

.bod {
  margin-top: 150px;
}
.events-margin {
  margin-top: 75px;
}
.events-slider {
  width: 1rem;
  height: 0.8rem;
}

.BoD {
  margin-top: 100px;
}

.team-section .heading h1 {
  font-size: 50px;
}

.team-section .heading p {
  font-size: 15px;
}

.member-card {
  transition: transform 0.3s;
}

.member-card:hover {
  transform: scale(1.01);
}

.member-img {
  /* object-fit: cover; */
  height: 250px;
}

.team-section .container .row .card {
  border-radius: 0;
  border: 0;
}

.team-section .container .row .card img {
  border-radius: 0;
}

.team-section .container .row .card i {
  color: #000;
  border: 1px solid black;
  font-size: 20px;
  padding: 10px;
  transition: all 0.3s ease;
}

.team-section .container .row .card i:hover {
  background-color: #495057;
  border: 1px solid #495057;
  color: #fff;
}

.team-section .container .row .card p {
  font-size: 15px;
}
/* Team Section End */

/* Blog */

.containerI {
  text-align: center;
  margin-top: 5em;
  margin-bottom: 5em;
}

/* staff start*/
.team-container {
  margin-top: 150px;
  width: 80%;
  margin-bottom: 50px;
}

.team-container h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.team-container p {
  margin-bottom: 20px;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.team-card {
  width: 22%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
  transition: transform 0.3s ease-in-out;
}

.team-card:hover {
  transform: scale(1.05);
}

.team-card-inner {
  display: flex;
  align-items: center;
  padding: 15px;
}

.team-card-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.team-card-info {
  margin-left: 15px;
}

.team-card-name {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.team-card-title {
  font-size: 14px;
  color: #666;
  margin: 5px 0 0;
}

@media (max-width: 1024px) {
  .team-card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .team-card {
    width: 100%;
  }
}

/* staff end*/

/* risi-products */
.big-container {
  background-color: #d1e29b;
  margin-top: 60px;
}
.big-container h1 {
  color: green;
  font-weight: 700;
}

.big-container .product-a {
  height: 250px;
  width: 250px;
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  float: right;
  background-color: #d1e29b;
  padding: 0%;
  display: block; /* Remove extra spacing below the image */
  object-fit: cover;
}

.big-container .product-b {
  height: 250px;
  width: 310px;
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  float: right;
  background-color: #d1e29b;
  padding: 0%;
  display: block;
  object-fit: cover;
}

.background-color-pages h2 {
  color: green;
  font-weight: 750;
}

.background-color-pages li {
  font-size: 18px;
}

/* Products styles start */
.product-styles {
  margin-top: 70px;
  background-color: #d1e29b;
  padding: 20px 0px 15px;
  margin-top: 15px;
  width: 100%;
}

.product-styles img {
  margin-top: 0px;
  margin-bottom: 0px;
  box-shadow: none;
  border: none;
  line-height: 2;
  object-fit: cover;
  background-color: white;
}

.card-img {
  margin-top: 30px;
  padding: 0;
  background-color: white;
}
/* 
      .img-container{
          margin-bottom: 60px;
          
      } */

.product-styles h1 {
  color: green;
  font-size: 3.6rem;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}

.product-styles .card-title {
  font-family: "Poppins", sans-serif;
}

/* .content-of-modals {
    background-color: #d1e29b;
    font-family: "poppins" sans-serif;
    font-size: 16px;
  } */

/* .content-of-modals h3 {
    color: green;
    font-size: 2rem;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  } */

/* .content-of-modals p {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
  } */

/* .content-of-modals li {
    font-size: 1rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
  } */

/* .btn-read-more {
    margin-top: 12px;
    margin-bottom: 12px;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    background-color: #198754;
    text-align: center;
    align-items: center;
  }
  
  .btn-read-more:hover {
    color: white;
  } */

.card-body h5 {
  text-align: center;
}
/* Products styles end  */

/* new css for personal */
.card-img {
  transition: all 0.3s ease-in-out; /* Smooth transition */
  border-radius: 8px;
  overflow: hidden;
}
.management-picture {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* Add shadow effect on hover */
.card-img:hover {
  padding: 15px;
  box-shadow: 0px 15px 20px rgba(121, 36, 36, 0.25); /* Enhanced shadow */
  transform: scale(1.05); /* Slight zoom effect */
  cursor: pointer;
}

/***** risi-product end *****/

/* about page csss start*/

.ab-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.ab-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.ab-tag span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.ab-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--t1);
  margin-bottom: 24px;
  animation: abUp 0.7s 0.1s both;
}
.ab-hero-title em {
  font-style: italic;
  color: var(--gold2);
}

.ab-hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 40px;
  animation: abUp 0.7s 0.18s both;
}

.ab-hero-mantra {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 26px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 8px 8px 0;
  animation: abUp 0.7s 0.26s both;
}
.ab-hero-mantra-dev {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold2);
  letter-spacing: 0.04em;
}
.ab-hero-mantra-en {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
}

/* hero right — info cards */
.ab-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: abUp 0.7s 0.3s both;
}

.ab-info-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.ab-info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}
.ab-info-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 168, 78, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--gold2);
}
.ab-info-card-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 3px;
}
.ab-info-card-lbl {
  font-size: 12px;
  font-weight: 300;
  color: var(--t2);
}

/* ══════════════════════════════
     SHARED
  ══════════════════════════════ */
.ab-section-light {
  background: var(--cream);
  padding: 96px 0;
}
.ab-section-mid {
  background: var(--primary);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ab-section-dark {
  background: var(--primary-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
/* 
  .ab-section-dark::before,
  .ab-section-mid::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  } */

.ab-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  z-index: 1;
}

.ab-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}
.ab-section-title.on-light {
  color: var(--dt1);
}
.ab-section-title.on-dark {
  color: var(--t1);
}
.ab-section-title em {
  font-style: italic;
  color: var(--gold2);
}

.ab-section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 56px;
  letter-spacing: 0.8px;
}
.ab-section-sub.on-light {
  color: var(--dt2);
}
.ab-section-sub.on-dark {
  color: white;
}

.ab-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 48px 0;
}
.ab-divider::before,
.ab-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 168, 78, 0.35),
    transparent
  );
}
.ab-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ══════════════════════════════
     STORY SECTION
  ══════════════════════════════ */
.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.ab-story-body p {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--dt1);
  line-height: 1.9;
  margin-bottom: 18px;
}
.ab-story-body p:first-child {
  font-size: 16px;
  font-weight: 400;
  color: var(--dt1);
}

.ab-quote-box {
  background: var(--primary-dark);
  border-radius: 16px;
  border: 1px solid var(--border-gold);
  padding: 32px 36px;
  position: relative;
  margin-bottom: 20px;
}
.ab-quote-box::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 88px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
}
.ab-quote-box p {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--t1);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.ab-quote-box cite {
  display: block;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  font-style: normal;
}

.ab-location-box {
  background: rgba(55, 125, 62, 0.08);
  border: 1px solid rgba(55, 125, 62, 0.2);
  border-radius: 12px;
  padding: 22px 26px;
}
.ab-location-box h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.ab-location-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.ab-location-item:last-child {
  margin-bottom: 0;
}
.ab-location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 7px;
}
.ab-location-item p {
  font-size: 15px;
  font-weight: 400;
  color: var(--dt1);
  line-height: 1.6;
}
.ab-location-item strong {
  font-weight: 600;
  color: var(--dt1);
}

/* ══════════════════════════════
     PRINCIPLES
  ══════════════════════════════ */
.ab-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ab-principle {
  padding: 32px 28px;
  background: var(--rk-forest-mid);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s,
    border-color 0.35s,
    transform 0.35s;
  cursor: default;
}
.ab-principle:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(200, 168, 78, 0.3);
  transform: translateY(-4px);
}
.ab-principle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.45s;
}
.ab-principle:hover::after {
  width: 65%;
}

.ab-principle-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 16px;
  user-select: none;
  transition: color 0.35s;
}
.ab-principle:hover .ab-principle-num {
  color: rgba(255, 255, 255, 0.07);
}

.ab-principle-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold2);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.ab-principle-text {
  font-size: 14px;
  font-weight: 300;
  color: white;
  line-height: 1.78;
}

/* ══════════════════════════════
     PROMISE
  ══════════════════════════════ */
.ab-promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.ab-promise-intro {
  font-size: 16px;
  font-weight: 400;
  color: var(--dt1);
  line-height: 1.85;
  margin-bottom: 36px;
}

.ab-promise-list {
  display: flex;
  flex-direction: column;
}
.ab-promise-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 46, 26, 0.08);
  transition: padding-left 0.3s;
  cursor: default;
}
.ab-promise-item:first-child {
  padding-top: 0;
}
.ab-promise-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ab-promise-item:hover {
  padding-left: 6px;
}

.ab-promise-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 7px;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.ab-promise-item:hover .ab-promise-dot {
  opacity: 1;
  transform: scale(1.4);
}

.ab-promise-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dt1);
  margin-bottom: 3px;
  transition: color 0.3s;
}
.ab-promise-item:hover .ab-promise-title {
  color: var(--primary);
}
.ab-promise-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: var(--dt1);
  line-height: 1.75;
}

/* aarogya card */
.ab-aarogya {
  background: var(--primary-dark);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.ab-aarogya::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(200, 168, 78, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.ab-aarogya-word {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 4px;
}
.ab-aarogya-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 20px;
  display: block;
}
.ab-aarogya-desc {
  font-size: 14px;
  font-weight: 300;
  color: white;
  line-height: 1.8;
  margin-bottom: 24px;
}

.ab-people {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-people-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}
.ab-people-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.ab-people-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--t2);
}
.ab-people-text strong {
  font-weight: 500;
  color: var(--t1);
}

/* ══════════════════════════════
     MISSION VISION PHILOSOPHY
  ══════════════════════════════ */
.ab-mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ab-mvp-card {
  padding: 40px 34px;
  border-radius: 16px;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.ab-mvp-card:hover {
  transform: translateY(-5px);
}

.ab-mvp-card.c1 {
  background: var(--rk-forest-mid);
  border-color: var(--border-light);
}
.ab-mvp-card.c2 {
  background: var(--rk-forest-mid);
  border-color: rgba(200, 168, 78, 0.2);
}
.ab-mvp-card.c3 {
  background: var(--rk-forest-mid);
  border-color: var(--border-light);
}

.ab-mvp-glyph {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: rgba(200, 168, 78, 0.4);
  line-height: 1;
  margin-bottom: 20px;
}
.ab-mvp-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.ab-mvp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--t1);
  line-height: 1.2;
  margin-bottom: 14px;
}
.ab-mvp-text {
  font-size: 13.5px;
  font-weight: 400;

  color: var(--white);
  line-height: 1.8;
}
.ab-mvp-text b {
  font-weight: 500;
  color: var(--gold2);
}

/* ══════════════════════════════
     CTA
  ══════════════════════════════ */
.ab-cta {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ab-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(200, 168, 78, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.ab-cta-inner {
  position: relative;
  z-index: 1;
}
.ab-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: black;
  margin-bottom: 10px;
}
.ab-cta-title em {
  font-style: italic;
  color: var(--gold2);
}
.ab-cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: black;
  margin-bottom: 40px;
}
.ab-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ab-btn-fill {
  padding: 14px 32px;
  background: var(--gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.3s,
    transform 0.3s;
}
.ab-btn-fill:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.ab-btn-ghost {
  padding: 13px 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t1);
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.ab-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* animations */

@keyframes abUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
@media (max-width: 980px) {
  .ab-hero-inner,
  .ab-story-grid,
  .ab-promise-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ab-principles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ab-mvp-grid {
    grid-template-columns: 1fr;
  }
  .ab-inner {
    padding: 0 28px;
  }
  .ab-hero-inner {
    padding: 0 28px;
  }
  .ab-hero {
    min-height: auto;
    padding: 90px 0 72px;
  }
}
@media (max-width: 580px) {
  .ab-principles-grid {
    grid-template-columns: 1fr;
  }
  .ab-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}
/* about page csss end*/

/* team section start */
/* ── SECTION ── */
.rk-team-section {
  background: var(--cream);
  padding: 96px 0 104px;
  font-family: "Outfit", sans-serif;
}

/* ── HEADER ── */
.rk-team-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rk-team-tag::before,
.rk-team-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.rk-team-tag span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.rk-team-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--deep-forest);
  line-height: 1.1;
  margin-bottom: 10px;
}
.rk-team-title em {
  font-style: italic;
  color: var(--forest-mid);
}

.rk-team-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(26, 46, 26, 0.55);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── DIVIDER ── */
.rk-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 48px 0 40px;
}
.rk-divider::before,
.rk-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 168, 78, 0.35),
    transparent
  );
}
.rk-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── GROUP LABEL ── */
.rk-group-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.rk-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 168, 78, 0.3), transparent);
}

/* ── MEMBER CARD ── */
.rk-member-card {
  background: var(--warm-white);
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}
.rk-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 46, 26, 0.14);
  border-color: rgba(200, 168, 78, 0.3);
}

/* gold top bar on hover */
.rk-member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rk-gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 16px 16px 0 0;
}
.rk-member-card:hover::before {
  transform: scaleX(1);
}

/* image area */
.rk-member-img-wrap {
  background: var(--white);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
}
.rk-member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%);
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
}
.rk-member-card:hover .rk-member-img-wrap img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* overlay on hover */
.rk-member-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 46, 26, 0.55) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.rk-member-card:hover .rk-member-img-wrap::after {
  opacity: 1;
}

/* info */
.rk-member-info {
  padding: 18px 16px 22px;
  border-top: 1px solid rgba(26, 46, 26, 0.06);
}

.rk-member-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--deep-forest);
  line-height: 1.2;
  margin-bottom: 5px;
  transition: color 0.3s;
}
.rk-member-card:hover .rk-member-name {
  color: var(--forest-mid);
}

.rk-member-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* ── LEADERSHIP (top 2 — centered) ── */
.rk-lead-card .rk-member-img-wrap {
  aspect-ratio: 1 / 1.15;
}

/* ── ADVISOR CARD — slightly different tint ── */
.rk-advisor-card {
  background: var(--cream);
  border-color: rgba(200, 168, 78, 0.12);
}
.rk-advisor-card .rk-member-img-wrap {
  background: var(--rk-forest-mid);
}
.rk-advisor-card .rk-member-role {
  color: var(--sage);
}
/* team section end */

/* testimonial ssection start */
.rk-testi-page {
  background: var(--cream);
  padding: 96px 0 104px;
  font-family: "Outfit", sans-serif;
}

/* ── HEADER ── */
.rk-testi-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rk-testi-tag::before,
.rk-testi-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.rk-testi-tag span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.rk-testi-page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--deep-forest);
  line-height: 1.1;
  margin-bottom: 10px;
}
.rk-testi-page-title em {
  font-style: italic;
  color: var(--forest-mid);
}

.rk-testi-page-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(26, 46, 26, 0.52);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── DIVIDER ── */
.rk-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 48px 0 44px;
}
.rk-divider::before,
.rk-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 168, 78, 0.35),
    transparent
  );
}
.rk-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── VIDEO CARD ── */
.rk-vid-card {
  background: var(--warm-white);
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}
.rk-vid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(26, 46, 26, 0.13);
  border-color: rgba(200, 168, 78, 0.28);
}

/* gold top line on hover */
.rk-vid-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rk-gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}
.rk-vid-card:hover::before {
  transform: scaleX(1);
}

/* iframe wrapper — responsive 16:9 */
.rk-vid-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--rk-forest-mid);
  overflow: hidden;
}
.rk-vid-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* card body */
.rk-vid-body {
  padding: 16px 18px 20px;
  border-top: 1px solid rgba(26, 46, 26, 0.06);
}

.rk-vid-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--deep-forest);
  line-height: 1.35;
  margin: 0;
  transition: color 0.3s;
}
.rk-vid-card:hover .rk-vid-title {
  color: var(--forest-mid);
}

/* ── YOUTUBE BUTTON ── */
.rk-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #ff0000;
  border: none;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}
.rk-yt-btn:hover {
  background: #cc0000;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.rk-yt-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
/* testimonial ssection end */

/* gallery section start */

.rk-gallery-section {
  background: var(--cream);
  padding: 96px 0 110px;
  font-family: "Outfit", sans-serif;
}

/* ── HEADER ── */
.rk-gal-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rk-gal-tag::before,
.rk-gal-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.rk-gal-tag span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.rk-gal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--deep-forest);
  line-height: 1.1;
  margin-bottom: 10px;
}
.rk-gal-title em {
  font-style: italic;
  color: var(--forest-mid);
}

.rk-gal-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(26, 46, 26, 0.9);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── DIVIDER ── */
.rk-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 44px 0 36px;
}
.rk-divider::before,
.rk-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 168, 78, 0.35),
    transparent
  );
}
.rk-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── FILTER TABS ── */
.rk-gal-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}

.rk-filter-btn {
  padding: 8px 22px;
  border: 1px solid rgba(26, 46, 26, 0.15);
  border-radius: 50px;
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(26, 46, 26, 0.6);
  cursor: pointer;
  transition: all 0.25s ease;
}
.rk-filter-btn:hover {
  border-color: var(--gold);
  color: var(--deep-forest);
}
.rk-filter-btn.active {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  color: #fff;
}

/* ── GALLERY CARD ── */
.rk-gal-item {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.rk-gal-item.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  display: none;
}

.rk-gal-card {
  background: var(--warm-white);
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}
.rk-gal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(26, 46, 26, 0.14);
  border-color: rgba(200, 168, 78, 0.3);
}

/* gold top bar */
.rk-gal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rk-gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}
.rk-gal-card:hover::before {
  transform: scaleX(1);
}

/* image wrapper */
.rk-gal-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--rk-forest-mid);
}
.rk-gal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
  filter: brightness(0.92);
}
.rk-gal-card:hover .rk-gal-img img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

/* hover overlay */
.rk-gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 26, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.rk-gal-card:hover .rk-gal-overlay {
  opacity: 1;
}

.rk-gal-zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transform: scale(0.7);
  transition: transform 0.35s ease;
}
.rk-gal-card:hover .rk-gal-zoom-icon {
  transform: scale(1);
}

/* card info */
.rk-gal-info {
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(26, 46, 26, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rk-gal-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--deep-forest);
  margin: 0;
  transition: color 0.3s;
}
.rk-gal-card:hover .rk-gal-name {
  color: var(--forest-mid);
}

.rk-gal-cat-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(200, 168, 78, 0.3);
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── LIGHTBOX ── */
.rk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 20, 10, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.rk-lightbox.open {
  display: flex;
}

.rk-lb-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  animation: lbIn 0.3s ease;
}
@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.rk-lb-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.rk-lb-caption {
  text-align: center;
  margin-top: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}

.rk-lb-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: var(--deep-forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.25s;
  font-weight: 600;
  line-height: 1;
}
.rk-lb-close:hover {
  background: var(--rk-gold2);
  transform: scale(1.1);
}

.rk-lb-prev,
.rk-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.rk-lb-prev {
  left: 16px;
}
.rk-lb-next {
  right: 16px;
}
.rk-lb-prev:hover,
.rk-lb-next:hover {
  background: rgba(255, 255, 255, 0.18);
}
/* gallery section end */

/* events section start */
.rk-fp-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--deep-forest);
  font-family: "Outfit", sans-serif;
}

/* ── TRACK ── */
.rk-fp-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ══════════════════════════
     SLIDE
  ══════════════════════════ */
.rk-fp-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* slide background image */
.rk-fp-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  /* transform: scale(1.06); */
  transition: transform 0.9s ease;
}
.rk-fp-slide.active .rk-fp-slide-bg {
  /* transform: scale(1); */
}

/* dark overlay */
.rk-fp-slide::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
}

/* ── SLIDE CONTENT ── */
.rk-fp-content {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  max-width: 700px;
}

.rk-fp-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s 0.2s ease,
    transform 0.5s 0.2s ease;
}
.rk-fp-slide.active .rk-fp-tag {
  opacity: 1;
  transform: translateY(0);
}
.rk-fp-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.rk-fp-tag span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.rk-fp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s 0.28s ease,
    transform 0.5s 0.28s ease;
}
.rk-fp-slide.active .rk-fp-label {
  opacity: 1;
  transform: translateY(0);
}

.rk-fp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--rk-t1);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s 0.34s ease,
    transform 0.55s 0.34s ease;
}
.rk-fp-slide.active .rk-fp-title {
  opacity: 1;
  transform: translateY(0);
}
.rk-fp-title em {
  font-style: italic;
  color: var(--gold2);
}

.rk-fp-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--rk-t2);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s 0.42s ease,
    transform 0.5s 0.42s ease;
}
.rk-fp-slide.active .rk-fp-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* features list */
.rk-fp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s 0.5s ease,
    transform 0.5s 0.5s ease;
}
.rk-fp-slide.active .rk-fp-features {
  opacity: 1;
  transform: translateY(0);
}
.rk-fp-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--rk-border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 400;
  color: var(--rk-t2);
}
.rk-fp-feature::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* CTA */
.rk-fp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border: 1px solid rgba(200, 168, 78, 0.45);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  font-family: "Outfit", sans-serif;
  transition:
    background 0.3s,
    border-color 0.3s,
    gap 0.3s;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s 0.56s ease,
    transform 0.5s 0.56s ease,
    background 0.3s,
    border-color 0.3s;
}
.rk-fp-slide.active .rk-fp-cta {
  opacity: 1;
  transform: translateY(0);
}
.rk-fp-cta:hover {
  background: rgba(200, 168, 78, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  gap: 16px;
  text-decoration: none;
}

/* coming soon badge */
.rk-fp-badge {
  position: absolute;
  top: 40px;
  right: 64px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.5s 0.6s ease,
    transform 0.5s 0.6s ease;
}
.rk-fp-slide.active .rk-fp-badge {
  opacity: 1;
  transform: scale(1);
}
.rk-fp-badge-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--rk-border);
  background: rgba(26, 46, 26, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.rk-fp-badge-top {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rk-t3);
}
.rk-fp-badge-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--gold2);
  line-height: 1;
}

/* ══════════════════════════
     SLIDE PLACEHOLDER BG
     (when no real image — 
      remove when you add real images)
  ══════════════════════════ */
.rk-fp-slide:nth-child(1) .rk-fp-slide-bg {
  background: linear-gradient(135deg, #1a3a20 0%, #2e602e 50%, #1a2e1a 100%);
}
.rk-fp-slide:nth-child(2) .rk-fp-slide-bg {
  background: linear-gradient(135deg, #1b2b1f 0%, #377d3e 50%, #1a2e1a 100%);
}
.rk-fp-slide:nth-child(3) .rk-fp-slide-bg {
  background: linear-gradient(135deg, #2d4a2d 0%, #5c7a4e 50%, #1a2e1a 100%);
}
.rk-fp-slide:nth-child(4) .rk-fp-slide-bg {
  background: linear-gradient(135deg, #1a2e1a 0%, #2e602e 50%, #377d3e 100%);
}

/* ══════════════════════════
     NAVIGATION ARROWS
  ══════════════════════════ */
.rk-fp-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
  line-height: 1;
}
.rk-fp-arr:hover {
  background: rgba(200, 168, 78, 0.15);
  border-color: rgba(200, 168, 78, 0.4);
  color: var(--gold);
}
.rk-fp-arr-prev {
  left: 24px;
}
.rk-fp-arr-next {
  right: 24px;
}

/* ══════════════════════════
     BOTTOM BAR — dots + counter + progress
  ══════════════════════════ */
.rk-fp-bottom {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* dots */
.rk-fp-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rk-fp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    width 0.35s,
    border-radius 0.35s;
}
.rk-fp-dot.on {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
}

/* counter */
.rk-fp-counter {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--rk-t3);
  white-space: nowrap;
}
.rk-fp-counter b {
  font-size: 22px;
  font-weight: 300;
  color: var(--rk-t1);
}

/* progress bar */
.rk-fp-progress-track {
  flex: 1;
  max-width: 260px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.rk-fp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  width: 0%;
  transition: none;
}

/* ══════════════════════════
     RIGHT SIDE — product preview strip
  ══════════════════════════ */
.rk-fp-preview-strip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rk-fp-preview-item {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.3s,
    transform 0.3s;
  flex-shrink: 0;
}
.rk-fp-preview-item.on {
  border-color: var(--gold);
  transform: scale(1.08);
}
.rk-fp-preview-item:hover {
  border-color: rgba(200, 168, 78, 0.5);
}
.rk-fp-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════
     RESPONSIVE
  ══════════════════════════ */
@media (max-width: 768px) {
  .rk-fp-content {
    padding: 0 24px;
    max-width: 100%;
  }
  .rk-fp-badge {
    top: 20px;
    right: 24px;
  }
  .rk-fp-badge-ring {
    width: 80px;
    height: 80px;
  }
  .rk-fp-bottom {
    padding: 0 24px;
  }
  .rk-fp-preview-strip {
    display: none;
  }
  .rk-fp-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .rk-fp-arr {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .rk-fp-arr-prev {
    left: 12px;
  }
  .rk-fp-arr-next {
    right: 12px;
  }
}
/* events section end */

/* comany name start */

.rk-group-section {
  background: var(--cream);
  padding: 96px 0 108px;
  font-family: "Outfit", sans-serif;
}

/* ── HEADER ── */
.rk-grp-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rk-grp-tag::before,
.rk-grp-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.rk-grp-tag span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Large RISHIKUL wordmark */
.rk-grp-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 600;
  color: var(--forest-mid);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.rk-grp-wordmark em {
  font-style: italic;
  color: var(--forest-mid);
}

.rk-grp-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 46, 26, 0.4);
  margin-bottom: 0;
}

/* ── DIVIDER ── */
.rk-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 52px 0 48px;
}
.rk-divider::before,
.rk-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 168, 78, 0.35),
    transparent
  );
}
.rk-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── COMPANY CARD ── */
.rk-company-card {
  background: var(--warm-white);
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 18px;
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  height: 100%;
}
.rk-company-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(26, 46, 26, 0.13);
  border-color: rgba(200, 168, 78, 0.3);
}

/* gold top bar on hover */
.rk-company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 18px 18px 0 0;
}
.rk-company-card:hover::before {
  transform: scaleX(1);
}

/* logo area */
.rk-company-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(26, 46, 26, 0.07);
  overflow: hidden;
  transition: transform 0.35s ease;
}
.rk-company-card:hover .rk-company-logo {
  transform: scale(1.06);
}

.rk-company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* name */
.rk-company-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--deep-forest);
  line-height: 1.2;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.rk-company-card:hover .rk-company-name {
  color: var(--forest-mid);
}

/* tagline */
.rk-company-tagline {
  font-size: 14px;
  font-weight: 400;
  color: rgba(26, 46, 26, 0.9);
  line-height: 1.5;
  margin-bottom: 0;
}

/* bottom gold divider inside card */
.rk-company-sep {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 12px auto;
}
/* comany name end */

/* contact start */

.rk-contact-section {
  background: var(--cream);
  padding: 96px 0 108px;
  font-family: "Outfit", sans-serif;
}

/* ── HEADER ── */
.rk-ct-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rk-ct-tag::before,
.rk-ct-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.rk-ct-tag span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.rk-ct-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--deep-forest);
  line-height: 1.08;
  margin-bottom: 10px;
}
.rk-ct-title em {
  font-style: italic;
  color: var(--forest-mid);
}

.rk-ct-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--forest-mid);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── DIVIDER ── */
.rk-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 48px 0 52px;
}
.rk-divider::before,
.rk-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 168, 78, 0.35),
    transparent
  );
}
.rk-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── INFO CARDS ── */
.rk-info-card {
  background: var(--warm-white);
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.rk-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(26, 46, 26, 0.11);
  border-color: rgba(200, 168, 78, 0.28);
}
.rk-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 16px 16px 0 0;
}
.rk-info-card:hover::before {
  transform: scaleX(1);
}

.rk-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(55, 125, 62, 0.08);
  border: 1px solid rgba(55, 125, 62, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rk-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--forest-mid);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rk-info-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 5px;
  display: block;
}
.rk-info-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--deep-forest);
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
  letter-spacing: 0.6px;
  transition: color 0.3s;
}
a.rk-info-value:hover {
  color: var(--forest-mid);
}

/* ── SECTION LABEL ── */
.rk-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.rk-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 168, 78, 0.3), transparent);
}

/* ── FORM ── */
.rk-form-wrap {
  background: var(--warm-white);
  border: 1px solid rgba(26, 46, 26, 0.08);
  border-radius: 20px;
  padding: 44px 40px;
}

.rk-form-group {
  margin-bottom: 18px;
}

.rk-form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-mid);
  display: block;
  margin-bottom: 7px;
}

.rk-form-control {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(26, 46, 26, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--deep-forest);
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  appearance: none;
}
.rk-form-control::placeholder {
  color: rgba(26, 46, 26, 0.3);
}
.rk-form-control:focus {
  border-color: var(--forest-mid);
  box-shadow: 0 0 0 3px rgba(55, 125, 62, 0.1);
}

textarea.rk-form-control {
  resize: vertical;
  min-height: 130px;
}

.rk-submit-btn {
  width: 100%;
  padding: 14px 32px;
  background: var(--forest-mid);
  border: none;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.rk-submit-btn:hover {
  background: var(--rk-forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55, 125, 62, 0.25);
}

/* ── MAP ── */
.rk-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 46, 26, 0.08);
  box-shadow: 0 8px 32px rgba(26, 46, 26, 0.08);
  height: 100%;
  min-height: 420px;
  position: relative;
}
.rk-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
}

/* map gold overlay border on hover */
.rk-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: border-color 0.35s;
  pointer-events: none;
}
.rk-map-wrap:hover::after {
  border-color: rgba(200, 168, 78, 0.3);
}
/* contact end */

/* product css start */
.page-header {
  text-align: center;
  padding: 60px 20px 40px;
}
.page-header .label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(55, 125, 62, 0.1);
  border: 1px solid rgba(55, 125, 62, 0.25);
  border-radius: 50px;
  padding: 5px 18px;
  margin-bottom: 16px;
  font-weight: 500;
}
.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--deep-forest);
  margin-bottom: 12px;
}
.page-header h1 span {
  color: var(--primary);
}
.page-header p {
  color: var(--dt2);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.header-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold-mid));
  border-radius: 3px;
  margin: 20px auto 0;
}

/* ── CATEGORY TABS ───────────────────────── */
.tabs-wrapper {
  display: flex;
  justify-content: center;
  margin: 10px 0 36px;
  padding: 0 16px;
}
.tab-group {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(55, 125, 62, 0.18);
  border-radius: 60px;
  padding: 5px;
  gap: 4px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(26, 46, 26, 0.08);
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dt2);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.tab-btn .tab-icon {
  font-size: 1rem;
  transition: transform 0.25s;
}
.tab-btn:hover {
  color: var(--primary);
  background: rgba(55, 125, 62, 0.07);
}
.tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(55, 125, 62, 0.35);
}
.tab-btn.active .tab-icon {
  transform: scale(1.15);
}

/* badge count on tab */
.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 1px 8px;
  min-width: 22px;
}
.tab-btn:not(.active) .tab-count {
  background: rgba(55, 125, 62, 0.12);
  color: var(--primary);
}

/* ── PRODUCT PANEL ───────────────────────── */
.products-section {
  padding: 0 0 70px;
}
.product-panel {
  display: none;
}
.product-panel.active {
  display: block;
}

/* panel fade-in */
.product-panel.active {
  animation: panelFade 0.35s ease both;
}
@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── UPCOMING BANNER ─────────────────────── */
.upcoming-banner {
  text-align: center;
  padding: 60px 20px;
}
.upcoming-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.upcoming-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--deep-forest);
  margin-bottom: 10px;
}
.upcoming-banner p {
  color: var(--dt2);
  font-size: 0.95rem;
  max-width: 380px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 28px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(55, 125, 62, 0.3);
  transition: all 0.25s;
}
.notify-btn:hover {
  background: var(--deep-forest);
  box-shadow: 0 6px 20px rgba(26, 46, 26, 0.3);
}

/* ── PRODUCT CARD ────────────────────────── */
.product-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(55, 125, 62, 0.13);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 46, 26, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 46, 26, 0.15);
}
.card-img-wrap {
  background: linear-gradient(145deg, #f4fdf0, #eaf8e0);
  padding: 24px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}
.card-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(55, 125, 62, 0.06) 0%,
    transparent 70%
  );
}
.card-img-wrap img {
  max-height: 130px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 6px 14px rgba(26, 46, 26, 0.12));
}
.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-body-custom {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tag-pill {
  display: inline-block;
  font-size: 0.68rem;
  background: rgba(55, 125, 62, 0.09);
  color: var(--primary);
  border: 1px solid rgba(55, 125, 62, 0.2);
  border-radius: 50px;
  padding: 2px 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.product-name {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-forest);
  line-height: 1.35;
  margin: 0;
}
.product-desc {
  font-size: 0.78rem;
  color: var(--dt2);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
  text-decoration: none;
  margin-top: 6px;
  align-self: flex-start;
}
.btn-view:hover {
  background: var(--deep-forest);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 46, 26, 0.25);
  transform: translateX(2px);
}
.btn-view svg {
  transition: transform 0.2s;
}
.btn-view:hover svg {
  transform: translateX(3px);
}

/* ── CARD FADE IN ────────────────────────── */
.fade-in-card {
  animation: fadeInUp 0.45s ease both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-card:nth-child(1) {
  animation-delay: 0.04s;
}
.fade-in-card:nth-child(2) {
  animation-delay: 0.08s;
}
.fade-in-card:nth-child(3) {
  animation-delay: 0.12s;
}
.fade-in-card:nth-child(4) {
  animation-delay: 0.16s;
}
.fade-in-card:nth-child(5) {
  animation-delay: 0.2s;
}
.fade-in-card:nth-child(6) {
  animation-delay: 0.24s;
}
.fade-in-card:nth-child(7) {
  animation-delay: 0.28s;
}
.fade-in-card:nth-child(8) {
  animation-delay: 0.32s;
}
.fade-in-card:nth-child(9) {
  animation-delay: 0.36s;
}
.fade-in-card:nth-child(10) {
  animation-delay: 0.4s;
}
.fade-in-card:nth-child(11) {
  animation-delay: 0.44s;
}
.fade-in-card:nth-child(12) {
  animation-delay: 0.48s;
}
.fade-in-card:nth-child(13) {
  animation-delay: 0.52s;
}
.fade-in-card:nth-child(14) {
  animation-delay: 0.56s;
}
.fade-in-card:nth-child(15) {
  animation-delay: 0.6s;
}

/* ── MODAL ───────────────────────────────── */
.modal-content {
  border-radius: 20px;
  border: 1px solid rgba(55, 125, 62, 0.18);
  overflow: hidden;
}
.modal-header {
  background: linear-gradient(135deg, var(--deep-forest), var(--moss));
  border-bottom: 1px solid rgba(200, 168, 78, 0.2);
  padding: 20px 28px;
}
.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--rk-white);
}
.modal-header .btn-close {
  filter: invert(1) brightness(1.5);
}
.modal-body {
  padding: 30px 28px;
  background: var(--warm-white);
}
.modal-img-wrap {
  background: linear-gradient(145deg, #f4fdf0, #eaf8e0);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
}
.modal-img-wrap img {
  max-height: 170px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(26, 46, 26, 0.12));
}
.modal-badge {
  display: inline-block;
  background: rgba(55, 125, 62, 0.1);
  color: var(--primary);
  border: 1px solid rgba(55, 125, 62, 0.22);
  border-radius: 50px;
  font-size: 0.72rem;
  padding: 3px 12px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.modal-product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--deep-forest);
  margin-bottom: 6px;
}
.modal-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--rk-border), transparent);
  margin: 14px 0;
}
.modal-desc {
  color: #3a4a3a;
  font-size: 0.9rem;
  line-height: 1.75;
}
.benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.benefit-chip {
  background: rgba(55, 125, 62, 0.08);
  border: 1px solid rgba(55, 125, 62, 0.18);
  border-radius: 50px;
  font-size: 0.73rem;
  color: var(--primary);
  padding: 4px 12px;
  font-weight: 500;
}
.modal-footer {
  background: #f0fae8;
  border-top: 1px solid rgba(55, 125, 62, 0.1);
  padding: 16px 28px;
}
.btn-modal-close {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-modal-close:hover {
  background: var(--primary);
  color: #fff;
}
.btn-modal-enquire {
  background: linear-gradient(135deg, var(--primary), var(--forest-mid));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(55, 125, 62, 0.25);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-modal-enquire:hover {
  background: linear-gradient(135deg, var(--deep-forest), var(--moss));
  color: #fff;
}

@media (max-width: 576px) {
  .page-header {
    padding: 40px 16px 28px;
  }
  .tab-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .modal-body {
    padding: 22px 16px;
  }
  .modal-header,
  .modal-footer {
    padding: 14px 18px;
  }
}
/* product css end */
