/*============================================*/
/*=============== Navbar Styling ==============*/
/*============================================*/

/* ================= BASE ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins','Trebuchet MS',sans-serif;
}

a, button, .dropdown, .search-input{
  transition:all .3s ease;
}

/* ================= HEADER ================= */

header{
  width:100%;
  position:relative;
  z-index:100;
  border-bottom:1px solid #fff;
  border-top: 1px solid #caa74d;
}

/* Sticky Navbar */
header.sticky .middle-nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#08122c;
  box-shadow:0 3px 10px rgba(0,0,0,.15);
  z-index:1000;
}

/* ================= TOP NAV ================= */

.top-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  padding:6px 60px;
  font-size:14px;
}

.top-nav ul{
  display:flex;
  list-style:none;
  gap:20px;
}

.top-nav a{
  text-decoration:none;
  color:#08122c;
}

.top-nav a:hover{color:#000;}

/* ================= MIDDLE NAV ================= */

.middle-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 60px;
  background:#08122c;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.logoimg {
    display: block;
    max-width: 140px;      /* maximum width */
    width: auto;            /* width auto, height decide kare */
    max-height: 60px;       /* maximum height */
    height: auto;           /* maintain aspect ratio */
    margin: 0 auto;         /* center horizontally */
    object-fit: contain;    /* crop na ho */
    transition: transform 0.3s ease;
}

.logoimg:hover {
    transform: scale(1.05);
}
.logo {
    height: 40px;
    display: flex;
    align-items: center;   
    justify-content: center; 
}



/* ================= CENTER MENU ================= */

.mid-nav-center ul{
  list-style:none;
  display:flex;
  gap:50px;
}

.mid-nav-center ul li a{
  text-decoration:none;
  color:#fff;
  font-size:17px;
  font-weight:500;
  position:relative;
}

.mid-nav-center ul li a::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  background:#caa74d;
  bottom:-5px;
  left:0;
}

.mid-nav-center ul li a:hover::after,
.mid-nav-center ul li a.active::after{
  width:100%;
}

.mid-nav-center ul li a.active{
  color:#caa74d;
}

/* ================= RIGHT ICONS ================= */

.mid-nav-right{
  display:flex;
  align-items:center;
  gap:30px;
}

.mid-nav-right a{
  color:#fff;
  font-size:20px;
}

