* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #080b14;
    color: #ffffff;
}
body::before {
    content: "";
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: rgba(124, 115, 255, 0.18);
    filter: blur(140px);
    z-index: -1;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 8%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #b8bec9;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-button {
    text-decoration: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    background: #6c63ff;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 8%;
}

.hero-content {
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(108, 99, 255, 0.4);
    border-radius: 50px;
    color: #a9a3ff;
    background: rgba(108, 99, 255, 0.1);
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 82px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #7c73ff;
}

.hero p {
    max-width: 650px;
    margin: auto;
    color: #aeb4c0;
    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.primary-btn {
    color: #ffffff;
    background: #6c63ff;
}

.secondary-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.primary-btn:hover,
.nav-button:hover {
    transform: translateY(-3px);
}
.features {
    padding: 100px 8%;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    font-size: 48px;
    margin: 20px 0;
}

.section-heading p {
    color: #aeb4c0;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 115, 255, 0.5);
    background: rgba(124, 115, 255, 0.08);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #aeb4c0;
    line-height: 1.6;
}
.how-it-works {
    padding: 100px 8%;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step {
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
}

.step:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 115, 255, 0.5);
}

.step span {
    font-size: 14px;
    color: #8d86ff;
    font-weight: 700;
}

.step h3 {
    font-size: 26px;
    margin: 20px 0 12px;
}

.step p {
    color: #aeb4c0;
    line-height: 1.6;
}
.cta {
    margin: 80px 8%;
    padding: 80px 30px;
    text-align: center;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        rgba(108, 99, 255, 0.18),
        rgba(124, 115, 255, 0.05)
    );
    border: 1px solid rgba(124, 115, 255, 0.25);
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta p {
    color: #aeb4c0;
    margin-bottom: 30px;
    line-height: 1.6;
}

footer {
    padding: 30px 8%;
    text-align: center;
    color: #777f8f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive */

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 20px 5%;
    }

    .hero {
        padding: 60px 5%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features,
    .how-it-works {
        padding: 70px 5%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .cta {
        margin: 50px 5%;
        padding: 60px 20px;
    }

    .cta h2 {
        font-size: 32px;
    }
}
.upload-section {
    min-height: 80vh;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px;
}

.upload-header h1 {
    font-size: 52px;
    margin: 20px 0;
}

.upload-header p {
    color: #aeb4c0;
    line-height: 1.7;
    font-size: 18px;
}

.upload-box {
    width: 100%;
    max-width: 650px;
    padding: 60px 40px;
    text-align: center;
    border: 1px dashed rgba(124, 115, 255, 0.6);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.03);
}

.upload-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.upload-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.upload-box p {
    color: #aeb4c0;
    margin-bottom: 30px;
}

.upload-box input {
    display: none;
}

.upload-box label {
    display: inline-block;
    cursor: pointer;
}

.upload-box small {
    display: block;
    margin-top: 20px;
    color: #777f8f;
}.dashboard {
    padding: 70px 8%;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading h2 {
    font-size: 42px;
    margin-top: 15px;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats-grid .feature-card {
    text-align: center;
    padding: 30px 20px;
}

.stats-grid .feature-card p {
    font-size: 32px;
    font-weight: 700;
    margin-top: 15px;
}

.dashboard-details {
    max-width: 1100px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.dashboard-details .feature-card {
    padding: 30px;
}

.dashboard-details ul {
    padding-left: 20px;
    line-height: 2;
    color: #aeb4c0;
}
.feature-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.feature-card {
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}
.contact-form-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-form-section .feature-card {
    padding: 35px;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-section input,
.contact-form-section textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #2d3440;
    background: #151922;
    color: white;
    font-size: 16px;
}

.contact-form-section textarea {
    resize: none;
}
.contact-page .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-page .feature-card {
    text-align: center;
    background: rgba(124, 115, 255, 0.08);
    border: 1px solid rgba(124, 115, 255, 0.25);
}

.contact-page .feature-card h3 {
    color: #8d86ff;
}
.hero h1 span {
    display: block;
}
.hero h1 {
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero-line-1,
.hero-line-2 {
    display: block;
}

.hero-line-1 {
    display: block;
    font-size: 1em;
    animation: slideLeft 1s ease;
}
.hero-line-2 {
    display: block;
    font-size: 0.9em;
    color: #7c73ff;
    margin-top: 12px;
    animation: slideRight 1s ease;
}
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(120px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
#jobRole{
    width:100%;
    padding:12px;
    margin:20px 0;
    border-radius:10px;
    background:#151922;
    color:white;
    border:1px solid #2d3440;
}
/* ===============================
   Mobile Responsiveness
   =============================== */

@media (max-width: 600px) {

    body {
        font-size: 16px;
        overflow-x: hidden;
    }

    nav {
        padding: 18px 5%;
    }

    .logo {
        font-size: 22px;
    }

    .hero {
        min-height: auto;
        padding: 55px 5%;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.08;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-buttons {
        width: 100%;
        gap: 12px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        text-align: center;
    }

    .features,
    .how-it-works {
        padding: 60px 5%;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 16px;
    }

    .step {
        padding: 25px 20px;
    }

    .step h3 {
        font-size: 23px;
    }

    .step p {
        font-size: 16px;
    }

    .cta {
        margin: 45px 5%;
        padding: 50px 20px;
    }

    .cta h2 {
        font-size: 29px;
    }

    .cta p {
        font-size: 16px;
    }

    /* Upload Page */

    .upload-section {
        min-height: auto;
        padding: 55px 5%;
    }

    .upload-header {
        margin-bottom: 35px;
    }

    .upload-header h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .upload-header p {
        font-size: 16px;
        line-height: 1.6;
    }

    .upload-box {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .upload-icon {
        font-size: 45px;
    }

    .upload-box h2 {
        font-size: 23px;
    }

    .upload-box p {
        font-size: 16px;
        line-height: 1.5;
    }

    #jobRole {
        font-size: 16px;
        padding: 14px;
    }

    /* Dashboard */

    .dashboard {
        padding: 55px 5%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stats-grid .feature-card {
        padding: 22px 12px;
    }

    .stats-grid .feature-card p {
        font-size: 25px;
    }

    .dashboard-details {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dashboard-details .feature-card {
        padding: 24px 20px;
    }

    .dashboard-details ul {
        font-size: 16px;
        line-height: 1.8;
    }

    /* Contact */

    .contact-form-section {
        margin: 40px auto;
        padding: 0 5%;
    }

    .contact-form-section .feature-card {
        padding: 25px 20px;
    }

    .contact-form-section input,
    .contact-form-section textarea {
        font-size: 16px;
    }

    .contact-page .feature-grid {
        grid-template-columns: 1fr;
    }
}