@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Rakkas&display=swap');

/* ================= CURSOR FIX ================= */
html, body, * {
    cursor: url('image/imgi_1_row_cropped.png'), auto !important;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    min-height: 100vh; 
    width: 100%;
    background: #fdfbfb;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    position: relative;
}

/* ================= BACKGROUND BLOBS ================= */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    animation: floatShape 10s infinite alternate ease-in-out;
    pointer-events: none; 
}

.bg-shape-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #ff9a9e, #ffc3a0);
    top: -10%;
    left: -10%;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #D32F2F, #ff6b6b);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

@keyframes floatShape {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(30px, 40px) scale(1.1); }
}

/* ================= NAVBAR ================= */
nav {
    width: 100%;
    padding: 20px 50px;
    flex-shrink: 0;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    width: fit-content;
}

.logo-icon {
    height: 110px; 
    width: auto;
    z-index: 2;
    transition: transform 0.4s ease;
}

.logo-text-img {
    height: 55px; 
    max-width: 0;
    opacity: 0;
    transform: translateX(-50px);
    margin-left: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-container:hover .logo-text-img {
    max-width: 300px;
    opacity: 1;
    transform: translateX(0);
    margin-left: 15px;
}

.logo-container:hover .logo-icon {
    transform: scale(1.05);
}

/* ================= MAIN CONTENT ================= */
.container {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    z-index: 5;
}

/* ================= HERO TAGLINE ================= */
.hero-tagline {
    font-family: 'Rakkas', serif; 
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #222;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
}

.red-letter { color: #D32F2F; }

/* ================= GLASS CARD ================= */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px 50px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 45px rgba(199, 44, 44, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-wrapper {
    display: inline-block;
    border-bottom: 3px solid #D32F2F;
    margin-bottom: 15px;
}

.card-company-title {
    font-family: 'Rakkas', serif; 
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #111;
}

.red-i-title { color: #D32F2F; }

/* ✅ UPDATED: Solid Black Color */
h1 {
    color: #000000; /* Black */
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 0 0 40px 0;
    font-weight: 700;
}

/* ================= QUOTE (NEON GLOW) ================= */
.status-text {
    font-family: 'Poppins', sans-serif !important;
    font-style: normal; 
    font-size: 1.5rem; 
    margin-bottom: 25px;
    color: #D32F2F; 
    font-weight: 700; 
    letter-spacing: 0.5px;
    text-shadow: 0px 0px 20px rgba(211, 47, 47, 0.5);
    animation: textPulse 1.5s infinite alternate;
}

@keyframes textPulse {
    from { 
        transform: scale(1); 
        text-shadow: 0px 0px 15px rgba(211, 47, 47, 0.4);
    }
    to { 
        transform: scale(1.05); 
        text-shadow: 0px 0px 25px rgba(211, 47, 47, 0.7); 
    }
}

/* ================= PROGRESS BAR ================= */
.progress-container {
    background: #eee;
    height: 8px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-image: linear-gradient(
        45deg, 
        #D32F2F 25%, 
        #ff6b6b 25%, 
        #ff6b6b 50%, 
        #D32F2F 50%, 
        #D32F2F 75%, 
        #ff6b6b 75%, 
        #ff6b6b 100%
    );
    background-size: 30px 30px; 
    border-radius: 10px;
    transition: width 1s linear;
    animation: moveStripes 1s linear infinite;
}

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 30px 0; }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    margin-bottom: 25px;
}

/* ================= BUTTON ================= */
.notify-btn {
    width: 100%;
    padding: 16px 0;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
    color: #D32F2F;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.15);
}

.notify-btn:hover {
    background: #D32F2F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

/* ================= SOCIAL ================= */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.social-icons a:hover {
    background: #D32F2F;
    color: #fff;
    transform: translateY(-3px);
}

.footer-copy {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #aaa;
}

 /* Remove default Bootstrap button focus outline */
        .btn-check:focus + .btn, .btn:focus { box-shadow: none; }
        
        /* Glassmorphism style for the Modal Popup */
        .modal-content {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }
        .modal-header { border-bottom: none; }
        .modal-footer { border-top: none; }
        
        /* Red outline on focus to match your brand */
        .form-control:focus {
            border-color: #D32F2F;
            box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.25);
        }

/* ================= RESPONSIVE FIXES ================= */
@media screen and (max-height: 850px) {
    .logo-icon { height: 80px; } 
    .logo-text-img { height: 40px; }
    .hero-tagline { font-size: 1.6rem; margin-bottom: 15px; }
    .glass-card { padding: 25px 35px; max-width: 500px; }
    h1 { font-size: 2.2rem; margin: 10px 0; }
    .status-text { margin-bottom: 15px; }
    .notify-btn { padding: 12px 0; margin-bottom: 15px; }
}

@media screen and (max-height: 650px) {
    body { overflow-y: auto; }
    nav { padding: 10px 20px; }
    .logo-icon { height: 60px; }
    .hero-tagline { font-size: 1.2rem; margin-bottom: 10px; }
    .glass-card { padding: 15px 25px; margin: 20px 0; }
    h1 { font-size: 1.8rem; }
    .notify-btn { padding: 10px 0; }
}

@media (max-width: 768px) {
    nav { padding: 15px 20px; }
    .logo-icon { height: 70px; }
    .logo-container:hover .logo-text-img { max-width: 150px; }
    .hero-tagline { font-size: 1.4rem; padding: 0 10px; }
    .glass-card { width: 92%; padding: 25px 20px; }
    h1 { font-size: 2rem; }
}