.mid-nav-right a:hover{color:#caa74d;}


/* ================= PROFILE DROPDOWN ================= */

.auth-links {
  display: flex;
  gap: 10px;
}



.auth-btn.login {
  color: #fff;
  font-size: 17px;
}


.auth-btn.register {
  color: #fff;
  font-size: 17px;
}


.auth-btn.register:hover {
  color: #caa74d;
}

/* ================= CART ================= */

.cart-icon{
  position:relative;
}

.cart-badge{
  position:absolute;
  top:-6px;
  right:-8px;
  width:18px;
  height:18px;
  background:#caa74d;
  color:#fff;
  font-size:12px;
  font-weight:600;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ================= BUTTON ================= */

.order-btn{
  background:#caa74d;
  color:#fff;
  border:none;
  padding:8px 18px;
  border-radius:25px;
  font-weight:600;
  cursor:pointer;
}

.order-btn:hover{
  background:#000;
  color:#caa74d;
  transform:translateY(-2px);
}

/* ================= TOGGLES ================= */

.menu-toggle{
  display:none;
  font-size:26px;
  color:#fff;
  cursor:pointer;
  position:relative;
  z-index:3001; /* 🔥 hamburger always clickable */
}

.close-toggle{
  display:none;
  font-size:24px;
  color:#caa74d;
  cursor:pointer;
  z-index:3000;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .middle-nav{padding:16px 24px;}
  .logo h1{font-size:26px;}
}

@media(max-width:768px){

  .top-nav{display:none;}

  .menu-toggle{display:block;}

  .middle-nav{
    padding:14px 18px;
  }

 
  .mid-nav-center ul{
    position:fixed;
    top:0;
    left:-100%;
    width:75%;
    height:100vh;
    background:#08122c;
    flex-direction:column;
    padding:90px 25px;
    gap:22px;
    z-index:2000;

    pointer-events:none; /* 👈 CLOSED menu won't block clicks */
  }

  .mid-nav-center ul.show{
    left:0;
    pointer-events:auto; /* 👈 OPEN menu clickable */
  }

  .mid-nav-center ul li a{
    font-size:18px;
  }

  .close-toggle{
    display:block;
    position:fixed;
    top:20px;
    right:20px;
  }

  .search-box.active .search-input{
    width:150px;
  }
}

@media(max-width:480px){
  .logo h1{font-size:22px;}
  .order-btn{display:none;}
  .search-box.active .search-input{width:120px;}
}





/*==================================================*/
/*===============Hero Section Home=================*/
/*=================================================*/


:root {
  --navy:#08122c;
  --gold:#caa74d;
  --glass-border:rgba(255,255,255,0.06);
  --white:#ffffff;
}
body {
  margin:0;
  padding:0;
  font-family:'Poppins','Trebuchet MS',sans-serif;
  background:var(--navy);
  color:var(--white);
}
.hero-section {
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--navy);
  color:var(--white);
  padding:28px;
}
.hero-container {
  width:100%;
  max-width:1500px;
  display:grid;
  grid-template-columns:1fr 720px;
  gap:40px;
  align-items:center;
  padding:42px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border:1px solid var(--glass-border);
  box-shadow:0 40px 120px rgba(2,6,12,0.7);
  backdrop-filter:blur(10px);
}

/* LEFT */
.hero-left .eyebrow {
  display:inline-block;
  background:rgba(202,167,77,0.10);
  color:var(--gold);
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(202,167,77,0.08);
  font-weight:700;
  margin-bottom:22px;
}
.hero-left .hero-title {
  font-size:56px;
  line-height:1.2;
  font-weight:800;
  margin-bottom:22px;
}
.hero-left .hero-desc {
 line-height:1.2;
  color:rgba(255,255,255,0.86);
  font-size:18px;
  max-width:80%;
  margin-bottom:28px;
}
.hero-ctas {
  display:flex;
  gap:16px;
  align-items:center;
  margin-bottom:18px;
}
.btn {
  padding: 14px 26px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  transition: all .32s cubic-bezier(.4,0,.2,1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .3px;
  transform: translateY(0);
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(90deg, var(--gold), #f2c86d);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(202,167,77,0.22);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(202,167,77,0.32);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(202,167,77,0.20);
}

/* OUTLINE BUTTON */
.btn-outline {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
}

.btn-outline:active {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
}

/* FOOTNOTE */
.hero-footnote {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: .2px;
}


/* RIGHT VISUAL */
.hero-right {
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.visual-wrap {
  width:680px;
  height:540px;
  position:relative;
  perspective:1200px;
  transform:translateZ(0);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
}
.bg-glow {
  position:absolute;
  left:-80px;top:-80px;
  width:520px;height:520px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(202,167,77,0.1), rgba(8,18,44,0));
  filter:blur(44px);
}
.card-back,.card-mid,.phone-mockup,.qr-float,.mini-card-float,.dots-float{
  transition:transform .4s ease, opacity .4s ease;
}
.visual-wrap:hover .card-mid{transform:rotate(10deg) translateY(-6px);}
.visual-wrap:hover .card-back{transform:rotate(-12deg) translateY(4px);}
.visual-wrap:hover .qr-float{transform:rotate(0deg) scale(1.05);}
.visual-wrap:hover .phone-mockup{transform:scale(1.04);}
.visual-wrap:hover .mini-card-float{transform:translateY(-6px);}
.visual-wrap:hover .dots-float{transform:translateY(-4px);}
.card-back {
  position:absolute;
  left:8px;top:56px;
  width:420px;height:280px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.03);
  box-shadow:0 28px 80px rgba(2,6,12,0.7);
  transform:rotate(-9deg);
}
.card-mid {
  position:absolute;
  right:8px;top:18px;
  width:500px;height:320px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(202,167,77,0.12), rgba(255,255,255,0.01));
  border:1px solid rgba(202,167,77,0.12);
  box-shadow:0 36px 90px rgba(202,167,77,0.06);
  transform:rotate(6deg);
}
.phone-mockup {
  position:absolute;
  left:110px;top:-20px;
  width:460px;height:460px;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.06);
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow:0 48px 110px rgba(2,6,12,0.7);
}
.phone-mockup img {width:100%;height:100%;object-fit:cover;}





.qr-float {
  position:absolute;
  right:-16px;bottom:-44px;
  width:140px;height:140px;
  border-radius:18px;
  background:var(--white);
  padding:10px;
  z-index:4;
  box-shadow:0 40px 100px rgba(2,6,12,0.7);
  transform:rotate(-6deg);
}

.qr-float img {width:100%;height:100%;object-fit:contain;}



/*mini cards*/
/*---------*/

