@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Body Dark */
body {
    background-color: #000;
    font-family: "Roboto", sans-serif;
}
h1,h2,h3{
     font-family: "Michroma", sans-serif;
     font-weight: 600;
     letter-spacing: 2px;
}
/* Navbar */
.custom-navbar {
    background: #000;
    padding: 15px 0 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Logo */
.navbar-brand {
    font-size: 22px;
    letter-spacing: 1px;
}

.navbar-brand img, .custom-logo-link img {
    width: 400px;
    height: auto;
}

/* Menu */
.nav-link {
    color: #ba8f32 !important;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #ba8f32 !important
}

/* Underline Hover Effect */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ba8f32;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* GET ID Button */
.get-id-btn {
    background: #fff;
    color: #000;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.get-id-btn:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

.get-id-btn {
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ebd26d, #ab7d25);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    transition: 0.3s ease;

    /* Glow Effect */
    box-shadow:
        0 0 15px rgb(242 220 118), 0 0 40px rgb(178 135 41 / 25%)
}

/* Hover Effect */
.get-id-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 25px rgb(181 138 48), 0 0 60px rgb(223 194 95)
}

/* Slider Image Dark Overlay */
.carousel-item {
    position: relative;
}

.carousel-item img {
    object-fit: cover;
}

.boximg img {
    width: 100%;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 15px 15px 15px 15px;
    border-color: #fed457;
}

/* Caption Styling */
.carousel-caption {
    bottom: 20%;
    text-align: center;
}

.carousel-caption h2 {
    font-size: 48px;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 18px;
    color: #ccc;
}

/* Controls Dark */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Indicators */
.carousel-indicators button {
    background-color: #fff;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

.cta-wrapper {
    text-align: center;
}

/* Button Style */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ab7f27, #cc9f3b);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    font-size: 20px;
}

/* WhatsApp Icon */
.wa-icon {
    width: 20px;
    height: 20px;
}
.text-sliver{
    color: #FACF4D !important;
}
/* Glow Animation */
.cta-btn::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    top: -50%;
    left: -50%;
    transform: rotate(25deg);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% {
        left: -50%;
    }

    100% {
        left: 120%;
    }
}

/* Hover */
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgb(193 149 52 / 63%)
}

.live-viewers {
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    opacity: 0.9;
}

/* Section */
.offer-section {
    padding: 20px 0;
    overflow: hidden;
}

/* Scroll Track */
.offer-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollLeft 20s linear infinite;
}

/* Card */
.offer-card {
    min-width: 260px;
    background: #181818;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

/* Icon */
.offer-card {
    font-size: 28px;
}

/* Title */
.offer-card h4 {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
}

/* Subtitle */
.offer-card p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}

/* Hover */
.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgb(185 141 48 / 53%)
}

/* Auto Scroll Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.offer-section {
    overflow-x: auto;
    scroll-behavior: smooth;
}

.offer-track {
    animation: none;
    /* disable auto if manual */
}

.offer-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-card:hover {
    border: 1px solid rgb(192 148 55)
}

.offer-section:hover .offer-track,
.offer-section1:hover .offer-track {
    animation: scrollLeft 20s linear infinite;
    animation-play-state: paused;
}

/* ===== Chrome, Edge, Safari ===== */
.offer-section::-webkit-scrollbar,
.offer-section1::-webkit-scrollbar {
    height: 6px;
    /* 👈 thickness kam */
}

.offer-section::-webkit-scrollbar-track,
.offer-section1::-webkit-scrollbar-track {
    background: #111;
    /* dark track */
    border-radius: 10px;
}

.offer-section::-webkit-scrollbar-thumb,
.offer-section1::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #bd9132, #bd9132);
    border-radius: 10px;
}

.offer-section::-webkit-scrollbar-thumb:hover,
.offer-section1::-webkit-scrollbar-thumb:hover {
    background: #bd9132;
}


/* ===== Firefox ===== */
.offer-section,
.offer-section1 {
    scrollbar-width: thin;
    /* 👈 thin scrollbar */
    scrollbar-color: #bd9132 #111;
}

