/* Reset */
/* ...existing code... */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
}

/* Remove the old body background image rule if present */
/* body { background-image: url('../images/background.png'); ... } */

/* Make all sections transparent to show the body gradient */
.hero,
.how-it-works,
.shop,
.trusted-platforms,
.contact-form,
.payment-info,
.info-row,
.step,
.gift-card,
.payment-card,
.footer,
.trust {
    background-color: transparent !important;
}

/* Adjust text colors if needed for readability (e.g., on dark backgrounds) */
.hero h1,
.hero p,
.how-it-works h2,
.step h3,
.step p,
.trust h2,
.trust li,
.footer h3,
.footer p,
.footer-note {
    color: white;
}

/* For elements with light backgrounds, use rgba for semi-transparency if you want overlays */
.step {
    background-color: rgba(255, 255, 255, 0.1); /* light overlay on gradient */
    color: white;
}

/* ...existing code... */
/* --------------------------------------------- */
/* SIDEBAR — COMIC + SILVER + CARD HOVER EFFECT */
/* --------------------------------------------- */

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    /* Comic halftone + silver shimmer */
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
         /*  url('../images/comic-halftone.png') center/cover no-repeat,*/
        linear-gradient(135deg, #dcdcdc 0%, #f5f5f5 100%);

    background-blend-mode: overlay;

    overflow-x: hidden;
    transition: width 0.5s ease-in-out;
    padding-top: 60px;

    border-right: 5px solid #000;
    box-shadow: 6px 0 0 #000;

    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

/* --------------------------------------------- */
/* SIDEBAR LINKS — COMIC + CARD SHIMMER EFFECT   */
/* --------------------------------------------- */

.sidebar a {
    position: relative;
    display: block;

    padding: 14px 30px;
    margin: 12px 20px;

    font-size: 1.4rem;
    font-family: 'Bangers', sans-serif;
    text-decoration: none;

    color: #fff;
    text-shadow: 2px 2px 0 #000;

    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #000;
    border-radius: 12px;

    overflow: hidden;

    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.2s, color 0.2s;
}

/* Pokémon-style shimmer overlay */
.sidebar a::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.25) 0%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.25) 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
    transition: transform 0.5s ease-in-out;
}

/* Hover = lift + shimmer slide */
.sidebar a:hover {
    transform: translateY(-5px) scale(1.05);
    background: #ffea00;
    color: #000;
    text-shadow: 1px 1px 0 #fff;
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.sidebar a:hover::before {
    transform: rotate(25deg) translateX(50%);
}

/* --------------------------------------------- */
/* CLOSE BUTTON — BIG, VISIBLE, COMIC BUBBLE     */
/* --------------------------------------------- */

.sidebar .closebtn {
    position: absolute;
    top: 15px;
    right: 20px;

    font-size: 2.8rem;
    font-weight: bold;
    cursor: pointer;

    background: #fff;
    color: #000;

    border: 4px solid #000;
    padding: 8px 16px;
    border-radius: 50%;

    box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* Speech bubble tail */
.sidebar .closebtn::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 12px;
    width: 14px;
    height: 14px;
    background: #350303;
    border: 4px solid #000;
    transform: rotate(45deg);
}


/* Menu Icon */
.menu-icon {
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 25px;
    left: 20px;
    z-index: 1100;
}

/* Main Navigation (for top nav fallback) */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f7c948;
}

.main-header .logo {
    width: 150px;
}

.main-header nav ul.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-header nav ul.menu li a {
    text-decoration: none;
    font-weight: bold;
    color: #222;
    transition: color 0.3s;
}

.main-header nav ul.menu li a:hover {
    color: #0c5fb8;
}

/* Logo (for hero or main pages) */
#logo,
.hero .logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    background-color: #f7c948;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

/* Floating Animation for Hero Logo */
.hero .logo {
    filter: drop-shadow(0 0 15px #ffdd57);
    border: 5px solid #fff8c4;
    border-radius: 20px;
    box-shadow: 0 0 30px #ffea70, 0 0 60px #ffd700;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Text */
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #45a049;
}

/* How It Works Section */
.how-it-works {
    padding: 50px 20px;
    background-color: transparent;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    background-color: rgba(255, 255, 255, 0.1) !important;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #ffea00;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 234, 0, 0.5);
}

.step h3 {
    margin-bottom: 15px;
    color: #ffea00;
    font-size: 1.3rem;
}

.step p {
    color: white;
    font-size: 1rem;
}


/* Shop / Explore Section  EHRE IS THE WHITE BACKGORUND TOO CAN ADD IMAGE HERE*/
.shop, .trusted-platforms {
    padding: 50px 20px;
    background-color: #e8f4f8;
    text-align: center;
}

.shop h2, .trusted-platforms h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.shop p, .trusted-platforms p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Gift Cards Gallery HERE WE ADDED IAMGES  */
.gift-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
  /*  background: url('../images/backgrond.png') center/cover no-repeat; */
}

/* Individual Card Styling */
.gift-card {
    position: relative;
    background-color: #f5f2f2; /* fallback if image doesn't load */
    background-image: var(--bg-image);
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 20px;
    width: 220px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 3px solid gold;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
    cursor: pointer;
    min-height: 280px;
    
}

/* Slight floating animation on hover */
.gift-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

/* Image inside card */
.gift-card img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.7); /* subtle white overlay for icon */
}

/* Card Title */
.gift-card h3 {
    margin-bottom: 15px;
    color: #f7c948;
    font-weight: bold;
    text-shadow: 1px 1px 3px #000;
}