.mini-features {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.mini-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: rgba(10, 15, 40, 0.65);
  border: 1.5px solid rgba(202, 167, 77, 0.3);
  border-radius: 25px;
  padding: 14px 18px;
  width: auto; /* auto rakho warna text dabega */
  backdrop-filter: blur(10px);
  color: #fff;
  white-space: nowrap;   /* 🔥 Keeps text in ONE line */
  transition: all 0.35s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  cursor: default;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

/* Animation delays */
.mini-card:nth-child(1) { animation-delay: 0.2s; }
.mini-card:nth-child(2) { animation-delay: 0.4s; }
.mini-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium glow effect */
.mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(202, 167, 77, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mini-card:hover::before {
  opacity: 1;
}

.mini-card:hover {
  border-color: rgba(202, 167, 77, 0.6);
  box-shadow: 0 0 20px rgba(202, 167, 77, 0.5);
  transform: translateY(-4px);
}

/* Icon Styling */
.mini-card i {
  font-size: 20px;
  color: #d8b25a;
  transition: all 0.3s ease;
}

.mini-card:hover i {
  color: #ffdf87;
  text-shadow: 0 0 10px rgba(202, 167, 77, 0.8);
}

/* Heading Only */
.mini-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #f5d87b;
  letter-spacing: 0.6px;
  text-transform: capitalize;
  text-shadow: 0 0 5px rgba(202, 167, 77, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .mini-card {
    width: 100%;
    max-width: 210px;
  }
  .mini-features {
    justify-content: center;
  }
}



/*Active USer*/
.active-users-premium {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid rgba(202, 167, 77, 0.4);
  border-radius: 16px;
  background: rgba(10, 20, 45, 0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(202, 167, 77, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
  width: fit-content;
  margin-top: 25px;
  flex-wrap: nowrap; 
  white-space: nowrap;
}

/* USER IMAGES */
.user-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.user-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #caa74d;
  object-fit: cover;
  background: #08122c;
  margin-left: -12px;
  box-shadow: 0 0 10px rgba(202, 167, 77, 0.3);
  animation: breathe 4s ease-in-out infinite;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Lift + glow on hover */
.user-img:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 28px rgba(255, 215, 0, 0.9);
  z-index: 5;
}


.user-list img:first-child {
  margin-left: 0;
}

/* Soft breathing glow */
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

/* TEXT */
.active-users-premium h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 12px;
  background: linear-gradient(90deg, #f8e29a, #caa74d, #fff2b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 0 10px rgba(202, 167, 77, 0.25);
  white-space: nowrap;
}

/* shimmer inside number */
.active-users-premium h3 span {
  display: inline-block;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.2) 0%,
    rgba(255,215,0,1) 50%,
    rgba(255,255,255,0.2) 100%
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}

/* Responsive */
@media (max-width: 768px) {
  .active-users-premium {
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    text-align: center;
  }

  .user-list {
    justify-content: center;
  }

  .user-img {
    width: 36px;
    height: 36px;
    margin-left: -6px;
  }

  .active-users-premium h3 {
    font-size: 1rem;
  }
}



/* RESPONSIVE FIX */
@media (max-width:992px){
  .hero-container{
    grid-template-columns:1fr;
    text-align:center;
    padding:32px;
  }
  .hero-left .hero-title{font-size:42px;}
  .hero-left .hero-desc{max-width:100%;}
  .hero-ctas{justify-content:center;}
  .hero-right{min-height:520px;}
  .visual-wrap{width:90%;height:460px;margin:auto;}
  .card-mid,.card-back,.qr-float,.mini-card-float,.dots-float{
    transform:scale(0.85);
  }
  .qr-float{right:10%;bottom:-30px;}
  .mini-card-float{top:10px;right:10%;}
  .dots-float{right:5%;top:100px;}
}
@media (max-width:600px){
  .hero-left .hero-title{font-size:32px;}
  .hero-left .hero-desc{font-size:15px;}
  .visual-wrap{width:100%;height:400px;}
  .card-mid,.card-back,.phone-mockup,.qr-float,.mini-card-float,.dots-float{
    transform:scale(0.75);
  }
  .qr-float{bottom:-20px;}
}




/*==================================================*/
/*============End Hero Section Home=================*/
/*=================================================*/




















/*==================================================*/
/*============Hero small card Section=============*/
/*=================================================*/


.richkardz-stats {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 12px 5%;
  background: linear-gradient(135deg, #d1a24d, #b7892e, #e6c36e);
  background-size: 300% 300%;
  animation: goldGlow 6s ease-in-out infinite;
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.richkardz-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.1);
  cursor: default;
}

.richkardz-stat:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.richkardz-stat i {
  font-size: 22px;
  color: #fff;
  opacity: 0.95;
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
}

.richkardz-stat h4 {
  font-size: 17px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.richkardz-stat p {
  font-size: 10px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.85;
  letter-spacing: 1px;
}

.divider {
  width: 1px;
  height: 25px;
  background: rgba(255,255,255,0.3);
}

@keyframes goldGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
  .richkardz-stats {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }
  .divider { display: none; }
  .richkardz-stat {
    width: 85%;
    justify-content: center;
  }
}



/*==================================================*/
/*============End Hero small card Section===========*/
/*=================================================*/








/*==================================================*/
/*============Why choose card Section===========*/
/*=================================================*/



.features{
  padding:120px 4%;
  padding-top: 100px;
  background:radial-gradient(circle at top,#0b1638,#08122c);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.section-title .first{color:#fff;}
.section-title span{color:#d1a24d;}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
  justify-items:center;
}
.feature-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  backdrop-filter:blur(12px);
  border-radius:20px;
  padding:50px 25px;
  color:#fff;
  width:100%;
  margin-top: 120px;
  max-width:320px;
  transition:transform 0.6s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease, border-color 0.4s ease;
  position:relative;
  overflow:hidden;
}
.feature-card::before{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:conic-gradient(from 180deg,#d1a24d,transparent 30%,#d1a24d,transparent 70%);
  transition:transform 1.5s ease;
  z-index:0;
  opacity:0.15;
}
.feature-card:hover::before{
  transform:rotate(360deg);
  opacity:0.35;
}
.feature-card:hover{
  transform:translateY(-12px) scale(1.05);
  border-color:#d1a24d;
  box-shadow:0 10px 25px rgba(209,162,77,0.35);
}
.feature-card .icon{
  font-size:45px;
  color:#d1a24d;
  margin-bottom:25px;
  position:relative;
  z-index:1;
  transition:transform 0.4s ease;
}
.feature-card:hover .icon{
  transform:rotateY(360deg) scale(1.2);
}
.feature-card h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:15px;
  position:relative;
  z-index:1;
}
.feature-card p{
  color:#d3d3d3;
  font-size:15px;
  line-height:1.7;
  z-index:1;
  position:relative;
}
@keyframes floatCard{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}
.feature-card:nth-child(odd){animation:floatCard 6s ease-in-out infinite;}
.feature-card:nth-child(even){animation:floatCard 6s ease-in-out 1s infinite;}


/*==================================================*/
/*============End Why choose card Section===========*/
/*=================================================*/







/*==================================================*/
/*============Premium card Section===========*/
/*=================================================*/


/* ========================================
   GLOBAL
======================================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
}

body{
  background:#fffdf9;
}

/* ========================================
   SECTION WRAPPER
======================================== */
.premium-section{
  position:relative;
  padding:130px 6%;
  overflow:hidden;
  text-align:center;
  background:#fffdf9;
}

/* GOLD PARALLAX GLOW BALLS */
.premium-section::before,
.premium-section::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(209,162,77,0.25), transparent 70%);
  filter:blur(120px);
  animation:floatGlow 11s ease-in-out infinite alternate;
  pointer-events:none;
}

.premium-section::before{
  top:-120px;
  left:-120px;
}
.premium-section::after{
  bottom:-120px;
  right:-120px;
  animation-delay:5s;
}

@keyframes floatGlow{
  0%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(40px,-40px) scale(1.15); }
  100%{ transform:translate(-25px,30px) scale(1); }
}

