/* ================= HERO ================= */
.blog-hero {
    background: #f5efe6;
    padding: 60px 0;
}

.blog-title {
    font-size: 30px;
    font-weight: 700;
}

.blog-description {
    font-size: 18px;
    color: #555;
}

.author-name {
    font-weight: 600;
    text-decoration: underline;
}

.blog-image-wrapper {
    position: relative;
    margin-top: 30px;
}

.blog-image-wrapper img {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width:768px) {
    .blog-image-wrapper img {
        height: 220px;
    }
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c6e300;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* ================= SIDEBAR ================= */
@media (min-width: 992px) {
    .sidebar-wrapper {
        position: sticky;
        top: 120px;
        align-self: flex-start;
    }
}

/* ================= TOC ================= */
.toc-card {
    background: #f3f3f3;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.toc-header h4 {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

.toc-icon {
    background: #e5e5e5;
    padding: 8px 10px;
    border-radius: 8px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    border-bottom: 1px solid #ddd;
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list a {
    display: block;
    padding: 16px 0;
    text-decoration: none;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
}

.toc-list a:hover {
    color: #00a2b9;
}

/* ================= Suggested Blogs ================= */
.suggested-card {
    background: #d9d8b9;
    padding: 30px;
    border-radius: 25px;
}

.suggested-card h4 {
    font-size: 26px;
    font-weight: 600;
}

.suggested-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.suggested-item:first-of-type {
    border-top: none;
}

.suggested-item img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.suggested-item a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.suggested-item a:hover {
    color: #044870;
}

/* ================= BLOG CONTENT ================= */
.blog-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 40px;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* ================= TABLE ================= */
.custom-table thead {
    background: #f26522;
    color: #fff;
}

.custom-table th,
.custom-table td {
    padding: 18px;
    vertical-align: top;
}

@media (max-width:991px) {
    .sidebar-wrapper {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

/* ================= Career Table Design ================= */
.custom-career-table {
    border-collapse: collapse;
    width: 100%;
    border: 2px solid #000;
}

.custom-career-table thead th {
    background: #f26522;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    border: 1px solid #000;
    text-align: left;
}

.custom-career-table tbody td {
    background: #e9e9e9;
    padding: 18px;
    border: 1px solid #000;
    vertical-align: top;
    font-size: 16px;
}

.subjects-cell strong,
.industry-cell strong {
    font-size: 18px;
}

.subjects-cell,
.industry-cell {
    background: #e3e3e3 !important;
    width: 30%;
}

.custom-career-table tbody tr td:nth-child(3),
.custom-career-table tbody tr td:nth-child(4) {
    width: 20%;
}

/* Responsive */
@media (max-width: 991px) {
    .custom-career-table thead th {
        font-size: 15px;
        padding: 12px;
    }

    .custom-career-table tbody td {
        font-size: 14px;
        padding: 12px;
    }
}

.cta-section {
    background: #f5f5f5;
}

.cta-box {
    background: #d9d8b9;
    border-radius: 30px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

/* Optional subtle pattern effect */
.cta-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.cta-title {
    font-size: 36px;
    font-weight: 500;
    color: #1c1c1c;
    max-width: 70%;
    z-index: 2;
}

.cta-btn {
    background: #f26522;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
    z-index: 2;
}

.cta-btn:hover {
    background: #d9531e;
    color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
    .cta-title {
        font-size: 28px;
        max-width: 100%;
        text-align: center;
    }

    .cta-box {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cta-box {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

.share-divider {
    border-color: #ddd;
}

.share-title {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.share-btn {
    width: 50px;
    height: 50px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.share-btn:hover {
    background: #00a2b9;
    /* Your theme color */
    color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
    .share-icons {
        justify-content: flex-start;
    }

    .share-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

body {
    background: #f5efe6;
}

.career-card {
    max-width: 420px;
    margin: 0px auto;
    background: #ffffff;
    padding: 25px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.career-card h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 6px;
}

.required {
    color: red;
}

.form-control-custom,
.form-select-custom {
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.form-control-custom:focus,
.form-select-custom:focus {
    box-shadow: none;
    border-color: #f4a261;
}

/* .apply-btn {
    background: #f4a261;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
}

.apply-btn:hover {
    background: #e76f51;
} */

.consent-text {
    font-size: 12px;
    color: #555;
}