/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: #14213d;
}

.login-page {
    min-height: 100vh;
    background: #f7f8ff;
}


/* =========================================================
   LEFT SECTION
========================================================= */

.left-section {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(99, 102, 241, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f7f8ff 0%,
            #eef1ff 100%
        );
}

.left-content {
    position: relative;

    max-width: 900px;

    min-height: 100vh;

    padding: 55px 7% 45px 8%;

    z-index: 2;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    position: relative;
    z-index: 5;
}

.brand-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #1747d0
    );

    color: white;

    font-size: 27px;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.25);
}

.brand-name {
    font-size: 29px;
    font-weight: 800;

    color: #16213e;
}

.brand-name span {
    color: #2563eb;
}

.brand-subtitle {
    color: #5d6b85;
    font-size: 15px;
}


/* =========================================================
   HERO
========================================================= */

.hero-content {
    margin-top: 70px;

    position: relative;
    z-index: 5;
}

.hero-content h1 {
    margin: 0;

    font-size: clamp(40px, 4vw, 59px);

    line-height: 1.08;

    font-weight: 750;

    letter-spacing: -2px;

    color: #101a35;
}

.hero-content h1 span {
    color: #2563eb;
}

.blue-line {
    width: 55px;
    height: 4px;

    margin-top: 30px;
    margin-bottom: 20px;

    border-radius: 10px;

    background: #2563eb;
}

.hero-description {
    max-width: 620px;

    margin: 0;

    color: #596783;

    font-size: 17px;

    line-height: 1.65;
}


/* =========================================================
   STATISTICS
========================================================= */

.statistics {
    position: relative;

    z-index: 5;

    margin-top: 35px;
}

.stat-card {
    min-height: 92px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid #e5e8f3;

    border-radius: 12px;

    box-shadow:
        0 5px 15px rgba(32, 45, 80, 0.06);
}

.stat-card h4 {
    margin: 0;

    font-size: 23px;

    font-weight: 750;

    color: #16213e;
}

.stat-card p {
    margin: 2px 0 0;

    color: #596783;

    font-size: 14px;
}

.stat-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 21px;
}

.companies-icon {
    background: #e8edff;
    color: #3f5df5;
}

.internship-icon {
    background: #e4f8ec;
    color: #15945a;
}

.student-icon {
    background: #fff0e9;
    color: #f06c31;
}


/* =========================================================
   FEATURED INTERNSHIP
========================================================= */

.featured-card {
    position: relative;

    z-index: 5;

    margin-top: 22px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.9);

    border: 1px solid #e2e6f2;

    border-radius: 13px;

    box-shadow:
        0 8px 25px rgba(39, 50, 90, 0.07);
}

.featured-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef0ff;

    color: #545bea;

    font-size: 28px;
}

.featured-label {
    margin-bottom: 5px;

    color: #2563eb;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.6px;
}

.featured-label i {
    margin-right: 5px;
}

.featured-card h5 {
    margin: 0;

    font-size: 18px;

    font-weight: 750;

    color: #16213e;
}

.company-name {
    margin: 4px 0 10px;

    color: #65728a;

    font-size: 13px;
}


/* =========================================================
   SKILLS
========================================================= */

.skills {
    display: flex;
    gap: 7px;
}

.skill {
    padding: 5px 10px;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 650;
}

.skill.html {
    background: #e8f0ff;
    color: #2563eb;
}

.skill.css {
    background: #e8f8ee;
    color: #15803d;
}

.skill.javascript {
    background: #fff4d8;
    color: #a16207;
}


/* =========================================================
   JOB INFORMATION
========================================================= */

.job-info {
    text-align: left;

    min-width: 165px;
}

.job-info p {
    margin: 0 0 7px;

    color: #58667f;

    font-size: 12px;
}

.job-info i {
    margin-right: 5px;
}

.job-info .stipend {
    color: #15945a;

    font-weight: 700;
}

.view-btn {
    margin-top: 5px;

    width: 100%;

    border: 1px solid #2563eb;

    color: #2563eb;

    background: white;

    font-size: 12px;

    font-weight: 650;
}

.view-btn:hover {
    background: #2563eb;

    color: white;
}


/* =========================================================
   TRUST FEATURES
========================================================= */

.trust-features {
    position: relative;

    z-index: 5;

    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 20px;

    color: #3f4e69;

    font-size: 12px;
}

.trust-features > div {
    display: flex;

    align-items: center;

    gap: 8px;
}

.trust-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e9edff;

    color: #4257dc;

    font-size: 16px;
}


/* =========================================================
   CITY DECORATION
========================================================= */

.city-decoration {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    height: 170px;

    opacity: 0.35;

    z-index: 1;
}

.building {
    position: absolute;

    bottom: 0;

    background: linear-gradient(
        to top,
        #8190e5,
        #b5bdf4
    );

    border-radius: 3px 3px 0 0;
}

.building-1 {
    left: 0;

    width: 75px;
    height: 100px;
}

.building-2 {
    left: 80px;

    width: 45px;
    height: 140px;
}

.building-3 {
    left: 125px;

    width: 75px;
    height: 75px;
}

.building-4 {
    left: 200px;

    width: 50px;
    height: 120px;
}

.building-5 {
    left: 250px;

    width: 80px;
    height: 90px;
}


/* Bridge */

.bridge {
    position: absolute;

    bottom: 0;

    left: 350px;

    width: 450px;

    height: 80px;

    border-top: 2px solid #8b96e6;

    border-radius: 50%;
}

.bridge span {
    position: absolute;

    top: 0;

    width: 2px;

    height: 80px;

    background: #8b96e6;
}

.bridge span:nth-child(1) {
    left: 30%;
}

.bridge span:nth-child(2) {
    left: 55%;
}

.bridge span:nth-child(3) {
    left: 80%;
}


/* =========================================================
   RIGHT SECTION
========================================================= */

.right-section {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 100vh;

    padding: 45px;

    background: #ffffff;
}

.login-container {
    width: 100%;

    max-width: 650px;
}


/* =========================================================
   LOGIN CARD
========================================================= */

.login-card {
    padding: 42px;

    background: #ffffff;

    border: 1px solid #e8eaf0;

    border-radius: 15px;

    box-shadow:
        0 15px 40px rgba(26, 37, 65, 0.08);
}


/* =========================================================
   LOGIN HEADER
========================================================= */

.login-header {
    margin-bottom: 28px;
}

.login-header h2 {
    margin: 0 0 8px;

    font-size: 31px;

    font-weight: 750;

    color: #17213d;
}

.login-header p {
    margin: 0;

    color: #65728a;

    font-size: 15px;
}


/* =========================================================
   ROLE SELECTOR
========================================================= */

.role-selector {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 30px;
}

.role-btn {
    height: 54px;

    border: 1px solid #e3e6ed;

    border-radius: 9px;

    background: white;

    color: #28344c;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.2s ease;
}

.role-btn i {
    margin-right: 7px;
}

.role-btn:hover {
    border-color: #2563eb;

    color: #2563eb;
}

.role-btn.active {
    border-color: #2563eb;

    background: #2563eb;

    color: white;

    box-shadow:
        0 5px 12px rgba(37, 99, 235, 0.2);
}


/* =========================================================
   FORM
========================================================= */

.form-group {
    margin-bottom: 23px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #202c43;

    font-size: 13px;

    font-weight: 650;
}

.input-box {
    position: relative;
}

.input-box > i {
    position: absolute;

    left: 17px;

    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: #7b879c;

    font-size: 17px;
}

.input-box .form-control {
    height: 52px;

    padding-left: 48px;

    padding-right: 48px;

    border: 1px solid #dfe3eb;

    border-radius: 8px;

    color: #253149;

    font-size: 14px;
}

.input-box .form-control::placeholder {
    color: #9aa4b5;
}

.input-box .form-control:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.09);
}


/* =========================================================
   PASSWORD
========================================================= */

.password-label {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.password-label label {
    margin-bottom: 8px;
}

.password-label a {
    margin-bottom: 8px;

    color: #2563eb;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;
}

.password-label a:hover {
    text-decoration: underline;
}

.password-eye {
    position: absolute;

    top: 50%;
    right: 13px;

    transform: translateY(-50%);

    width: 35px;
    height: 35px;

    border: 0;

    background: transparent;

    color: #748198;

    font-size: 17px;
}


/* =========================================================
   REMEMBER ME
========================================================= */

.remember-row {
    margin-top: -5px;

    margin-bottom: 23px;
}

.form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #2563eb;

    border-color: #2563eb;
}