/* ========================================
   HEADINGS
======================================== */
.premium-content h2{
  font-size:3.4rem;
  font-weight:800;
  color:#1a1a1a;
  letter-spacing:1px;
  margin-bottom:12px;
  opacity:0;
  animation:fadeUp 1s ease forwards;
}

.premium-content h3{
  font-size:1.95rem;
  font-weight:600;
  color:#d1a24d;
  margin-bottom:28px;
  opacity:0;
  animation:fadeUp 1s ease forwards 0.2s;
}

.premium-content .intro{
  max-width:850px;
  margin:0 auto 55px;
  color:#555;
  font-size:1.05rem;
  line-height:1.75;
  opacity:0;
  animation:fadeUp 1s ease forwards 0.35s;
}

/* ========================================
   STEPS LAYOUT
======================================== */
.steps{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:65px;
  perspective:1200px;
}

/* SINGLE STEP CARD */
.step{
  width:310px;
  text-align:center;
  cursor:pointer;
  opacity:0;
  transform:translateY(90px);
  transition:1.1s ease;
  position:relative;
}

/* Reveal on Scroll */
.step.active{
  opacity:1;
  transform:translateY(0);
}

/* On Hover → 3D Tilt */
.step:hover{
  transform:translateY(-25px) scale(1.08);
}

/* ========================================
   GLASS 3D IMAGE WRAPPER
======================================== */
.step-image{
  position:relative;
  backdrop-filter:blur(10px);
  transition:0.6s ease;
  transform-style:preserve-3d;
}

/* LIGHT SWEEP */
.step-image::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(120deg, rgba(255,255,255,0.9), transparent 70%);
  transform:skewX(-25deg);
  transition:0.6s ease;
  opacity:0;
}

.step:hover .step-image::after{
  left:140%;
  opacity:1;
}

/* IMAGE */
.step-image img{
  width:260px;
  height:260px;
  border-radius:120px;
  object-fit:cover;
  animation:floatImg 4.5s ease-in-out infinite;
  transition:0.6s ease;
  transform:translateZ(30px);
}

/* Depth Hover */
.step:hover .step-image img{
  transform:scale(1.12) rotate(-3deg) translateZ(35px);
}

/* FLOAT KEYFRAME */
@keyframes floatImg{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
}

/* ========================================
   STEP TEXT
======================================== */
.step h4{
  font-size:1.6rem;
  color:#d1a24d;
  margin-top:18px;
  font-weight:700;
}

.step p{
  color:#444;
  margin-top:10px;
  font-size:1rem;
  line-height:1.65;
}

