@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Sora:wght@100..800&display=swap');
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background-color: #000;
  color: #fff;
}
#particles-js canvas {
  position: absolute !important; /* keep it inside hero */
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

 .writing-mode-vertical {
      writing-mode: vertical-rl;
    }

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.2s; }
.fade-up.delay-2 { transition-delay: 0.4s; }

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #facc15;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* what define us */
    .perk-heading {
      font-weight: 300;
      letter-spacing: -0.02em;

    }
    .perk-subheading {
      font-weight: 600;
    }
    .perk-text {
          font-size: 15px;
      line-height: 1.5rem;
    }

    /* Card base */
    .perk-card {
      transition: all 0.35s ease;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border-radius: 1.5rem;
      padding: 2rem;
    }

    /* Black card */
    .perk-card-black {
      background: #000;
      color: #fff;
      border: 1px solid #966807;
    }
    .perk-card-black:hover {
      background: #dca22a;
      color: #000;
      transform: translateY(-8px) scale(1.02);
      border: none;
    }

    /* White card */
    .perk-card-white {
      background: #000;
      color: #f3f3f3;
      border: 1px solid #f3f3f3;
    }
    .perk-card-white:hover {
      background: #E7E7E7;
      color: #000;
      transform: translateY(-8px) scale(1.02);
      border: none;
    }

    /* blue card */
    .perk-card-gold {
      background: #000;
      color: #fff;
      border: 1px solid #21293f;
    }
    .perk-card-gold:hover {
      background: #151924;
      color: #ffffff;
      transform: translateY(-8px) scale(1.02);
      border: none;
    }

    /* Button */
    .perk-btn {
      transition: all 0.3s ease;
    }
    .perk-btn:hover {
      transform: scale(1.05);
      background: #dca22a;
      color: #000;
    }
    /* On touch devices (no hover support) → apply hover state by default */
    @media (hover: none) {
      .perk-card-black {
        background: #dca22a;
        color: #000;
        border: none;
      }
      .perk-card-white {
        background: #E7E7E7;
        color: #000;
        border: none;
      }
       .perk-card-gold {
        background: #151924;
        color: #ffffff;
         border: none;
      }
    }

/* Animation */
.fade-zoom {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: all 0.7s ease-out;
}
.fade-zoom.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Footer refinements */
footer {
  position: relative;
  background-color: rgb(0, 0, 0);
  color: #fff;
  padding-top: 3rem;
}
/* Logo & Footer Content */
footer .logo {
  margin-bottom: 2rem;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 1rem;
}

footer .footer-links a {
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: #dca22a;
}

footer .contact-info {
  color: #aaa;
  font-size: 0.875rem;
  text-align: left;
  margin-top: 1rem;
}

footer .social-icons a {
  margin-right: 10px;
  padding: 0.75rem;
  background-color: #333;
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.3s ease;
}