/* Shop Button */
.gift-card .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: silver;
    color: #222;
    border-radius: 12px;
    border: 2px solid gold;
    transition: background 0.3s, color 0.3s;
}

.gift-card .btn:hover {
    background: gold;
    color: #fff;
}

/* Optional shimmer/shine effect on card */
.gift-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.2) 100%);
    transform: rotate(25deg);
    transition: transform 0.5s ease-in-out;
    pointer-events: none; /* FIX */
}



.gift-card:hover::after {
    transform: rotate(25deg) translateX(50%);
}

/* Trust Section */
.trust {
    padding: 50px 20px;
    text-align: center;
}

.trust h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.trust ul {
    list-style: none;
    font-size: 1.1rem;
}

.trust li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Responsive Fix for Menu Icon (mobile) */
@media (max-width: 768px) {
    .main-header nav ul.menu {
        display: none;
    }
    .menu-icon {
        display: block;
    }
}

/* CONTACT FORM — MATCH YOUR SITE STYLE this is the background  */
.contact-form {
    text-align: center;
    padding: 50px 20px;
    background: #f7f9fa;
}

/* The box  inside  */
.contact-form form {  
    display: inline-block;
    background: rgb(253, 252, 252);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-form input,
.contact-form textarea {
    width: 300px;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #000;
    font-size: 1rem;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    background: #ffea00;
    color: #000;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 10px;
    border: 3px solid #000;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


/* PAYMENT INFO SECTION */
.payment-info {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    background: #f0f0f0;
}

/* Card container */
.payment-card {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    background: rgb(5, 3, 3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Glow effect when open */
.payment-card.active {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    transform: scale(1.01);
}

/* Header (clickable) */
.payment-header {
    background: linear-gradient(135deg, #f7c948, #ffea00);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-header:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Arrow */
#arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Content (hidden state) */
.payment-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;

    opacity: 0;
    transform: translateY(-10px);

    transition: 
        max-height 0.5s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

/* Open state */
.payment-content.open {
    max-height: 500px; /* adjust if content grows */
    padding: 20px;

    opacity: 1;
    transform: translateY(0);
}

/* Text styling */
.payment-content p {
    margin-bottom: 10px;
    font-size: 1.05rem;
    background: #f9f9f9;
    padding: 8px 10px;
    border-radius: 8px;
}

/* Strong text highlight */
.payment-content p strong {
    color: #333;
}

/* Warning note */
.payment-note {
    margin-top: 15px;
    padding: 10px;
    background: #ffe5e5;
    border: 2px solid #ff4d4d;
    border-radius: 10px;
    font-size: 0.95rem;
}

   /* Footer Styling  for the contact footnote*/

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.footer-container h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-container p {
    font-size: 1rem;
    margin: 5px 0;
}

.email-display {
    display: inline-block;
    margin: 15px 0;
    padding: 12px 25px;
    background-color: #ffcc00;
    color: #1a1a1a;
    font-weight: bold;
    border-radius: 8px;
}

.footer-note {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 20px;
}


/* =========================================
   RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


/* =========================================
   DASHBOARD ROW - Payment Info Cards
========================================= */
.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 40px 20px;
}


/* =========================================
   PAYMENT CARD (BASE)
========================================= */
.payment-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;

    background: rgba(238, 233, 233, 0.95);
    border: 4px solid #000;
    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 234, 0, 0.5);
}


/* =========================================
   SHIMMER EFFECT
========================================= */
.payment-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.25) 100%
    );

    transform: rotate(25deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.payment-card:hover::after {
    opacity: 1;
}


/* =========================================
   CARD HEADER
========================================= */
.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px;
    background: linear-gradient(135deg, #f7c948, #ffea00);
    border-bottom: 3px solid #000;

    cursor: pointer;
    transition: transform 0.2s ease;
}

.payment-header:hover {
    transform: scale(1.02);
}

.payment-header h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.payment-header span {
    font-size: 1.4rem;
    color: #000;
    transition: transform 0.3s ease;
}


/* =========================================
   DROPDOWN CONTENT
========================================= */
.payment-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;

    /* 🔥 FORCE ALL TEXT INSIDE TO BE DARK */
    color: #000;

    transition: max-height 0.4s ease, padding 0.3s ease;
}

.payment-content.open {
    max-height: 500px;
    padding: 15px 20px;
}


/* =========================================
   TEXT (FULLY FIXED)
========================================= */
.payment-content p,
.payment-content li,
.payment-content strong,
.payment-content span {
    color: #000;
}

.payment-content p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.payment-content p strong {
    font-weight: bold;
}


/* =========================================
   FEES BOX
========================================= */
.payment-content .fees {
    margin: 10px 0;
    padding: 10px;

    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.payment-content .fees ul {
    margin-left: 20px;
}

.payment-content .fees li {
    margin-bottom: 5px;
}





/* Contact Methods Section  watsapp and email*/
.contact-methods {
    padding: 50px 20px;
    text-align: center;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 3px solid #ffea00;
    border-radius: 15px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(255, 234, 0, 0.4);
}

.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffea00;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.contact-card .btn {
    background-color: #ffea00;
    color: #000;
    font-weight: bold;
}

.contact-card .btn:hover {
    background-color: #ffd700;
}

/* About us section css */

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 3px solid #ffea00;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 234, 0, 0.5);
}

.about-card h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffea00;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 10px;
}

.about-card ul,
.about-card ol {
    text-align: left;
    color: white;
    margin-left: 20px;
}

.about-card li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: white;
}

.cta-section .btn {
    background-color: #ffea00;
    color: #000;
    font-weight: bold;
    padding: 15px 40px;
}

.cta-section .btn:hover {
    background-color: #ffd700;
}