/* Fade Up Animation */
@keyframes fadeUp{
  from{ opacity:0; transform:translateY(40px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ========================================
   RESPONSIVE
======================================== */
@media(max-width:900px){
  .steps{ flex-direction:column; }
  .step{ width:95%; max-width:430px; }
}



/*==================================================*/
/*==============End Premium card Section============*/
/*=================================================*/


.premium-steps-section {
  position: relative;
  overflow: hidden;
  background: #fffdf9; /* Clean light background */
  padding: 100px 6%;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* Floating Background Circles */
.floating-bg::before,
.floating-bg::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,162,77,0.15), transparent 70%);
  filter: blur(80px);
  animation: floatBg 15s ease-in-out infinite alternate;
}
.floating-bg::before { top: 5%; left: 5%; animation-delay: 0s; }
.floating-bg::after { bottom: 5%; right: 5%; animation-delay: 7s; }

@keyframes floatBg {
  0% { transform: translate(0,0) scale(1); opacity:0.6; }
  50% { transform: translate(30px,-30px) scale(1.1); opacity:1; }
  100% { transform: translate(-30px,30px) scale(1); opacity:0.6; }
}

/* Headings & Intro */
.premium-content h2 {
  font-size:3rem;
  font-weight:800;
  color:#222;
  margin-bottom:10px;
  letter-spacing:1px;
}
.premium-content h3 {
  font-size:1.8rem;
  font-weight:600;
  color:#d1a24d;
  margin-bottom:30px;
}
.premium-content .intro {
  max-width:850px;
  margin:0 auto 50px;
  color:#555;
  font-size:1rem;
  line-height:1.8;
}

/* Steps Layout */
.steps {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:50px;
}
.step {
  width:300px;
  background: transparent;
  padding:0;
  cursor:pointer;
  opacity:0;
  transform:translateY(60px);
  transition: transform 0.5s ease, opacity 0.5s ease;
  position: relative;
  perspective: 1000px;
}
.step.active { opacity:1; transform:translateY(0); }
.step:hover { transform: translateY(-15px) scale(1.06) rotateX(2deg); }

/* Step Images */
.step-image {
  position: relative;
}
.step-image img {
  width:280px;
  height:280px;
  object-fit:cover;
  border-radius:120px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.step:hover .step-image img {
  transform: scale(1.12) rotate(-3deg);
}

/* Shine Effect */
.shine {
  position: absolute;
  top:0; left:-75%;
  width:50%;
  height:100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0) 70%);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: all 0.5s ease;
}
.step:hover .shine {
  left:125%;
  transition: all 0.7s ease;
}

/* Step Text */
.step h4 {
  color:#d1a24d;
  font-size:1.55rem;
  margin:12px 0 8px;
  font-weight:700;
}
.step p {
  color:#555;
  font-size:1rem;
  line-height:1.6;
}

/* Floating Animation on Images */
.floating img {
  animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Responsive */
@media(max-width:900px){
  .steps { flex-direction:column; align-items:center; }
  .step { width:90%; max-width:400px; }
}







/*==================================================*/
/*================Detail card Section==============*/
/*=================================================*/



/* ===== Detail Section ===== */
.detail-card-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 10%;
  background: #000;
  color: #fff;
  overflow: hidden;
  perspective: 1000px;
  transition: transform 0.3s ease;
}

/* ===== Background Waves ===== */
.wave-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(0,224,255,0.1), transparent 70%),
              radial-gradient(circle at 70% 50%, rgba(111,0,255,0.15), transparent 70%);
  background-size: 200% 200%;
  animation: moveWaves 10s linear infinite;
  z-index: 0;
}
.wave-bg.second {
  opacity: 0.6;
  animation: moveWavesReverse 12s linear infinite;
}
@keyframes moveWaves {
  0% {transform:translate(0,0) rotate(0deg);}
  100% {transform:translate(-20px,-20px) rotate(360deg);}
}
@keyframes moveWavesReverse {
  0% {transform:translate(0,0) rotate(0deg);}
  100% {transform:translate(20px,20px) rotate(-360deg);}
}

/* ===== Content ===== */
.detail-card-content {
  max-width: 600px;
  z-index: 2;
  transition: transform 0.3s ease;
}
.detail-card-content h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f1c40f;
  margin-bottom: 10px;
}
.detail-card-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg,#00c6ff,#6f00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.detail-card-content p {
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-bottom: 30px;
  line-height: 1.7;
}
.cardlist ul {
  list-style: none;
  margin-bottom: 30px;
}
.cardlist ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #e0e0e0;
}
.cardlist ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00e0ff;
  font-weight: 600;
}

/* ===== Button ===== */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg,#00c6ff,#6f00ff);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0,224,255,0.3);
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(111,0,255,0.6);
}

/* ===== Image + Scan Effect ===== */
.detail-card-image {
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.detail-card-image img {
  width: 580px;
  border-radius: 20px;
  display: block;
}

/* Light scan overlay */
.scan-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  pointer-events: none;
}
.scan-effect::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,255,255,0.3) 50%, transparent 100%);
  animation: scanLine 4s ease-in-out infinite;
  filter: blur(8px);
}
@keyframes scanLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: -100%; }
}

/* ===== Glows ===== */
.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,rgba(0,224,255,0.15),transparent);
  filter: blur(100px);
  z-index: 1;
  animation: moveGlow 8s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}
.glow.purple {
  background: radial-gradient(circle,rgba(111,0,255,0.2),transparent);
  bottom: -150px;
  right: -100px;
}
.glow:first-child {
  top: -100px;
  left: -100px;
}
@keyframes moveGlow {
  0% {transform:translate(0,0);}
  100% {transform:translate(60px,40px);}
}

/* ===== Animations ===== */
@keyframes float {
  0%,100% {transform:translateY(0);}
  50% {transform:translateY(-10px);}
}

/* ===== Scroll Fade-in ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .detail-card-section {
    flex-direction: column;
    text-align: center;
  }
  .detail-card-image img {
    width: 300px;
    margin-top: 40px;
  }
}



/*==================================================*/
/*==============End Detail card Section=============*/
/*=================================================*/










/*==================================================*/
/*============ Detail card Section Two Golden======*/
/*=================================================*/