footer .social-icons a:hover {
  background-color: #dca22a;
}

   .contact-block {
      max-width: 500px; /* matches approximate address width */
      margin: 0 auto;
    }
  /* Whatapps Chat */

  .chat-body {
    background-color: #0b141a;
    background-image: url("Images/whatapps-chat.jpg");
    background-size: cover;
    background-repeat: repeat;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

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

  .animate-fadeIn {
    animation: fadeIn 0.25s ease-out forwards;
  }

  .animate-fadeOut {
    animation: fadeOut 0.25s ease-in forwards;
  }

  /* Scrollbar thin */
  #whatsapp-popup::-webkit-scrollbar { width: 3px; }
  #whatsapp-popup::-webkit-scrollbar-thumb { background: #444; border-radius: 10px; }


  /* cta button  */
  .btn-glow:hover{
     box-shadow: 0 0 15px rgba(220, 162, 42, 0.6);

  }


/* Apply to the entire page */
html {
  scrollbar-width:thin; /* Firefox */
  scrollbar-color:  #facc15 #111; /* thumb | track */
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track {
  background: #111; /* track color */
}

html::-webkit-scrollbar-thumb {
  background: #d4af37; /* gold thumb */
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
  background: #b58920; /* darker gold on hover */
}

/* fonts */
.headingfont{
  font-family: "Orbitron", sans-serif;
}
.basicfont{
  font-family: 'Sora', sans-serif;
}

/* timeline css */
    .timeline-line {
      stroke: #dca22c;
      stroke-width: 4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 3000;
      stroke-dashoffset: 3000;
      transition: stroke-dashoffset 3s ease;
    }
    .line-animate { stroke-dashoffset: 0; }

    .dot {
      fill: #fff;
      stroke: #dca22c;
      stroke-width: 4;
      r: 8;
      opacity: 0;
      transform: scale(0);
      transition: transform 0.6s ease, opacity 0.6s ease;
    }

::selection{
  color: #fbbf24;
  background-color: whitesmoke;
}
    .dot.show { opacity: 1; transform: scale(1); }

    .carddd {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease-out;
      position: relative;
      z-index: 1;
    }
    .carddd.show { opacity: 1; transform: translateY(0); }

    .car-1 { margin-left: 100px; margin-top: 20px; }
    .car-2 { margin-left: 100px; margin-top: 20px; }

    .infoo { transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; }
    .infoo:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 10px 20px rgba(220, 162, 44, 0.3); }
    .infoo::after {
      content: ""; position: absolute; top: 0; left: -120%; width: 100%; height: 100%;
      background: linear-gradient(120deg, transparent, rgba(220, 162, 44, 0.15), transparent);
      transition: all 0.7s;
    }
    .infoo:hover::after { left: 120%; }

    /* ================= MOBILE/TABLET VERSION ================= */
    .mobile-line {
      position: absolute;
      left: 50%;
      top: 0;
      width: 4px;
      height: 100%;
      background: #dca22c;
      transform-origin: top;
      transform: scaleY(0);
      transition: transform 1.5s ease-out;
      z-index: 0;
    }
    .mobile-line.animate { transform: scaleY(1); }

    .mobile-dot {
      width: 16px;
      height: 16px;
      border: 4px solid #dca22c;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      transform: translate(-50%, 0) scale(0);
      opacity: 0;
      transition: transform 0.6s ease, opacity 0.6s ease;
      z-index: 10;
    }
    .mobile-dot.show { opacity: 1; transform: translate(-50%, 0) scale(1); }

    .mobile-card {
      width: 85%;
      max-width: 340px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-out;
      position: relative;
      z-index: 5;
    }
    .mobile-card.show { opacity: 1; transform: translateY(0); }


 @media (max-width:1440px){
  html{
    font-size: 15px;
  }
   html nav .nav-link {
        font-size: 1.01rem;
      }
}
@media (max-width:1024px){
  html{
    font-size: 14px;

  }
 nav .container {
        padding-left: 1px;
        padding-right: 1px;
      }
}

 @media (max-width:769px){
  html{
    font-size: 13px;
  }
}
@media (max-width:430px){
  html{
    font-size: 12px;
  }
}
@media (max-width:375px){
  html{
    font-size: 10px;
  }
}

@media (max-width:320px){
  html{
    font-size: 10px;
  }
}

  @media (min-width: 990px) and (max-width: 1440px) {
      nav .nav-link {
        font-size: 2px;
      }
      nav span {
        font-size: 20px;
      }
      nav .container {
        margin: auto;
        padding-left: 10px;
        padding-right: 10px;
      }
      nav .hidden.md\:flex {
        gap: 10px;
      }
      nav a.bg-yellow-500 {
        font-size: 14px;
      }
    }

/* Gradient text hero*/
    .gradient-text {
      background: linear-gradient(90deg, #facc15, #f59e0b);
    background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

img{
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}


/* SECTION */
.ps-section{
  padding:140px 0 220px;
}

.ps-section h2{
  text-align:center;
  font-weight:300;
  font-size:3rem;
  color:#fff;
}

.ps-section p{
  text-align:center;
  max-width:720px;
  margin:12px auto 90px;
  opacity:.85;
  color:#fff;
}

/* GRID MASONRY */
.ps-masonry{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* CARD */
.ps-card{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  cursor:pointer;
  background:#111;
  min-height:260px;
  display:flex;
  transition:transform .4s ease, box-shadow .4s ease;
}

.ps-card:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

/* IMAGE */
.ps-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .6s ease, transform 1.2s cubic-bezier(.22,1,.36,1);
}

.ps-card:hover img{
  transform:scale(1.05);
}

/* VERTICAL / HORIZONTAL CONTROL */
.ps-vertical{
  grid-row:span 2;
  height: 550px;
}

.ps-horizontal{
  grid-row:span 1;
}

/* SKELETON */
.ps-skeleton{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    #1c1c1c 25%,
    #2a2a2a 37%,
    #1c1c1c 63%
  );
  background-size:400% 100%;
  animation:skeleton 1.4s ease infinite;
  z-index:2;
}

@keyframes skeleton{
  0%{background-position:100% 0}
  100%{background-position:0 0}
}

/* REVEAL */
.ps-reveal{
  opacity:0;
  transform:translateY(80px);
  filter:blur(14px);
}

.ps-reveal.ps-visible{
  opacity:1;
  transform:none;
  filter:none;
  transition:all 1.4s cubic-bezier(.22,1,.36,1);
}

/* POPUP */
.ps-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:.25s;
  z-index:9999;
}

.ps-popup.ps-active{
  opacity:1;
  pointer-events:auto;
}

.ps-popup img{
  max-width:92vw;
  max-height:92vh;
  border-radius:24px;
}

.ps-popup-close{
  position:absolute;
  top:28px;
  right:38px;
  font-size:32px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
  .ps-masonry{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:500px){
  .ps-masonry{grid-template-columns:1fr}
}
