* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Futura', sans-serif;
}

body {
    background: #f8f8f8;
}

/* Navbar */
.navbar {
    width: 100%;
    height: 90px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-img {
    height: 50px;
 
    width: auto;
    border-radius: 12px;
    
}

/* ✅ Text Logo */
.logo-text {
    background: black;
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    font-size: 14px;
}

.logo-icon {
    background: white;
    color: black;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.emoji {
    background: #e6e6e6;
    border-radius: 50%;
    padding: 6px;
    font-size: 18px;
    line-height: 1;
}

.login-btn {
    background: linear-gradient(90deg, #5d2cff, #2f6aff);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s;
}

.login-btn:hover {
    opacity: 0.9;
}

/* Profile Icon */
.profile-icon {
    font-size: 28px;
    cursor: pointer;
    color: #2f6aff;
    background: #f0f2ff;
    padding: 6px 10px;
    border-radius: 50%;
    transition: 0.3s;
}
.profile-icon:hover {
    background: #e0e5ff;
}

/* Sidebar Drawer */
.sidebar {
    position: fixed;
    top: 0;
    right: -320px; /* hidden by default */
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -3px 0 10px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    z-index: 2000;
    padding: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.sidebar.active {
    right: 0;
}
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}
.sidebar-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}
.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #555;
    transition: 0.2s;
}
.close-btn:hover {
    color: #2f6aff;
}
.sidebar-menu {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-menu a {
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s;
}
.sidebar-menu a:hover {
    background: #f0f2ff;
    color: #2f6aff;
}

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    display: none;
  }
  .overlay.active {
    display: block;
  }


.hero {
    margin-top: 70px;

    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }

    .logo {
        font-size: 12px;
        padding: 6px 10px;
    }

    .logo-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }

    .emoji {
        font-size: 16px;
        padding: 5px;
    }

    .login-btn {
        padding: 6px 18px;
        font-size: 13px;
    }
}

.featured-section {
    padding: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background-color: #F8F8F8;
    margin-top: -150px;
}

.featured-title {
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 15px;
    align-items: center;
    align-self: center;
}

.carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    justify-content: center;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 5px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.card-body h3 .red {
    color: red;
    font-weight: 800;
}

.countdown {
    background: #ffeaea;
    color: #ff3d3d;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price {
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

.credit {
    font-size: 12px;
    color: #666;
}

.plus-btn {
    background: linear-gradient(90deg, #5d2cff, #2f6aff);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #5d2cff, #2f6aff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    cursor: pointer;
}


@media(max-width: 768px) {

    .featured-section {
        margin-top: -100px;
    }

    .featured-title {
        font-size: 18px;
    }

    .card {
        flex: 0 0 80%;
    }
}

@media(max-width: 768px) {
    .carousel {
        justify-content: flex-start;
    }
}

.image-section {
    background-color: #F8F8F8;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 15px;
}

.image-container img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.button-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: none;
}

.button-row::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex: 0 0 auto;
    padding: 10px 24px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    color: #999;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #000;
}

.tab-btn:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}


/* --- Same Card CSS --- */
.product-section {
    display: none;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
   
}

/* .product-card {
    width: 100%;
    max-width: 400px;
    text-align: center;
} */

.product-card {
    width: 100%;
    max-width: 400px;
    text-align: center;
    border-radius: 30px;        
    overflow: hidden;          
    background: #fff;          
    margin: 0;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); 
}



.countdown-bar {
    background: red;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    /* Curve nichli side par */
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}



/* .countdown-timer {
    background: #ff3b6f;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 10px;
} */

.countdown-timer {
    background: #ff3b6f;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 12px;

    /* Curve bottom side */
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;

    position: relative;
    z-index: 2;
}



/* .ccountdown-timer {
    background: green;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 10px;
} */

.ccountdown-timer {
    background: #00e676;      
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 12px;
    margin: 0;                 
    border-radius: 30px 30px 0 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
}

.slider-dots {
    text-align: center;
    margin: 10px 0;
}

.slider-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}

.slider-dots .active {
    background: #000;
}

.product-details {
    padding: 20px;
    text-align: center;
}

.product-details h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.highlight {
    color: red;
    font-weight: 700;
}

.slider-container {
    border-radius: 20px;
    overflow: hidden;
}

.slider-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.buy-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.buy-btn {
    background: yellow;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 30px 0 0 30px;
    cursor: pointer;
    font-size: 16px;
}

.buy-btn small {
    display: block;
    font-size: 12px;
    font-weight: normal;
}

.ccart-btn {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    border: none;
    height: 70px;
    padding: 12px 20px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: bold;
}

.campaign {
    font-size: 12px;
    color: #555;
}






.cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00e676;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    color: #333;
    z-index: 1000;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    transform: scale(1.1);
    background: #f5f5f5;
}

.cart-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    padding: 4px 8px;
    min-width: 20px;
    text-align: center;
}








@media (min-width: 768px) {
    .product-section {
        width: 85%;
    }
}

@media (min-width: 1200px) {
    .product-section {
        width: 80%;
    }
}




/* --- Modal CSS --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(180deg, #ff004d, #ff00cc);
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.modal-content h1 {
    font-size: 28px;
    font-weight: 900;
}

.modal-content h2 {
    font-size: 24px;
    margin: 20px 0;
}

.sms-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.login-text {
    margin-top: 15px;
    font-size: 14px;
}

.login-text a {
    color: #fff;
    font-weight: bold;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}


.button-row-section {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically (optional) */
}

.button-row {
    display: flex;
    gap: 15px;
    /* space between buttons */
}

