* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Cambria, "Times New Roman", Georgia, serif;
}


.bg1 {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.50)),
    url('../images/main-bg.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



body {
 
  background: #000;
}
body.loading {
  overflow: hidden;
}

.slider {
  transition: opacity 0.4s ease;
}

body.loading .slider {
  opacity: 0;
}

body:not(.loading) .slider {
  opacity: 1;
}



/* ===============================
   MAIN NAVIGATION
=============================== */
.main-nav {
  display: inline-flex;
  gap: 32px;
}

.main-nav a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ddd;
}

/* ACTIVE LINK */
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 14px;
  }
}




.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 40px;
  z-index: 100;
/*  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px); */
  
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.menu-icon span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

/* SLIDER */
.slider {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

 
/* CENTER CONTENT */
.content {
  position: relative;    /* IMPORTANT */
  z-index: 2;

  max-width: 1140px;     /* Bootstrap container width */
  width: 100%;
  padding: 0 15px;

  text-align: center;
  color: #fff;
}


.content h1 {
  font-size: 64px;
  margin-bottom: 15px;
}

.content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn {
  padding: 14px 36px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* CONTROLS */
/* LEFT / RIGHT ARROWS */
.controls {
  position: fixed;
  bottom: 24px;
  width: 100%;
  z-index: 60;

  pointer-events: none; /* allow center thumbs click */
}

.controls button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 18px;
  margin-left: 10px;
  cursor: pointer;
}




.menu-icon {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.offcanvas {
  background: #111;
  color: #fff;
}

.offcanvas a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}





.slide {
  position: absolute;
  inset: 0;
  display: flex;                 /* 🔥 */
  align-items: center;           /* vertical center */
  justify-content: center;       /* horizontal center */
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}


/* BACKGROUND LAYER */
.slide .bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}

/* Overlay stays above bg */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.20);
  z-index: 1;
}

/* Content above everything */
.content {
  position: relative;
  z-index: 2;
}





/* ===============================
   LOADER INTRO
=============================== */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  text-align: center;
  color: #fff;
}

.loader-logo {
  font-size: 48px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  opacity: 0;
}

.loader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}

.loader-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: #fff;
}







/* ===============================
   ABOUT PAGE
=============================== */
.about-page {
  display: flex;
  height: 100vh;
  width: 100%;
  margin-top: 80px; /* space for fixed header */
}

/* LEFT SIDE IMAGE */
.about-image {
  width: 50%;
  background-size: cover;
  background-position: center;
}

/* RIGHT SIDE CONTENT */
.about-content {
  width: 50%;
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  padding: 40px;
  background: #000;
}



/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
  .about-page {
    flex-direction: column;
    height: auto;
  }

  .about-image,
  .about-content {
    width: 100%;
    height: 50vh;
  }

  .about-content {
    height: auto;
    padding: 60px 20px;
  }
}




/* ===============================
   ABOUT PAGE – FULL BACKGROUND
=============================== */

/* BODY BACKGROUND */
body.about-bg {
  min-height: 100vh;
   /* ONE PLACE ONLY */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

/* BLUR OVERLAY */
.bg-blur {
  position: fixed;
  inset: 0;
  /*backdrop-filter: blur(14px);
  background: rgba(0,0,0,0.55);*/
  z-index: 0;
}

/* CONTENT WRAPPER */
.about-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;

   
  align-items: center;
  justify-content: center;

  padding: 90px 20px 60px;
}

/* CONTENT BOX */
.about-inner {
  
  color: #000;
  text-align: left;
}

.about-inner h1 {
  font-size: 46px;
  margin-bottom: 25px;
}

.about-inner p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 22px;
}

/* BUTTON REUSE */
.about-inner .btn {
  margin-top: 10px;
}


.about-inner {
  padding: 40px;
  border-radius: 12px;
}







/* ===============================
   FLOWCHART PAGE
=============================== */

.flow-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
 
  padding: 120px 20px 80px; /* navbar + bottom space */
}

/* SCROLL CONTAINER */
.flow-scroll {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* IMAGE STYLE */
.flow-image img {
  width: 100%;
  max-width: 1100px; position: relative;
  height: auto;
 z-index: 999999999999 !important;
  border-radius: 14px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);

  /* smooth appearance */
  animation: flowFadeUp 0.9s ease both;
}

/* CTA */
.flow-cta {
  text-align: center;
}

/* CTA BUTTON POLISH */
.flow-cta .btn {
  padding: 14px 34px;
  font-size: 16px;
  border-radius: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .flow-wrapper {
    padding: 100px 16px 60px;
  }

  .flow-scroll {
    gap: 35px;
  }

  .flow-image img {
    max-width: 100%;
  }
}

/* ENTRY ANIMATION */
@keyframes flowFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}










/* ===============================
   MOBILE MENU BUTTON
=============================== */
.mobile-menu-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.mobile-menu-btn span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

