/* 
=========================================
  SWITCH ON SUCCESS - PREMIUM STYLING
  BFSI Recruitment & Staffing Solutions
=========================================
*/

:root {
    --primaryColor: #0056b3;
    --primaryHover: #003d80;
    --secondaryColor: #0f172a;
    --accentColor: #ff8f00;
    --yellowColor: #ffb300;
    --whiteColor: #ffffff;
    --greyColor: #f8fafc;
    --borderColor: #e2e8f0;
    --textColor: #334155;
    --textLight: #64748b;
    --cardBg: #ffffff;
    --dangerColor: #ef4444;
    --successColor: #22c55e;
    --fontFamily: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: var(--fontFamily);
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: auto;
    background-color: #f1f5f9;
    color: var(--textColor);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondaryColor);
    font-weight: 700;
    line-height: 1.3;
}

/* --- Premium Navbar --- */
.navbar {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 4rem;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    height: 60px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 20px;
    background: #0f172a;
}

.navbar-logo > a {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    color: var(--whiteColor);
    transition: color 0.3s;
}

.navbar-logo > a:hover {
    color: var(--yellowColor);
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-menu > a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-menu > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellowColor);
    transition: width 0.3s ease;
}

.navbar-menu > a:hover {
    color: var(--yellowColor);
}

.navbar-menu > a:hover::after {
    width: 100%;
}

/* Hamburger menu icon */
.manu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1100;
}

.manu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--whiteColor);
    transition: all 0.3s ease-in-out;
}

/* Hamburger Active / Open State */
.manu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.manu.active .bar:nth-child(2) {
    opacity: 0;
}

.manu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0f172a;
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 80px 2.5rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-link {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s;
}

.drawer-link:hover {
    color: var(--yellowColor);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%), 
                url("img/profile.jpg") center/cover no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 4rem 4rem;
    color: var(--whiteColor);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 86, 179, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--whiteColor);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--yellowColor);
    margin-bottom: 1.5rem;
}

.header-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: var(--accentColor);
    color: var(--secondaryColor);
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 143, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-primary-btn:hover {
    background-color: var(--yellowColor);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
}

.cta-secondary-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--whiteColor);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--whiteColor);
}

/* --- Stats Panel --- */
.stats-section {
    padding: 2.5rem 1rem;
    background-color: var(--whiteColor);
    position: relative;
    z-index: 10;
    margin-top: -3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    min-width: 200px;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--primaryColor);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--textLight);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Section Typography Guidelines --- */
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: var(--secondaryColor);
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: var(--primaryColor);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 16px;
    color: var(--textLight);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* --- About Section --- */
.about-section {
    padding: 6rem 4rem;
    background-color: #f8fafc;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.about-text h3 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 15px;
    color: var(--textColor);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--whiteColor);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--borderColor);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    font-size: 28px;
    color: var(--primaryColor);
    background: rgba(0, 86, 179, 0.08);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 13px;
    color: var(--textLight);
    margin: 0;
}

/* --- Dynamic Jobs Engine --- */
.job-list-section {
    padding: 6rem 4rem;
    background-color: var(--whiteColor);
}

.section-header {
    margin-bottom: 3rem;
}

.search-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.search-box {
    background-color: var(--greyColor);
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.search-card {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.75rem;
}

.search-icon {
    color: var(--textLight);
    font-size: 18px;
}

.search-input {
    width: 100%;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--textColor);
}

.filter-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.filter-dropdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--borderColor);
    background-color: var(--whiteColor);
    border-radius: 6px;
    color: var(--textColor);
    font-size: 14px;
    cursor: pointer;
    transition: border 0.3s;
}

.filter-select:hover {
    border-color: var(--textLight);
}

.job-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-card {
    background-color: var(--cardBg);
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.job-card:hover {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px;
    transform: translateY(-2px);
    border-color: rgba(0, 86, 179, 0.2);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    gap: 1.5rem;
}

.job-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(0, 86, 179, 0.08);
    color: var(--primaryColor);
    font-weight: 700;
    font-size: 11px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.job-card h3 {
    font-size: 22px;
    margin-bottom: 0.25rem;
}

.job-client {
    font-size: 14px;
    font-weight: 600;
    color: var(--textLight);
}

.job-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    font-size: 13px;
    color: var(--textLight);
    flex-shrink: 0;
}

.job-meta span i {
    color: var(--primaryColor);
    margin-right: 4px;
}