.form-check-label {
    color: #596783;

    font-size: 13px;

    cursor: pointer;
}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.login-btn {
    width: 100%;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 8px;

    background: linear-gradient(
        90deg,
        #2563eb,
        #1858e6
    );

    color: white;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 6px 15px rgba(37, 99, 235, 0.18);

    transition: all 0.2s ease;
}

.login-btn:hover {
    background: linear-gradient(
        90deg,
        #1d4ed8,
        #164ed1
    );

    color: white;

    transform: translateY(-1px);
}


/* =========================================================
   DIVIDER
========================================================= */

.divider {
    display: flex;

    align-items: center;

    gap: 15px;

    margin: 28px 0 20px;
}

.divider span {
    flex: 1;

    height: 1px;

    background: #e6e8ee;
}

.divider p {
    margin: 0;

    white-space: nowrap;

    color: #8792a5;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =========================================================
   GOOGLE
========================================================= */

.google-btn {
    width: 100%;

    height: 51px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border: 1px solid #dfe3eb;

    border-radius: 8px;

    background: white;

    color: #263149;

    font-size: 14px;

    font-weight: 600;
}

.google-btn:hover {
    background: #f8f9fc;

    border-color: #cfd5df;
}

.google-logo {
    font-size: 19px;

    font-weight: 800;

    color: #4285f4;
}


/* =========================================================
   REGISTER
========================================================= */

.register-section {
    margin-top: 28px;

    text-align: center;

    color: #69758a;

    font-size: 13px;
}

.register-section a {
    margin-left: 5px;

    color: #2563eb;

    font-weight: 650;

    text-decoration: none;
}

.register-section a:hover {
    text-decoration: underline;
}


/* =========================================================
   SECURITY
========================================================= */

.security-message {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 25px;

    color: #7b879b;

    font-size: 11px;

    text-align: center;
}

.security-message i {
    color: #64748b;

    font-size: 15px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .left-content {
        padding-left: 6%;
        padding-right: 5%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .right-section {
        padding: 30px;
    }

    .login-card {
        padding: 32px;
    }

}


@media (max-width: 991px) {

    .left-section {
        display: none;
    }

    .right-section {
        min-height: 100vh;

        padding: 25px 15px;

        background:
            linear-gradient(
                135deg,
                #f7f8ff,
                #eef1ff
            );
    }

    .login-container {
        max-width: 500px;
    }

}


@media (max-width: 576px) {

    .right-section {
        padding: 15px;
    }

    .login-card {
        padding: 25px 20px;

        border-radius: 13px;
    }

    .login-header h2 {
        font-size: 26px;
    }

    .role-selector {
        gap: 5px;
    }

    .role-btn {
        font-size: 11px;
    }

    .role-btn i {
        margin-right: 2px;
    }

    .security-message {
        padding: 0 15px;
    }

}



/* CSS FOR HOME PAGE */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #17213c;
    background: #fff;
}


/* NAVBAR */

.navbar {
    padding: 15px 0;
}

.nav-link {
    margin: 0 10px;
    color: #17213c;
}

.nav-link:hover,
.nav-link.active {
    color: #1260d9;
}


/* HERO */

/* HERO */

.hero {
    min-height: 600px;
    padding: 80px 0;
    background-image: url("home.png");
    background-size: cover;
    background-position: 65% center;
    background-repeat: no-repeat;
    position: relative;
}

/* Light background behind text */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.82) 38%,
        rgba(255,255,255,0.25) 65%,
        rgba(255,255,255,0) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
}


/* HERO TEXT */

.hero .col-lg-6 {
    max-width: 600px;
}

.welcome {
    color: #1260d9;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
    position: left;
    line-height: 1.15;
    color: #17213c;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #1260d9;
    display: block;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: #4f5d73;
    max-width: 550px;
    margin-bottom: 25px;
}


/* SEARCH */

.search-box {
    display: flex;
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.search-box input {
    border: none;
    outline: none;
    box-shadow: none !important;
    padding: 12px;
}

.search-box button {
    padding: 10px 25px;
    border-radius: 8px;
}


/* BUTTONS */

.hero .btn {
    border-radius: 8px;
    padding: 12px 22px;
}


/* MOBILE */

@media(max-width: 768px) {

    .hero {
        text-align: center;
        padding: 60px 20px;
        background-position: 65% center;
    }

    .hero::before {
        background: rgba(255,255,255,0.88);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text {
        margin: auto auto 25px;
    }

    .search-box {
        margin: auto;
    }

}

/* FEATURES */

.features {
    padding: 40px 0;
    background: #f8fbff;
}

.feature-card {
    background: white;
    padding: 25px;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px #e5eaf2;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-7px);
}

.icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.feature-card h5 {
    font-weight: bold;
}

.feature-card p {
    color: #697386;
}


/* DOMAINS */

.domains {
    padding: 70px 0;
}

.section-title {
    color: #1260d9;
    font-weight: bold;
    letter-spacing: 2px;
}

.domains h2 {
    font-weight: bold;
    font-size: 35px;
}

.line {
    width: 50px;
    height: 4px;
    background: #1260d9;
    margin: 15px auto;
}

.domain-card {
    padding: 25px 10px;
    border: 1px solid #e5eaf2;
    border-radius: 12px;
    background: white;
    transition: 0.3s;
}

.domain-card div {
    font-size: 35px;
    margin-bottom: 15px;
}

.domain-card:hover {
    background: #1260d9;
    color: white;
    transform: translateY(-5px);
}


/* FOOTER */

footer {
    text-align: center;
    background: #17213c;
    color: white;
    padding: 30px;
}

footer p {
    color: #cbd3e3;
}


/* RESPONSIVE */

@media(max-width: 768px) {

    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text {
        margin: auto;
    }

    .search-box {
        margin: 25px auto;
    }

    .hero-image {
        margin-top: 40px;
    }
}



/* CSS FOR admin , college , company LOG IN */





:root {

    --navy: #172033;

    --navy-light: #25324a;

    --orange: #f97316;

    --green: #198754;

    --wine: #8f1d3f;

    --white: #ffffff;

    --light-bg: #f7f8fc;

    --text: #172033;

    --muted: #64748b;

    --border: #e2e8f0;

}


/* ===============================
   GLOBAL
================================ */

* {
    box-sizing: border-box;
}


body {

    margin: 0;

    font-family:
        "Inter",
        "Segoe UI",
        system-ui,
        sans-serif;

    color: var(--text);

    background: var(--light-bg);

}


a {
    text-decoration: none;
}


.portal-page {
    min-height: 100vh;
}


/* ===============================
   LEFT BRAND SECTION
================================ */

.brand-section {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--navy),
            #24344f
        );

    color: white;

}


.brand-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,0.08);

    top: -180px;
    right: -150px;

}


.brand-section::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,0.06);

    bottom: -150px;
    left: -120px;

}


.brand-content {

    width: 100%;

    max-width: 720px;

    margin: auto;

    padding: 55px;

    position: relative;

    z-index: 2;

}


/* ===============================
   LOGO
================================ */

.brand-logo {

    display: flex;

    align-items: center;

    gap: 12px;

}


.logo-icon {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--orange);

    color: white;

    font-size: 21px;

}


.brand-logo h4,
.mobile-brand h5 {

    margin: 0;

    font-weight: 800;

    color: white;

}


.brand-logo h4 span,
.mobile-brand h5 span {

    color: #60a5fa;

}


.brand-logo small,
.mobile-brand small {

    color: #aeb9ca;

}


/* ===============================
   HERO
================================ */

.hero-content {

    margin-top: 85px;

}


.portal-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 13px;

    border-radius: 50px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    background:
        rgba(255,255,255,0.08);

    color: #dbeafe;

    border:
        1px solid rgba(255,255,255,0.12);

}


.hero-content h1 {

    margin-top: 25px;

    margin-bottom: 20px;

    font-size: clamp(42px, 5vw, 62px);

    line-height: 1.06;

    letter-spacing: -2px;

    font-weight: 800;

}


.hero-content h1 span {

    display: block;

}


.hero-content p {

    max-width: 650px;

    color: #c5cfdd;

    line-height: 1.7;

    font-size: 16px;

}