/*=======Detail Card section2==========*/
/*===== Golden Theme Overrides ===== */
.golden-theme {
  background: radial-gradient(circle at 30% 50%, #0d0d0d 0%, #000 100%);
}

.golden-theme .wave-bg {
  background: radial-gradient(circle at 40% 50%, rgba(255,215,0,0.07), transparent 70%),
              radial-gradient(circle at 70% 50%, rgba(255,185,0,0.08), transparent 70%);
}

.golden-theme .glow.gold {
  background: radial-gradient(circle, rgba(255,215,0,0.15), transparent);
}
.golden-theme .glow.darkgold {
  background: radial-gradient(circle, rgba(255,140,0,0.25), transparent);
  bottom: -150px;
  right: -100px;
}

.golden-theme h2 {
  color: #f4d03f;
}
.golden-theme h1 {
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.golden-theme ul li::before {
  color: #ffcc00;
}

.golden-theme .cta-btn {
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  box-shadow: 0 0 25px rgba(255,185,0,0.3);
}
.golden-theme .cta-btn:hover {
  box-shadow: 0 0 40px rgba(255,215,0,0.6);
}

/* Scan effect glow update */
.golden-theme .scan-effect::before {
  background: linear-gradient(180deg, transparent 0%, rgba(255,215,0,0.3) 50%, transparent 100%);
}




/*==================================================*/
/*===============End Detail card Section Two========*/
/*=================================================*/











/*==================================================*/
/*===============Share Card Section ===============*/
/*=================================================*/




/* Section */
.unique-stack {
  background: #f8fafc;
  padding: 140px 8%;
  font-family: 'Inter', sans-serif;
}


.stack-prg {
  font-size: 1rem;
  line-height: 1.7;
  color: #000000; 
  text-align: center; 
  max-width: 600px;
  margin: 0 auto 70px auto; 
  font-family: 'Inter', sans-serif; 
  letter-spacing: 0.3px;
}






/* Stack wrapper */
.stack-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
  height: 220vh;
}

/* Cards */
.stack-card {
  position: sticky;
  top: 120px;
  height: 320px;
  display: flex;
  align-items: center;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 60px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 40px 120px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
}

/* Blur next cards */
.stack-card:nth-child(n+2) {
  filter: blur(3px) brightness(0.95);
  transform: scale(0.96);
}

/* On hover/focus top card */
.stack-card:hover,
.stack-card:focus {
  transform: translateY(-15px) scale(1.02);
  filter: blur(0) brightness(1);
  box-shadow: 0 60px 160px rgba(56,189,248,0.2);
}

/* Inner layout */
.card-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  width: 100%;
  padding: 40px 50px;
}

/* Image */
.card-image img {
  width: 100%;
  max-width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Text */
.card-text .badge {
  display: inline-block;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.share-title{
  font-size: 52px;
  line-height: 1.05;
  margin: 0 0 45px 0;
  font-weight: 800;
    text-align: center;
  position: relative;

  color: var(--text);
}

.share-title span{
  background: linear-gradient(90deg, var(--gold-700), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 🔥 Learn More button */
.learn-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(14,165,233,0.4);
}

.learn-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(14,165,233,0.5);
}



/* Responsive */
@media (max-width: 900px) {
  .card-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    justify-items: center;
  }

  .card-image img {
    max-width: 200px;
    height: 200px;
  }
}

.card-inner {
  display: grid;
  grid-template-columns: auto 40px 1fr; /* image + connector + text */
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 40px 50px;
}

/* Connector Arrow */
.card-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #38bdf8;
  opacity: 0.6;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.stack-card:hover .card-connector {
  transform: translateX(5px);
  opacity: 1;
}

/* Arrow glow animation (subtle) */
@keyframes arrowPulse {
  0% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(4px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.6; }
}

.card-connector .arrow {
  display: inline-block;
  animation: arrowPulse 2s infinite ease-in-out;
}





/*==================================================*/
/*===============End Share Card Section =============*/
/*=================================================*/







/*==================================================*/
/*=============Small Stats Card Section ===========*/
/*=================================================*/


#cardsmallsection {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  padding: 40px 5%;
  background: #fdfaf5; /* light background */
  border-radius: 25px;
}

.smallcard-stat {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column; /* icon top layout */
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;
}

.smallcard-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Icon circle */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f7e27f);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.smallcard-stat:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(212,175,55,0.5);
}

.icon-circle i {
  color: #fff;
  font-size: 32px;
}

/* Text */
.smallcard-stat .text h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

.smallcard-stat .text p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  #cardsmallsection {
    flex-direction: column;
    gap: 20px;
  }

  .smallcard-stat {
    width: 90%;
  }
}


/*==================================================*/
/*===========End Small Stats Card Section ===========*/
/*=================================================*/








/*-======================================================*/
/*=================Slider Section======================= */
/*======================================================*/
/*==================Display Product Slider==============*/


/* ===== Card Gallery Section - Premium Light ===== */
.cardgallerybg {
  position: relative;
  width: 100%;
  background: #fdfdfd;
  border-top: 1px solid #f5e6a3;
  border-bottom: 1px solid #f5e6a3;
  padding: 140px 0;
  overflow: hidden;
  font-family: 'Jost', sans-serif;
}

