/* ----- global reset & base ----- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #0b1a33;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 60px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 30px;
}
.section-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0b1a33;
}
.section-title p {
    color: #475569;
    font-size: 16px;
    max-width: 700px;
    margin: 10px auto 0;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: #2563eb;
    color: #fff;
}
.btn-primary:hover {
    background: #1d4ed8;
}
.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}
.btn-outline:hover {
    background: #2563eb;
    color: #fff;
}
.btn-secondary {
    background: #f59e0b;
    color: #0b1a33;
}
img {
    max-width: 100%;
    height: auto;
}

/* ----- header (from course-header.php) ----- */
#header {
    background: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-family: 'Open Sans', sans-serif;
}
#header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0b1a33;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.logo img {
    height: 38px;
    width: auto;
}
.logo span {
    color: #2563eb;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
.mobile-toggle {
    background: none;
    border: 2px solid rgba(11, 26, 51, 0.2);
    border-radius: 6px;
    color: #0b1a33;
    font-size: 20px;
    padding: 5px 10px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-toggle:hover {
    border-color: #2563eb;
}
nav {
    width: 100%;
    display: none;
}
nav.active {
    display: block;
}
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
}
.nav-menu > li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-menu > li:last-child {
    border-bottom: none;
}
.nav-menu > li > a {
    display: block;
    padding: 10px 14px;
    color: #0b1a33;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s;
    border-radius: 4px;
}
.nav-menu > li > a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.06);
}
.nav-menu > li > a.active {
    color: #2563eb;
    font-weight: 700;
}
.drop-down > a {
    position: relative;
}
.drop-down > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: transform 0.3s;
    color: #0b1a33;
}
.drop-down.open > a::after {
    transform: translateY(-50%) rotate(180deg);
}
.drop-down > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: rgba(0,0,0,0.02);
    border-radius: 0 0 6px 6px;
}
.drop-down.open > ul {
    display: block;
}
.drop-down > ul > li {
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.drop-down > ul > li:last-child {
    border-bottom: none;
}
.drop-down > ul > li > a {
    display: block;
    padding: 8px 14px 8px 28px;
    color: #1e293b;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: 0.2s;
}
.drop-down > ul > li > a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}
.drop-down > ul > li > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: rgba(0,0,0,0.03);
    border-radius: 0 0 6px 6px;
}
.drop-down > ul > li.open > ul {
    display: block;
}
.drop-down > ul > li > ul > li > a {
    display: block;
    padding: 6px 14px 6px 44px;
    color: #334155;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    transition: 0.2s;
}
.drop-down > ul > li > ul > li > a::before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    margin-right: 6px;
    opacity: 0.4;
}
.drop-down > ul > li > ul > li > a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}
.drop-down > ul > li > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    float: right;
    opacity: 0.4;
    transition: transform 0.3s;
    margin-right: 4px;
    color: #0b1a33;
}
.drop-down > ul > li.open > a::after {
    transform: rotate(180deg);
}
.nav-menu > li.drop-down > a,
.nav-menu > li.drop-down > a:hover,
.nav-menu > li.drop-down:hover > a,
.nav-menu > li.drop-down > a.active {
    color: #0b1a33 !important;
    background: transparent !important;
}