/* ===============================
   FEATURE CARD
================================ */

.feature-card {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px;

    min-height: 78px;

    border-radius: 14px;

    background:
        rgba(255,255,255,0.07);

    border:
        1px solid rgba(255,255,255,0.09);

}


.feature-icon {

    min-width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        rgba(255,255,255,0.1);

    color: white;

}


.feature-card strong {

    display: block;

    font-size: 13px;

}


.feature-card small {

    display: block;

    margin-top: 4px;

    color: #aeb9ca;

    font-size: 11px;

}


/* ===============================
   STATS
================================ */

.stat-box {

    padding: 18px;

    border-left:
        2px solid rgba(255,255,255,0.2);

}


.stat-box h3 {

    margin: 0;

    font-weight: 800;

}


.stat-box small {

    color: #aeb9ca;

}


/* ===============================
   HIGHLIGHT CARD
================================ */

.company-highlight {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px;

    border-radius: 16px;

    background:
        rgba(255,255,255,0.07);

    border:
        1px solid rgba(255,255,255,0.1);

}


.company-highlight-icon {

    min-width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: rgba(255,255,255,0.12);

    font-size: 23px;

}


.company-highlight span {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #aeb9ca;

}


.company-highlight h5 {

    margin:
        5px 0;

}


.company-highlight p {

    margin: 0;

    color: #aeb9ca;

    font-size: 12px;

}


/* ===============================
   TRUST
================================ */

.trust-row {

    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    color: #b8c3d3;

    font-size: 11px;

}


.trust-row i {

    margin-right: 5px;

}


/* ===============================
   RIGHT SIDE
================================ */

.login-section {

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

}


.login-container {

    width: 100%;

    max-width: 470px;

    padding: 45px 35px;

}


/* ===============================
   LOGIN HEADER
================================ */

.login-label {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.login-title {

    margin-top: 9px;

    margin-bottom: 8px;

    font-size: 32px;

    font-weight: 800;

}


/* ===============================
   ROLE SELECTOR
================================ */

.role-selector {

    display: flex;

    gap: 4px;

    padding: 4px;

    background: #f1f5f9;

    border-radius: 12px;

}


.role {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    padding: 10px 5px;

    border-radius: 9px;

    color: #64748b;

    font-size: 12px;

    font-weight: 600;

    transition: .2s;

}


.role:hover {

    color: var(--navy);

}


.role.active {

    background: white;

    color: var(--navy);

    box-shadow:
        0 2px 8px rgba(0,0,0,.08);

}


/* ===============================
   INPUT
================================ */

.form-label {

    font-size: 13px;

    font-weight: 650;

}


.input-wrapper {

    position: relative;

}


.input-wrapper > i {

    position: absolute;

    left: 15px;

    top: 50%;

    transform:
        translateY(-50%);

    color: #94a3b8;

    z-index: 2;

}


.input-wrapper .form-control {

    height: 51px;

    padding-left: 43px;

    padding-right: 45px;

    border-radius: 10px;

    border:
        1px solid var(--border);

}


.input-wrapper .form-control:focus {

    box-shadow:
        0 0 0 3px
        rgba(37,99,235,.08);

}


/* ===============================
   PASSWORD
================================ */

.password-toggle {

    position: absolute;

    right: 12px;

    top: 50%;

    transform:
        translateY(-50%);

    border: 0;

    background: transparent;

    color: #94a3b8;

}


/* ===============================
   FORGOT
================================ */

.forgot-link {

    font-size: 12px;

    font-weight: 600;

}


/* ===============================
   LOGIN BUTTON
================================ */

.login-btn {

    height: 53px;

    border: 0;

    border-radius: 10px;

    color: white;

    font-weight: 700;

    transition: .2s;

}


.login-btn:hover {

    color: white;

    transform:
        translateY(-1px);

}


/* ===============================
   SECURITY
================================ */

.security-notice {

    display: flex;

    gap: 12px;

    padding: 14px;

    border-radius: 10px;

    background: #f8fafc;

    border: 1px solid #edf1f5;

}


.security-notice > i {

    font-size: 20px;

}


.security-notice strong {

    display: block;

    font-size: 12px;

}


.security-notice small {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;

}


/* ===============================
   REGISTER
================================ */

.register-text {

    color: var(--muted);

    font-size: 13px;

}


.register-text a {

    font-weight: 700;

}


/* ===============================
   FOOTER
================================ */

.login-footer {

    display: flex;

    justify-content: space-between;

    margin-top: 40px;

    padding-top: 18px;

    border-top:
        1px solid #edf0f4;

    color: #94a3b8;

    font-size: 10px;

}


.login-footer a {

    color: #64748b;

    margin-left: 12px;

}


/* =====================================================
   ADMIN — ORANGE
===================================================== */

.admin-theme .portal-badge,
.admin-theme .login-label {

    color: var(--orange);

}


.admin-theme .feature-icon {

    color: var(--orange);

}


.admin-theme .login-btn {

    background: var(--orange);

}


.admin-theme .login-btn:hover {

    background: #ea580c;

}


.admin-theme .forgot-link,
.admin-theme .register-text a {

    color: var(--orange);

}


.admin-theme .security-notice > i {

    color: var(--orange);

}


/* =====================================================
   COMPANY — GREEN
===================================================== */

.company-theme .portal-badge,
.company-theme .login-label {

    color: #22c55e;

}


.company-theme .logo-icon {

    background: var(--green);

}


.company-theme .feature-icon {

    color: #4ade80;

}


.company-theme .login-btn {

    background: var(--green);

}


.company-theme .login-btn:hover {

    background: #157347;

}


.company-theme .forgot-link,
.company-theme .register-text a {

    color: var(--green);

}


.company-theme .security-notice > i {

    color: var(--green);

}


/* =====================================================
   COLLEGE — RED WINE
===================================================== */

.college-theme .portal-badge,
.college-theme .login-label {

    color: #b52a55;

}


.college-theme .logo-icon {

    background: var(--wine);

}


.college-theme .feature-icon {

    color: #e46a8b;

}


.college-theme .login-btn {

    background: var(--wine);

}


.college-theme .login-btn:hover {

    background: #741532;

}


.college-theme .forgot-link,
.college-theme .register-text a {

    color: var(--wine);

}


.college-theme .security-notice > i {

    color: var(--wine);

}


/* ===============================
   MOBILE
================================ */

.mobile-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 45px;

}


.mobile-brand h5 {

    margin: 0;

    font-weight: 800;

    color: var(--navy);

}


.mobile-brand h5 span {

    color: #2563eb;

}


@media (max-width: 991px) {

    .login-section {

        min-height: 100vh;

    }

}


@media (max-width: 576px) {

    .login-container {

        padding:
            35px 20px;

    }


    .login-title {

        font-size: 27px;

    }


    .role {

        font-size: 11px;

    }


    .login-footer {

        flex-direction: column;

        gap: 10px;

    }

}




/* =====================================================
   PUNEINTERN REGISTRATION PAGE
   Color Palette:
   Navy  #102A43
   Orange #F97316
   Green #198754
   Wine  #7F1D3A
===================================================== */

:root {

    --navy: #102a43;
    --navy-dark: #071a2b;
    --navy-light: #eaf1f8;

    --orange: #f97316;
    --orange-light: #fff1e8;

    --green: #198754;
    --green-light: #e8f6ef;

    --wine: #7f1d3a;
    --wine-light: #f8e9ee;

    --text-dark: #172b4d;
    --text-muted: #64748b;

    --border: #dbe3ec;

    --page-bg: #f6f8fb;
}


/* =====================================================
   BODY
===================================================== */

.register-page {

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(249, 115, 22, 0.05),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(127, 29, 58, 0.05),
            transparent 25%
        ),
        var(--page-bg);

    color: var(--text-dark);

    min-height: 100vh;
}


/* =====================================================
   NAVBAR
===================================================== */

.register-navbar {

    background: white;

    border-bottom: 1px solid var(--border);

    min-height: 78px;

    box-shadow: 0 2px 12px rgba(16, 42, 67, 0.04);
}


.brand-icon {

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--navy);

    color: white;

    font-size: 20px;

    box-shadow:
        0 5px 15px rgba(16, 42, 67, 0.2);
}


.brand-name {

    color: var(--navy);

    font-size: 21px;

    font-weight: 800;

    line-height: 1;
}