.tab-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    background: #007bff;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.tab-btn:hover {
    background: #0056b3;
}

.tab-btn.active {
    background: #28a745;
}



.featured-section {
    padding: 20px;
}

.featured-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.card {
    min-width: 220px;
    max-width: 220px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.sold-out {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 25px;
}

.card-body {
    padding: 12px;
}

.card-body h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
}

.card-body .code {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.card-body .draw-date {
    font-size: 14px;
    font-weight: bold;
    color: #4428ff;
    /* blue color same as screenshot */
}


.showcase-section {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.showcase-container {
    max-width: 1400px;

    width: 100%;
}

.showcase-img {
    width: 100%;
    height: auto;

    object-fit: cover;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}

.previous-winners-section {
    width: 100%;
    background: linear-gradient(to right, #ff0000, #ff00a8);

    padding: 20px 0;
    border-radius: 40px;
    text-align: center;
    margin: 20px 0;
}

.previous-winners-section h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.winner-section {
    padding: 20px;
}

.winner-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

.winner-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.winner-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
}

.winner-logo {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.winner-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.winner-content {
    text-align: center;
    padding: 20px;
}

.winner-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.winner-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.winner-name span {
    color: #3b3bbf;
    font-weight: 700;
}

.winner-details {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.winner-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #4a3aff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .winner-card {
        margin: 10px;
        max-width: 100%;
    }

    .winner-title {
        font-size: 20px;
    }

    .winner-name {
        font-size: 15px;
    }

    .winner-details {
        font-size: 13px;
    }
}


.modesh-store {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.modesh-heading {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: left;
}

.modesh-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
}

.modesh-card {
    flex: 0 0 auto;
    width: 220px;
    background: #f5f5f5;
    border-radius: 16px;
    scroll-snap-align: center;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.modesh-card:hover {
    transform: translateY(-5px);
}

.modesh-image img {
    width: 100%;
    border-radius: 12px;
}

.modesh-title {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}


.dream-dubai-download {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

.download-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* App Store Buttons */
.app-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    /* ✅ vertical alignment bhi center */
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.app-buttons img {
    height: auto;
    width: 600px;
    /* default desktop */
    max-width: 100%;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    /* ✅ vertical center */
    gap: 18px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    text-align: center;
}

.social-icons img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.contact-buttons a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    background: #f5f5f5;
    transition: 0.3s;
}

.contact-buttons a:hover {
    background: #e0e0e0;
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
    .app-buttons img {
        width: 150px;
    }

    .social-icons img {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 768px) {
    .app-buttons {
        gap: 10px;
    }

    .app-buttons img {
        width: 130px;
    }

    .social-icons {
        justify-content: center;
        /* ✅ always center */
    }

    .social-icons img {
        height: 45px;
        width: 45px;
    }

    .contact-buttons a {
        font-size: 13px;
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .download-title {
        font-size: 16px;
    }

    .app-buttons {
        justify-content: center;
        /* ✅ center in mobile */
    }

    .app-buttons img {
        width: 100%;
        max-width: 200px;
    }

    .social-icons {
        justify-content: center;
        /* ✅ force center */
        gap: 12px;
    }

    .social-icons img {
        height: 40px;
        width: 40px;
    }

    .contact-buttons {
        justify-content: center;
        /* ✅ buttons bhi beech me */
        gap: 8px;
    }

    .contact-buttons a {
        font-size: 12px;
        padding: 7px 12px;
    }
}

.dd-footer {

    text-align: center;
    padding: 30px 15px;
    font-family: 'Futura Book', sans-serif;
    width: 100%;
}

/* Logo Full Width Center */
.dd-footer-logo {
    width: 100%;
    margin-bottom: 25px;
}

.dd-footer-logo img {
    max-width: 220px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* Links Flex Center */
.dd-footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    /* links ke beech ka gap */
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.dd-footer-top a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.dd-divider {
    width: 1px;
    height: 16px;
    background: #aaa;
}

/* Bottom Text */
.dd-footer-bottom p {
    margin: 6px 0;
    font-size: 14px;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .dd-footer-top {
        flex-direction: column;
        gap: 15px;
    }

    .dd-divider {
        display: none;
    }

    .dd-footer-logo img {
        max-width: 180px;
    }
}


/* login page css */

/* Main container */
.login-section {
    max-width: 380px;
    margin: 40px auto;
    margin-top: 120px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Title */
.login-title {
    text-align: left;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* WhatsApp Button */
.login-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-whatsapp i {
    font-size: 20px;
}

/* Divider */
.login-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    font-size: 14px;
    color: #555;
}

.login-divider span {
    flex: 1;
    height: 1px;
    background: #ccc;
    margin: 0 10px;
}

/* Label */
.login-label {
    display: block;
    text-align: left;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Input group */
.login-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.login-country,
.login-mobile {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
}

/* Send SMS Button */
.login-sms {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: #ddd;
    color: #999;
    font-weight: bold;
    cursor: not-allowed;
}



/* logincode page css */

.otp-section {
    max-width: 380px;
    margin: 40px auto;
    margin-top: 120px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Title */
.otp-title {
    text-align: left;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Subtext */
.otp-subtext {
    font-size: 14px;
    color: #444;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* OTP Input */
.otp-input {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Verify Button */
.otp-verify {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    background: #ddd;
    color: #999;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 15px;
}

/* Resend text */
.otp-resend {
    font-size: 13px;
    color: #3b0099;
    font-weight: 500;
}




.toast-message {
    position: fixed;
    top: 20px;
    right: -300px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s ease;
    z-index: 9999;
}
.toast-message.show {
    right: 20px;
}
