 /* Reset & Body */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0A0A0A;
            color: white;
            line-height: 1.6;
            
        }

        /* Header */
        .minimal-header{

  width:100%;

  padding:18px 22px;

  display:flex;

  justify-content:space-between;

  align-items:center;

  position:relative;

  background:#0a0a0a;

  border-bottom:3px solid rgba(255,255,255,0.06);
  
  position:relative;

    z-index:100;
}

/* LOGO */

.site-name{

  color:#fff;

  font-size:22px;

  font-weight:700;
  
  font-family: 'Yeseva One', serif;
}

.site-name span{

  color:gold;
}

/* MENU BUTTON */

.menu-btn{

  width:28px;

  display:flex;

  flex-direction:column;

  gap:5px;

  cursor:pointer;
}

.menu-btn span{

  width:100%;

  height:2px;

  background:#fff;

  border-radius:10px;

  transition:0.3s;
}

/* DROPDOWN */

.mobile-menu{

  position:absolute;

  top:75px;

  right:20px;

  width:180px;

  background:#111;

  border:1px solid rgba(255,255,255,0.06);

  border-radius:18px;

  padding:12px;

  display:none;

  flex-direction:column;

  gap:10px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.4);
}

.mobile-menu.active{

  display:flex;
}

.mobile-menu a{

  color:#d6d6d6;

  text-decoration:none;

  padding:12px;

  border-radius:12px;

  transition:0.3s;
}

.mobile-menu a:hover{

  background:rgba(255,215,0,0.08);

  color:gold;
}
        
        
      .hero-content{

    position:relative;

    z-index:2;
}  

    .hero {

    padding: 60px 20px;

    text-align: center;

    position: relative;

    overflow: hidden;
    
    background-position:center;
    
    
    

}

/* BACKGROUND CAROUSEL */

.bg-carousel{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:-2;
}

.bg-carousel img{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center;

    opacity:0;

    transition:opacity 1.5s ease;
}

.bg-carousel img.active{

    opacity:1;
}
/* OPTIONAL DARK OVERLAY */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,0.45);

    z-index:-1;
}
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: 'Yeseva One', serif;
            
        }
        .hero p {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 25px;
            font-family: 'Dancing Script', cursive;
        }
    

        /* Features Section */
        .features {
            padding: 60px 20px;
            text-align: center;
            background-color: #111111;
        }
        .features h2 {
            margin-bottom: 40px;
            font-size: 2rem;
            font-family: 'Domine', serif;
        }
        .feature-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        .feature-box {
            background: #0a0a0a;
            padding: 25px 20px;
            border-radius: 10px;
            width: 250px;
            transition: 0.3s;
        }
        .feature-box:hover {
            transform: translateY(-5px);
        }
        .feature-box h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
            font-weight: 600;
            font-family: 'Domine', serif;
        }
        .feature-box p {
            color: #ffffff;
            font-size: 0.95rem;
        }

        /* Stats Section */
        .stats-section {
            padding: 60px 20px;
            background: #0A0A0A;
            text-align: center;
            Border: 1px solid rgba(255,215,0,0.15);
        }
        .stats-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        .stat-box {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FFD700;
            font-family: 'Cutive', serif;
        }
        .stat-label {
            font-size: 0.8rem;
            color: #ffffff;
            margin-top: 8px;
            font-family: 'Cutive', serif;
        }

        /* Responsive Scaling */
        @media (min-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .stats-container { grid-template-columns: repeat(2, 1fr); }
            .stat-number { font-size: 3rem; }
        }
        @media (min-width: 1024px) {
            .hero h1 { font-size: 3.5rem; }
            .feature-container { justify-content: space-between; gap: 35px; }
            .stats-container { grid-template-columns: repeat(4, 1fr); }
            .stat-number { font-size: 3.5rem; }
        }
        
        /* everything section*/
        .everything {
    padding: 60px 15px;
    background-color: #111111;
    text-align: center;
}

.everything h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Domine', serif;
}

/* MOBILE: 1 per row */
.everything-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

/* BOX STYLE */
.everything-box {
    background: #0a0a0a;
    padding: 30px 20px;
    border-radius: 12px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.35s ease;
}


/* TEXT */
.everything-box span {
    font-size: 1rem;
    color: #ffffff;
    transition: 0.3s;
    font-family: 'Domine', serif;
}

.everything-box .desc {
    font-size: 0.9rem;
    color: #ffffff;
}

/* HOVER EFFECT */
.everything-box:hover {
    transform: translateY(-8px) scale(1.02);
    background: #1D1D1D;
}

/* ICON HOVER ANIMATION */
.everything-box:hover i {
    transform: translateY(-5px) scale(1.15);
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.7),
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3);
}

/* OPTIONAL: slight text brighten on hover */
.everything-box:hover span {
    color: #FFD700;
}