/* ----- desktop header ----- */
@media (min-width: 992px) {
    #header .container {
        flex-wrap: nowrap;
    }
    .mobile-toggle {
        display: none !important;
    }
    nav {
        display: block !important;
        width: auto;
        flex: 1;
    }
    .nav-menu {
        display: flex !important;
        align-items: center;
        gap: 2px;
        justify-content: flex-end;
        padding: 0;
        margin: 0;
        background: transparent;
        border-top: none;
        border-radius: 0;
    }
    .nav-menu > li {
        border-bottom: none;
        position: relative;
    }
    .nav-menu > li > a {
        padding: 6px 14px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        border-radius: 30px;
        white-space: nowrap;
        color: #0b1a33;
    }
    .nav-menu > li > a:hover {
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb;
    }
    .nav-menu > li > a.active {
        color: #2563eb;
    }
    .drop-down > a::after {
        position: static;
        transform: none;
        margin-left: 4px;
        font-size: 11px;
        color: #0b1a33;
    }
    .drop-down.open > a::after {
        transform: none;
    }
    .drop-down > ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: #ffffff;
        border-radius: 10px;
        padding: 6px 0;
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        display: none !important;
        border: 1px solid rgba(0,0,0,0.06);
    }
    .drop-down:hover > ul {
        display: block !important;
    }
    .drop-down > ul > li {
        position: relative;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        padding: 0 4px;
    }
    .drop-down > ul > li:last-child {
        border-bottom: none;
    }
    .drop-down > ul > li > a {
        display: block;
        padding: 8px 16px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        color: #0b1a33;
        text-decoration: none;
        white-space: nowrap;
        position: relative;
    }
    .drop-down > ul > li > a::after {
        content: "\f054";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        opacity: 0.5;
        color: #0b1a33;
    }
    .drop-down > ul > li > a:hover,
    .drop-down > ul > li > ul > li > a:hover {
        background: #f8fafc;
        color: #2563eb;
    }
    .drop-down > ul > li > ul {
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 240px;
        background: #fff;
        border: 1px solid rgba(0,0,0,.06);
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
        padding: 6px 0;
        display: none !important;
    }
    .drop-down > ul > li:hover > ul {
        display: block !important;
    }
    .drop-down > ul > li > ul > li > a {
        display: block;
        padding: 8px 16px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        color: #0b1a33;
        text-decoration: none;
        white-space: nowrap;
    }
    .drop-down > ul > li > ul > li > a::before,
    .drop-down > ul > li > ul > li > a::after {
        display: none;
    }
    .drop-down > ul > li > ul > li > a:hover {
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb;
    }
    .nav-menu > li:last-child > a::after {
        display: none !important;
    }
    .drop-down.open > ul {
        display: none !important;
    }
    .drop-down:hover > ul {
        display: block !important;
    }
    .drop-down > ul > li.open > ul {
        display: none !important;
    }
    .drop-down > ul > li:hover > ul {
        display: block !important;
    }
}

/* ----- mobile dropdown overrides ----- */
@media (max-width: 991px) {
    .drop-down > ul {
        display: none;
    }
    .drop-down.open > ul {
        display: block;
    }
    .drop-down .drop-down > ul {
        display: none;
    }
    .drop-down .drop-down.open > ul {
        display: block;
    }
    .drop-down > a {
        cursor: pointer;
    }
}

/* ----- responsive small display ----- */
@media (max-width: 420px) {
    .logo a {
        font-size: 18px;
    }
    .logo img {
        height: 32px;
    }
    .mobile-toggle {
        font-size: 17px;
        padding: 4px 8px;
    }
    .nav-menu > li > a {
        font-size: 14px;
        padding: 8px 12px;
    }
    .drop-down > ul > li > a {
        font-size: 13px;
        padding: 6px 12px 6px 24px;
    }
    .drop-down > ul > li > ul > li > a {
        font-size: 12px;
        padding: 5px 12px 5px 38px;
    }
}

/* ============================================
   HERO - Updated to support both single & slideshow
   ============================================ */
#hero {
    position: relative;
    min-height: 450px;
    background: #1e293b;
    color: #fff;
    overflow: hidden;
    /* Remove flex since slides handle layout */;
}
/* For single slide (non-slideshow) */
#hero:not(.has-slides) {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background-size: cover;
    background-position: center;
}
/* Slideshow slides */
#hero .slide {
    display: none;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    width: 100%;
}
#hero .slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* Slide overlay - works for both single and slideshow */
#hero .slide-overlay,
.slide-overlay {
    background: rgba(11, 26, 51, 0.75);
    padding: 50px 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* For single slide compatibility */
#hero:not(.has-slides) .slide-overlay {
    background: rgba(11, 26, 51, 0.7);
    padding: 40px 20px;
    min-height: auto;
}

#hero .slide-content {
    width: 100%;
}

.badge {
    background: #2563eb;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}
#hero h1,
.slide-content h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}
#hero p,
.slide-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Slideshow Dots */
.slideshow-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slideshow-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.slideshow-dots .dot.active {
    background: #2563eb;
    border-color: #2563eb;
    transform: scale(1.2);
}
.slideshow-dots .dot:hover {
    background: rgba(255,255,255,0.7);
}
.slideshow-dots .dot.active:hover {
    background: #2563eb;
}

