* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= MAIN HEADER ================= */
.veborra-main-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

/* ================= TOP BAR ================= */
/* ================= TOP BAR ================= */
.top-bar {
    background: #ffffff;
    padding: 6px 0;
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 400;
    color: #000;
}

/* LEFT SIDE */
.top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.top-left i {
    color: #0d6efd;
    font-size: 14px;
}

.top-left a {
    text-decoration: none;
    color: inherit;
}

.top-left a:hover {
    color: #0d6efd;
}

/* RIGHT SIDE SOCIAL ICONS */
.top-right a {
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
}

.top-right a:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

.top-right i {
    display: inline-block;
}
/* ================= NAVBAR ================= */

/* ================= ABOUT PAGE HERO ================= */
.veborra-about-hero {
    background: url("images/hero-bg.png") center center no-repeat;
    background-size: cover;
    padding: 140px 0 110px;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

/* Dark overlay */
.veborra-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* Content on top */
.veborra-about-hero .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb-nav {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.breadcrumb-nav i {
    font-size: 12px;
    margin: 0 6px;
}

/* Title */
.veborra-about-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin: 0;
}

/* ================= SCROLL STRIP ================= */
.scroll-strip {
    background: #f8f9fa;
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
    font-weight: 600;
    font-size: 15px;
    color: #a100ff;
    /* star color */
}

.scroll-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scroll-strip .black {
    color: #000;
    margin: 0 8px;
}

.scroll-strip .blue {
    color: #0d6efd;
    margin: 0 8px;
}

/* end section */

/* ================ CAREERS SECTION ================ */
/* ================= CAREERS SECTION ================= */
.careers-section {
    background: #f8f9ff;
    font-family: 'Inter', sans-serif;
}

.careers-title {
    font-size: 36px;
    font-weight: 700;
}

.careers-subtitle {
    font-size: 15px;
    color: #666;
}

/* Job Card */
.job-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-6px);
}

.job-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.job-type {
    display: inline-block;
    font-size: 12px;
    color: #2f49ff;
    margin-bottom: 10px;
}

.job-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.job-card ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.job-card ul li {
    font-size: 13px;
    color: #444;
    margin-bottom: 5px;
}

/* Apply Button */
.apply-btn {
    display: inline-block;
    background: linear-gradient(90deg, #1d4ed8, #6f42c1);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

/* ================= APPLY FORM ================= */
.career-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.career-card {
    background: #f7faff;
    padding: 50px;
    border-radius: 18px;
    width: 100%;
    max-width: 900px;
    /* 👈 alignment ka hero */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.career-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.career-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-control {
    height: 50px;
    border-radius: 10px;
    font-size: 14px;
}

textarea.form-control {
    height: auto;
}

.career-submit-btn {
    background: #3b5cff !important;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    margin-top: 20px;
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    /* WhatsApp / Call button se upar */
    right: 25px;
    width: 46px;
    height: 46px;
    background: #3b5cff;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #1f3fff;
    transform: translateY(-3px);
}

/* Show button */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}