/* Section Scroll (optional) */
.offer-section1 {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

/* Card Layout */
.offer-card1 {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    background: #141414;
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

/* Icon Left */
.offer-card1 .icon {
    font-size: 26px;
    min-width: 40px;
    text-align: center;
}

/* Text */
.offer-card1 h4 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}

.offer-card1 p {
    font-size: 12px;
    margin: 2px 0 0;
    color: #aaa;
}

/* Hover */
.offer-card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.offer-card1 .icon {
    background: rgba(255, 0, 0, 0.1);
    padding: 10px;
    border-radius: 50%;
}

/* Box */
.support-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #141414;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
    flex-wrap: wrap;
}

/* Text */
.support-content h4 {
    color: #fff;
    margin: 0;
    font-size: 18px;
}

.support-content p {
    color: #aaa;
    margin: 5px 0 0;
    font-size: 15px;
}

/* Button */
.support-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #bd9132, #bd9132);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Icon */
.wa-icon {
    width: 18px;
    height: 18px;
}

/* Hover */
.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

/* Box */
.urgency-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff1a1a, #990000);
    padding: 18px 22px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
    flex-wrap: wrap;
}

/* Text */
.urgency-left h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.urgency-left p {
    margin: 4px 0 0;
    font-size: 15px;
}

/* Button */
.urgency-btn {
    background: #fff;
    color: #bd9132;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.urgency-btn:hover {
    background: #000;
    color: #fff;
}

/* Countdown Highlight */
#countdown {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Glass Card */
.glass-card {
    padding: 25px 15px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    color: #fff;

    transition: 0.3s;
}

/* Number */
.glass-card h2 {
    font-size: 34px;
    font-weight: 700;
    color: #bd9132;
}

/* Text */
.glass-card p {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 15px;
    color: #ccc;
}

/* Hover Glow */
.glass-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Section Background */
.cta-hero {
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

/* Glow Background Effect */
.cta-hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 0, 0.2);
    filter: blur(120px);
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
}

/* Heading */
.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

/* Subtext */
.cta-content p {
    color: #bbb;
    font-size: 16px;
    margin-bottom: 25px;
}

/* Main Button */
.cta-main-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff2d2d, #bd9132);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

/* Hover */
.cta-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
}

/* Bottom Text */
.cta-sub {
    margin-top: 12px;
    color: #ff4d4d;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    background: #000;
    padding: 40px 0;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo */
.footer-logo img {
    width: 300px;
    margin-bottom: 10px;
}

/* URL & Contact */
.footer-url,
.footer-contact {
    margin: 5px 0;
    font-size: 15px;
}

/* Warning */
.footer-warning {
    color: #ff4d4d;
    font-size: 15px;
    margin-bottom: 5px;
}

/* Age */
.footer-age {
    font-size: 13px;
    color: #aaa;
}

/* Copyright */
.footer-copy {
    font-size: 13px;
    color: #888;
}

/* Hover subtle effect */
.site-footer p:hover {
    color: #fff;
    transition: 0.3s;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 5px 10px;
    background-color: #25D366;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #ab7f27;
}

.wa-icon {
    width: 28px;
    height: 28px;
}
.card-dark {
    background: #161616;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
}
.card-dark h6{
    color: #fff;
}
.card-dark:hover {
    transform: translateY(-5px);
    border-color: #ab7f27;
}

.highlight {
    color: #ab7f27;
    font-weight: bold;
}

.btn-custom {
    background: #ab7f27;
    color: #000;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-custom:hover {
    background: #ab7f27;
}

.section-title {
    font-size: 22px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .navbar-brand img, .custom-logo-link img {
    width: 270px;
}
.navbar-brand{
    margin-bottom: 0;
}
.custom-navbar{
    padding-top: 5px;
}
.navbar-nav{
    margin: 25px 0;
}
.nav-item{
    text-align: center;
}
.button_top{
    width: 100%;
    text-align: center;
}
.carousel-indicators{
    display: none;
}
.glass-card h2 {
    font-size: 24px;}
    .glass-card p {
    font-size: 14px;}
    h2, .cta-btn {
    font-size: 18px !important;}
    .mobile_center p{
        text-align: justify;
    }
    h4{
        font-size: 17px;
    }
    .navbar-brand{
        margin: 0;
    }
}