/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --bg-color: #0b0b0b;
    --card-bg: #141414;
    --border-color: #222222;
    --accent-color: #bcf000;
    --text-main: #ffffff;
    --text-muted: #999999;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    color: #000000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-outline {
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.highlight {
    color: var(--accent-color);
}

.text-center {
    text-align: center;
}

/* Header & Navbar */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--accent-color);
}

.accent-x {
    color: var(--accent-color);
}

.desktop-nav ul {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--text-main);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 180px;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li a {
    padding: 8px 16px;
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px; /* Login aur Register ke beech gap */
}

.nav-login-link {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-login-link:hover {
    color: var(--accent-color);
}

.cart-link {
    color: var(--text-main);
    font-weight: 500;
}

.hamburger-menu {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--card-bg);
    border-left: 1px solid var(--border-color);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: right 0.3s ease-in-out;
    z-index: 2000;
}

.mobile-nav-drawer.open {
    right: 0;
}

.close-drawer {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    align-self: flex-end;
    cursor: pointer;
}

.mobile-nav-drawer ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-drawer a {
    font-size: 18px;
    color: var(--text-main);
}

.mobile-btn {
    text-align: center;
    margin-top: 20px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}
/* Hero Image Container & Floating Effects */
.hero-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.hero-image-container img.main {
    width: 100%;
    max-width: 520px;
    height: auto;
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: absolute;
    z-index: 3;
    animation: floatingEffect 4s ease-in-out infinite;
}

.image-wrapper img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

/* Positioning individual floating badges/coins */
.hero-float-bottom-right {
    bottom: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero-float-bottom-left {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.hero-float-top-left {
    top: 10%;
    left: 10%;
    animation-delay: 2s;
}

/* Smooth Floating Keyframes Animation */
@keyframes floatingEffect {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(3deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Responsive adjustment for small screens */
@media (max-width: 1024px) {
    .hero-image-container {
        margin-top: 40px;
    }
    .image-wrapper img {
        width: 50px;
    }
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.partners-title {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 16px;
}

.partners-title span {
    color: var(--text-main);
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 18px;
}
 /* Security Section Fix for Desktop and Windows View */
.security-section {
    padding: 100px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.security {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.security-img {
    width: 100%;
    max-width: 320px; /* Desktop window ke liye size compact kar diya gaya hai */
    height: auto;
    display: block;
    object-fit: contain;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .security-img {
        max-width: 300px; /* Mobile/Tablet view ke liye */
        margin: 0 auto;
    }
}
/* Wallet Section */
.wallet-section, .security-section {
    padding: 100px 0;
}

.wallet-grid, .security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.bit{
    display: flex;
}
.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-title1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    justify-content: center;
 
}


.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    font-weight: 500;
}

.feature-checklist i {
    color: var(--accent-color);
    margin-right: 8px;
}

.card-glass-preview {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 360px;
}

.crypto-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.positive-rate {
    color: var(--accent-color);
    font-weight: 600;
}

.card-glass-preview h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.mini-chart-line {
    height: 40px;
    background: linear-gradient(180deg, rgba(188,240,0,0.3) 0%, rgba(188,240,0,0) 100%);
    border-bottom: 2px solid var(--accent-color);
}

/* Security Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.metric-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
}

.metric-box h3 {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.metric-box p {
    color: var(--text-muted);
    font-size: 14px;
}

.mockup-pin-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    max-width: 320px;
    margin: 0 auto;
}

.pin-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pin-dots span {
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.keypad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.keypad-grid button {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 16px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}

/* Bento Grid Features */
.bento-section {
    padding: 100px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.bento-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-large {
    grid-column: span 2;
}

.bento-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.bento-icon {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.testimonial-card p {
    font-size: 16px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 16px;
}

.client-info span {
    color: var(--text-muted);
    font-size: 13px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cta-img-wrap img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    margin: 0 auto;
    display: block;
}

/* Footer */
.site-footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 14px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--text-main);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    background-color: var(--border-color);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-main);
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 13px;
}

/* Header & Hamburger Base Rules */
.hamburger-menu {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    display: none; /* Desktop par hide rahega */
    z-index: 2001;
}

/* Mobile Navigation Drawer & Overlap Fix */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--card-bg);
    border-left: 1px solid var(--border-color);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 2500; /* Header se upar layer rahegi */
}

/* Jab drawer open ho, tab body par class lagegi aur hamburger hide ho jayega */
body.drawer-open .hamburger-menu {
    display: none !important;
}

.mobile-nav-drawer.open {
    right: 0;
}

/* Close/Cross Button Styling inside Drawer */
.close-drawer {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 22px;
    align-self: flex-end;
    cursor: pointer;
    padding: 5px;
    margin-bottom: 10px;
}
.mobile-nav-drawer ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.mobile-nav-drawer a {
    font-size: 18px;
    color: var(--text-main);
    text-decoration: none;
}
/* CTA Section Styling */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 16px;
}

/* Multiple Bitcoin Images Responsive Container */
.bit {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bit-img-wrapper {
    display: flex;
    gap: 15px; /* Images ke beech ka gap */
    flex-wrap: wrap; /* Choti screen par images niche wrap ho jayengi */
    justify-content: center;
    align-items: center;
}

.bit-img-wrapper img {
    width: 100px; /* Desktop ke liye standard size */
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
   
}

.brand-logo-img {
    max-width: 49px !important; /* Image ko ek limit me rakhne ke liye */
    object-fit: contain;
    display: block;
}
.bit-img-wrapper img:hover {
    transform: translateY(-5px);
}

/* Tablet & Mobile Responsiveness (< 1024px) */
@media (max-width: 1024px) {
    .cta-box {
        grid-template-columns: 1fr; /* Mobile me content aur images ek ke niche ek aa jayenge */
        padding: 40px 20px;
        text-align: center;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .bit-img-wrapper img {
        width: 80px; /* Phone view me images ka size thoda compact kar diya gaya hai */
    }
}
/* Responsive Media Query (Jab screen 1024px ya usse choti ho) */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }
    .desktop-register, 
    .desktop-login {
        display: none !important; /* Isse phone/tablet view me desktop wala login aur register gayab ho jayega */
    }
    .hamburger-menu {
        display: block !important;
    }
    .hero-grid, .wallet-grid, .security-grid, .bento-grid, .testimonials-grid, .cta-box, .footer-grid {
        grid-template-columns: 1fr;
    }
}



/* Hero Image Container & Floating Effects */
.hero-image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.hero-image-container img.main {
    width: 100%;
    max-width: 290px;
    height: auto;
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: absolute;
    z-index: 3;
    animation: floatingEffect 4s ease-in-out infinite;
}

.image-wrapper img {
    width: 120px;
    height: auto;
    
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

/* Positioning individual floating badges/coins */
.hero-float-bottom-right {
    bottom: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero-float-bottom-left {
    bottom: 20%;
    left: 2%;
    animation-delay: 1s;
}

.hero-float-top-left {
    top: 10%;
    left: 10%;
    animation-delay: 2s;
}

/* Smooth Floating Keyframes Animation */
@keyframes floatingEffect {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(3deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Responsive adjustment for small screens */
@media (max-width: 1024px) {
    .hero-image-container {
        margin-top: 40px;
    }
    .image-wrapper img {
        width: 50px;
    }
}