.brand-name span {

    color: var(--orange);
}


.register-navbar small {

    color: var(--text-muted);

    font-size: 10px;

    letter-spacing: 0.3px;
}


.already-text {

    color: var(--text-muted);

    font-size: 13px;
}


.btn-outline-navy {

    border: 1px solid var(--navy);

    color: var(--navy);

    border-radius: 8px;

    font-size: 13px;

    font-weight: 600;

    padding: 9px 18px;
}


.btn-outline-navy:hover {

    background: var(--navy);

    color: white;
}


/* =====================================================
   MAIN
===================================================== */

.register-main {

    padding-top: 55px;

    padding-bottom: 60px;
}


/* =====================================================
   HEADING
===================================================== */

.register-heading {

    margin-bottom: 35px;
}


.register-badge {

    display: inline-block;

    padding: 7px 14px;

    border-radius: 50px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    margin-bottom: 12px;
}


.register-heading h1 {

    color: var(--navy);

    font-size: clamp(30px, 4vw, 44px);

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 10px;
}


.register-heading p {

    color: var(--text-muted);

    max-width: 600px;

    margin: auto;

    line-height: 1.7;
}


/* =====================================================
   ACCOUNT TYPE
===================================================== */

.account-type-wrapper {

    max-width: 1050px;

    margin: auto;

    margin-bottom: 18px;
}


.account-type-title {

    color: var(--text-muted);

    font-size: 13px;

    font-weight: 600;
}


.account-tabs {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;
}


.account-tab {

    position: relative;

    display: flex;

    align-items: center;

    gap: 13px;

    text-align: left;

    background: white;

    border: 2px solid var(--border);

    border-radius: 13px;

    padding: 15px;

    transition: all 0.2s ease;
}


.account-tab:hover {

    transform: translateY(-2px);

    border-color: #b8c5d4;

    box-shadow:
        0 8px 20px rgba(16, 42, 67, 0.06);
}


.account-tab.active {

    border-color: var(--orange);

    box-shadow:
        0 8px 24px rgba(249, 115, 22, 0.10);
}


.tab-icon {

    min-width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    font-size: 19px;
}


.student-tab .tab-icon {

    background: var(--orange-light);

    color: var(--orange);
}


.company-tab .tab-icon {

    background: var(--green-light);

    color: var(--green);
}


.admin-tab .tab-icon {

    background: var(--wine-light);

    color: var(--wine);
}


.tab-content-text {

    display: flex;

    flex-direction: column;
}


.tab-content-text strong {

    color: var(--navy);

    font-size: 14px;
}


.tab-content-text small {

    color: var(--text-muted);

    font-size: 10px;

    margin-top: 2px;
}


.tab-check {

    display: none;

    margin-left: auto;

    color: var(--orange);

    font-size: 18px;
}


.account-tab.active .tab-check {

    display: block;
}


/* =====================================================
   REGISTRATION CARD
===================================================== */

.registration-card {

    max-width: 1050px;

    margin: auto;

    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow:
        0 15px 45px rgba(16, 42, 67, 0.08);

    overflow: hidden;
}


.registration-form {

    display: none;

    padding: 40px 45px;
}


.registration-form.active-form {

    display: block;
}


/* =====================================================
   FORM HEADER
===================================================== */

.form-header {

    display: flex;

    align-items: center;

    gap: 17px;
}


.form-role-icon {

    min-width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    font-size: 25px;
}


.student-icon {

    background: var(--orange-light);

    color: var(--orange);
}


.company-icon {

    background: var(--green-light);

    color: var(--green);
}


.admin-icon {

    background: var(--wine-light);

    color: var(--wine);
}


.form-label-small {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;

    color: var(--orange);
}


.form-header h3 {

    color: var(--navy);

    font-size: 23px;

    font-weight: 750;

    margin: 3px 0;
}


.form-header p {

    color: var(--text-muted);

    font-size: 13px;

    margin: 0;
}


/* =====================================================
   SECTION TITLE
===================================================== */

.section-title {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;
}


.section-number {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;
}


.company-number {

    background: var(--green-light);

    color: var(--green);
}


.admin-number {

    background: var(--wine-light);

    color: var(--wine);
}


.section-title strong {

    display: block;

    color: var(--navy);

    font-size: 14px;
}


.section-title small {

    color: var(--text-muted);

    font-size: 11px;
}


/* =====================================================
   FORM CONTROLS
===================================================== */

.form-label {

    color: var(--navy);

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 7px;
}


.form-label span {

    color: var(--wine);
}


.form-control,
.form-select {

    min-height: 47px;

    border: 1px solid var(--border);

    border-radius: 8px;

    color: var(--navy);

    font-size: 13px;
}


.form-control::placeholder {

    color: #9aa9b8;
}


.form-control:focus,
.form-select:focus {

    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(249, 115, 22, 0.10);
}


.input-group-text {

    background: #f8fafc;

    border-color: var(--border);

    color: var(--text-muted);
}


.input-group .form-control {

    border-left: 0;
}


.input-group:focus-within .input-group-text {

    border-color: var(--orange);

    color: var(--orange);

    background: var(--orange-light);
}


/* =====================================================
   PASSWORD
===================================================== */

.password-field {

    position: relative;
}


.password-field .form-control {

    padding-right: 48px;
}


.password-button {

    position: absolute;

    right: 8px;

    top: 50%;

    transform: translateY(-50%);

    border: 0;

    background: transparent;

    color: #8b9aaa;

    z-index: 5;
}


.password-button:hover {

    color: var(--navy);
}


.strength-bars {

    display: flex;

    gap: 4px;

    margin-bottom: 5px;
}


.strength-bars span {

    height: 3px;

    flex: 1;

    background: #e5e7eb;

    border-radius: 10px;
}


.password-strength small {

    color: var(--text-muted);

    font-size: 10px;
}


/* =====================================================
   TERMS
===================================================== */

.terms-check {

    font-size: 12px;

    color: var(--text-muted);
}


.terms-check .form-check-input {

    border-color: #b9c5d1;
}


.terms-check .form-check-input:checked {

    background-color: var(--green);

    border-color: var(--green);
}


.terms-check a {

    color: var(--navy);

    font-weight: 700;

    text-decoration: none;
}


/* =====================================================
   CREATE BUTTONS
===================================================== */

.create-btn {

    width: 100%;

    min-height: 52px;

    margin-top: 28px;

    border: 0;

    border-radius: 9px;

    color: white;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.2s ease;
}


/* Student = Orange */

.student-create-btn {

    background: var(--orange);

    box-shadow:
        0 6px 15px rgba(249, 115, 22, 0.20);
}


.student-create-btn:hover {

    background: #ea580c;

    color: white;

    transform: translateY(-1px);
}


/* Company = Green */

.company-create-btn {

    background: var(--green);

    box-shadow:
        0 6px 15px rgba(25, 135, 84, 0.18);
}


.company-create-btn:hover {

    background: #157347;

    color: white;

    transform: translateY(-1px);
}


/* Admin = Wine */

.admin-create-btn {

    background: var(--wine);

    box-shadow:
        0 6px 15px rgba(127, 29, 58, 0.20);
}


.admin-create-btn:hover {

    background: #65162f;

    color: white;

    transform: translateY(-1px);
}


/* =====================================================
   ADMIN WARNING
===================================================== */

.admin-warning {

    display: flex;

    gap: 13px;

    padding: 15px 17px;

    background: var(--wine-light);

    border: 1px solid #eccbd6;

    border-radius: 10px;

    color: var(--wine);
}


.admin-warning > i {

    font-size: 18px;
}


.admin-warning strong {

    font-size: 13px;
}


.admin-warning p {

    margin: 3px 0 0;

    font-size: 11px;

    color: #7d5362;
}


/* =====================================================
   TRUST
===================================================== */

.registration-trust {

    max-width: 1050px;

    margin: 25px auto 0;

    display: flex;

    justify-content: center;

    gap: 35px;

    flex-wrap: wrap;

    color: var(--text-muted);

    font-size: 11px;
}


.registration-trust i {

    margin-right: 5px;
}


.registration-trust div:nth-child(1) i {

    color: var(--green);
}


.registration-trust div:nth-child(2) i {

    color: var(--orange);
}


