* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: url('../images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

/* ================= HEADER (FINAL FIX) ================= */

.cr-header {
    width: 100%;
    font-family: Arial, sans-serif;
}

/* COMMON CONTAINER */
.cr-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---------- TOP HEADER ---------- */
.cr-header-top {
    background: #0A1F44;
    padding: 8px 0;
}

.cr-logo img {
    height: 42px;          /* LOGO SIZE FIXED */
    width: auto;
    display: block;
}

.cr-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
}

.cr-socials img {
    height: 18px;
    width: auto;
    cursor: pointer;
}

/* ---------- BOTTOM HEADER ---------- */
.cr-header-bottom {
    background: #102E5D;
    padding: 10px 0;
}

/* MENU */
.cr-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cr-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* AUTH AREA */
.cr-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cr-user {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

/* BUTTONS */
.cr-btn {
    background: #00B4D8;
    color: #0A1F44;
    padding: 7px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.cr-btn-outline {
    background: transparent;
    border: 2px solid #00B4D8;
    color: #ffffff;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

    .cr-container {
        width: 95%;
    }

    .cr-menu {
        gap: 12px;
    }

    .cr-menu a {
        font-size: 13px;
    }

    .cr-logo img {
        height: 36px;
    }

    .cr-socials span {
        display: none;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 420px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 5%;
}

.section.dark {
    background: rgba(0,0,0,0.65);
}

.section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    color: #00B4D8;
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.card.large {
    font-size: 22px;
    padding: 40px;
}

.card.video {
    background: #0A1F44;
    color: #fff;
}

/* ===== GLIMPS ADVANCED ===== */
.glimps-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    overflow: hidden;
}

.glimps-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    user-select: none;
}

.glimps-column img {
    width: 100px;  /* choti size */
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

/* ANIMATIONS */
.move-up {
    animation: moveUp 6s ease-in-out infinite alternate;
}

.move-down {
    animation: moveDown 6s ease-in-out infinite alternate;
}

@keyframes moveUp {
    from { transform: translateY(0); }
    to { transform: translateY(-25px); }
}

@keyframes moveDown {
    from { transform: translateY(0); }
    to { transform: translateY(25px); }
}

/* MOBILE */
@media (max-width: 768px) {
    .glimps-grid {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .glimps-column img {
        width: 80px;
        height: 60px;
    }
}


/* ===== SPONSORS (LOGO VERSION) ===== */
.sponsors {
    text-align: center;
}

.sponsor-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.sponsor img {
    width: 120px;
    height: auto;
    object-fit: contain;
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .nav-left {
        display: none;
    }

    .glimps {
        flex-direction: column;
        align-items: center;
    }

    .glimps img {
        width: 90%;
    }
}

/* ================= SIGNUP PAGE ================= */

.signup-wrapper {
    min-height: 100vh;
    background: url('../images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* FULLY TRANSPARENT CONTAINER */
.signup-card {
    width: 100%;
    max-width: 420px;
    background: transparent;
    padding: 30px;
}

/* HEADING */
.signup-header {
    text-align: center;
    margin-bottom: 30px;
}

.signup-header h1 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.signup-header p {
    font-size: 14px;
    color: #e0e0e0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* FORM */
.signup-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.signup-form label {
    font-size: 13px;
    margin-bottom: 6px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* INPUTS – TRANSPARENT + WHITE TEXT */
.signup-form input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.8);
    background: transparent;
    color: #ffffff;
    font-size: 14px;
}

.signup-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.signup-form input:focus {
    outline: none;
    border-color: #00B4D8;
}

/* BUTTON */
.signup-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    background: #00B4D8;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    color: #0A1F44;
    cursor: pointer;
}

.signup-btn:hover {
    background: #0096b3;
}

/* MOBILE */
@media (max-width: 768px) {
    .signup-card {
        padding: 20px;
    }

    .signup-header h1 {
        font-size: 24px;
    }
}
/* SIGNUP LOGO */
.signup-logo {
    height: 48px;              /* PERFECT SIZE */
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ===== POPUP MESSAGE ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 320px;
    width: 90%;
}

.popup-box p {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}

.popup-box button {
    padding: 10px 25px;
    background: #00B4D8;
    border: none;
    border-radius: 6px;
    color: #0A1F44;
    font-weight: bold;
    cursor: pointer;
}

/* ===== FOOTER FIX ===== */
.footer {
    padding: 60px 20px 0;
}

.footer-glass {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px 20px 0 0;
    padding: 50px 30px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.footer-col {
    color: rgba(255,255,255,0.85);
}

.footer-title {
    color: #00B4D8;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #00B4D8;
}

.footer-social {
    display: flex;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    border-radius: 50%;
    background: #00B4D8;
    color: #0A1F44;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ===== HEADER SOCIAL ICON FIX (FONT AWESOME) ===== */
.cr-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent; /* header me clean look */
    text-decoration: none;
}

.cr-socials a i {
    color: #ffffff;          /* ICON WHITE */
    font-size: 14px;
}

.cr-socials a:hover i {
    opacity: 0.85;
}