.slider-title{
  font-size: 46px;
  line-height: 1.05;
  margin: 0 0 45px 0;
  font-weight: 800;
  color: var(--text);
}

.slider-title span{
  background: linear-gradient(90deg, var(--gold-700), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  width: 96%;
  max-width: 1450px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 65px 0;
  border: 2px solid rgba(212,175,55,0.35);
  box-shadow: 
    0 0 100px rgba(212,175,55,0.2),
    0 0 30px rgba(212,175,55,0.1) inset;
  z-index: 1;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
  padding: 0 40px;
}

/* ===== Product Card ===== */
.product-card {
  position: relative;
  min-width: calc(25% - 20px);
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 15px 35px rgba(212,175,55,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  transform-style: preserve-3d;
}

.product-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-bottom: 1px solid rgba(212,175,55,0.25);
  transition: transform 0.5s ease;
  border-radius: 28px 28px 0 0;
}

.product-card:hover img {
  transform: scale(1.05) rotate(0.5deg);
  box-shadow: 0 15px 35px rgba(212,175,55,0.25);
}

/* Card Info */
.info {
  padding: 24px 22px;
}

.info h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #d4af37;
  font-weight: 700;
}

.info p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Hover Panel - premium overlay */
.hover-panel {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: bottom 0.45s ease;
  border-top: 3px solid #d4af37;
  text-align: center;
  z-index: 2;
}

.product-card:hover .hover-panel {
  bottom: 0;
}

.hover-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.hover-panel p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 20px 0;
  width: 85%;
  line-height: 1.5;
}

/* Hover Button - premium gold glow */
.hover-panel button {
  background: linear-gradient(90deg, #d4af37, #f8e9a1);
  border: none;
  color: #000;
  padding: 14px 30px;
  border-radius: 32px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hover-panel button:hover {
  transform: scale(1.12) rotate(-0.5deg);
  box-shadow: 0 0 35px rgba(212,175,55,0.7);
}

/* Navigation Buttons */
.nav-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding: 0 20px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 1.45rem;
  padding: 9px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-btn:hover {
  background: #d4af37;
  color: #fff;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
  .product-card { min-width: calc(33.333% - 20px); }
}

@media (max-width: 900px) {
  .product-card { min-width: calc(50% - 20px); }
}

@media (max-width: 600px) {
  .product-card { min-width: 100%; }
}








/*======================================================*/
/*==============End Slider Section======================*/
/*======================================================*/

















/*======================================================*/
/*==============Wht Tapnshare Section===================*/
/*======================================================*/




:root{
  --gold-700: #b99239;
  --gold-400: #e6c36e;
  --muted: #6b6b6b;
  --surface: #ffffff;
  --text: #0b0b0b;
  --card-border: rgba(185,146,57,0.12);
  --card-shadow: rgba(11,11,11,0.04);
  --radius: 16px;
  --gap: 40px;
  --max-width: 1200px;
  --transition: 320ms cubic-bezier(.2,.9,.2,1);
}

.why-white-section{
  background: var(--surface);
  color: var(--text);
  padding: 96px 6%;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.why-container{
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.why-title{
  font-size: 34px;
  line-height: 1.05;
  margin: 0 0 45px 0;
  font-weight: 800;
  color: var(--text);
}

.why-title span{
  background: linear-gradient(90deg, var(--gold-700), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* grid: two columns each containing two stacked features */
.why-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

/* each column holds stacked articles */
.column{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* card-like row but not heavy UI */
.why-card{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 20px var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

/* subtle gold sweep */
.why-card::before{
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(233,199,115,0.18), rgba(255,255,255,0.04), transparent);
  transform: skewX(-18deg);
  transition: left 620ms cubic-bezier(.2,.9,.2,1);
}
.why-card:hover::before{
  left: 120%;
}

/* hover */
.why-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11,11,11,0.08);
}

/* icon box */
.icon{
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--gold-700);
  background: linear-gradient(180deg, rgba(202,162,59,0.06), rgba(230,195,110,0.02));
  border: 1px solid rgba(202,162,59,0.08);
  box-shadow: 0 6px 14px rgba(202,162,59,0.03) inset;
}
.icon svg{ width: 28px; height: 28px; stroke: currentColor; }

/* content */
.content{ flex:1 1 auto; min-width:0; }
.content h3{ margin:0 0 6px; font-size:16px; color:var(--text); font-weight:700; }
.content p{ margin:0; color:var(--muted); font-size:14px; line-height:1.55; }

/* small screens: stack columns and center content */
@media (max-width: 980px){
  .why-container{ text-align:center; }
  .why-grid{ grid-template-columns: 1fr; gap:28px; }
  .column{ flex-direction: column; }
  .why-card{ flex-direction: column; align-items: center; text-align: center; padding:20px; }
  .icon{ margin-bottom:8px; }
  .content h3{ font-size:17px; }
}

/* subtle reveal animation class */
.why-card {
  opacity: 0;
  transform: translateY(8px);
}
.why-card.in-view{
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(.2,.9,.2,1);
}




/*======================================================*/
/*============End Why Tapnshare Section==================*/
/*======================================================*/















/*======================================================*/
/*===============Testimonial Section====================*/
/*======================================================*/



  /*======================================================*/
/*===============End Testimonial Section================*/
/*======================================================*/































/*======================================================*/
/*================Footer Section========================*/
/*=====================================================*/


a {
  text-decoration: none;
  color: #f0e6c8;
}
a:hover {
  color: #ffd65c;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 30px;
}

/* Glassmorphism Footer */
.glass-footer {
    position: relative;
  z-index: 1;
  background: #08122c;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 160, 23, 0.3);
  border-radius: 20px 20px 0 0;
  color: #08122c;
  padding-top: 50px;
  margin-top: 250px;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 214, 92, 0.25);
}

.footer-logo {
 
 
}

.footerlogo {
    display: block;
    width: 100%;     
    max-width: 210px;
    object-fit: contain;    
    transition: transform 0.3s ease;
}

.footerlogo:hover {
    transform: scale(1.05);
}


/* Newsletter */
.footer-newsletter h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
  color: #ffd65c;
}
#glass-newsletter {
  display: flex;
  gap: 15px;
}
#glass-newsletter input[type="email"] {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff9e6;
  box-shadow: inset 0 0 12px rgba(212, 160, 23, 0.3);
  transition: background 0.3s ease;
}
#glass-newsletter input[type="email"]::placeholder {
  color: #d4c27a;
}
#glass-newsletter input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
}
#glass-newsletter button {
  background: linear-gradient(135deg, #ffd65c, #e3b236);
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  color: #08122c;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.6);
  transition: background 0.3s ease, transform 0.2s ease;
}
#glass-newsletter button:hover {
  background: linear-gradient(135deg, #ffe27a, #f5c947);
  transform: scale(1.05);
}