.registration-trust div:nth-child(3) i {

    color: var(--wine);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .register-main {

        padding-top: 35px;
    }


    .account-tabs {

        grid-template-columns: 1fr;
    }


    .registration-form {

        padding: 28px 20px;
    }


    .form-header h3 {

        font-size: 20px;
    }


    .registration-trust {

        gap: 15px;

        flex-direction: column;

        align-items: center;
    }

}


@media (max-width: 480px) {

    .register-navbar {

        padding: 10px 0;
    }


    .already-text {

        display: none;
    }


    .brand-name {

        font-size: 18px;
    }


    .register-heading h1 {

        font-size: 30px;
    }


    .form-header {

        align-items: flex-start;
    }


    .form-role-icon {

        min-width: 48px;

        height: 48px;

        font-size: 20px;
    }

}







/* =====================================================
   PUNEINTERN REGISTRATION
   COLOR PALETTE
   Navy  : #0F172A
   Orange: #F97316
   Green : #16A34A
   Wine  : #7F1D1D
===================================================== */


/* ================= BODY ================= */

.register-body {
    background: #f8fafc;
    color: #0f172a;
}


/* ================= NAVBAR ================= */

.main-navbar {
    background: #0f172a;
    min-height: 72px;
}

.main-navbar .navbar-brand strong {
    font-size: 22px;
}

.main-navbar .navbar-brand strong span {
    color: #f97316;
}

.main-navbar small {
    color: #94a3b8;
    font-size: 10px;
}

.brand-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f97316;
    color: white;

    border-radius: 10px;

    font-size: 20px;
}


/* ================= PAGE HEADER ================= */

.registration-label {
    display: inline-block;

    padding: 7px 13px;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.company-label {
    color: #c2410c;
    background: #ffedd5;
}

.college-label {
    color: #15803d;
    background: #dcfce7;
}


.registration-title {
    font-size: clamp(30px, 4vw, 42px);

    font-weight: 750;

    letter-spacing: -1px;

    margin-top: 15px;
}


/* ================= CARD ================= */

.registration-card {
    border-radius: 20px;

    overflow: hidden;

    background: white;
}


/* ================= SECTION HEADINGS ================= */

.section-heading {
    display: flex;

    align-items: center;

    gap: 14px;
}


.section-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 20px;
}


/* Company */

.company-heading .section-icon {
    background: #ffedd5;
    color: #f97316;
}


/* Orange */

.orange-heading .section-icon {
    background: #fff7ed;
    color: #f97316;
}


/* College */

.college-heading .section-icon {
    background: #dcfce7;
    color: #16a34a;
}


/* Green */

.green-heading .section-icon {
    background: #dcfce7;
    color: #16a34a;
}


/* Wine */

.wine-heading .section-icon {
    background: #fce7f3;
    color: #7f1d1d;
}


/* ================= FORM ================= */

.form-label {
    font-size: 13px;

    font-weight: 650;

    color: #334155;

    margin-bottom: 7px;
}

.required {
    color: #dc2626;
}


.form-control,
.form-select {
    min-height: 48px;

    border: 1px solid #dbe2ea;

    border-radius: 9px;

    font-size: 14px;
}


textarea.form-control {
    min-height: auto;
}


.form-control:focus,
.form-select:focus {

    border-color: #f97316;

    box-shadow:
        0 0 0 3px rgba(249, 115, 22, 0.10);

}


/* ================= INPUT GROUP ================= */

.input-group-text {
    background: #f8fafc;

    border-color: #dbe2ea;

    color: #64748b;
}


/* ================= PASSWORD ================= */

.password-box {
    position: relative;
}

.password-box .form-control {
    padding-right: 50px;
}

.password-button {
    position: absolute;

    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    border: 0;

    background: transparent;

    color: #64748b;

    z-index: 5;
}


/* ================= COMPANY BUTTON ================= */

.company-submit {
    min-height: 52px;

    border: none;

    border-radius: 10px;

    background: #f97316;

    color: white;

    font-weight: 650;

    transition: all 0.2s ease;
}

.company-submit:hover {
    background: #ea580c;

    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(249, 115, 22, 0.20);
}


.company-link {
    color: #f97316;

    text-decoration: none;
}

.company-link:hover {
    color: #c2410c;
}


/* ================= COLLEGE BUTTON ================= */

.college-submit {
    min-height: 52px;

    border: none;

    border-radius: 10px;

    background: #16a34a;

    color: white;

    font-weight: 650;

    transition: all 0.2s ease;
}

.college-submit:hover {
    background: #15803d;

    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(22, 163, 74, 0.20);
}


.college-link {
    color: #16a34a;

    text-decoration: none;
}

.college-link:hover {
    color: #15803d;
}


/* ================= WINE LINKS ================= */

.wine-link {
    color: #7f1d1d;

    font-weight: 600;

    text-decoration: none;
}

.wine-link:hover {
    color: #991b1b;
}


/* ================= HR ================= */

.registration-card hr {
    border-color: #e2e8f0;
    opacity: 0.8;
}


/* ================= FOOTER ================= */

.register-footer {
    padding: 25px 0;

    background: #0f172a;

    color: #94a3b8;
}


/* ================= SUCCESS ALERT ================= */

.alert-success {
    border: none;

    border-left: 4px solid #16a34a;

    background: #f0fdf4;

    color: #166534;
}


/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .registration-title {
        font-size: 30px;
    }

    .registration-card .card-body {
        padding: 25px 18px !important;
    }

    .main-navbar .navbar-brand strong {
        font-size: 18px;
    }

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

}

/* =====================================================
   STUDENT PAGE
===================================================== */

.student-page {
    background: #f8fafc;
    color: #0f172a;
}


/* ================= NAVBAR ================= */

.student-navbar {
    background: #0f172a;
    min-height: 72px;
}

.student-navbar .navbar-brand strong {
    font-size: 21px;
}

.student-navbar .navbar-brand strong span {
    color: #f97316;
}

.student-navbar small {
    color: #94a3b8;
    font-size: 9px;
}

.student-navbar .nav-link {
    color: #cbd5e1;
    font-size: 13px;
}

.student-navbar .nav-link:hover,
.student-navbar .nav-link.active {
    color: white;
}

.student-navbar .nav-link.active {
    border-bottom: 2px solid #f97316;
}

.student-brand-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f97316;
    color: white;

    border-radius: 10px;
}

.student-register-btn {
    background: #f97316;
    color: white;
    border: none;
}

.student-register-btn:hover {
    background: #ea580c;
    color: white;
}


/* ================= HERO ================= */

.student-hero {
    background:
        linear-gradient(
            135deg,
            #0f172a,
            #172554
        );

    color: white;

    padding: 80px 0 100px;

    overflow: hidden;
}

.student-badge {
    display: inline-block;

    padding: 8px 15px;

    border-radius: 30px;

    color: #fdba74;

    background: rgba(249,115,22,0.12);

    border: 1px solid rgba(249,115,22,0.2);

    font-size: 12px;
}

.student-hero h1 {
    font-size: clamp(40px, 5vw, 62px);

    font-weight: 750;

    letter-spacing: -2.5px;

    line-height: 1.05;

    margin-top: 20px;
}

.student-hero h1 span {
    display: block;

    color: #f97316;
}

.student-hero p {
    max-width: 620px;

    color: #cbd5e1;

    font-size: 16px;

    line-height: 1.7;

    margin-top: 20px;
}

.student-primary-btn {
    background: #f97316;

    border: none;

    color: white;

    padding: 12px 20px;

    border-radius: 8px;

    font-weight: 650;
}

.student-primary-btn:hover {
    background: #ea580c;

    color: white;
}

.student-outline-btn {
    color: white;

    border: 1px solid #64748b;

    padding: 12px 20px;

    border-radius: 8px;

    font-weight: 600;
}

.student-outline-btn:hover {
    background: white;

    color: #0f172a;
}

.student-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    color: #94a3b8;

    font-size: 11px;
}

.student-trust i {
    color: #22c55e;

    margin-right: 5px;
}


/* ================= DASHBOARD PREVIEW ================= */

.student-dashboard-preview {
    background: white;

    color: #0f172a;

    border-radius: 18px;

    padding: 24px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.25);

    transform: rotate(1deg);
}

.preview-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid #e2e8f0;
}

