
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;

    color: white;

    background:
        linear-gradient(135deg, #020617 0%, #0f172a 40%, #111827 100%);

    position: relative;
}

/* BACKGROUND BLURS */
.background-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.blur-1 {
    width: 400px;
    height: 400px;

    background: rgba(245,158,11,0.18);

    top: -120px;
    left: -100px;
}

.blur-2 {
    width: 450px;
    height: 450px;

    background: rgba(59,130,246,0.16);

    bottom: -180px;
    right: -100px;
}

/* HERO CARD */
.hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 32px;

    padding: 60px 35px;

    backdrop-filter: blur(18px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

/* LOGO */
.logo-box {
    width: 110px;
    height: 110px;

    border-radius: 30px;

    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 50px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.45),
        0 0 35px rgba(245,158,11,0.12);
}

/* BADGE */
.badge-date {
    background: linear-gradient(90deg, #f59e0b, #facc15);

    color: #111827;

    padding: 10px 24px;
    border-radius: 999px;

    font-weight: 800;
    font-size: 15px;

    box-shadow: 0 10px 30px rgba(245,158,11,0.25);
}

/* TITLE */
.main-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.7;
}

.hero-text {
    max-width: 900px;

    font-size: 18px;
    line-height: 2.2;

    color: rgba(255,255,255,0.85);
}

/* INFO CARDS */
.info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    padding: 30px;

    backdrop-filter: blur(15px);

    transition: 0.35s ease;

    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.info-card:hover {
    transform: translateY(-6px);

    border-color: rgba(250,204,21,0.25);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.5),
        0 0 35px rgba(250,204,21,0.08);
}

.icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.info-card p {
    color: rgba(255,255,255,0.75);
    line-height: 2;
}

/* FORM SECTION */
.form-section {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 30px;

    padding: 35px;

    backdrop-filter: blur(18px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-desc {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
}

/* IFRAME */
.iframe-wrapper {
    overflow: hidden;

    border-radius: 24px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    padding: 12px;
}

.iframe-wrapper iframe {
    width: 100%;
    min-height: 1500px;

    border: none;
    border-radius: 18px;

    background: white;
}

/* FOOTER */
.footer {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 2;
}

/* TABLET */
@media (max-width: 992px) {

    .main-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 16px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .hero-card {
        padding: 35px 20px;
        border-radius: 24px;
    }

    .main-title {
        font-size: 28px;
        line-height: 1.9;
    }

    .hero-text {
        font-size: 15px;
        line-height: 2.1;
    }

    .logo-box {
        width: 85px;
        height: 85px;

        font-size: 38px;
        border-radius: 24px;
    }

    .form-section {
        padding: 20px;
        border-radius: 24px;
    }

    .section-title {
        font-size: 26px;
    }

    .iframe-wrapper iframe {
        min-height: 1750px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .main-title {
        font-size: 23px;
    }

    .hero-text {
        font-size: 14px;
    }

    .badge-date {
        font-size: 13px;
    }

    .info-card {
        padding: 24px;
    }

    .section-title {
        font-size: 22px;
    }
}


/* HERO GLOW EFFECT */
.hero-card::before {
    content: '';

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        radial-gradient(circle at top left,
        rgba(250,204,21,0.08),
        transparent 40%),

        radial-gradient(circle at bottom right,
        rgba(59,130,246,0.08),
        transparent 40%);

    pointer-events: none;
}