/* TABLET: 2 columns */
@media (min-width: 768px) {
    .everything-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP: 3 columns */
@media (min-width: 1024px) {
    .everything-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ICON STYLE */
.everything-box i {
    font-size: 1.8rem;
    color: #FFD700; /* gold */
}

/* ICON BASE */
.everything-box i {
    font-size: 1.9rem;
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); /* soft glow */
    transition: all 0.35s ease;
}


.steps {
    padding: 60px 15px;
    background-color: #0a0a0a;
    text-align: center;
}

.steps h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Domine', serif;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 column */
    gap: 20px;
}

.step-wrapper {
    position: relative;
}

.step-box {
    background: #111111;
    padding: 25px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    transition: all 0.35s ease;
    min-height: 130px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent; /* removes mobile blue flash */
    outline: none; /* removes desktop focus outline */
}

/* ICON */
.step-box i {
    font-size: 1.6rem;
    color: #FFD700;
    flex-shrink: 0;
    margin-top: 5px;
    transition: transform 0.35s ease, text-shadow 0.35s ease;
}

/* TEXT */
.step-text h3 {
    font-size: 1rem;
    color: #FFD700;
    margin-bottom: 5px;
    font-family: 'Domine', serif;
}

.step-text .title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Domine', serif;
}

.step-text .desc {
    font-size: 0.9rem;
    color: #ffffff;
}


/* CONNECTORS */
.connector {
    position: absolute;
    top: 50%;
    right: -20px; /* horizontal spacing */
    width: 40px;
    height: 2px;
    background: #FFD70033;
    transform: translateY(-50%);
}

.connector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    border: 6px solid transparent;
    border-left-color: #FFD70077;
    transform: translateY(-50%);
}

.step-wrapper:last-child .connector {
    display: none;
}

/* MOBILE: vertical connectors */
@media (max-width: 767px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    .connector {
        bottom: -20px;
        top: auto;
        left: 50%;
        width: 2px;
        height: 40px;
        transform: translateX(-50%);
    }
    .connector::after {
        border-top-color: #FFD70077;
        border-left-color: transparent;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* TABLET & DESKTOP: 2 columns */
@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* hide connector for even-numbered items to prevent overlap */
    .steps-container .step-wrapper:nth-child(2n) .connector {
        display: none;
    }
}

/* HOVER EFFECT: Slide + Glow + Shadow */
.step-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    background: #1D1D1D;
}

.step-box:hover i {
    transform: translateX(-5px) scale(1.2);
    text-shadow: 
        0 0 12px rgba(255, 215, 0, 0.7),
        0 0 25px rgba(255, 215, 0, 0.5);
}

/* FAQ BOX */
.faq-section{
    background: #111111;
    
}
.faq-box {
    background: #0A0A0A;
    padding: 20px;
    border-radius: 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* HOVER */
.faq-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

/* ACTIVE GLOW */
.faq-box.active {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    font-family: 'Domine', serif;
}
.faq-title {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
    font-family: 'Domine', serif;
    font-size: 28px;
    color: #fff;
}
/* GRID */
.faq-container {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 column */
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    
}

/* Tablet & Desktop: FORCE 2 columns */
@media (min-width: 768px) {
    .faq-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* ICON */
.faq-question i {
    color: #FFD700;
    transition: transform 0.3s ease;
}

/* ANSWER (AUTO HEIGHT ANIMATION BASE) */
.faq-answer {
    height: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    transition: height 0.4s ease;
}

/* SPACING WHEN OPEN */
.faq-box.active .faq-answer {
    margin-top: 10px;
}

/* ICON ROTATE */
.faq-box.active .faq-question i {
    transform: rotate(180deg);
}

/* RIPPLE EFFECT */
.faq-box::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.25);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

/* Ripple animation */
.faq-box.ripple::after {
    width: 300px;
    height: 300px;
    transform: scale(1);
    opacity: 0;
    transition: all 0.6s ease;
    top: var(--y);
    left: var(--x);
}

/* WRAPPER */
.support-btn-wrapper {
    text-align: center;
    margin-top: 40px;
    
}

/* BUTTON */
.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 40px;
    background: linear-gradient(135deg, #FFD700, #e6c200);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Agbalumo', sans-serif;

}

/* HOVER EFFECT */
.support-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* CLICK EFFECT */
.support-btn:active {
    transform: scale(0.96);
}

/* ICON */
.support-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* ICON HOVER */
.support-btn:hover i {
    transform: rotate(-10deg) scale(1.2);
}

/* SHINE EFFECT */
.support-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform: skewX(-20deg);
}

/* SHINE ANIMATION */
.support-btn:hover::before {
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    to {
        left: 130%;
    }
}
/* FOOTER */
.footer {
    background: #080808;
    padding: 60px 20px 20px;
    color: #B8B8B8;
}

/* CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* COLUMN */
.down{
    margin-bottom: 4px;
}

/* SPECIFIC FIX FOR FOOTER */
.footer {
    margin-top: 1px;
}
.footer-col h4 {
    color: #B8B8B8;
    margin-bottom: 15px;
}

.footer-logo {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Yeseva One', serif;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #B8B8B8;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FFD700;
}

/* SOCIAL */
.footer-socials a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #FFD700;
    transition: 0.3s;
}

.footer-socials a:hover {
    transform: translateY(-3px) scale(1.2);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 15px;
    font-size: 13px;
}
.footer-contact {
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact i {
    color: #FFD700;
    margin-right: 8px;
}

/* NEWSLETTER FORM */
/* SECTION */
.newsletter-section {
    margin-top: 15px;
}

.newsletter-section h4 {
    color: #B8B8B8;
    margin-bottom: 8px;
}

.newsletter-section p {
    color: #B8B8B8;
    font-size: 13px;
}

/* BOX */
.newsletter-box {
    display: flex;
    margin-top: 12px;
    background: #0f1115;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #222;
}

/* INPUT */
.newsletter-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    background: transparent;
    color: #B8B8B8;
}

/* BUTTON */
.newsletter-box button {
    background: #FFD700;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    color: #000;
}

/* POPUP */
.success-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-30px);
    background: #FFD700;
    color: #000;
    padding: 14px 20px;
    border-radius: 16px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 9999;
}

.success-popup.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* MOBILE (default) */
.footer-newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    margin-top: 30px;
}

/* TABLET */
@media (min-width: 768px) {
    .footer-newsletter {
        margin: 0 auto 60px auto;
        text-align: center;
        margin-top: 30px;
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .footer-newsletter {
        margin: 0 auto 60px auto;
        text-align: center;
        margin-top: 30px;
    }
}

/* CONFETTI */
.confetti {
    position: absolute;
    top: 0;
    left: 50%;
    pointer-events: none;
}

.confetti span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    opacity: 0.8;
    animation: confetti-fall 1s ease forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(40px) scale(0.5);
        opacity: 0;
    }
}

/* LIVE ACTIVITY */
.live-activity {
  position: fixed;

  top: 20px;
  left: 50%;

  transform: translateX(-50%);

  background: rgba(10,10,10,0.95);

  border: 1px solid rgba(255,215,0,0.12);

  color: white;

  padding: 14px 22px;

  border-radius: 40px;
  opacity: 0;
transition: 0.4s ease;

  display: flex;
  align-items: center;
  gap: 12px;

  z-index: 9999;

  backdrop-filter: blur(10px);

  box-shadow:
    0 0 20px rgba(0,0,0,0.35);

  animation: slideDown 0.6s ease;
}

/* LIVE DOT */
.live-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #00ff66;

  box-shadow: 0 0 10px #00ff66;
}

/* SLIDE ANIMATION */
@keyframes slideDown {

  from {
    opacity: 0;
    transform:
      translateX(-50%)
      translateY(-20px);
  }

  to {
    opacity: 1;
    transform:
      translateX(-50%)
      translateY(0);
  }

}

@media (max-width: 600px) {

  .live-activity {
    width: 80%;

    padding: 10px 14px;

    border-radius: 16px;

    top: 15px;
  }

  .live-activity span {
    font-size: 13px;
  }

  .live-dot {
    width: 8px;
    height: 8px;
  }

}

.title {
    color: #FFD700;
  }
  
 /* MODAL OVERLAY */

.modal-overlay {
    
    position: fixed;
    
    inset: 0;
    
    background: rgba(0, 0, 0, 0.6);
    
    display: none;
    
    justify-content: center;
    
    align-items: center;
    
    padding: 20px;
    
    z-index: 9999;
}

/* SHOW MODAL */

.modal-overlay.active {
    
    display: flex;
}

/* BOX */

.modal-box{

  width:100%;

  max-width:500px;

  max-height:85vh;

  overflow-y:auto;

  background:#111;

  border-radius:24px;

  padding:30px;

  color:#fff;

  animation:fadeIn 0.3s ease;
}
.modal-box p {
    
    color: #d6d6d6;
    
    line-height: 1.7;
}

/* CHECKBOX */

.terms-check {
    
    display: flex;
    
    align-items: center;
    
    gap: 10px;
    
    margin-top: 20px;
}

/* ANIMATION */

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

.terms-continue{

  width:100%;

  margin-top:20px;

  padding:14px;

  border:none;

  border-radius:14px;

  background:gold;

  color:#000;

  font-weight:600;

  cursor:pointer;

  transition:0.3s;
}

.terms-continue:hover{

  opacity:0.9;
}

a,
button,
input,
textarea,
select {

  -webkit-tap-highlight-color: transparent;
  outline: none;

}

a:focus,
a:active,
button:focus,
button:active {

  outline: none;

}