.preview-header small {
    color: #94a3b8;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}

.preview-header h5 {
    margin: 5px 0 0;

    font-size: 17px;
}

.preview-avatar {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #7f1d1d;

    color: white;

    font-weight: 700;
}

.profile-progress {
    padding: 20px 0;

    font-size: 11px;

    color: #64748b;
}

.profile-progress strong {
    color: #f97316;
}

.profile-progress .progress {
    height: 7px;

    background: #e2e8f0;
}

.profile-progress .progress-bar {
    background: #f97316;
}

.preview-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.preview-stats div {
    background: #f8fafc;

    padding: 13px;

    border-radius: 9px;

    text-align: center;
}

.preview-stats strong {
    display: block;

    font-size: 20px;

    color: #0f172a;
}

.preview-stats small {
    color: #94a3b8;

    font-size: 9px;
}

.preview-opportunity {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    padding: 14px;

    border: 1px solid #e2e8f0;

    border-radius: 10px;
}

.mini-company {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff7ed;

    color: #f97316;

    font-weight: 700;
}

.preview-opportunity strong {
    display: block;

    font-size: 11px;
}

.preview-opportunity small {
    color: #94a3b8;

    font-size: 9px;
}

.preview-opportunity > i {
    color: #94a3b8;
}


/* ================= SECTION HEADING ================= */

.section-heading span {
    color: #f97316;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.section-heading h2 {
    margin-top: 8px;

    font-size: 30px;

    font-weight: 750;

    letter-spacing: -1px;
}

.section-heading p {
    color: #64748b;

    font-size: 13px;

    max-width: 600px;

    margin: 10px auto;
}


/* ================= ACTIONS ================= */

.student-actions {
    padding: 80px 0;
}

.student-action-card {
    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 15px;

    padding: 24px;

    height: 100%;

    transition: 0.2s ease;
}

.student-action-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(15,23,42,0.08);

    border-color: #fdba74;
}

.action-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 20px;

    margin-bottom: 20px;
}

.orange-action {
    background: #fff7ed;
    color: #f97316;
}

.green-action {
    background: #f0fdf4;
    color: #16a34a;
}

.wine-action {
    background: #fef2f2;
    color: #7f1d1d;
}

.navy-action {
    background: #eff6ff;
    color: #172554;
}

.student-action-card h5 {
    font-size: 16px;

    font-weight: 700;
}

.student-action-card p {
    color: #64748b;

    font-size: 12px;

    line-height: 1.7;

    min-height: 62px;
}

.student-action-card a {
    color: #ea580c;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;
}

.student-action-card a i {
    margin-left: 5px;
}


/* ================= PROCESS ================= */

.student-process {
    background: #f1f5f9;

    padding: 80px 0;
}

.process-card {
    background: white;

    border-radius: 13px;

    padding: 22px;

    height: 100%;

    text-align: center;

    position: relative;

    border: 1px solid #e2e8f0;
}

.process-number {
    position: absolute;

    top: 10px;
    right: 12px;

    color: #cbd5e1;

    font-size: 10px;

    font-weight: 800;
}

.process-card > i {
    display: inline-flex;

    width: 48px;
    height: 48px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff7ed;

    color: #f97316;

    font-size: 19px;

    margin: 10px 0 15px;
}

.process-card h5 {
    font-size: 14px;

    font-weight: 700;
}

.process-card p {
    color: #64748b;

    font-size: 11px;

    line-height: 1.6;
}


/* ================= WHY ================= */

.why-students {
    padding: 90px 0;
}

.wine-label {
    color: #7f1d1d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.why-students h2 {
    font-size: 38px;

    font-weight: 750;

    letter-spacing: -1.5px;

    margin-top: 10px;
}

.why-students > .container > .row > .col-lg-6 > p {
    color: #64748b;

    font-size: 14px;

    line-height: 1.8;

    max-width: 560px;
}

.why-list {
    margin-top: 25px;
}

.why-list div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;

    font-size: 13px;

    color: #334155;
}

.why-list i {
    color: #16a34a;
}


/* Career card */

.career-card {
    background:
        linear-gradient(
            135deg,
            #7f1d1d,
            #450a0a
        );

    color: white;

    border-radius: 18px;

    padding: 35px;

    box-shadow:
        0 20px 40px rgba(127,29,29,0.2);
}

.career-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(255,255,255,0.12);

    font-size: 24px;

    margin-bottom: 20px;
}

.career-card h4 {
    font-size: 22px;

    font-weight: 700;
}

.career-card p {
    color: #fecaca;

    font-size: 12px;

    line-height: 1.7;
}

.career-btn {
    background: white;

    color: #7f1d1d;

    border: none;

    font-size: 11px;

    font-weight: 700;

    padding: 10px 15px;
}

.career-btn:hover {
    background: #f8fafc;

    color: #450a0a;
}


/* ================= FOOTER ================= */

.student-footer {
    background: #0f172a;

    color: #94a3b8;

    padding: 40px 0 25px;
}

.student-footer h5 {
    color: white;
}

.student-footer p {
    font-size: 11px;
}

.student-footer a {
    color: #cbd5e1;

    text-decoration: none;

    font-size: 11px;

    margin-left: 20px;
}

.student-footer a:hover {
    color: #f97316;
}

.student-footer hr {
    border-color: #1e293b;

    margin: 25px 0 15px;
}

.student-footer small {
    font-size: 9px;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .student-hero {
        padding: 55px 0 75px;
    }

    .student-hero h1 {
        font-size: 40px;
    }

    .student-dashboard-preview {
        transform: none;
    }

    .student-trust {
        flex-direction: column;

        gap: 8px;
    }

    .why-students h2 {
        font-size: 32px;
    }

    .student-footer a {
        margin-left: 0;
        margin-right: 15px;
    }

}

/* =====================================================
   EMPLOYER PAGE
===================================================== */

.employer-page {
    background: #f8fafc;
    color: #0f172a;
}


/* ================= NAVBAR ================= */

.employer-navbar {
    background: #0f172a;
    min-height: 72px;
}

.employer-navbar .navbar-brand strong {
    font-size: 21px;
}

.employer-navbar .navbar-brand strong span {
    color: #f97316;
}

.employer-navbar small {
    color: #94a3b8;
    font-size: 9px;
}

.employer-navbar .nav-link {
    color: #cbd5e1;
    font-size: 13px;
}

.employer-navbar .nav-link:hover,
.employer-navbar .nav-link.active {
    color: white;
}

.employer-navbar .nav-link.active {
    border-bottom: 2px solid #f97316;
}

.employer-brand-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f97316;
    color: white;

    border-radius: 10px;
}

.employer-register-btn {
    background: #f97316;
    color: white;
    border: none;
}

.employer-register-btn:hover {
    background: #ea580c;
    color: white;
}


/* ================= HERO ================= */

.employer-hero {
    background:
        linear-gradient(
            135deg,
            #0f172a,
            #172554
        );

    color: white;

    padding: 80px 0 100px;

    overflow: hidden;
}

.employer-badge {
    display: inline-block;

    padding: 8px 15px;

    border-radius: 30px;

    color: #fdba74;

    background: rgba(249,115,22,0.12);

    border: 1px solid rgba(249,115,22,0.2);

    font-size: 12px;
}

.employer-hero h1 {
    font-size: clamp(40px, 5vw, 62px);

    font-weight: 750;

    letter-spacing: -2.5px;

    line-height: 1.05;

    margin-top: 20px;
}

.employer-hero h1 span {
    display: block;

    color: #f97316;
}

.employer-hero p {
    max-width: 620px;

    color: #cbd5e1;

    font-size: 16px;

    line-height: 1.7;

    margin-top: 20px;
}

.employer-primary-btn {
    background: #f97316;

    border: none;

    color: white;

    padding: 12px 20px;

    border-radius: 8px;

    font-weight: 650;
}

.employer-primary-btn:hover {
    background: #ea580c;

    color: white;
}

.employer-outline-btn {
    color: white;

    border: 1px solid #64748b;

    padding: 12px 20px;

    border-radius: 8px;

    font-weight: 600;
}

.employer-outline-btn:hover {
    background: white;

    color: #0f172a;
}

.employer-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    color: #94a3b8;

    font-size: 11px;
}

.employer-trust i {
    color: #22c55e;

    margin-right: 5px;
}


/* ================= DASHBOARD PREVIEW ================= */

.employer-dashboard-preview {
    background: white;

    color: #0f172a;

    border-radius: 18px;

    padding: 24px;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.25);

    transform: rotate(-1deg);
}

