/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h2 {
    color: #ffd700;
    font-weight: 600;
}

/* Countdown Timer */
.countdown-timer {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 15px !important;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.timer-display {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-wrap: wrap;
}

.timer-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 10px;
}

.timer-block {
    text-align: center;
    min-width: 80px;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 5px;
    color: #fff !important;
    position: relative;
    z-index: 11;
}

.timer-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Timer */
@media (max-width: 768px) {
    .timer-display {
        gap: 10px;
    }

    .timer-row {
        gap: 15px;
        flex-wrap: wrap;
    }

    .timer-block {
        min-width: 70px;
    }

    .timer-number {
        font-size: 1.8rem;
        padding: 8px;
    }

    .timer-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .timer-row {
        gap: 10px;
    }

    .timer-block {
        min-width: 60px;
    }

    .timer-number {
        font-size: 1.5rem;
        padding: 6px;
    }

    .timer-label {
        font-size: 0.7rem;
    }
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-outline-light {
    border: 2px solid #fff;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: #764ba2;
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges .badge {
    font-size: 0.9rem;
    padding: 10px 15px;
    margin: 5px;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(45deg, #e6a800, #d4a017) !important;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.urgency-bar i {
    margin-right: 8px;
    color: #d32f2f;
}

/* Urgency Bar Animation */
.urgency-slider {
    display: flex;
    animation: scrollText 15s linear infinite;
    white-space: nowrap;
}

.urgency-slide {
    display: inline-flex;
    align-items: center;
    padding: 0 50px;
    white-space: nowrap;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 15px;
    animation: oscillate 1s ease-in-out infinite !important;
}

/* Specific targeting for the three cards */
section.py-5 .card {
    animation: oscillate 2.5s ease-in-out infinite !important;
}

@keyframes oscillate {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card i {
    margin-bottom: 15px;
}

/* Register Banner */
.register-banner {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 15px !important;
}

/* Course Features Centering */
section.bg-light .d-flex {
    justify-content: center;
}

/* Ideal Points Centering */
.ideal-points div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.ideal-points {
    max-width: 400px;
    margin: 0 auto;
}

/* Learning Kit */
.learning-kit {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    border-radius: 15px;
}

.learning-kit i {
    margin-right: 10px;
}

/* Assessment Points */
.assessment-points .d-flex {
    padding: 15px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.assessment-points .d-flex:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateX(5px);
}

/* Scholarship Section */
.scholarship-section {
    background: linear-gradient(135deg, #ffc107, #ff9800) !important;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    border-radius: 15px;
}

/* Table */
.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table td {
    padding: 15px;
    vertical-align: middle;
}

.table td:first-child {
    font-weight: 600;
}

/* Alternate row highlighting with gray and white */
.table tbody tr:nth-child(odd) td {
    background: #f8f9fa;
}

.table tbody tr:nth-child(even) td {
    background: #ffffff;
}

/* Ideal Points */
.ideal-points div {
    padding: 15px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ideal-points div:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateX(5px);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    border-radius: 15px;
}

/* Final Urgency Section */
.bg-danger {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    background: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.accordion-item {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    border-radius: 10px;
}

/* Sticky WhatsApp Button */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.sticky-whatsapp {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* NEET Crash Course Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
        min-height: auto;
    }

    .timer-display {
        gap: 10px;
    }

    .timer-block {
        min-width: 60px;
    }

    .timer-number {
        font-size: 1.8rem;
    }

    .cta-buttons {
        margin-top: 1.5rem;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .sticky-buttons {
        bottom: 20px;
        right: 20px;
    }

    .sticky-whatsapp {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
}

/* NEET Crash Course Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* NEET Crash Course Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: #007bff !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

/* NEET Crash Course Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff !important;
}

/* NEET Crash Course Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

/* ===================================
   FLOATING REGISTRATION SECTION
   =================================== */

/* Simple Header Section */
.simple-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.simple-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 12px;
}

.header-title {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin: 0;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    text-decoration: none;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    border-radius: 8px;
    color: white;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    text-decoration: none;
    color: white;
}

.header-phone i {
    color: #ffffff;
    font-size: 18px;
}

/* Program Details Section */
.program-details-section {
    padding: 0;
    margin: 0;
    width: 100%;
    background: transparent;
}

.program-details-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.program-details-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

/* Simple Header Responsive Design */
@media (max-width: 768px) {
    .simple-header {
        padding: 10px 0;
    }

    .simple-header-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
    }

    .header-title {
        font-size: 20px;
    }

    .logo-placeholder {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }

    .header-phone {
        font-size: 14px;
    }

    .header-phone i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .simple-header-container {
        padding: 0 10px;
    }

    .header-title {
        font-size: 18px;
    }

    .logo-placeholder {
        width: 30px;
        height: 30px;
        font-size: 9px;
    }

    .header-phone {
        font-size: 13px;
    }

    .header-phone i {
        font-size: 14px;
    }
}

/* ===================================
   STATIC REGISTRATION FORM
   =================================== */

.static-registration {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border: 2px solid #007bff;
    max-width: 600px;
    margin: 0 auto;
}

.static-registration .registration-title {
    color: #007bff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.static-registration .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: left !important;
    width: 100%;
    display: block;
}

.static-registration .form-control,
.static-registration .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.static-registration .form-control:focus,
.static-registration .form-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.static-registration .form-control::placeholder {
    color: #6c757d;
}

.static-registration .btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.static-registration .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Static Registration Responsive Design */
@media (max-width: 768px) {
    .static-registration {
        padding: 20px;
        margin: 0 15px;
    }

    .static-registration .registration-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .static-registration .form-control,
    .static-registration .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .static-registration .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .static-registration {
        padding: 15px;
        margin: 0 10px;
    }

    .static-registration .registration-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .static-registration .form-control,
    .static-registration .form-select {
        padding: 8px 10px;
        font-size: 13px;
    }

    .static-registration .btn-primary {
        padding: 8px 15px;
        font-size: 13px;
    }
}

.floating-registration {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1001;
    width: 320px;
    max-width: 90vw;
}

.registration-form {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 25px;
    position: relative;
    border: 2px solid #007bff;
}

.registration-title {
    color: #007bff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.registration-form .form-group {
    margin-bottom: 15px;
}

.registration-form label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 14px;
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.registration-form input:focus,
.registration-form select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.registration-form input::placeholder {
    color: #6c757d;
}

.registration-submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.registration-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.registration-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 12px;
}

.registration-close:hover {
    background: #c82333;
    transform: rotate(90deg);
}

/* Floating Registration Responsive Design */
@media (max-width: 768px) {
    .floating-registration {
        position: fixed;
        top: auto;
        bottom: 100px;
        right: 10px;
        left: 10px;
        transform: none;
        width: auto;
        max-width: none;
    }

    .registration-form {
        padding: 20px;
    }

    .registration-title {
        font-size: 16px;
    }

    .registration-form input,
    .registration-form select {
        padding: 10px 12px;
        font-size: 13px;
    }

    .registration-submit-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .floating-registration {
        bottom: 80px;
        right: 5px;
        left: 5px;
    }

    .registration-form {
        padding: 15px;
        border-radius: 10px;
    }

    .registration-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .registration-form .form-group {
        margin-bottom: 12px;
    }

    .registration-form input,
    .registration-form select {
        padding: 8px 10px;
        font-size: 12px;
    }

    .registration-submit-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Learning Kit Tiles */
.learning-tile {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.learning-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.learning-tile i {
    color: #007bff;
    transition: all 0.3s ease;
}

.learning-tile:hover i {
    color: #0056b3;
    transform: scale(1.1);
}

.learning-tile h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

/* Responsive Design for Learning Tiles */
@media (max-width: 768px) {
    .learning-tile {
        min-height: 150px;
        padding: 15px;
    }

    .learning-tile i {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .learning-tile {
        min-height: 130px;
        padding: 12px;
    }

    .learning-tile i {
        font-size: 1.5rem !important;
    }

    .learning-tile h5 {
        font-size: 0.9rem;
    }
}

.promo-section {
    padding: 60px 20px;
    background: #f7f9fc;
}

.promo-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    text-decoration: none;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    display: block;
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.promo-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.promo-content p {
    color: #555;
    margin-bottom: 15px;
}

.promo-content span {
    color: #2563eb;
    font-weight: 600;
}

/* Mobile */
@media(max-width:768px) {
    .promo-container {
        grid-template-columns: 1fr;
    }
}

.neet-programs {
    padding: 60px 20px;
    background: #f7f9fc;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.program-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #222;
    transition: .3s;
}

.program-card:hover {
    transform: translateY(-4px);
}

.program-card h3 {
    margin-bottom: 20px;
    color: #2563eb;
}

.feature {
    background: #f7f9fc;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 15px;
}

.cta {
    margin-top: 15px;
    font-weight: 600;
    color: #2563eb;
}

/* Mobile */
@media(max-width:768px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

.cta-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.cta-btn {
    background: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    /* rectangle instead of capsule */
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.program-card:hover .cta-btn {
    background: #1d4ed8;
}

.syllabus-download-section {
    background: #ffffff;
    padding: 60px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.syllabus-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.syllabus-desc {
    color: #555;
    margin-bottom: 8px;
}

.syllabus-btn {
    display: inline-block;
    margin-top: 20px;
    background: #2563eb;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.syllabus-btn:hover {
    background: #1d4ed8;
    color: white;
}

.syllabus-download-section {
    background: linear-gradient(135deg, #e11d2e, #c1121f);
    padding: 60px 20px;
    color: white;
}

.syllabus-download-section h3,
.syllabus-download-section p,
.syllabus-download-section span,
.syllabus-download-section a:not(.syllabus-btn) {
    color: white !important;
}

.download-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    position: relative;
    text-align: center;
}

.popup-box input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.popup-box button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.popup-box button:hover {
    background: #1d4ed8;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}