/* Import Font for Professional Look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

/* Apply Global Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth; /* Enables smooth scrolling */
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #1E1E1E;
    color: #ffffff;
    padding-top: 6vh;
    overflow-x: hidden;
}


/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111;
    padding: 1vh 3vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    height: 10vh;
}


/* =========================== */
/* 🔹 JOB OVERVIEW SECTION */
/* =========================== */

.job-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.job-info {
    flex: 1;
    text-align: left;
}

.job-info h2 {
    font-size: 2.2rem;
    font-weight: bold;
}

.job-info p {
    font-size: 1.2rem;
    margin: 8px 0;
}

.job-logo {
    flex: 0.3;
    text-align: right;
}

.company-logo {
    max-width: 150px;
    height: auto;
}

/* =========================== */
/* 🔹 SECTION STYLES */
/* =========================== */

section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* 🔹 Section Headings */
h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

/* =========================== */
/* 🔹 CHALLENGES & SOLUTIONS */
/* =========================== */

.challenges ul {
    list-style: none;
    padding: 0;
}

.challenges ul li {
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.challenges ul li strong {
    color: #f8f8f8;
}

.challenges ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0e7"; /* Unicode for FontAwesome bolt icon */
    color: white; /* Now the bolt is white */
    font-size: 1.3rem;
    margin-right: 10px;
}


/* =========================== */
/* 🔹 TECHNICAL CONTRIBUTIONS */
/* =========================== */

.technical-contributions ul {
    list-style: none;
    padding: 0;
}