.employer-preview-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 18px;

    border-bottom: 1px solid #e2e8f0;
}

.employer-preview-header small {
    color: #94a3b8;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}

.employer-preview-header h5 {
    font-size: 15px;

    margin: 5px 0 0;
}

.company-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #7f1d1d;

    color: white;

    font-size: 11px;

    font-weight: 800;
}


/* ================= STATS ================= */

.employer-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 20px;
}

.employer-stats div {
    background: #f8fafc;

    padding: 13px;

    border-radius: 9px;
}

.employer-stats i {
    display: block;

    color: #f97316;

    margin-bottom: 6px;
}

.employer-stats strong {
    display: block;

    font-size: 20px;
}

.employer-stats small {
    color: #94a3b8;

    font-size: 8px;
}


/* ================= APPLICATIONS ================= */

.recent-title {
    margin-top: 20px;

    margin-bottom: 10px;

    font-size: 10px;

    font-weight: 800;

    color: #475569;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.candidate-card {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 11px;

    border: 1px solid #e2e8f0;

    border-radius: 9px;

    margin-top: 7px;
}

.candidate-avatar {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #fff7ed;

    color: #f97316;

    font-size: 10px;

    font-weight: 800;
}

.green-avatar {
    background: #f0fdf4;

    color: #16a34a;
}

.candidate-card strong {
    display: block;

    font-size: 10px;
}

.candidate-card small {
    display: block;

    color: #94a3b8;

    font-size: 8px;
}

.candidate-status {
    background: #fff7ed;

    color: #ea580c;

    padding: 4px 7px;

    border-radius: 10px;

    font-size: 8px;
}

.shortlisted-status {
    background: #f0fdf4;

    color: #16a34a;

    padding: 4px 7px;

    border-radius: 10px;

    font-size: 8px;
}


/* ================= ACTIONS ================= */

.employer-actions {
    padding: 80px 0;
}

.employer-action-card {
    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 15px;

    padding: 24px;

    height: 100%;

    transition: 0.2s ease;
}

.employer-action-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(15,23,42,0.08);

    border-color: #fdba74;
}

.employer-action-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 20px;

    margin-bottom: 20px;
}

.orange-employer {
    background: #fff7ed;
    color: #f97316;
}

.green-employer {
    background: #f0fdf4;
    color: #16a34a;
}

.wine-employer {
    background: #fef2f2;
    color: #7f1d1d;
}

.navy-employer {
    background: #eff6ff;
    color: #172554;
}

.employer-action-card h5 {
    font-size: 16px;

    font-weight: 700;
}

.employer-action-card p {
    color: #64748b;

    font-size: 12px;

    line-height: 1.7;

    min-height: 62px;
}

.employer-action-card a {
    color: #ea580c;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;
}

.employer-action-card a i {
    margin-left: 5px;
}


/* ================= PROCESS ================= */

.employer-process {
    background: #f1f5f9;

    padding: 80px 0;
}

.employer-process-card {
    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 13px;

    padding: 22px;

    height: 100%;

    text-align: center;

    position: relative;
}

.employer-process-number {
    position: absolute;

    top: 10px;
    right: 12px;

    color: #cbd5e1;

    font-size: 10px;

    font-weight: 800;
}

.employer-process-card > i {
    display: inline-flex;

    width: 48px;
    height: 48px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff7ed;

    color: #f97316;

    font-size: 19px;

    margin: 10px 0 15px;
}

.employer-process-card h5 {
    font-size: 14px;

    font-weight: 700;
}

.employer-process-card p {
    color: #64748b;

    font-size: 11px;

    line-height: 1.6;
}


/* ================= WHY EMPLOYERS ================= */

.why-employers {
    padding: 90px 0;
}

.employer-wine-label {
    color: #7f1d1d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.why-employers h2 {
    font-size: 38px;

    font-weight: 750;

    letter-spacing: -1.5px;

    margin-top: 10px;
}

.why-employers > .container > .row > .col-lg-6 > p {
    color: #64748b;

    font-size: 14px;

    line-height: 1.8;

    max-width: 560px;
}

.employer-benefits {
    margin-top: 25px;
}

.employer-benefits div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;

    font-size: 13px;

    color: #334155;
}

.employer-benefits i {
    color: #16a34a;
}


/* ================= CTA ================= */

.employer-cta-card {
    background:
        linear-gradient(
            135deg,
            #7f1d1d,
            #450a0a
        );

    color: white;

    border-radius: 18px;

    padding: 35px;

    box-shadow:
        0 20px 40px rgba(127,29,29,0.2);
}

.employer-cta-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(255,255,255,0.12);

    font-size: 24px;

    margin-bottom: 20px;
}

.employer-cta-card h4 {
    font-size: 22px;

    font-weight: 700;
}

.employer-cta-card p {
    color: #fecaca;

    font-size: 12px;

    line-height: 1.7;
}

.employer-cta-btn {
    background: white;

    color: #7f1d1d;

    border: none;

    font-size: 11px;

    font-weight: 700;

    padding: 10px 15px;
}

.employer-cta-btn:hover {
    background: #f8fafc;

    color: #450a0a;
}

.employer-cta-card > small {
    display: block;

    color: #fecaca;

    font-size: 9px;

    margin-top: 15px;
}

.employer-cta-card > small a {
    color: white;

    font-weight: 700;
}


/* ================= FOOTER ================= */

.employer-footer {
    background: #0f172a;

    color: #94a3b8;

    padding: 40px 0 25px;
}

.employer-footer h5 {
    color: white;
}

.employer-footer p {
    font-size: 11px;
}

.employer-footer a {
    color: #cbd5e1;

    text-decoration: none;

    font-size: 11px;

    margin-left: 20px;
}

.employer-footer a:hover {
    color: #f97316;
}

.employer-footer hr {
    border-color: #1e293b;

    margin: 25px 0 15px;
}

.employer-footer small {
    font-size: 9px;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .employer-hero {
        padding: 55px 0 75px;
    }

    .employer-hero h1 {
        font-size: 40px;
    }

    .employer-dashboard-preview {
        transform: none;
    }

    .employer-trust {
        flex-direction: column;

        gap: 8px;
    }

    .why-employers h2 {
        font-size: 32px;
    }

    .employer-footer a {
        margin-left: 0;

        margin-right: 15px;
    }

}

/* =====================================================
   EMPLOYER INNER PAGES
===================================================== */


/* ================= PAGE HEADER ================= */

.employer-page-header {

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #172554
        );

    color: white;

    padding: 60px 0 75px;

}

.employer-page-header h1 {

    font-size: 45px;

    font-weight: 750;

    letter-spacing: -1.5px;

    margin-top: 15px;

}

.employer-page-header h1 span {

    color: #f97316;

}

.employer-page-header p {

    color: #cbd5e1;

    font-size: 14px;

    max-width: 650px;

    line-height: 1.7;

}


/* ================= TALENT SEARCH ================= */

.talent-search-section {

    margin-top: -35px;

    position: relative;

    z-index: 5;

}

.talent-search-card {

    background: white;

    padding: 24px;

    border-radius: 15px;

    box-shadow:
        0 15px 40px rgba(15,23,42,.12);

}

.talent-search-card label {

    display: block;

    font-size: 11px;

    font-weight: 700;

    color: #475569;

    margin-bottom: 7px;

}

.talent-input {

    position: relative;

}

.talent-input i {

    position: absolute;

    left: 14px;

    top: 50%;

    transform: translateY(-50%);

    color: #94a3b8;

}

.talent-input input {

    width: 100%;

    height: 45px;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    padding-left: 40px;

    font-size: 12px;

}

.talent-search-card select {

    height: 45px;

    font-size: 12px;

}

.talent-search-btn {

    height: 45px;

    background: #f97316;

    color: white;

    border: none;

}

.talent-search-btn:hover {

    background: #ea580c;

    color: white;

}


/* ================= TALENT HEADING ================= */

.talent-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;

}

.talent-heading h4 {

    font-size: 20px;

    font-weight: 750;

    margin: 0;

}

.talent-heading p {

    color: #94a3b8;

    font-size: 11px;

    margin: 5px 0 0;

}

.talent-sort {

    width: 170px;

    font-size: 11px;

}


/* ================= STUDENT CARD ================= */

.student-profile-card {

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 15px;

    padding: 22px;

    height: 100%;

    transition: .2s;

}

