/*
* @author Myxo victor
*/

@media screen and (min-width:900px) {
  
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  background: #FFFFFF;
}

header{
  width: 100%;
  height: 70px;
  background-color: white;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  position: fixed;
  z-index: 999;
}

.logo-hld{
  width: 300px;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.logo{
  width: 100px;
  height: auto;
}

.subo{
  color: #0B438E;
  font-size: 1.2rem;
  font-weight: 600;
}

nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: auto;
  height: auto;
}

.tab{
  color: #0B438E;
  cursor: pointer;
}

.tab:hover{
  color: rgb(33, 32, 32);
}

.active{
  border-bottom: 2px solid #1E293B;
}

.active::after{
  transition: all 1s;
}

.cta{
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

.cta1{
  width: 130px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  background-color: transparent;
  color: #1E293B;
  border-radius: 15px;
}

.cta2{
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  background: radial-gradient(circle at 30% 30%, #00A3E0 0%, #0B438E 70%, #0A0D14 100%);
  color: white;
  border-radius: 15px;
}

.cta1:hover{
  background-color: #0B438E;
  color: white;
}

.cta2:hover{
  background: white;
  color: #0B438E;
  border: 1px solid #1E293B;
}

.hero{
  width: 100%;
  height: 95vh;
  background: radial-gradient(circle at top left, #d4edfe 0%, #FFFFFF 65%);
  display: flex;
  justify-content: center;
  gap: 2px;
}

.first-layer{
  width: 35%;
  height: 100vh;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  flex-direction: column;
  gap: 15px;
}

.second-layer{
  width: 40%;
  height: 100vh;
  background-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
}

.last-layer{
  width: 25%;
  height: 100vh;
  background-color: white;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-title{
  font-size: 3.5rem;
  font-weight: 500;
  color: #1E293B;
}

.highlight{
  color: #00A3E0;
}

.hero-sub{
  color: #1E293B;
}

.f-cta{
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.f-cta1{
  width: 160px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:linear-gradient(90deg, #0B438E 0%, #0A66C2 50%, #00A3E0 100%) ;
  color: white;
  border-radius: 10px;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.f-cta2{
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:white ;
  color: #1E293B;
  border-radius: 10px;
  border: #E2E8F0;
  padding: 10px;
  cursor: pointer;
}


.more-lit{
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  border-top: 1px solid rgb(228, 227, 227);
  padding: 15px;
}

.lit{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.icn{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #aae7fe;
  color: #14556c;
  border-radius: 10px;
  font-size: 12px;
}

.fa-certificate{
  background-color: rgb(216, 255, 216);
  color: rgb(53, 145, 53);
  border-radius: 10px;
}

.more-txt{
  font-size: 10px;
  font-weight: 600;
}

.stxt{
  font-size: 10px;
  color: gray;
}

.overlay-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
}


.player{
  width: 100%;
  height: auto;
  background-color: rgb(248, 248, 248);
  border: none;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}


.overlay{
  width: 100%;
  background-color: #71d9ff5b;
  z-index: 1;
  overflow: hidden;
  position: relative; position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.overlay-container:hover .player {
  transform: scale(1.1);
  transition: all 1s;
}

.play-btn{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: absolute;
  color: #0A66C2;
  font-size: 1.3rem;
  padding: 10px;
  cursor: pointer;
  }

  .comp{
    width: 100%;
    height: auto;
    padding: 1em;
    background-color: transparent;
    border: 1px solid rgb(213, 211, 211);
    border-radius: 15px;
  }

  .txt-blue{
    color: blue;
  }

  .comp-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 10px;
    border-bottom: 1px solid rgb(218, 206, 206);
    margin-bottom: 10px;
  }

  .label{
    padding: 4px;
    border-radius: 2px;
    background-color: #c2eefe;
    color: rgb(54, 54, 177);
    font-size: 12px;
  }

  .card{
    width: 100%;
    height: 100px;
    border-radius: 15px;
    background-color: white;
    border: 1px solid #E2E8F0;
    margin: 15px auto;
    display: block;
    padding: 10px;
  }

  .mg{
    margin-top: 40px;
  }

  .card-top{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .icons{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blue{
    background: linear-gradient(135deg, #0B438E 0%, #00A3E0 100%);
    color: white;
  }

  .blao{
    background: linear-gradient(135deg, #0A0D14 0%, #1E293B 100%);
    color: #0A66C2;
  }

  .green{
    background-color: rgb(19, 156, 19);
    color: white;
  }

  .ca-fot{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 10px;
    margin-top: 5px;
  }

  .bol{
    color: green;
    font-size: 12px;
  }

  .snx{
    color: blue;
    font-size: 12px;
  }

  .gol{
    color: gold;
    font-size: 12px;
  }

  .n-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 1em;
    margin-top: 40px;
  }

  .n-top{
    padding: 10px;
    border-bottom: 1px solid rgb(236, 235, 235);
  }

  .n-flex{
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
  }

  .step-card{
    width: 330px;
    height: 240px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.2em;
  }

  .step-card:hover{
    border: 1px solid #0A66C2;
  }

  .num-hold{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #e1f7ff;
    color: #0A66C2;
    margin-bottom: 20px;
  }

  .partner-con{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }

  .carousel-card{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    height: 200px;
    margin-top: 20px;
    
  }

  .ca-img{
    width: 100px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-analy{
    width: 95%;
    height: 120px;
    background: linear-gradient(135deg, #0A0D14 0%, #1E293B 100%);
    margin: 50px auto;
    display: flex;
    border-radius: 15px;
    padding: 10px;
    justify-content: space-evenly;
    align-items: center;
  }

  .stats{
    color: #00A3E0;
  }

  .nx{
    color: #549bf8;
  }

  .nxx{
    color: #FFFFFF;
  }

  .nxxx{
    color: rgb(147, 127, 10);
  }

  article{
    width: 100%;
    height: auto;
    padding: 1em;
  }




  .m-card {
  /* relative aspect-square rounded-2xl overflow-hidden */
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1rem; /* 16px */
  overflow: hidden;

  /* border border-slate-200 shadow-2xs */
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

  /* Set a max width or let parent grid handle sizing */
  width: 100%;
  max-width: 350px; 
}

.card-image {
  /* w-full h-full object-cover transition-transform duration-500 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

/* group-hover:scale-110 */
.m-card:hover .card-image {
  transform: scale(1.1);
}

.m-card-overlay {
  /* absolute inset-0 bg-gradient-to-t from-slate-950/80 via-transparent to-transparent */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.8) 0%,
    transparent 50%,
    transparent 100%
  );
  /* Prevents overlay from blocking mouse pointer events on the image if needed */
  pointer-events: none; 
}

.card-text {
  /* absolute bottom-3 left-3 text-white text-[11px] font-bold */
  position: absolute;
  bottom: 0.75rem; /* 12px */
  left: 0.75rem;   /* 12px */
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  margin: 0;
}

.fa-flex{
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 1em;
}

.txt-side{
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.faq-side{
  width: 59%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}

.faq{
  width: 100%;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 1em;
}

    /* Accordion Button Trigger */
 .faq-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem;
      text-align: left;
      background: transparent;
      border: none;
      cursor: pointer;
    }

    .faq-trigger:focus {
      outline: none;
    }

    /* Question Styling */
    .faq-question {
      font-size: 0.75rem;
      font-weight: 700;
      color: #0f172a;
    }

    /* Chevron Icon & Smooth Transition */
    .faq-icon {
      color: #94a3b8;
      font-size: 0.75rem;
      transition: transform 0.2s ease-in-out;
    }

    .faq-icon.rotate {
      transform: rotate(180deg);
    }

    /* Accordion Body */
    .faq-content {
      display: none;
      padding: 0 1rem 1rem 1rem;
    }

    .faq-content.show {
      display: block;
    }

    /* Answer Text Styling */
    .faq-answer {
      font-size: 0.75rem;
      color: #475569;
      line-height: 1.625;
      margin: 0;
    }

    .faq-btn{
      width: 150px;
      height: 40px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      background: linear-gradient(90deg, #0B438E 0%, #0A66C2 50%, #00A3E0 100%);
      color: white;
      display: flex;
      padding: 10px;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 5px;
    }




    /*FAN CARD STYLING*/

/* FAN CARD STYLING      Responsive already added  needs editing*/

/* Stage & Container setup */
.stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
  padding-bottom: 40px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.card-fan {
  position: relative;
  width: 0;
  height: 0;
}

/* Base Card Styles */
.cardm {
  position: absolute;
  width: 180px;
  height: 260px;
  left: -90px; /* Center offset (half of width) */
  bottom: 0;
  transform-origin: 50% 200%; 
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), z-index 0.3s ease;
  cursor: pointer;
}

.card-inner {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  background-color: #161b22;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge overlay */
.badge- {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(13, 17, 23, 0.75);
  backdrop-filter: blur(8px);
  color: #61afef;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

/* Bottom Text Overlay */
.overlay- {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 12px 12px 12px;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0));
  color: #ffffff;
  z-index: 2;
}

.overlay h3 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.overlay p {
  font-size: 0.7rem;
  color: #8b949e;
}

/* -----------------------------------------------------------------
 * Tightened 7-Card Semi-Circle Arc Spread
 * Reduced translateX step from 120px down to 60px
 * ----------------------------------------------------------------- */

/* Card 1 (-30deg, Far Left) */
.card-1 {
  transform: translateX(-180px) translateY(55px) rotate(-30deg);
  z-index: 1;
}
.card-1:hover {
  transform: translateX(-180px) translateY(-10px) rotate(-30deg) scale(1.08);
  z-index: 20;
}

/* Card 2 (-20deg, Mid Left) */
.card-2 {
  transform: translateX(-120px) translateY(28px) rotate(-20deg);
  z-index: 2;
}
.card-2:hover {
  transform: translateX(-120px) translateY(-30px) rotate(-20deg) scale(1.08);
  z-index: 20;
}

/* Card 3 (-10deg, Inner Left) */
.card-3 {
  transform: translateX(-60px) translateY(8px) rotate(-10deg);
  z-index: 3;
}
.card-3:hover {
  transform: translateX(-60px) translateY(-45px) rotate(-10deg) scale(1.08);
  z-index: 20;
}

/* Card 4 (0deg, Center Apex) */
.card-4 {
  transform: translateX(0px) translateY(0px) rotate(0deg);
  z-index: 4;
}
.card-4:hover {
  transform: translateX(0px) translateY(-55px) rotate(0deg) scale(1.08);
  z-index: 20;
}

/* Card 5 (+10deg, Inner Right) */
.card-5 {
  transform: translateX(60px) translateY(8px) rotate(10deg);
  z-index: 3;
}
.card-5:hover {
  transform: translateX(60px) translateY(-45px) rotate(10deg) scale(1.08);
  z-index: 20;
}

/* Card 6 (+20deg, Mid Right) */
.card-6 {
  transform: translateX(120px) translateY(28px) rotate(20deg);
  z-index: 2;
}
.card-6:hover {
  transform: translateX(120px) translateY(-30px) rotate(20deg) scale(1.08);
  z-index: 20;
}

/* Card 7 (+30deg, Far Right) */
.card-7 {
  transform: translateX(180px) translateY(55px) rotate(30deg);
  z-index: 1;
}
.card-7:hover {
  transform: translateX(180px) translateY(-10px) rotate(30deg) scale(1.08);
  z-index: 20;
}

/* Hover glow effects */
.card:hover .card-inner {
  border-color: rgba(97, 175, 239, 0.6);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7), 0 0 20px rgba(97, 175, 239, 0.25);
}


.ctxt{
  text-align: center;
}

.grtx{
  color: rgb(105, 105, 105);
  text-align: center;
}

.lat{
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #0B438E 0%, #0A66C2 50%, #00A3E0 100%);
  margin-top: 80px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
  justify-content: center;
  align-items: center;
}

.lat-ti{
  color: white; 
}

.o-btn{
  width: 200px;
  height: 50px;
  border-radius: 30px;
  border: none;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #ebf7ff 0%, #FFFFFF 65%);
  cursor: pointer;
  color: #0A66C2;
  transition: all 1s;
  font-size: 1.2rem;
}

.o-btn:hover{
  background: radial-gradient(circle at 30% 30%, #00A3E0 0%, #0B438E 70%, #0A0D14 100%);
  color: white;
}




/* ==========================================
   FOOTER STYLES Responsive already added
   ========================================== */

footer.site-footer {
  width: 100%;
  min-height: auto;
  background: radial-gradient(circle at top left, #dcf0fe 0%, #ffffff 65%);
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-top: 1px solid #e2e8f0;
  color: #334155;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* --- Top Nav Section --- */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b438e;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: #475569;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0b438e;
}

/* Social Buttons */
.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b438e;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background-color: #0b438e;
  color: #ffffff;
  border-color: #0b438e;
  transform: translateY(-2px);
}

/* Divider */
.footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #cbd5e1, transparent);
  margin: 0;
}

/* --- Bottom Giant Horizontal Logo & Typography --- */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-close {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  overflow: hidden;
}

/* Dynamic responsive logo sizing */
.big-logo {
  width: clamp(80px, 12vw, 220px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(11, 67, 142, 0.15));
}

/* Dynamic giant font size using clamp() */
.folx {
  font-size: clamp(2.2rem, 6.5vw, 6rem);
  font-weight: 900;
  color: #0b438e;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Legal / Copyright Bar */
.footer-sub-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #94a3b8;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}


.lnk{
  text-decoration: none;
  color: blue;
}

ul p{
  cursor: pointer;
}


ul p:hover{
  color: #00A3E0;
}





/**
 ---------------------
 How To Join Page styling
 ---------------------
*/

.j-content{
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  align-items: flex-start;
}

.cta-j{
  width: 200px;
  height: 45px;
  border: none;
  padding: 10px;
  background: #00A3E0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 15px;
}

.cta-j:hover{
  background: linear-gradient(135deg, #0B438E 0%, #00A3E0 100%);
}

.j-img{
  width: 500px;
  height: auto;
  border-radius: 30px;
}

.j-how{
  width: 100%;
  height: auto;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 40px auto;
}

.j-step{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.jstep-card{
  width: 400px;
  height: 240px;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1em;
}

.jstep-card:hover{
  border: 1px solid #00A3E0;
}

.jtxt{
  font-size: 13px;
  color: #64748B;
}

.jcheck{
   font-size: 14px;
   color: rgb(87, 107, 87);
}


/*
-----------------
* How to win style
-----------------
*/

.h-title{
  font-size: 4rem;
}

.h-contrl{
  width: 650px;
}

.h-sc{
  width: 200px;
  height: 50px;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 15px;
  background: radial-gradient(circle at top left, #e7f5fe 0%, #FFFFFF 65%);
  padding: 10px;
  cursor: pointer;
}


.h-sc:hover{
  background: radial-gradient(circle at 30% 30%, #00A3E0 0%, #0B438E 70%, #0A0D14 100%);
  color: white;
  border: none;
}

.h-how-p{
  width: 70%;
  height: 100px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.h-scard{
  width: 250px;
  height: 100px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content:center;
  align-items: flex-start;
}

.h-scard h3{
   color: #0A66C2;
}

.h-scard p{
  color: #64748B;
  font-size: 13px;
}

.h-nsec{
  width: 100%;
  height: auto;
  padding: 2em;
  background-color: #F8FAFC;
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
}

.h-cn{
  text-align: center;
}

.h-sub{
  text-align: center;
  width: 600px;
  margin: 2px auto;
}

.h-stepcard-flex{
  width: 90%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px auto;
  flex-flow: wrap;
}

.h-stepcard{
  width: 360px;
  height: 280px;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
  background-color: white;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h-stepcard p{
  font-size: 13px;
  color: #64748B;
}

.blu{
  color: blue;
}

.gre{
  color: green;
}




/*
--------------------
* Login page styling
--------------------
*/

.formBody{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  gap: 10px;
  background: radial-gradient(circle at top left, #bfe5fe 0%, #FFFFFF 65%);
}

.contentSide{
  width: 50%;
  height: auto;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.formSide{
  width: 49%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.Llogo{
  width: 250px;
  height: auto;
}

.contentSide p{
  font-size: 3rem;
}

.formElement{
  background-color: transparent;
  width: 100%;
  height: auto;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.input{
  width: 350px;
  height: 40px;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
  padding: 10px;
  outline-style: dashed;
  background-color: transparent;
  outline-color: #E2E8F0;
  display: flex;
  align-items: center;
}

.select{
  width: 355px;
  height: 40px;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
  padding: 10px;
  outline-style: dashed;
  background-color: transparent;
  outline-color: #E2E8F0;
}


.loginBtn{
  width: 350px;
  height: 45px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #00A3E0;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 1s;
}

.loginBtn:hover{
  background: radial-gradient(circle at 30% 30%, #00A3E0 0%, #0B438E 70%, #0A0D14 100%);
}

.link{
  color: #00A3E0;
  cursor: pointer;
  font-size: 14px;
}

hr{
  color: red;
}

.line{
  background-color: #E2E8F0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: visible;
  height: 2px;
  width: 80%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.LsignUp{
  width: 350px;
  height: 45px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #0A0D14;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 1s;
}

.prevBtn{
  width: 150px;
  height: 40px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  background:transparent;
  color: black;
  border-radius: 10px;
  cursor: pointer;
  transition: all 1s;
}


.nextBtn{
  width: 150px;
  height: 40px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background:#00A3E0;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 1s;
}

.mobile{
  display: none;
}

.j-ti{
  font-size: 4rem;
}

.pref{
  align-items:center;
  gap:80px;
  flex-direction:column;
  gap:10px
}

.actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  height: auto;
}

}





























/*
* @author Myxo victor
*/

@media screen and (max-width:899px) {
  
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  background: #FFFFFF;
}

header{
  width: 100%;
  height: 70px;
  background-color: white;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  position: fixed;
  z-index: 999;
}

.logo-hld{
  width: 150px;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.logo{
  width: 100px;
  height: auto;
}

.mobile{
  width: 50px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.subo{
  color: #0B438E;
  font-size:14px;
  font-weight: 600;
  display: none;
}

nav{
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: 15px;
  width: 300px;
  background-color: white;
  height: 90vh;
  position: fixed;
  margin-top: 102vh;
  padding: 10px;
  margin-left: -1000px;/*normal margin-left: -10px*/
}

.tab{
  color: #0B438E;
  cursor: pointer;
  width: 100%;
  height: 30px;
}

.tab:hover{
  color: rgb(33, 32, 32);
}

.active{
  border-bottom: 2px solid #1E293B;
}

.active::after{
  transition: all 1s;
}

.cta{
  width: auto;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

.cta1{
  width: 100px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  background-color: transparent;
  color: #1E293B;
  border-radius: 15px;
  font-size: 12px;
}

.cta2{
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  background: radial-gradient(circle at 30% 30%, #00A3E0 0%, #0B438E 70%, #0A0D14 100%);
  color: white;
  border-radius: 15px;
  font-size: 12px;
}

.cta1:hover{
  background-color: #0B438E;
  color: white;
}

.cta2:hover{
  background: white;
  color: #0B438E;
  border: 1px solid #1E293B;
}

.hero{
  width: 100%;
  height: auto;
  background: radial-gradient(circle at top left, #d4edfe 0%, #FFFFFF 65%);
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-direction: column;
}

.first-layer{
  width: 100%;
  height: 100vh;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  flex-direction: column;
  gap: 15px;
  padding: 1em;
}

.second-layer{
  width: 100%;
  height: 100vh;
  background-color: transparent;
  align-items: center;
  display: flex;
  justify-content: center;
}

.last-layer{
  width: 100%;
  height: 100vh;
  background-color: white;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-title{
  font-size: 2.5rem;
  font-weight: 500;
  color: #1E293B;
}

.highlight{
  color: #00A3E0;
}

.hero-sub{
  color: #1E293B;
}

.f-cta{
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.f-cta1{
  width: 160px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:linear-gradient(90deg, #0B438E 0%, #0A66C2 50%, #00A3E0 100%) ;
  color: white;
  border-radius: 10px;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.f-cta2{
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:white ;
  color: #1E293B;
  border-radius: 10px;
  border: #E2E8F0;
  padding: 10px;
  cursor: pointer;
}


.more-lit{
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  border-top: 1px solid rgb(228, 227, 227);
  padding: 15px;
}

.lit{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.icn{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #aae7fe;
  color: #14556c;
  border-radius: 10px;
  font-size: 12px;
}

.fa-certificate{
  background-color: rgb(216, 255, 216);
  color: rgb(53, 145, 53);
  border-radius: 10px;
}

.more-txt{
  font-size: 10px;
  font-weight: 600;
}

.stxt{
  font-size: 10px;
  color: gray;
}

.overlay-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
}


.player{
  width: 100%;
  height: auto;
  background-color: rgb(248, 248, 248);
  border: none;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}


.overlay{
  width: 100%;
  background-color: #71d9ff5b;
  z-index: 1;
  overflow: hidden;
  position: relative; position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.overlay-container:hover .player {
  transform: scale(1.1);
  transition: all 1s;
}

.play-btn{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: absolute;
  color: #0A66C2;
  font-size: 1.3rem;
  padding: 10px;
  cursor: pointer;
  }

  .comp{
    width: 100%;
    height: auto;
    padding: 1em;
    background-color: transparent;
    border: 1px solid rgb(213, 211, 211);
    border-radius: 15px;
  }

  .txt-blue{
    color: blue;
  }

  .comp-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 10px;
    border-bottom: 1px solid rgb(218, 206, 206);
    margin-bottom: 10px;
  }

  .label{
    padding: 4px;
    border-radius: 2px;
    background-color: #c2eefe;
    color: rgb(54, 54, 177);
    font-size: 12px;
  }

  .card{
    width: 100%;
    height: 100px;
    border-radius: 15px;
    background-color: white;
    border: 1px solid #E2E8F0;
    margin: 15px auto;
    display: block;
    padding: 10px;
  }

  .mg{
    margin-top: 40px;
  }

  .card-top{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .icons{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blue{
    background: linear-gradient(135deg, #0B438E 0%, #00A3E0 100%);
    color: white;
  }

  .blao{
    background: linear-gradient(135deg, #0A0D14 0%, #1E293B 100%);
    color: #0A66C2;
  }

  .green{
    background-color: rgb(19, 156, 19);
    color: white;
  }

  .ca-fot{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 10px;
    margin-top: 5px;
  }

  .bol{
    color: green;
    font-size: 12px;
  }

  .snx{
    color: blue;
    font-size: 12px;
  }

  .gol{
    color: gold;
    font-size: 12px;
  }

  .n-section{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 1em;
    margin-top: 40px;
  }

  .n-top{
    padding: 10px;
    border-bottom: 1px solid rgb(236, 235, 235);
  }

  .n-flex{
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }

  .step-card{
    width: 100%;
    height: 240px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.2em;
  }

  .step-card:hover{
    border: 1px solid #0A66C2;
  }

  .num-hold{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #e1f7ff;
    color: #0A66C2;
    margin-bottom: 20px;
  }

  .partner-con{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }

  .carousel-card{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    height: 200px;
    margin-top: 20px;
    
  }

  .ca-img{
    width: 100px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-analy{
    width: 90%;
    height: auto;
    background: linear-gradient(135deg, #0A0D14 0%, #1E293B 100%);
    margin: 50px auto;
    display: flex;
    border-radius: 15px;
    padding: 2em;
    justify-content: space-evenly;
    align-items: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }

  .stats{
    color: #00A3E0;
  }

  .nx{
    color: #549bf8;
  }

  .nxx{
    color: #FFFFFF;
  }

  .nxxx{
    color: rgb(147, 127, 10);
  }

  article{
    width: 100%;
    height: auto;
    padding: 1em;
  }




  .m-card {
  /* relative aspect-square rounded-2xl overflow-hidden */
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1rem; /* 16px */
  overflow: hidden;

  /* border border-slate-200 shadow-2xs */
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

  /* Set a max width or let parent grid handle sizing */
  width: 100%;
  max-width: 350px; 
}

.card-image {
  /* w-full h-full object-cover transition-transform duration-500 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

/* group-hover:scale-110 */
.m-card:hover .card-image {
  transform: scale(1.1);
}

.m-card-overlay {
  /* absolute inset-0 bg-gradient-to-t from-slate-950/80 via-transparent to-transparent */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.8) 0%,
    transparent 50%,
    transparent 100%
  );
  /* Prevents overlay from blocking mouse pointer events on the image if needed */
  pointer-events: none; 
}

.card-text {
  /* absolute bottom-3 left-3 text-white text-[11px] font-bold */
  position: absolute;
  bottom: 0.75rem; /* 12px */
  left: 0.75rem;   /* 12px */
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  margin: 0;
}

.fa-flex{
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 1em;
  flex-direction: column;
}

.txt-side{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.faq-side{
  width: 100%%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}

.faq{
  width: 100%;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 1em;
}

    /* Accordion Button Trigger */
 .faq-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem;
      text-align: left;
      background: transparent;
      border: none;
      cursor: pointer;
    }

    .faq-trigger:focus {
      outline: none;
    }

    /* Question Styling */
    .faq-question {
      font-size: 0.75rem;
      font-weight: 700;
      color: #0f172a;
    }

    /* Chevron Icon & Smooth Transition */
    .faq-icon {
      color: #94a3b8;
      font-size: 0.75rem;
      transition: transform 0.2s ease-in-out;
    }

    .faq-icon.rotate {
      transform: rotate(180deg);
    }

    /* Accordion Body */
    .faq-content {
      display: none;
      padding: 0 1rem 1rem 1rem;
    }

    .faq-content.show {
      display: block;
    }

    /* Answer Text Styling */
    .faq-answer {
      font-size: 0.75rem;
      color: #475569;
      line-height: 1.625;
      margin: 0;
    }

    .faq-btn{
      width: 150px;
      height: 40px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      background: linear-gradient(90deg, #0B438E 0%, #0A66C2 50%, #00A3E0 100%);
      color: white;
      display: flex;
      padding: 10px;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 5px;
    }




    /*FAN CARD STYLING*/

/* FAN CARD STYLING      Responsive already added  needs editing*/

/* Stage & Container setup */
.stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
  padding-bottom: 40px;
  margin-bottom: 20px;
  margin-top: 10px;
  overflow: hidden;
}

.card-fan {
  position: relative;
  width: 0;
  height: 0;
}

/* Base Card Styles */
.cardm {
  position: absolute;
  width: 180px;
  height: 260px;
  left: -90px; /* Center offset (half of width) */
  bottom: 0;
  transform-origin: 50% 200%; 
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), z-index 0.3s ease;
  cursor: pointer;
}

.card-inner {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
  background-color: #161b22;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge overlay */
.badge- {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(13, 17, 23, 0.75);
  backdrop-filter: blur(8px);
  color: #61afef;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

/* Bottom Text Overlay */
.overlay- {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 12px 12px 12px;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0));
  color: #ffffff;
  z-index: 2;
}

.overlay h3 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.overlay p {
  font-size: 0.7rem;
  color: #8b949e;
}

/* -----------------------------------------------------------------
 * Tightened 7-Card Semi-Circle Arc Spread
 * Reduced translateX step from 120px down to 60px
 * ----------------------------------------------------------------- */

/* Card 1 (-30deg, Far Left) */
.card-1 {
  transform: translateX(-180px) translateY(55px) rotate(-30deg);
  z-index: 1;
}
.card-1:hover {
  transform: translateX(-180px) translateY(-10px) rotate(-30deg) scale(1.08);
  z-index: 20;
}

/* Card 2 (-20deg, Mid Left) */
.card-2 {
  transform: translateX(-120px) translateY(28px) rotate(-20deg);
  z-index: 2;
}
.card-2:hover {
  transform: translateX(-120px) translateY(-30px) rotate(-20deg) scale(1.08);
  z-index: 20;
}

/* Card 3 (-10deg, Inner Left) */
.card-3 {
  transform: translateX(-60px) translateY(8px) rotate(-10deg);
  z-index: 3;
}
.card-3:hover {
  transform: translateX(-60px) translateY(-45px) rotate(-10deg) scale(1.08);
  z-index: 20;
}

/* Card 4 (0deg, Center Apex) */
.card-4 {
  transform: translateX(0px) translateY(0px) rotate(0deg);
  z-index: 4;
}
.card-4:hover {
  transform: translateX(0px) translateY(-55px) rotate(0deg) scale(1.08);
  z-index: 20;
}

/* Card 5 (+10deg, Inner Right) */
.card-5 {
  transform: translateX(60px) translateY(8px) rotate(10deg);
  z-index: 3;
}
.card-5:hover {
  transform: translateX(60px) translateY(-45px) rotate(10deg) scale(1.08);
  z-index: 20;
}

/* Card 6 (+20deg, Mid Right) */
.card-6 {
  transform: translateX(120px) translateY(28px) rotate(20deg);
  z-index: 2;
}
.card-6:hover {
  transform: translateX(120px) translateY(-30px) rotate(20deg) scale(1.08);
  z-index: 20;
}

/* Card 7 (+30deg, Far Right) */
.card-7 {
  transform: translateX(180px) translateY(55px) rotate(30deg);
  z-index: 1;
}
.card-7:hover {
  transform: translateX(180px) translateY(-10px) rotate(30deg) scale(1.08);
  z-index: 20;
}

/* Hover glow effects */
.card:hover .card-inner {
  border-color: rgba(97, 175, 239, 0.6);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7), 0 0 20px rgba(97, 175, 239, 0.25);
}


.ctxt{
  text-align: center;
}

.grtx{
  color: rgb(105, 105, 105);
  text-align: center;
}

.lat{
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #0B438E 0%, #0A66C2 50%, #00A3E0 100%);
  margin-top: 80px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
  justify-content: center;
  align-items: center;
}

.lat-ti{
  color: white; 
}

.o-btn{
  width: 200px;
  height: 50px;
  border-radius: 30px;
  border: none;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #ebf7ff 0%, #FFFFFF 65%);
  cursor: pointer;
  color: #0A66C2;
  transition: all 1s;
  font-size: 1.2rem;
}

.o-btn:hover{
  background: radial-gradient(circle at 30% 30%, #00A3E0 0%, #0B438E 70%, #0A0D14 100%);
  color: white;
}




/* ==========================================
   FOOTER STYLES Responsive already added
   ========================================== */

footer.site-footer {
  width: 100%;
  min-height: auto;
  background: radial-gradient(circle at top left, #dcf0fe 0%, #ffffff 65%);
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-top: 1px solid #e2e8f0;
  color: #334155;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* --- Top Nav Section --- */
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b438e;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: #475569;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0b438e;
}

/* Social Buttons */
.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b438e;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background-color: #0b438e;
  color: #ffffff;
  border-color: #0b438e;
  transform: translateY(-2px);
}

/* Divider */
.footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #cbd5e1, transparent);
  margin: 0;
}

/* --- Bottom Giant Horizontal Logo & Typography --- */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-close {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1opx;
  padding: 0.5rem ;
  overflow: visible;
  flex-direction: column;
}

/* Dynamic responsive logo sizing */
.big-logo {
  width: clamp(80px, 12vw, 220px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(11, 67, 142, 0.15));
}

/* Dynamic giant font size using clamp() */
.folx {
  font-size: clamp(2.2rem, 6.5vw, 6rem);
  font-weight: 900;
  color: #0b438e;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  text-transform: uppercase;
}

/* Legal / Copyright Bar */
.footer-sub-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #94a3b8;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}


.lnk{
  text-decoration: none;
  color: blue;
}

ul p{
  cursor: pointer;
}


ul p:hover{
  color: #00A3E0;
}





/**
 ---------------------
 How To Join Page styling
 ---------------------
*/

.j-content{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  align-items: flex-start;
  margin-top: 20px;
}

.cta-j{
  width: 200px;
  height: 45px;
  border: none;
  padding: 10px;
  background: #00A3E0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 15px;
}

.cta-j:hover{
  background: linear-gradient(135deg, #0B438E 0%, #00A3E0 100%);
}

.j-img{
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.j-how{
  width: 100%;
  height: auto;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 40px auto;
}

.j-step{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  flex-direction: column;
}

.jstep-card{
  width: 100%;
  height: 240px;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1em;
}

.jstep-card:hover{
  border: 1px solid #00A3E0;
}

.jtxt{
  font-size: 13px;
  color: #64748B;
}

.jcheck{
   font-size: 14px;
   color: rgb(87, 107, 87);
}


/*
-----------------
* How to win style
-----------------
*/

.h-title{
  font-size: 2rem;
  margin-top: 30px;
}

.h-contrl{
  width: 90%;
}

.h-sc{
  width: 200px;
  height: 50px;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 15px;
  background: radial-gradient(circle at top left, #e7f5fe 0%, #FFFFFF 65%);
  padding: 10px;
  cursor: pointer;
}


.h-sc:hover{
  background: radial-gradient(circle at 30% 30%, #00A3E0 0%, #0B438E 70%, #0A0D14 100%);
  color: white;
  border: none;
}

.h-how-p{
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-direction: column;
}

.h-scard{
  width: 90%;
  height: 100px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content:center;
  align-items: flex-start;
}

.h-scard h3{
   color: #0A66C2;
}

.h-scard p{
  color: #64748B;
  font-size: 13px;
}

.h-nsec{
  width: 100%;
  height: auto;
  padding: 2em;
  background-color: #F8FAFC;
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
}

.h-cn{
  text-align: center;
}

.h-sub{
  text-align: center;
  width: 100%;
  margin: 2px auto;
}

.h-stepcard-flex{
  width: 90%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px auto;
  flex-flow: wrap;
}

.h-stepcard{
  width: 100%;
  height: auto;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
  background-color: white;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h-stepcard p{
  font-size: 13px;
  color: #64748B;
}

.blu{
  color: blue;
}

.gre{
  color: green;
}




/*
--------------------
* Login page styling
--------------------
*/

.formBody{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  gap: 10px;
  flex-direction: column;
  background: radial-gradient(circle at top left, #bfe5fe 0%, #FFFFFF 65%);
}

.contentSide{
  width: 100%;
  height: auto;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 1em;
  margin-top: 30px;
}

.formSide{
  width: 100%;
  height: auto;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.Llogo{
  width: 100px;
  height: auto;
}

.contentSide p{
  font-size: 1rem;
}

.formElement{
  background-color: transparent;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.input{
  width: 340px;
  height: 40px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px;
  outline-style: dashed;
  background-color: transparent;
  outline-color: #E2E8F0;
  display: flex;
  align-items: center;
}

.select{
  width: 345px;
  height: 40px;
  border: 1px solid #E2E8F0;
  border-radius: 15px;
  padding: 10px;
  outline-style: dashed;
  background-color: transparent;
  outline-color: #E2E8F0;
}


.loginBtn{
  width: 340px;
  height: 45px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #00A3E0;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 1s;
}

.loginBtn:hover{
  background: radial-gradient(circle at 30% 30%, #00A3E0 0%, #0B438E 70%, #0A0D14 100%);
}

.link{
  color: #00A3E0;
  cursor: pointer;
  font-size: 14px;
}

hr{
  color: red;
}

.line{
  background-color: #E2E8F0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: visible;
  height: 2px;
  width: 80%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.LsignUp{
  width: 340px;
  height: 45px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #0A0D14;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 1s;
}

.prevBtn{
  width: 150px;
  height: 40px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  background:transparent;
  color: black;
  border-radius: 10px;
  cursor: pointer;
  transition: all 1s;
}


.nextBtn{
  width: 150px;
  height: 40px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background:#00A3E0;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 1s;
}


.j-ti{
  font-size: 2rem;
}

.pref{
  align-items:center;
  gap:80px;
  flex-direction:column;
  gap:10px;
  padding: 10px;
}

.actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  height: auto;
}



}

