.technical-contributions ul li {
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ✅ Custom Icon for Technical Contributions */
.technical-contributions ul li::before {
    content: "✔";
    color: #00ff99;
    font-size: 1.3rem;
    margin-right: 10px;
}

/* ✅ Custom Icon for Key Contributions (Business Positions) */
.sales-contributions ul {
    list-style: none;
    padding: 0;
}

.sales-contributions ul li {
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ✅ Add Green Checkmark Before Key Contributions */
.sales-contributions ul li::before {
    content: "✔"; /* Unicode for checkmark */
    color: #00ff99; /* Same green color as Technical Contributions */
    font-size: 1.3rem;
    margin-right: 10px;
}


/* =========================== */
/* 🔹 SKILLS & TECHNOLOGIES */
/* =========================== */

.skills p {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    padding: 10px 0;
}

/* ✅ Style Key Skills */
.skills p strong {
    color: #ffffff;
}

/* =========================== */
/* 🔹 LINKEDIN BUTTON */
/* =========================== */

.linkedin {
    text-align: center;
    margin-top: 40px;
}

.linkedin-button {
    display: inline-block;
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.linkedin-button:hover {
    background: #005f8d;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 119, 181, 1);
}

/* =========================== */
/* 🔹 BACK BUTTON */
/* =========================== */

.back-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.875);
    color: #000000;
}

/* =========================== */
/* 🔹 RESPONSIVE DESIGN */
/* =========================== */

@media (max-width: 1024px) {
    .job-summary {
        flex-direction: column;
        text-align: center;
    }

    .job-logo {
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem;
    }

    .job-info p,
    .challenges ul li,
    .technical-contributions ul li {
        font-size: 1rem;
    }

    .skills p {
        font-size: 1rem;
    }

    .linkedin-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .back-link {
        font-size: 1rem;
        padding: 10px 18px;
    }
}


/* xs */
@media (max-width: 475px) {
    .container {
        width: 100%;
        padding: 0 10px; /* Adjusted padding for better space usage */
    }

    /* Job Summary */
    .job-summary {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .job-info h2 {
        font-size: 1.6rem; /* Adjusted for readability */
    }

    .job-info p {
        font-size: 1rem;
    }

    .job-logo {
        text-align: center;
        margin-top: 15px;
    }

    .company-logo {
        max-width: 120px; /* Smaller size for compact screens */
    }

    /* Section */
    section {
        padding: 20px;
        margin: 20px auto;
    }

    /* Section Headings */
    h2 {
        font-size: 1.4rem;
        padding-bottom: 3px;
    }

    /* Challenges & Solutions */
    .challenges ul li,
    .technical-contributions ul li,
    .sales-contributions ul li {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    /* Skills & Technologies */
    .skills p {
        font-size: 1rem;
        padding: 5px 0;
    }

    /* LinkedIn Button */
    .linkedin-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    /* Back Button */
    .back-link {
        font-size: 0.9rem;
        padding: 8px 14px;
    }

  
}

/* sm */
@media (max-width: 640px) {
    .container {
        max-width: 475px;
        padding: 0 15px; /* Adjusted padding for better balance */
    }

    /* Job Summary */
    .job-summary {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .job-info h2 {
        font-size: 1.8rem; /* Optimized for small screens */
    }

    .job-info p {
        font-size: 1.1rem;
    }

    .job-logo {
        text-align: center;
        margin-top: 18px;
    }

    .company-logo {
        max-width: 130px; /* Slightly smaller for better fit */
    }

    /* Section */
    section {
        padding: 25px;
        margin: 25px auto;
    }

    /* Section Headings */
    h2 {
        font-size: 1.6rem;
        padding-bottom: 4px;
    }

    /* Challenges & Solutions */
    .challenges ul li,
    .technical-contributions ul li,
    .sales-contributions ul li {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    /* Skills & Technologies */
    .skills p {
        font-size: 1.1rem;
        padding: 6px 0;
    }

    /* LinkedIn Button */
    .linkedin-button {
        font-size: 1rem;
        padding: 10px 18px;
    }

    /* Back Button */
    .back-link {
        font-size: 1rem;
        padding: 10px 16px;
    }

}

/* md */
@media (max-width: 768px) {
    .container {
        max-width: 640px;
        padding: 0 20px; /* Adjusted padding for better balance */
    }

    /* Job Summary */
    .job-summary {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }

    .job-info h2 {
        font-size: 2rem; /* Slightly larger for medium screens */
    }

    .job-info p {
        font-size: 1.2rem;
    }

    .job-logo {
        text-align: center;
        margin-top: 20px;
    }

    .company-logo {
        max-width: 140px; /* Optimized size */
    }

    /* Section */
    section {
        padding: 28px;
        margin: 30px auto;
    }

    /* Section Headings */
    h2 {
        font-size: 1.7rem;
        padding-bottom: 5px;
    }

    /* Challenges & Solutions */
    .challenges ul li,
    .technical-contributions ul li,
    .sales-contributions ul li {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    /* Skills & Technologies */
    .skills p {
        font-size: 1.2rem;
        padding: 8px 0;
    }

    /* LinkedIn Button */
    .linkedin-button {
        font-size: 1.1rem;
        padding: 12px 22px;
    }

    /* Back Button */
    .back-link {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

/* lg */
@media (max-width: 1024px) {
    .container {
        max-width: 768px;
        padding: 0 25px; /* Adjusted padding for better spacing */
    }

    /* Job Summary */
    .job-summary {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .job-info h2 {
        font-size: 2.2rem; /* Keep headings prominent */
    }

    .job-info p {
        font-size: 1.3rem;
    }

    .job-logo {
        text-align: center;
        margin-top: 20px;
    }

    .company-logo {
        max-width: 145px; /* Slightly optimized size */
    }

    /* Section */
    section {
        padding: 30px;
        margin: 35px auto;
    }

    /* Section Headings */
    h2 {
        font-size: 1.8rem;
        padding-bottom: 6px;
    }

    /* Challenges & Solutions */
    .challenges ul li,
    .technical-contributions ul li,
    .sales-contributions ul li {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    /* Skills & Technologies */
    .skills p {
        font-size: 1.3rem;
        padding: 10px 0;
    }

    /* LinkedIn Button */
    .linkedin-button {
        font-size: 1.2rem;
        padding: 14px 24px;
    }

    /* Back Button */
    .back-link {
        font-size: 1.2rem;
        padding: 14px 22px;
    }

}

}