.student-profile-card:hover {

    border-color: #fdba74;

    box-shadow:
        0 10px 30px rgba(15,23,42,.08);

    transform: translateY(-3px);

}

.student-profile-top {

    display: flex;

    align-items: center;

    gap: 12px;

}

.talent-avatar {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    font-weight: 800;

    font-size: 12px;

}

.orange-avatar {

    background: #fff7ed;

    color: #f97316;

}

.green-avatar {

    background: #f0fdf4;

    color: #16a34a;

}

.wine-avatar {

    background: #fef2f2;

    color: #7f1d1d;

}

.student-profile-top h5 {

    font-size: 15px;

    font-weight: 700;

    margin: 0;

}

.student-profile-top h5 i {

    color: #16a34a;

    font-size: 12px;

}

.student-profile-top p {

    color: #94a3b8;

    font-size: 10px;

    margin: 4px 0 0;

}

.bookmark-student {

    width: 34px;

    height: 34px;

    border: 1px solid #e2e8f0;

    background: white;

    border-radius: 8px;

    color: #64748b;

}

.bookmark-student:hover {

    color: #f97316;

    background: #fff7ed;

}


/* Student meta */

.student-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 17px;

    font-size: 10px;

    color: #64748b;

}

.student-meta i {

    color: #94a3b8;

    margin-right: 3px;

}


/* Student skills */

.student-skills {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 15px;

}

.student-skills span {

    background: #f1f5f9;

    color: #475569;

    padding: 5px 8px;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 600;

}

.student-summary {

    color: #64748b;

    font-size: 11px;

    line-height: 1.7;

    margin-top: 15px;

}

.student-card-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid #f1f5f9;

    padding-top: 14px;

    margin-top: 15px;

}

.student-card-bottom small {

    color: #94a3b8;

    font-size: 9px;

}

.student-view-btn {

    border: 1px solid #f97316;

    color: #ea580c;

    font-size: 10px;

}

.student-view-btn:hover {

    background: #f97316;

    color: white;

}


/* =====================================================
   APPLICATIONS
===================================================== */

.application-stat {

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 12px;

    padding: 18px;

}

.application-stat i {

    color: #f97316;

    font-size: 18px;

    display: block;

    margin-bottom: 8px;

}

.application-stat strong {

    display: block;

    font-size: 24px;

}

.application-stat span {

    color: #94a3b8;

    font-size: 10px;

}


.application-controls {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 18px;

}

.application-controls h4 {

    font-size: 19px;

    font-weight: 750;

    margin: 0;

}

.application-controls p {

    color: #94a3b8;

    font-size: 10px;

    margin: 4px 0 0;

}

.application-controls select {

    width: 220px;

    font-size: 11px;

}


/* Application card */

.application-card {

    display: flex;

    align-items: center;

    gap: 18px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 13px;

    padding: 18px;

    margin-bottom: 12px;

}

.application-avatar {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #fff7ed;

    color: #f97316;

    font-weight: 800;

    font-size: 11px;

}

.application-info {

    flex-grow: 1;

}

.application-info h5 {

    font-size: 14px;

    margin: 0;

    font-weight: 700;

}

.application-info h5 i {

    color: #16a34a;

    font-size: 11px;

}

.application-info p {

    color: #64748b;

    font-size: 10px;

    margin: 3px 0 10px;

}

.application-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    color: #94a3b8;

    font-size: 9px;

}

.application-skills {

    display: flex;

    gap: 5px;

    margin-top: 10px;

}

.application-skills span {

    background: #f1f5f9;

    padding: 4px 7px;

    border-radius: 4px;

    font-size: 8px;

    color: #475569;

}

.application-actions {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 7px;

}

.application-status {

    font-size: 8px;

    padding: 5px 9px;

    border-radius: 15px;

}

.new-status {

    background: #fff7ed;

    color: #ea580c;

}

.review-status {

    background: #eff6ff;

    color: #1d4ed8;

}

.shortlisted-status {

    background: #f0fdf4;

    color: #16a34a;

}

.application-view-btn {

    border: 1px solid #cbd5e1;

    color: #475569;

}

.shortlist-btn {

    background: #f97316;

    color: white;

}

.shortlist-btn:hover {

    background: #ea580c;

    color: white;

}

.shortlisted-button {

    background: #16a34a;

    color: white;

    font-size: 10px;

}

.interview-btn {

    background: #7f1d1d;

    color: white;

}

.interview-btn:hover {

    background: #450a0a;

    color: white;

}


/* =====================================================
   INTERVIEWS
===================================================== */

.interview-stat {

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 12px;

    padding: 18px;

}

.interview-stat i {

    color: #f97316;

    font-size: 18px;

}

.interview-stat strong {

    display: block;

    font-size: 24px;

    margin-top: 5px;

}

.interview-stat span {

    color: #94a3b8;

    font-size: 10px;

}

.interview-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;

}

.interview-heading h4 {

    font-size: 19px;

    font-weight: 750;

    margin: 0;

}

.interview-heading p {

    color: #94a3b8;

    font-size: 10px;

    margin: 4px 0 0;

}

.schedule-btn {

    background: #f97316;

    color: white;

    border: none;

    font-size: 11px;

    padding: 10px 15px;

}

.schedule-btn:hover {

    background: #ea580c;

    color: white;

}


/* Interview card */

.interview-card {

    display: flex;

    align-items: center;

    gap: 18px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 13px;

    padding: 18px;

    margin-bottom: 12px;

}

.date-box {

    width: 58px;

    height: 65px;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: #fff7ed;

    color: #ea580c;

    border-radius: 10px;

}

.date-box span {

    font-size: 8px;

    font-weight: 800;

}

.date-box strong {

    font-size: 23px;

    line-height: 1;

}

.date-box small {

    font-size: 7px;

}

.green-date {

    background: #f0fdf4;

    color: #16a34a;

}

.wine-date {

    background: #fef2f2;

    color: #7f1d1d;

}

.interview-person {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 240px;

}

.interview-person h5 {

    font-size: 13px;

    margin: 0;

    font-weight: 700;

}

.interview-person p {

    font-size: 9px;

    color: #64748b;

    margin: 3px 0;

}

.interview-person small {

    color: #94a3b8;

    font-size: 8px;

}

.candidate-avatar {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: #fff7ed;

    color: #f97316;

    font-size: 9px;

    font-weight: 800;

}

.interview-time {

    min-width: 110px;

}

.interview-time strong {

    display: block;

    font-size: 12px;

}

.interview-time span {

    color: #94a3b8;

    font-size: 9px;

}

.interview-mode {

    min-width: 130px;

}

.interview-mode span {

    display: block;

    color: #334155;

    font-size: 10px;

    font-weight: 600;

}

.interview-mode span i {

    color: #16a34a;

    margin-right: 4px;

}

.interview-mode small {

    color: #94a3b8;

    font-size: 8px;

}

.confirmed-badge,
.pending-badge {

    padding: 5px 9px;

    border-radius: 15px;

    font-size: 8px;

}

.confirmed-badge {

    background: #f0fdf4;

    color: #16a34a;

}

.pending-badge {

    background: #fff7ed;

    color: #ea580c;

}

.interview-actions {

    margin-left: auto;

}

.interview-action-btn {

    border: 1px solid #e2e8f0;

    color: #64748b;

}


/* ================= MODAL ================= */

.modal-content {

    border: none;

    border-radius: 15px;

}

.modal-header {

    border-bottom: 1px solid #e2e8f0;

}

.modal-title {

    font-size: 16px;

    font-weight: 700;

}

.modal-body label {

    font-size: 11px;

    font-weight: 600;

}

.modal-body input,
.modal-body select,
.modal-body textarea {

    font-size: 11px;

}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .application-card,
    .interview-card {

        align-items: flex-start;

        flex-wrap: wrap;

    }

    .application-actions {

        width: 100%;

        flex-direction: row;

        align-items: center;

    }

    .interview-person {

        min-width: 200px;

    }

}

@media (max-width: 576px) {

    .employer-page-header h1 {

        font-size: 36px;

    }

    .talent-heading,
    .application-controls,
    .interview-heading {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }

    .talent-sort,
    .application-controls select {

        width: 100%;

    }

    .interview-card {

        flex-direction: column;

    }

    .interview-person,
    .interview-time,
    .interview-mode {

        width: 100%;

    }

    .interview-actions {

        margin-left: 0;

    }

}