/* Socials */
.footer-socials h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #ffd65c;
}
.social-icons {
  display: flex;
  gap: 18px;
}
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 214, 92, 0.2);
  color: #ffd65c;
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(212, 160, 23, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}
.social-icons a:hover {
  background: #ffd65c;
  color: #08122c;
  box-shadow: 0 0 30px rgba(255, 214, 92, 0.6);
  transform: scale(1.2);
}

/* Footer Links */
.footer-links {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}
.footer-links div {
  min-width: 140px;
}
.footer-links h4 {
  color: #ffd65c;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
  letter-spacing: 1.3px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 14px;
}
.footer-links ul li a {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
}
.footer-links ul li a:hover {
  color: #ffd65c;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 45px;
  border-top: 1px solid rgba(255, 214, 92, 0.25);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #ffffff;
}
.payment-icons img {
  height: 36px;
  margin-left: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.payment-icons img:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 860px) {
  .footer-top {
    flex-direction: column;
    gap: 35px;
  }
  .footer-links {
    justify-content: center;
    gap: 40px;
  }
  .footer-bottom {
    justify-content: center;
    gap: 18px;
    font-size: 13px;
  }
}
@media (max-width: 460px) {
  #glass-newsletter {
    flex-direction: column;
    gap: 12px;
  }
  #glass-newsletter button {
    width: 100%;
  }
  .payment-icons img {
    margin-left: 8px;
    height: 30px;
  }
}




/* === Animated Golden Orbs Background === */
.footer-ambient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 92, 0.5), rgba(255, 214, 92, 0) 70%);
  filter: blur(40px);
  animation: floatOrbs 10s ease-in-out infinite alternate;
}

.orb-left {
  top: 30%;
  left: -120px;
  animation-delay: 0s;
}

.orb-right {
  bottom: 25%;
  right: -120px;
  animation-delay: 2s;
}

@keyframes floatOrbs {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(10px) scale(1);
    opacity: 0.6;
  }
}




/*===================================*/
/*Subtle Moving Gradient Light*/

.glass-footer {
  position: relative;
  background: #08122c;
  overflow: hidden;
}

/* First shimmer (left → right) */
.glass-footer::before,
.glass-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 214, 92, 0.35),
    transparent
  );
  opacity: 0;
  pointer-events: none; /* ✅ clicks work normally */
}

/* First shimmer animation */
.glass-footer::before {
  animation: shimmerLeft 10s infinite ease-in-out;
}

/* Second shimmer animation (reverse direction + delay) */
.glass-footer::after {
  animation: shimmerRight 10s infinite ease-in-out;
  animation-delay: 5s;
}

/* === Animations === */
@keyframes shimmerLeft {
  0% {
    transform: translateX(-60%);
    opacity: 0;
  }
  10% {
    transform: translateX(0%);
    opacity: 1;
  }
  20% {
    transform: translateX(60%);
    opacity: 0.8;
  }
  25% {
    opacity: 0;
  }
  100% {
    transform: translateX(60%);
    opacity: 0;
  }
}

@keyframes shimmerRight {
  0% {
    transform: translateX(60%);
    opacity: 0;
  }
  10% {
    transform: translateX(0%);
    opacity: 1;
  }
  20% {
    transform: translateX(-60%);
    opacity: 0.8;
  }
  25% {
    opacity: 0;
  }
  100% {
    transform: translateX(-60%);
    opacity: 0;
  }
}




/*======================================================*/
/*===============End Footer Section=====================*/
/*=====================================================*/



