* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins",sans-serif;
}

html {
  scroll-behavior: smooth;
}


body {
    background:#ffffff;
    overflow-x:hidden;
}

/* Hero full screen */
.hero {
    background:#08122c ;
    height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

/* Main container */
.hero-container {
    width:88%;
    margin:auto;
    border-radius:25px;
    padding:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
    position:relative;
    z-index:2;
    transition: all 0.3s ease;
}

/* Left content */
.hero-left {
    width:50%;
}
.hero-left h1 {
    font-size:56px;
    line-height:1.2;
    font-weight:700;
    transition: color 0.3s;
}
.subtitle {
    margin-top:20px;
    font-size:16px;
    color:#555;
    width:80%;
    line-height:1.6;
    transition: color 0.3s;
}
.cta {
    margin:30px 0;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.btn {
    padding:13px 32px;
    border-radius:30px;
    font-size:16px;
    cursor:pointer;
    border:none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn.primary {
    background:#caa74d;
    color:white;
    box-shadow:0 10px 25px rgba(255, 234, 178, 0.30);
}
.btn.primary:hover {
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(255, 234, 178, 0.30);
}
.btn.secondary {
    border:2px solid #444;
    background:transparent;
}
.btn.secondary:hover {
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}
.stats {
    display:flex;
    gap:60px;
    margin-top:40px;
    flex-wrap:wrap;
}
.stat h2 {
    font-size:32px;
    font-weight:700;
}
.stat p {
    font-size:14px;
    color:#fff;
}

/* Right content */
.hero-right {
    width:50%;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
.img-bg {
    position:absolute;
    width:480px;
    height:480px;
    border-radius:50%;
    background: radial-gradient(circle,#dac182 0%,#e5d3a6 25%);
    filter: blur(35px);
    z-index:1;
    transition: transform 1s;
}
.hero-img {
    width:100%;
    max-width:520px;
    height:auto;
    z-index:2;
    border-radius:20px;
    transition: transform 1.2s ease-in-out;
}
.hero-right:hover .hero-img {
    transform: translateY(-15px) rotateZ(-1deg);
}
.hero-right:hover .img-bg {
    transform: scale(1.05);
}

/* Floating labels */
.floating {
    position:absolute;
    padding:12px 26px;
    border-radius:40px;
    font-size:13px;
    font-weight:500;
    box-shadow:0 15px 25px rgba(0,0,0,0.15);
    z-index:3;
}
.tag1 {top:25%; right:20px;}
.tag2 {top:50%; right:-40px;}
.tag3 {top:83%; right:20px;}

/* Responsive */
@media(max-width:1200px){
    .hero-left h1 {font-size:48px;}
    .hero-img {max-width:450px;}
    .img-bg {width:400px; height:400px;}
}

@media(max-width:950px){
    .hero-container {
        flex-direction:column;
        padding:40px;
        height:auto;
        text-align:center;
    }
    .hero-left, .hero-right {width:100%;}
    .subtitle {width:100%;}
    .cta {justify-content:center;}
    .stats {justify-content:center; gap:30px;}
    .hero-img {width:80%; max-width:350px; margin-top:20px;}
    .img-bg {width:300px; height:300px;}
    .floating {
        font-size:12px;
        padding:10px 20px;
    }
    .tag1 {top:15%; right:10px;}
    .tag2 {top:45%; right:0;}
    .tag3 {top:75%; right:10px;}
}

@media(max-width:600px){
    .hero-left h1 {font-size:36px;}
    .subtitle {font-size:14px;}
    .btn {padding:10px 25px; font-size:14px;}
    .hero-img {width:100%; max-width:280px;}
    .img-bg {width:220px; height:220px;}
    .stats {flex-direction:column; gap:20px;}
    .floating {font-size:11px; padding:8px 16px;}
}












/*Section 2*/

.custom-section{
    width:100%;
    max-width:1150px;
    margin:70px auto;
    background:#08122c;
    padding:70px 60px;
    border-radius:22px;
    display:flex;
    align-items:center;
    gap:50px;
    position:relative;
    overflow:hidden;
}

/* GOLD BLUR BACK SHAPE */
.custom-section::before{
    content:"";
    position:absolute;
    top:-40%;
    right:-20%;
    width:600px;
    height:600px;
    background:#caa74d;
    opacity:0.08;
    border-radius:50%;
    filter:blur(20px);
}

/* IMAGE */
.custom-image{
    width:45%;
}
.custom-image img{
    width:100%;
    border-radius:18px;
    border:8px solid #caa74d;
    box-shadow:0 12px 35px rgba(0,0,0,0.3);
}

/* CONTENT */
.custom-content{
    width:50%;
    color:white;
}

.custom-content h3{
    color:#caa74d;
    font-size:18px;
    margin-bottom:10px;
    letter-spacing:2px;
    font-weight:700;
}

.custom-content h1{
    font-size:36px;
    line-height:1.2;
    margin-bottom:18px;
    font-weight:800;
}

.custom-content p{
    color:#ddd;
    font-size:16px;
    line-height:1.7;
    margin-bottom:28px;
}

/* BUTTON */
.custom-btn{
    background:#caa74d;
    color:#08122c;
    padding:12px 28px;
    text-decoration:none;
    border-radius:8px;
    font-size:16px;
    font-weight:700;
    transition:0.3s ease;
}
.custom-btn:hover{
    background:#e6c878;
    color:#08122c;

}




/*------------------------------------------*/
            /*Why Choose Us*/
/*------------------------------------------*/


:root{
  --white:#ffffff;
  --bg:#f7f9fc;
  --text-dark:#1b1b1d;
  --text-light:#4f5564;
  --gold:#caa74d;
  --gold-soft:#e8d8a8;
  --card:#ffffff;
  --border:#e5e7eb;
  --radius:18px;
  --time:.35s;
  font-family:"Inter",sans-serif;
}


.pro-why{padding:80px 0;}
.wrapper{width:90%;max-width:1180px;margin:auto;}

/* Heading */
.head{text-align:center;margin-bottom:60px;}
.head h2{
  font-size:40px;
  color:var(--text-dark);
  font-weight:700;
  letter-spacing:.5px;
}
.head p{
  color:var(--text-light);
  font-size:17px;
  margin-top:18px;


}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:35px;
}

/* CARD */
.item{
  background:var(--card);
  padding:28px 32px;      /* HEIGHT kam */
  border-radius:var(--radius);
  border:1px solid var(--border);
  transition:var(--time);
  position:relative;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
  min-height:160px;       /* FIXED small height */
}


/* NFC WAVES */
.nfc-wave{
  position:absolute;
  top:-40px;
  right:-40px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle,
     rgba(202,167,77,0.25) 0%,
     rgba(202,167,77,0.08) 55%,
     transparent 70%);
  filter:blur(10px);
  opacity:.5;
  transition:.5s ease;
}

.item:hover .nfc-wave{
  transform:scale(1.2);
  opacity:.8;
}

/* GOLD TOP BORDER */
.item::before{
  content:"";
  position:absolute;
  top:0;left:0;width:100%;height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-soft));
  opacity:.18;
  transition:var(--time);
}

/* ICON */
.ic{
  width:58px;height:58px;
  background:linear-gradient(135deg,var(--gold),var(--gold-soft));
  border-radius:14px;
  margin-bottom:22px;
  opacity:.95;
  transition:var(--time);
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

/* TEXT */
.item h3{
  color:var(--text-dark);
  font-size:22px;
  margin-bottom:12px;
  font-weight:600;
}
.item p{
  font-size:15.5px;
  color:var(--text-light);
  line-height:1.55;
}

/* WIFI ICON */
.wifi{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-top:25px;
}
.wifi span{
  display:block;
  width:32px;
  height:6px;
  border-radius:6px;
  background:var(--gold);
  opacity:.55;
}
.wifi span:nth-child(2){width:22px;}
.wifi span:nth-child(3){width:12px;}

/* HOVER — SUPER CLEAN */
.item:hover{
  transform:translateY(-10px);
  border-color:var(--gold);
  box-shadow:0 14px 36px rgba(0,0,0,0.12);
}
.item:hover::before{
  opacity:1;
}
.ic:hover{
  transform:scale(1.06);
}

/* ENTRY FADE */
.item{
  opacity:0;
  transform:translateY(25px);
  animation:up .8s ease forwards;
}
.item:nth-child(2){animation-delay:.15s;}
.item:nth-child(3){animation-delay:.3s;}

@keyframes up{to{opacity:1;transform:translateY(0);}}










/*------------------------------------------*/
            /*About Us Section*/
/*------------------------------------------*/



.section-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 40px;
  gap: 180px;
  background: #f8f9fb;
  flex-wrap: wrap;
}

/* ---------- CLEAN MOCKUP (NO BG BEHIND IMAGES) ---------- */
.mockup-box {
  position: relative;
  width: 430px;
  height: 540px;
  border-radius: 35px;
  padding: 0;
  background: transparent !important;
  overflow: visible;
}

/* Big floating images */
.mockup-box img {
  position: absolute;
  width: 78%;
  height: 74%;
  object-fit: cover;
  border-radius: 26px;
  transition: 0.4s ease;
  box-shadow: 0 18px 55px rgba(0,0,0,0.20);
}

/* Pattern positions */
.mockup-box img:nth-child(1){
  top: 0;
  left: 0;
  transform: rotate(-7deg);
}
.mockup-box img:nth-child(2){
  top: 40px;
  right: 0;
  transform: rotate(6deg);
}
.mockup-box img:nth-child(3){
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
}

/* Hover pop-up effect */
.mockup-box img:hover {
  transform: scale(1.07);
  z-index: 5;
}

/* ---------- RIGHT SIDE TEXT ---------- */
.text-area {
  max-width: 540px;
}

.text-area h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #0f2133;
}