.job-card-body p {
    font-size: 15px;
    color: var(--textColor);
    margin-bottom: 1.25rem;
}

.job-skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.skill-tag {
    font-size: 12px;
    font-weight: 500;
    background-color: var(--greyColor);
    color: var(--textLight);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid var(--borderColor);
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--borderColor);
    padding-top: 1.25rem;
}

.job-attributes {
    display: flex;
    gap: 1.5rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--textLight);
}

.job-attributes span i {
    margin-right: 4px;
}

.apply-trigger-btn {
    padding: 0.6rem 1.5rem;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-trigger-btn:hover {
    background-color: var(--primaryHover);
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    font-size: 18px;
    color: var(--textLight);
}

.empty-jobs-card {
    text-align: center;
    padding: 4rem;
    border: 1px dashed var(--borderColor);
    border-radius: 8px;
    background-color: var(--greyColor);
}

.empty-icon {
    font-size: 48px;
    color: var(--textLight);
    margin-bottom: 1rem;
}

/* --- Interactive Apply Modal --- */
.apply-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.apply-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--cardBg);
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    padding: 2.5rem;
}

.apply-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 20px;
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
    color: var(--textLight);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--dangerColor);
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--textColor);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--borderColor);
    border-radius: 6px;
    font-size: 14px;
    color: var(--textColor);
    background-color: var(--greyColor);
    transition: border 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primaryColor);
    background-color: var(--whiteColor);
}

.form-group input[type="file"] {
    padding: 0.5rem 0;
    font-size: 14px;
}

.form-group small {
    font-size: 11px;
    color: var(--textLight);
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group-checkbox label {
    font-size: 12px;
    font-weight: 500;
    color: var(--textLight);
}

.modal-submit-btn {
    width: 100%;
    padding: 0.85rem;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-submit-btn:hover {
    background-color: var(--primaryHover);
}

body.modal-open {
    overflow: hidden;
}

/* --- Banner / Join Us --- */
.join {
    padding: 5rem 4rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%), 
                url("img/profile.jpg") center/cover no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    border-radius: 8px;
    max-width: 1200px;
    margin: 4rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.join::before {
    display: none;
}

.join-details {
    width: 60%;
    z-index: 2;
}

.join-button {
    width: auto;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    background-color: var(--accentColor);
    color: var(--secondaryColor);
    box-shadow: 0 4px 15px rgba(255, 143, 0, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.join-button:hover {
    background-color: var(--yellowColor);
    transform: translateY(-2px);
    border: none;
    color: var(--secondaryColor);
}

/* --- Featured Partners --- */
.featured {
    padding: 6rem 4rem;
    background-color: #f8fafc;
    text-align: center;
}

.featured-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.featured-card {
    background-color: var(--whiteColor);
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: all 0.3s;
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 86, 179, 0.15);
}

.partner-icon {
    font-size: 32px;
    color: var(--textLight);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.featured-card:hover .partner-icon {
    color: var(--primaryColor);
}

.partner-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 0.25rem;
}

.partner-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--textLight);
    background-color: var(--greyColor);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

/* --- Leadership Profile --- */
.leadership-section {
    padding: 6rem 4rem;
    background-color: var(--whiteColor);
}

.leadership-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: var(--greyColor);
    border: 1px solid var(--borderColor);
    border-radius: 12px;
    padding: 3.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.leadership-image {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primaryColor) 0%, var(--secondaryColor) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.avatar-placeholder i {
    font-size: 64px;
    color: var(--whiteColor);
}

.leadership-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lead-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(0, 86, 179, 0.08);
    color: var(--primaryColor);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.lead-name {
    font-size: 28px;
    margin-bottom: 0.25rem;
}

.lead-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--textLight);
    margin-bottom: 1.25rem;
}

.lead-bio {
    font-size: 14px;
    color: var(--textColor);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.linkedin-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background-color: #0077b5;
    color: var(--whiteColor);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.linkedin-btn:hover {
    background-color: #005582;
}

/* --- Testimonials --- */
.test {
    padding: 6rem 4rem;
    background-color: #0f172a;
    color: var(--whiteColor);
}

.test .section-title {
    color: var(--whiteColor);
}

.swiper {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-top: 3rem;
    padding-bottom: 3.5rem;
}

.swiper-slide {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--whiteColor);
    min-height: 320px;
}

.swiper-slide i {
    font-size: 32px;
    color: var(--yellowColor);
    margin-bottom: 1.25rem;
}

