:root {
    --bg-main: #080a10;
    --bg-card: #121620;
    --accent: #ffb400;
    --accent-gold: #ffb400;
    --accent-cyan: #00f2ff;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    background-image: radial-gradient(circle at top right, #1e293b 0%, var(--bg-main) 40%);
}

/* Updated Button Theme */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #e6a400);
    color: #000;
    border: none;
    box-shadow: 0 0 15px rgba(255, 180, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    color: #000;
}

/* Glassmorphism Feature Cards */
.feature-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Glow Text for Headings */
.accent-color {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 180, 0, 0.2);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
 *{ box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }

/* Header */
.header { height: 80px; display: flex; align-items: center; background: rgba(11, 12, 16, 0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
.nav-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-size: 1.8rem;margin-top: 6px; font-weight: 900; letter-spacing: 2px; }
.nav a { color: var(--text-dim); text-decoration: none; margin: 0 15px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav a:hover { color: var(--accent); }

/* Buttons */
.btn { padding: 12px 28px; border-radius: 5px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; cursor: pointer; }
.btn-primary { background: #000;
    color: #fffafa;
    border: 1px solid #ffffff; }
.btn-primary:hover { border: 1px solid #e67e00;background: #e67e00; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); margin-left: 10px; }

/* Hero */
.hero { padding: 100px 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; text-transform: uppercase; }
.hero-text p { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 35px; line-height: 1.6; }

/* Feature Cards */
.section { padding: 80px 0; }
.section .belief-box  h2{ color: var(--accent); margin-bottom: 20px; text-align: center; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 50px; text-transform: uppercase; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.feature-card { background: var(--bg-card); padding: 40px; border-radius: 15px; transition: 0.3s; border: 1px solid #333; }
.feature-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.icon-wrap { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }
.feature-list { list-style: none; margin: 20px 0; }
.feature-list li { margin-bottom: 10px; color: var(--text-dim); }
.feature-link { color: var(--accent); text-decoration: none; font-weight: 700; display: block; margin-top: 20px; }
.align-center{ text-align: center; }
/* Why Choose Us Icons */
.icons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; margin-top: 40px; }
.icon-card { background: #111; padding: 25px; border-radius: 10px; transition: 0.3s; }
.icon-card i { font-size: 2rem; color: var(--gold); margin-bottom: 10px; }
.icon-card p { font-weight: 600; font-size: 0.9rem; }
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b0c10 0%, #1f2833 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
}

/* Background grid effect */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--accent-gold) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text { flex: 1.2; }
.cta-actions { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.cta-title {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.glow-text {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 180, 0, 0.4);
}

/* Button Redesign */
.btn-main {
    background: var(--accent-gold);
    color: #000;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s ease;
    border: none;
}

.btn-secondary-glow {
    background: transparent;
    color: var(--accent-cyan);
    padding: 18px;
    text-align: center;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    border: 2px solid var(--accent-cyan);
    box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.2);
    transition: 0.3s ease;
}

.btn-secondary-glow:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

.cta-divider {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    font-weight: bold;
}.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 180, 0, 0.2); /* Saffron Gold Glow */
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.glow-sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}
.GurujiGames{   margin: 20px 0;  }
.GurujiGames h4{
   
    
    text-shadow: 0 0 10px rgba(255, 180, 0, 0.3); margin-bottom: 1rem;
}






/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive Fix for 360px */
@media (max-width: 768px) {
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
    .cta-title { font-size: 2.2rem; }
}
/* Footer */
/* Footer Specifics */
.footer { background: #050608; padding: 60px 0 20px; border-top: 1px solid #222; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--accent); margin-bottom: 20px; font-family: 'Montserrat', sans-serif; font-weight: 900; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer a:hover { color: var(--accent); padding-left: 5px; }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; text-align: center; color: #444; font-size: 0.8rem; }

/* Policy Page Layout */
.policy-page { padding: 120px 20px 60px; line-height: 1.8; color: var(--text-dim); }
.policy-page h1 { color: var(--accent); margin-bottom: 30px; font-size: 2.5rem; }
.policy-page h2 { color: #fff; margin-top: 30px; margin-bottom: 15px; border-left: 4px solid var(--accent); padding-left: 15px; }

 

/* Responsive Adjustments */
@media (max-width: 768px) {
     .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-grid, .features-grid, .icons-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.5rem; }
    .nav { display: none; } /* Mobile Menu needs JS to show */
    .logo img{ height: 35px;  }
    .header .btn-primary{ padding: 10px 20px; font-size: 0.9rem;  }
    .hero-btns { display: flex;}
     .hero-btns .btn{ flex: 1; margin: 0 5px; padding: 12px 10px; text-align: center; }
     .hero{ padding: 30px 0;  }
     .section-title { font-size: 2rem;  }
     .feature-card { padding: 20px;  }
}
 
@media (max-width: 360px) {
    /* Tighten up the title so it doesn't break into too many lines */
    .hero-title { 
        font-size: 1.75rem; 
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    /* Reduce section padding to save vertical space */
    .section { 
        padding: 40px 0; 
    }

    /* Scale the logo image down so it doesn't crowd the header */
    .logo-img {
        height: 30px;
    }

    /* Stack buttons and remove the side margin from the secondary button */
    .btn {
        width: 100%;
        padding: 12px 5px;
        font-size: 0.85rem;
    }
    
    .btn-cta-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Ensure the journey/steps icons aren't too large */
    .step-icon-wrap {
        width: 65px;
        height: 65px;
        font-size: 1.3rem;
    }

    /* Adjust the feature grids to have smaller padding */
    .icon-card, .offer-item {
        padding: 20px 15px;
    }
    
    /* Make the belief statement text smaller */
    .belief-content p {
        font-size: 0.95rem;
    }
    .nav-content{padding: 10px;        gap: 5px;}
    .hero-section{height: auto;padding: 20px 0;  }
    .header .btn-primary{ padding: 8px 8px; font-size: 0.8rem;  }
    .hero-text h1 { font-size: 2rem; }
    .cta-title { font-size: 1.8rem; }
    .cta-actions .btn { padding: 15px; font-size: 0.85rem;  }
    .footer ul { padding: 0 10px;  }
    .footer ul li { margin-bottom: 8px;  }
     
     

}