.text-area p {
  font-size: 18px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 35px;
}

.btn-big {
  padding: 16px 32px;
  background: #caa74d;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(202,167,77,0.5);
  transition: 0.3s;
}

.btn-big:hover {
  background: #08122c;
}











/*------------------------------------------*/
            /*3 SectionS*/
/*------------------------------------------*/


.ts-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
  padding: 140px 60px;
  flex-wrap: wrap;

  background: linear-gradient(135deg, #f3f4f7, #ffffff);
  position: relative;
  overflow: hidden;
}

/* Soft light glow circles */
.ts-section::before,
.ts-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}

.ts-section::before {
  top: -120px;
  left: -80px;
  background: #caa74d44;
}
.ts-section::after {
  bottom: -140px;
  right: -120px;
  background: #08122c33;
}

.ts-text {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

/* TITLE */
.ts-text h2 {
  font-size: 54px;
  margin-bottom: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #08122c, #2f3d66);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

/* PARAGRAPH */
.ts-text p {
  font-size: 19px;
  line-height: 1.85;
  color: #1a1d27;
  opacity: 0.82;

  font-weight: 500;
  margin-bottom: 28px;

  text-shadow: 0 0 1px rgba(0,0,0,0.06);
}

/* BUTTON */
.ts-btn {
  display: inline-block;
  padding: 16px 40px;

  background: linear-gradient(135deg, #08122c, #0f1a34);
  color: #fff;
  font-size: 18px;
  font-weight: 700;

  border-radius: 18px;
  text-decoration: none;
  transition: .35s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}

/* Hover with gold glow */
.ts-btn:hover {
  background: linear-gradient(135deg, #caa74d, #e6d398);
  color: #0f1320;
  transform: translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(202,167,77,0.45),
    0 22px 45px rgba(0,0,0,0.18);
}





.ts-img1 {
  border-radius: 22px;
  border: 6px solid #d4b166; 
  box-shadow: 
      0 10px 25px rgba(0,0,0,0.25),
      0 20px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: all 0.35s ease;
}





/*----------------------------------------*/
             /*Section ABout*/
/*-----------------------------------------*/

/* ABOUT SECTION – TAPNSHARE DARK THEME */
.ts-section.about {
  background: #0a1020; /* Deep TapNshare navy */
  padding: 140px 60px;
  position: relative;
  overflow: hidden;
}

/* LIGHT GOLD GLOW (TapNshare effect) */
.ts-section.about::before,
.ts-section.about::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}

.ts-section.about::before {
  top: -120px;
  left: -80px;
  background: #caa74d33;
}
.ts-section.about::after {
  bottom: -160px;
  right: -80px;
  background: #ffffff11;
}

/* TEXT COLOR OVERRIDE FOR DARK BACKGROUND */
.ts-section.about .ts-text h2 {
  color: #f7eac0; /* Gold-ish headline */
}

.ts-section.about .ts-text p {
  color: #d9dce6; /* Soft white paragraph */
  opacity: 0.9;
}

/* BUTTON STYLE CHANGE FOR DARK MODE */
.ts-section.about .ts-btn {
  background: #caa74d;
  color: #0c1224;
}

.ts-section.about .ts-btn:hover {
  background: #e6d398;
  color: #08122c;
  transform: translateY(-4px);
}



.default-text,
.more-text {
  transition: 0.4s ease;
}


/*-----------------------------------------*/
          /*Our Vision Modal*/
/*-----------------------------------------*/



/* ===========================
   MODAL OVERLAY
=========================== */
.ts-modal-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease-in-out;
  z-index: 9999;
}

.ts-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===========================
   WIDE + SHORT GLASS MODAL
=========================== */
.ts-modal {
  position: relative;
  width: 780px;
  max-width: 92%;
  padding: 40px 55px;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);

  transform: translateY(50px) scale(0.75);
  opacity: 0;
  overflow: hidden;
}

/* ===========================
   GOLD ANIMATED BORDER
=========================== */
.ts-modal-border {
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(130deg, #caa74d, #f2dfab, #caa74d);
  background-size: 350%;
  animation: shine 5s linear infinite;
  border-radius: 22px;
  z-index: -1;
}

@keyframes shine {
  0% { background-position: 0%; }
  100% { background-position: 350%; }
}

/* ===========================
   HEADING
=========================== */
.ts-modal-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  color: #f7e7b0;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 0 16px rgba(202,167,77,0.45);
  text-transform: uppercase;
}

/* ===========================
   PARAGRAPH (Typing Animation)
=========================== */
.ts-modal-text {
  font-size: 18px;
  line-height: 1.65;
  color: #ffffff;
  text-align: justify;  
  max-width: 620px;
  margin: 0 auto 30px auto;
  letter-spacing: 0.2px;

  border-right: 3px solid rgba(255,255,255,0.65);
  animation: blink 0.7s infinite;
  min-height: 120px;
}


@keyframes blink {
  0%, 50% { border-color: rgba(255,255,255,0.8); }
  50%, 100% { border-color: transparent; }
}

/* ===========================
   CLOSE BUTTON
=========================== */
.ts-close-btn {
  display: block;
  margin: 0 auto;
  padding: 14px 38px;
  background: #caa74d;
  color: #12151e;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.ts-close-btn:hover {
  transform: scale(1.12);
  background: #e0c677;
}

/* ===========================
   FLYING ANIMATION
=========================== */
.ts-modal-overlay.active .ts-modal {
  opacity: 1;
  animation: flyIn 0.8s cubic-bezier(.18,.89,.32,1.28) forwards;
}

@keyframes flyIn {
  0% {
    opacity: 0;
    transform: translateY(-120px) translateX(60px) scale(0.5) rotate(-8deg);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) translateX(-10px) scale(1.05) rotate(1deg);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}









/*-----------------------------------------*/
          /*Our Mission Modal*/
/*-----------------------------------------*/


/* ===========================
   MODAL OVERLAY
=========================== */
.our-mission-modal-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease-in-out;
  z-index: 9999;
}

