@import url('https://fonts.googleapis.com/css2?family=Forum&family=Italiana&family=Jost:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap');

/* =========================
   Base Styles
========================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Jost", sans-serif;
    background-color: #ffffff;
    color: #5f5e56;
    line-height: 1.5;
}

/* =========================
   Header
========================= */

.app-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.logo img {
    height: 80px;
    width: auto;
}

/* Language Toggle */

.language-toggle {
    display: flex;
    border: 1px solid #979793;
    border-radius: 20px;
    overflow: hidden;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    color: #5f5e56;
    cursor: pointer;
}

.lang-btn.active {
    background-color: #c50722;
    color: #ffffff;
}

/* =========================
   Welcome Section
========================= */

.welcome-section {
    padding: 20px 16px;
    text-align: center;
}

.welcome-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.welcome-card h1 {
    font-size: 30px;
    font-weight: 600;
    color: #c50722;
    margin-bottom: 8px;
}

.welcome-card p {
    font-size: 16px;
    color: #5f5e56;
}

/* =========================
   Contact Section
========================= */

.contact-section {
    padding: 20px 16px;
    display: flex;
    justify-content: center;
}

.contact-card {
     background-color: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.contact-card h2 {
    font-size: 18px;
    font-weight: 600;
    color: #c50722;
    margin-bottom: 16px;
}

/* Contact Items */

.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #5f5e56;
}

.contact-item i {
    color: #c50722;
    margin-right: 8px;
    font-size: 16px;;
}

/* Social Media Icons */

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.social {
     width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
}

/* Platform Colors */

.social.linkedin {
    background-color: #0A66C2;
}

.social.youtube {
    background-color: #FF0000;
}

.social.instagram {
    background-color: #E1306C;
}

/* =========================
   Basic Details Section
========================= */

.details-section {
    padding: 20px 16px;
    display: flex;
    justify-content: center;
}

.details-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.details-card h2 {
    font-size: 20px;
    font-weight: 600;
    color: #c50722;
    margin-bottom: 6px;
}

.details-subtext {
    font-size: 14px;
    color: #5f5e56;
    margin-bottom: 16px;
}

/* Form */

.details-form {
    text-align: left;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #5f5e56;
    margin-bottom: 4px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #979793;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.form-group input:focus {
    border-color: #c50722;
}

/* Privacy Text */

.privacy-text {
    font-size: 13px;
    color: #979793;
    margin-top: 10px;
    text-align: center;
}

/* =========================
   Start Self-Assessment Button
========================= */

.start-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background-color: #c50722;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

.start-btn:active {
    background-color: #b21128;
}

/* =========================
   Assessment Section
========================= */

.assessment-section {
    padding: 20px 16px;
    display: none; /* IMPORTANT: Hidden initially */
    justify-content: center;
}

.assessment-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Headings */

.assessment-card h2 {
    font-size: 20px;
    font-weight: 600;
    color: #c50722;
    margin-bottom: 6px;
    text-align: center;
}

.assessment-subtext {
    font-size: 15px;
    color: #5f5e56;
    margin-bottom: 16px;
    text-align: center;
}

/* Question Block */

.question-block {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
}

.question-text {
    font-size: 16px;
    font-weight: 500;
    color: #5f5e56;
    margin-bottom: 10px;
}

/* Options */

.option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 15px;
    cursor: pointer;
}

.option input {
    margin-right: 8px;
    accent-color: #c50722;
    margin-top: 2px;
}

/* Submit Button */

.submit-assessment-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background-color: #c50722;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

.submit-assessment-btn:active {
    background-color: #b21128;
}

.score-box {
    margin-top: 20px;
    padding: 16px;
    background: #f4f4f4;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    color: #5f5e56;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}