.swiper-slide h3 {
    font-family: var(--fontFamily);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.test-pic {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.test-pic p {
    font-size: 14px;
    font-weight: 700;
    color: var(--whiteColor);
}

.test-pic span {
    font-size: 12px;
    color: var(--yellowColor);
    font-weight: 500;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
}

.swiper-pagination-bullet-active {
    background: var(--yellowColor) !important;
}

/* --- Blog Section --- */
.blog {
    padding: 6rem 4rem;
    background-color: var(--whiteColor);
}

.blog-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--whiteColor);
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 86, 179, 0.15);
}

.blog-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img-placeholder i {
    font-size: 48px;
    color: rgba(255,255,255,0.15);
}

.blog-detail {
    padding: 1.75rem;
}

.blog-detail span {
    font-size: 12px;
    font-weight: 600;
    color: var(--primaryColor);
    display: block;
    margin-bottom: 0.5rem;
}

.blog-detail h4 {
    font-size: 18px;
    margin-bottom: 0.75rem;
}

.blog-detail p {
    font-size: 13px;
    color: var(--textLight);
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--primaryColor);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-more:hover {
    color: var(--primaryHover);
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--whiteColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background-color: #128c7e;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: var(--whiteColor);
    font-size: 12px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* --- Footer --- */
footer {
    width: 100%;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-wrapper h3 {
    color: var(--whiteColor);
    font-size: 22px;
    margin-bottom: 1.25rem;
}

.footer-wrapper h4 {
    color: var(--yellowColor);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-wrapper p {
    font-size: 14px;
    line-height: 1.6;
}

.brand-info .address-text {
    margin-bottom: 1rem;
}

.brand-info .contact-text {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.brand-info .contact-text i {
    color: var(--yellowColor);
    margin-right: 6px;
}

.social-media {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.social-media a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-media a:hover {
    background: var(--yellowColor);
    color: var(--secondaryColor);
    transform: translateY(-2px);
}

.footer-wrapper a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-wrapper a:hover {
    color: var(--yellowColor);
}

.recruiter-portal-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    color: var(--yellowColor) !important;
    font-weight: 600;
}

.recruiter-portal-btn:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* --- Contact Page Styles --- */
.contact-page-body {
    background-color: var(--greyColor);
}

.contact-hero {
    padding: 8rem 4rem 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--whiteColor);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 40px;
    color: var(--whiteColor);
    margin-bottom: 0.5rem;
}

.contact-hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section-container {
    padding: 5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: flex-start;
}

.panel-title {
    font-size: 24px;
    margin-bottom: 0.5rem;
    text-align: left;
}

.panel-desc {
    font-size: 14px;
    color: var(--textLight);
    margin-bottom: 2rem;
}

.info-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item-card {
    display: flex;
    gap: 1rem;
    background-color: var(--whiteColor);
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.info-card-icon {
    font-size: 24px;
    color: var(--primaryColor);
    background-color: rgba(0, 86, 179, 0.08);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.info-card-details h4 {
    font-size: 16px;
    margin-bottom: 0.25rem;
}

.info-card-details p {
    font-size: 14px;
    color: var(--textColor);
    margin: 0;
}

.info-card-details .highlight-text {
    font-weight: 700;
    color: var(--secondaryColor);
}

.info-card-details .sub-text {
    font-size: 12px;
    color: var(--textLight);
    margin-top: 2px;
}

.map-container-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--borderColor);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.contact-form-panel {
    background-color: var(--whiteColor);
    border: 1px solid var(--borderColor);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field-wrapper label {
    font-size: 13px;
    font-weight: 600;
    color: var(--textColor);
}

.form-field-wrapper input,
.form-field-wrapper select,
.form-field-wrapper textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--borderColor);
    border-radius: 6px;
    font-size: 14px;
    color: var(--textColor);
    background-color: var(--greyColor);
    transition: all 0.3s;
}

.form-field-wrapper input:focus,
.form-field-wrapper select:focus,
.form-field-wrapper textarea:focus {
    border-color: var(--primaryColor);
    background-color: var(--whiteColor);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.08);
}

.form-select-style {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem !important;
}

.form-feedback-alert {
    display: flex;
    gap: 0.75rem;
    background-color: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-feedback-alert.active {
    opacity: 1;
    height: auto;
    pointer-events: auto;
}

.alert-icon {
    font-size: 20px;
    color: var(--successColor);
}

.alert-text {
    font-size: 13px;
    font-weight: 500;
    color: #15803d;
}

.contact-submit-btn {
    width: 100%;
    padding: 0.85rem;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.contact-submit-btn:hover {
    background-color: var(--primaryHover);
}

/* --- Recruiter Dashboard Styles --- */
.dashboard-body {
    background-color: #f1f5f9;
    padding-top: 100px;
}

.dashboard-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dashboard-header-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.dashboard-title-area h1 {
    font-size: 32px;
}

.dashboard-title-area p {
    font-size: 14px;
    color: var(--textLight);
}

.add-job-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.25);
    transition: background 0.3s;
}

.add-job-btn:hover {
    background-color: var(--primaryHover);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.metric-box {
    background-color: var(--whiteColor);
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.metric-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.metric-icon-wrapper.blue {
    background-color: rgba(0, 86, 179, 0.08);
    color: var(--primaryColor);
}

.metric-icon-wrapper.orange {
    background-color: rgba(255, 143, 0, 0.08);
    color: var(--accentColor);
}

.metric-icon-wrapper.green {
    background-color: rgba(34, 197, 94, 0.08);
    color: var(--successColor);
}

.metric-info h3 {
    font-size: 26px;
    font-weight: 800;
}

.metric-info p {
    font-size: 13px;
    font-weight: 600;
    color: var(--textLight);
}

.tabs-container {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--borderColor);
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--textLight);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primaryColor);
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--primaryColor);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-panel {
    display: none;
    background-color: var(--whiteColor);
    border: 1px solid var(--borderColor);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.tab-panel.active {
    display: block;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.panel-header h3 {
    font-size: 18px;
}

.csv-export-btn {
    padding: 0.5rem 1rem;
    background-color: #107c41; /* Excel green */
    color: var(--whiteColor);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
}

.csv-export-btn:hover {
    background-color: #0b592e;
}

.reset-db-btn, .clear-applications-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid var(--borderColor);
    color: var(--textLight);
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.reset-db-btn:hover {
    background-color: var(--greyColor);
    border-color: var(--textLight);
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.dashboard-table th {
    background-color: var(--greyColor);
    padding: 1rem;
    font-weight: 700;
    color: var(--secondaryColor);
    border-bottom: 2px solid var(--borderColor);
}

.dashboard-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--borderColor);
    vertical-align: middle;
}

.dashboard-table tr:last-child td {
    border-bottom: none;
}

.empty-table-msg {
    text-align: center;
    padding: 3rem !important;
    color: var(--textLight);
    font-weight: 500;
}

.job-tag-cell {
    background-color: rgba(0, 86, 179, 0.08);
    color: var(--primaryColor);
    font-weight: 700;
    font-size: 11px;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.cover-note-cell {
    max-width: 250px;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.view-resume-mock {
    font-weight: 600;
    color: var(--primaryColor);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.view-resume-mock:hover {
    text-decoration: underline;
}

.skill-tag-micro {
    display: inline-block;
    font-size: 11px;
    background-color: var(--greyColor);
    color: var(--textLight);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    border: 1px solid var(--borderColor);
    margin: 2px;
}

.skills-cell-dashboard {
    max-width: 200px;
}

.delete-job-btn {
    padding: 0.4rem 0.8rem;
    background-color: transparent;
    border: 1px solid var(--dangerColor);
    color: var(--dangerColor);
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.delete-job-btn:hover {
    background-color: var(--dangerColor);
    color: var(--whiteColor);
}

/* --- Media Queries (Responsiveness) --- */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 0 2rem;
    }
    
    .hero-section {
        padding: 100px 2rem 4rem;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .about-section, .job-list-section, .join, .featured, .leadership-section, .test, .blog, footer, .contact-section-container {
        padding: 4rem 2rem;
    }
    
    .about-content, .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .featured-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .manu {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-card {
        min-width: 100%;
        border-bottom: 1px solid var(--borderColor);
        padding-bottom: 1.5rem;
    }
    
    .stat-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .filter-dropdown {
        grid-template-columns: 1fr;
    }
    
    .form-row-group {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .join {
        flex-direction: column;
        align-items: stretch;
        margin: 2rem 1rem;
    }
    
    .join-details {
        width: 100%;
        text-align: center;
    }
    
    .join-button {
        width: 100%;
    }
    
    .leadership-container {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .leadership-info {
        align-items: center;
    }
    
    .blog-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .job-meta {
        align-items: flex-start;
    }
    
    .job-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .apply-trigger-btn {
        width: 100%;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .contact-form-panel {
        padding: 1.5rem;
    }
}