.our-mission-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===========================
   WIDE + SHORT GLASS MODAL
=========================== */
.our-mission-modal {
  position: relative;
  width: 780px;
  max-width: 92%;
  padding: 40px 55px;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);

  transform: translateY(50px) scale(0.75);
  opacity: 0;
  overflow: hidden;
}

/* ===========================
   GOLD ANIMATED BORDER
=========================== */
.our-mission-modal-border {
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(130deg, #caa74d, #f2dfab, #caa74d);
  background-size: 350%;
  animation: shine 5s linear infinite;
  border-radius: 22px;
  z-index: -1;
}

@keyframes shine {
  0% { background-position: 0%; }
  100% { background-position: 350%; }
}

/* ===========================
   HEADING
=========================== */
.our-mission-modal-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  color: #f7e7b0;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 0 16px rgba(202,167,77,0.45);
  text-transform: uppercase;
}

/* ===========================
   PARAGRAPH (Typing Animation)
=========================== */
.our-mission-modal-text {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  text-align: justify;
  max-width: 620px;
  margin: 0 auto 30px auto;
  letter-spacing: 0.2px;

  border-right: 3px solid rgba(255,255,255,0.65);
  animation: blink 0.7s infinite;
  min-height: 120px;
}

@keyframes blink {
  0%, 50% { border-color: rgba(255,255,255,0.8); }
  50%, 100% { border-color: transparent; }
}

/* ===========================
   CLOSE BUTTON
=========================== */
.our-mission-close-btn {
  display: block;
  margin: 0 auto;
  padding: 14px 38px;
  background: #caa74d;
  color: #12151e;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.our-mission-close-btn:hover {
  transform: scale(1.12);
  background: #e0c677;
}

/* ===========================
   FLY-IN ANIMATION
=========================== */
.our-mission-modal-overlay.active .our-mission-modal {
  opacity: 1;
  animation: flyIn 0.8s cubic-bezier(.18,.89,.32,1.28) forwards;
}

@keyframes flyIn {
  0% {
    opacity: 0;
    transform: translateY(-120px) translateX(60px) scale(0.5) rotate(-8deg);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) translateX(-10px) scale(1.05) rotate(1deg);
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}