@media (max-width: 768px) {
    #hero {
        min-height: 350px;
    }
    #hero .slide {
        min-height: 350px;
    }
    #hero .slide-overlay,
    .slide-overlay {
        padding: 30px 20px;
        min-height: 300px;
    }
    #hero h1,
    .slide-content h1 {
        font-size: 22px;
    }
    #hero p,
    .slide-content p {
        font-size: 14px;
    }
    .slideshow-dots {
        bottom: 15px;
        gap: 8px;
    }
    .slideshow-dots .dot {
        width: 10px;
        height: 10px;
    }
}
@media (max-width: 480px) {
    #hero {
        min-height: 300px;
    }
    #hero .slide {
        min-height: 300px;
    }
    #hero .slide-overlay,
    .slide-overlay {
        padding: 20px 15px;
        min-height: 260px;
    }
    #hero h1,
    .slide-content h1 {
        font-size: 18px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    .pan-india-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
}

/* ----- trust bar ----- */
#trust-bar {
    background: #f8fafc;
    padding: 16px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
#trust-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0b1a33;
    font-size: 14px;
}
.trust-rating {
    background: #f59e0b;
    color: #0b1a33;
    padding: 4px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.trust-rating i {
    color: #0b1a33;
}

/* ----- features grid ----- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}
.feature-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.feature-item i {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 12px;
}
.feature-item h3 {
    font-size: 17px;
    margin-bottom: 6px;
}
.feature-item p {
    font-size: 14px;
    color: #475569;
    margin: 0;
}
@media (min-width:640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width:992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ----- tabs (curriculum) ----- */
.tab-btn {
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    background: #e2e8f0;
    color: #475569;
}
.tab-btn.active {
    background: #2563eb;
    color: #fff;
}
.curriculum-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}
.curriculum-card h3 {
    font-size: 16px;
    margin: 10px 0 6px;
}
.tab-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}
@media (min-width:600px) {
    .tab-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width:992px) {
    .tab-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ----- comparison table (mobile responsive) ----- */
.comparison-table-wrapper {
    max-width: 850px;
    margin: 30px auto 0;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.comparison-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.comparison-table-wrapper thead tr {
    background: #0b1a33;
}
.comparison-table-wrapper th {
    padding: 14px 16px;
    color: #fff;
    text-align: left;
    font-weight: 700;
}
.comparison-table-wrapper td {
    padding: 14px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}
.comparison-table-wrapper tr:last-child td {
    border-bottom: none;
}
.comparison-table-wrapper tr td:first-child {
    font-weight: 700;
    color: #0b1a33;
    background: #f8fafc;
}
@media (max-width: 768px) {
    .comparison-table-wrapper {
        border: none;
        box-shadow: none;
        background: transparent;
    }
    .comparison-table-wrapper table,
    .comparison-table-wrapper tbody,
    .comparison-table-wrapper tr,
    .comparison-table-wrapper td {
        display: block;
        width: 100%;
    }
    .comparison-table-wrapper thead {
        display: none;
    }
    .comparison-table-wrapper tr {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        margin-bottom: 18px;
        overflow: hidden;
    }
    .comparison-table-wrapper td:first-child {
        background: #0b1a33;
        color: #fff;
        font-weight: 700;
        padding: 14px 16px;
        font-size: 16px;
    }
    .comparison-table-wrapper td:not(:first-child) {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 10px;
        padding: 14px 16px;
        border-bottom: 1px solid #edf2f7;
        color: #475569;
        align-items: start;
    }
    .comparison-table-wrapper td:last-child {
        border-bottom: none;
    }
    .comparison-table-wrapper td:nth-child(2)::before {
        content: "Associate";
        font-weight: 700;
        color: #2563eb;
    }
    .comparison-table-wrapper td:nth-child(3)::before {
        content: "Professional";
        font-weight: 700;
        color: #f59e0b;
    }
}

/* ----- course details table (mobile responsive) ----- */
.details-table-wrapper {
    max-width: 750px;
    margin: 30px auto 0;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.details-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.details-table-wrapper td {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}
.details-table-wrapper tr:last-child td {
    border-bottom: none;
}
.details-table-wrapper td:first-child {
    font-weight: 700;
    color: #0b1a33;
    width: 45%;
    background: #f8fafc;
}
@media (max-width: 640px) {
    .details-table-wrapper table,
    .details-table-wrapper tbody,
    .details-table-wrapper tr,
    .details-table-wrapper td {
        display: block;
    }
    .details-table-wrapper tr {
        border-bottom: 2px solid #e2e8f0;
        padding: 6px 0;
    }
    .details-table-wrapper tr:last-child {
        border-bottom: none;
    }
    .details-table-wrapper td {
        border-bottom: none;
        padding: 6px 16px;
        background: #fff !important;
        width: 100% !important;
        text-align: left;
    }
    .details-table-wrapper td:first-child {
        background: #f8fafc !important;
        font-weight: 700;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 4px;
        margin-bottom: 2px;
    }
    .details-table-wrapper td:first-child i {
        margin-right: 8px;
    }
}

/* ----- FAQ ----- */
.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 16px 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    font-size: 22px;
    color: #2563eb;
}
.faq-item[open] summary::after {
    content: "−";
}
.faq-answer {
    padding: 0 20px 20px;
    color: #475569;
}

/* ----- CTA ----- */
#cta {
    background: #0b1a33;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}
#cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
}
#cta p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* ----- footer ----- */
#footer {
    background: #0b1a33;
    color: #cbd5e1;
    padding: 40px 0 20px;
}
#footer .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
#footer h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 18px;
}
#footer a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin: 4px 0;
}
#footer a:hover {
    color: #fff;
}
#footer .social-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
}
.copyright {
    grid-column: 1/-1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 14px;
}
@media (min-width:768px) {
    #footer .container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ----- who can join ----- */
.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
@media (min-width:600px) {
    .row {
        grid-template-columns: 1fr 1fr;
    }
}
.col-md-6 {
    padding: 0 8px;
}

/* ----- salary grid ----- */
.salary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 30px auto 0;
}
@media (min-width:600px) {
    .salary-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ----- job roles grid ----- */
.job-roles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width:600px) {
    .job-roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width:992px) {
    .job-roles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.job-role-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: 0.3s;
}
.job-role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.job-role-card .role-icon {
    width: 80px;
    height: 80px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: #2563eb;
}
.job-role-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1a33;
    margin-bottom: 6px;
}
.job-role-card .salary-range {
    font-size: 15px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
}
.job-role-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* ----- WhatsApp float ----- */
.wa-float {
    position: fixed !important;
    bottom: 28px;
    right: 28px;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.wa-float .wa-label {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(37, 211, 102, 0.25);
    backdrop-filter: blur(2px);
}
.wa-float .wa-icon {
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    font-size: 34px;
    color: #fff;
    animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@media (max-width:640px) {
    .wa-float {
        bottom: 18px;
        right: 18px;
    }
    .wa-float .wa-icon {
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
    .wa-float .wa-label {
        font-size: 13px;
        padding: 8px 16px;
    }
}
@media (max-width:420px) {
    .wa-float .wa-label {
        display: none;
    }
}

/* ----- Kolkata location highlight ----- */
.location-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 30px 24px;
    border-left: 5px solid #2563eb;
    margin: 30px 0;
}
.location-highlight h3 {
    font-size: 20px;
    color: #0b1a33;
    margin-bottom: 10px;
}
.location-highlight p {
    color: #1e293b;
    font-size: 16px;
    line-height: 1.8;
}
.location-highlight ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}
.location-highlight ul li {
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}
.location-highlight ul li i {
    color: #2563eb;
}
@media (max-width:600px) {
    .location-highlight ul {
        grid-template-columns: 1fr;
    }
}

/* ----- keyword-rich intro ----- */
.keyword-rich {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    border: 1px solid #e2e8f0;
    margin: 30px 0;
}
.keyword-rich h3 {
    font-size: 20px;
    color: #0b1a33;
    margin-bottom: 12px;
}
.keyword-rich p {
    color: #1e293b;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 12px;
}
.keyword-rich ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}
.keyword-rich ul li {
    font-size: 15px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}
.keyword-rich ul li i {
    color: #2563eb;
}
@media (max-width:600px) {
    .keyword-rich ul {
        grid-template-columns: 1fr;
    }
}

/* ----- pan-India badge ----- */
.pan-india-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f59e0b;
    color: #0b1a33;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
}
.pan-india-badge i {
    font-size: 16px;
}

/* ----- direct snippet block (AEO) ----- */
.snippet-block {
    background: #f0f9ff;
    border-left: 5px solid #2563eb;
    padding: 20px 24px;
    border-radius: 8px;
    margin: 20px 0 25px;
    font-size: 17px;
    line-height: 1.8;
    color: #0b1a33;
}
.snippet-block strong {
    color: #2563eb;
}

/* ----- testimonial grid ----- */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 30px auto 0;
}
@media (min-width:768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width:992px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ----- breadcrumb ----- */
.breadcrumb {
    background: #f1f5f9;
    padding: 12px 0;
    font-size: 14px;
}
.breadcrumb .container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}
.breadcrumb a {
    color: #475569;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #2563eb;
}
.breadcrumb .current {
    color: #2563eb;
    font-weight: 600;
}
.breadcrumb .sep {
    color: #94a3b8;
}