.mobile-menu-btn span:first-child {
  top: 14px;
}

.mobile-menu-btn span:last-child {
  bottom: 14px;
}

/* ===============================
   MOBILE MENU OFFCANVAS
=============================== */
.mobile-menu {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 40px;
}

.mobile-nav a {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mobile-nav a.active {
  opacity: 0.7;
}

/* ===============================
   RESPONSIVE SLIDER TEXT
=============================== */
@media (max-width: 768px) {
     #prev {
    left: 12px;
  }

  #next {
    right: 12px;
  }
 .slider {
    height: 100vh;  
  }
  
  .content h1 {
    font-size: 36px;
  }

  .content h4 {
    font-size: 16px;
    line-height: 1.6;
  }

  .content .btn {
    padding: 12px 26px;
    font-size: 14px;
  }

  .controls {
    bottom: 20px;
    right: 20px;
  }
}







/* ===============================
   NAV DROPDOWN (FLOWCHART)
=============================== */
.add-me{background: linear-gradient(135deg, #375792, #4c77b8);}
.add-me:hover{color:#000 !important;}
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown .nav-link {
  cursor: pointer;
  color: #000;
  font-weight: 500;
  padding-bottom: 4px;
  font-size: 18px;
}

/* DROPDOWN BOX */
.dropdown-menu-custom {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;

  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 12px 0;

  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;

  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 999;
}

/* DROPDOWN LINKS */
.dropdown-menu-custom a {
  display: block;
  padding: 10px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  white-space: nowrap;
  text-align: left;
}

.dropdown-menu-custom a:hover {
  background: rgba(255,255,255,0.08);
}

/* SHOW ON HOVER (DESKTOP) */
.nav-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  top: 120%;
}






 /* ===============================
   DOB PICKER – FULL CLICK AREA
=============================== */

.dob-wrapper {
  position: relative;
}

.dob-input {
  width: 100%;
  padding: 18px 18px;
  font-size: 17px;
  border-radius: 16px;
  border: none;
  outline: none;

  background: rgba(255,255,255,0.18);
  color: #fff;

  text-align: center;
  cursor: pointer;

  backdrop-filter: blur(10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

/* calendar icon visible */
.dob-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.9;
  cursor: pointer;
}

/* ===============================
   ATM SLIP STYLE
=============================== */

.destiny-slip {
  max-width: 360px;
  margin: 0px auto 0;
  padding: 20px 18px;

  background: #fff;
  color: #000;

  font-family: "Courier New", monospace;
  font-size: 15px;
  line-height: 1.6;

   
  box-shadow: 0 18px 45px rgba(0,0,0,0.5);

  display: none;
  position: relative;

  animation: slipDown 0.6s ease forwards;
}

/* ATM CUT LINE */
.destiny-slip::before {
  content: "------------------------------";
  display: block;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.destiny-slip::after {
  content: "------------------------------";
  display: block;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 1px;
}

/* SLIP ANIMATION */
@keyframes slipDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






/* ===============================
   SLIDER THUMBS (IMAGE + LABEL)
=============================== */

/* ===============================
   SLIDER BOTTOM CONTROLS LAYOUT
=============================== */

/* LEFT / RIGHT ARROWS */
.controls {
  position: fixed;
  bottom: 24px;
  width: 100%;
  z-index: 60;

  pointer-events: none; /* allow center thumbs click */
}

/* PREV */
#prev {
  position: absolute;
  left: 24px;
  bottom: 0;
}

/* NEXT */
#next {
  position: absolute;
  right: 24px;
  bottom: 0;
}

/* ARROW BUTTON STYLE */
.controls button {
  pointer-events: auto;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;

  padding: 10px 16px;
  font-size: 18px;
  

  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.25s ease;
}

.controls button:hover {
  background: rgba(255,255,255,0.35);
}

/* ===============================
   CENTER BOTTOM THUMBS
=============================== */

.slider-thumbs {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 55;

  display: flex;
  gap: 14px;
  align-items: center;
}


/* WRAPPER */
.thumb-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.25s ease;
}

/* IMAGE */
.thumb-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;

  background-size: cover;
  background-position: center;

  border: 2px solid rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}

/* IMAGE OVERLAY */
.thumb-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: opacity 0.25s ease;
}

/* LABEL */
.thumb-label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.4px;
}

/* ACTIVE */
.thumb-wrap.active .thumb-img {
  border-color: #fff;
  transform: scale(1.12);
}

.thumb-wrap.active .thumb-img::after {
  opacity: 0.15;
}

/* HOVER */
.thumb-wrap:hover .thumb-img::after {
  opacity: 0.2;
}

/* MOBILE */
@media (max-width: 768px) {
  .slider-thumbs {
    left: 15px;
    bottom: 15px;
    gap: 10px;
  }

  .thumb-img {
    width: 52px;
    height: 52px;
  }

  .thumb-label {
    font-size: 10px;
  }
}






