
p{
    font-size: 16px !important;
}/* heading */
.heading h2{
    font-size: 30px;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .heading h2{
        font-size: 25px !important;
        font-weight: 900 !important;
    }
    .heading h3{
    font-size: 23px !important;
    font-weight: 900 !important;
    margin-bottom: 10px !important;
}
    .heading span{
        font-size: 23px !important;
        font-weight: 900 !important;
    }
}

.hyperlink{
         color:#093469; 
         font-weight: bold;
       }
       span{
            color: #a30500;
       }

       /* --- CSS for the section --- */
.course-highlights-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.course-highlights-section .section-title {
    color: #000000;
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.course-highlights-section .responsive-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #1a2b4c;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course-highlights-section .responsive-table th {
    background-color: #1a2b4c;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border: 1px solid #1a2b4c;
}

.course-highlights-section .responsive-table td {
    padding: 15px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #333;
    vertical-align: top;
    font-weight: 600;
}

.course-highlights-section .responsive-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 768px) {

    .course-highlights-section {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .course-highlights-section .section-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .course-highlights-section .responsive-table {
        width: 100%;
        display: table;
        table-layout: fixed;
        border-collapse: collapse;
    }

    .course-highlights-section .responsive-table thead {
        display: table-header-group;
    }

    .course-highlights-section .responsive-table tbody {
        display: table-row-group;
    }

    .course-highlights-section .responsive-table tr {
        display: table-row;
    }

    .course-highlights-section .responsive-table th,
    .course-highlights-section .responsive-table td {
        display: table-cell;
        box-sizing: border-box;
        padding: 12px 10px;
        font-size: 14px;
        line-height: 1.5;
        vertical-align: middle;
        word-break: normal;
        overflow-wrap: break-word;
    }

    /* Particulars column */
    .course-highlights-section .responsive-table th:first-child,
    .course-highlights-section .responsive-table td:first-child {
        width: 35%;
    }

    /* Details column */
    .course-highlights-section .responsive-table th:last-child,
    .course-highlights-section .responsive-table td:last-child {
        width: 65%;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media screen and (max-width: 480px) {

    .course-highlights-section {
        padding: 8px;
    }

    .course-highlights-section .section-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .course-highlights-section .responsive-table th,
    .course-highlights-section .responsive-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .course-highlights-section .responsive-table th:first-child,
    .course-highlights-section .responsive-table td:first-child {
        width: 35%;
    }

    .course-highlights-section .responsive-table th:last-child,
    .course-highlights-section .responsive-table td:last-child {
        width: 65%;
    }
}

    /* why choose us  */

    span{
        color: #a30500;
    }

    .why-choose-us h2{
        font-size: 30px;
        font-weight: 700;
        /* color:blue; */
        
    }

    /* eligibility criteria */
    /* --- CSS for Eligibility Criteria Section --- */
    .eligibility-criteria-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 30px 20px;
        max-width: 900px;
        margin: auto;
    }

    .eligibility-criteria-section .section-title {
       color: #000000; /* Matches the theme from previous design */
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        padding-bottom: 10px;
        text-align: center;
        /* border-bottom: 2px solid #a0522d; */
    }

    .eligibility-criteria-section .section-subtitle {
        font-size: 16px;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .eligibility-criteria-section .eligibility-cards-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .eligibility-criteria-section .eligibility-card {
        display: flex;
        align-items: flex-start;
        background: #fdfdfd;
        border: 1px solid #ddd;
        border-left: 5px solid #1a2b4c; /* Matches table header dark blue tone */
        padding: 20px;
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .eligibility-criteria-section .eligibility-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .eligibility-criteria-section .card-icon {
        font-size: 24px;
        margin-right: 15px;
        background: #f0f4f8;
        padding: 10px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .eligibility-criteria-section .card-content h3 {
        margin: 0 0 8px 0;
        font-size: 18px;
        color: #1a2b4c;
    }

    .eligibility-criteria-section .card-content p {
        margin: 0;
        font-size: 15px;
        color: #333;
        line-height: 1.5;
        text-align: left !important;
    }

    /* --- Responsive Design --- */
    @media screen and (max-width: 600px) {
        .eligibility-criteria-section {
            padding: 15px 10px;
        }

        .eligibility-criteria-section .section-title {
            font-size: 22px;
        }

        .eligibility-criteria-section .eligibility-card {
            flex-direction: column;
            align-items: flex-start;
            padding: 15px;
        }

        .eligibility-criteria-section .card-icon {
            margin-bottom: 10px;
            margin-right: 0;
        }
    }
    /* admission process */
    /* --- CSS for Admission Process Section --- */
    .admission-process-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 40px 20px;
        text-align: center;
        max-width: 1200px;
        margin: auto;
    }

    .admission-process-section .section-title {
        color: #000000; /* Theme color */
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        padding-bottom: 10px;
        /* border-bottom: 2px solid #a0522d; */
    }

    .admission-process-section .section-subtitle {
        font-size: 16px;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    /* Horizontal layout using Flexbox */
    .admission-process-section .admission-steps-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: nowrap; /* Keeps cards in a horizontal line on desktop */
        overflow-x: auto;  /* Allows smooth horizontal scrolling if screen space is tight */
        padding-bottom: 15px;
    }

    .admission-process-section .admission-card {
        background: #fdfdfd;
        border: 1px solid #ddd;
        border-top: 4px solid #1a2b4c; /* Accent top border */
        border-radius: 6px;
        padding: 15px;
        flex: 1;
        min-width: 200px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        position: relative;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .admission-process-section .admission-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .admission-process-section .step-number {
        font-size: 20px;
        font-weight: 700;
        color: #1a2b4c;
        background: #f0f4f8;
        width: 40px;
        height: 40px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 15px;
    }

    .admission-process-section .admission-card h3 {
        margin: 0 0 10px 0;
        font-size: 16px;
        color: #1a2b4c;
    }

    .admission-process-section .admission-card p {
        margin: 0;
        font-size: 14px;
        color: #555;
        line-height: 1.4;
        text-align: left;
    }

    /* --- Responsive Design --- */
    @media screen and (max-width: 992px) {
        .admission-process-section .admission-steps-container {
            flex-direction: column; /* Stack cards vertically on smaller/mobile screens */
            overflow-x: visible;
        }

        .admission-process-section .admission-card {
            width: 100%;
            min-width: 100%;
            border-top: 1px solid #ddd;
            border-left: 5px solid #1a2b4c; /* Switch accent border to left for stacked look */
        }
    }

    /* documents required */
    /* --- CSS for Documents Required Section --- */
    .documents-required-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 40px 20px;
        max-width: 1100px;
        margin: auto;
        text-align: center;
    }

    .documents-required-section .section-header-box {
        margin-bottom: 30px;
    }

    .documents-required-section .section-title {
       color: #000000; /* Theme color */
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        padding-bottom: 10px;
        /* border-bottom: 2px solid #a0522d; */
    }

    .documents-required-section .section-subtitle {
        font-size: 16px;
        color: #555;
        line-height: 1.5;
        margin: 0;
    }

    /* Modern CSS Grid Layout */
    .documents-required-section .documents-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .documents-required-section .document-card {
        background: #ffffff;
        border: 1px solid #e1e8ed;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .documents-required-section .document-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
        border-color: #1a2b4c;
    }

    .documents-required-section .doc-icon {
        font-size: 28px;
        background: #f0f4f8;
        width: 50px;
        height: 50px;
        min-width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .documents-required-section .doc-content h3 {
        margin: 0 0 6px 0;
        font-size: 16px;
        color: #1a2b4c;
        font-weight: 800;
        text-align: left;
    }

    .documents-required-section .doc-content p {
        margin: 0;
        font-size: 16px;
        color: #666;
        line-height: 1.4;
    }

    /* --- Responsive Design Adjustments --- */
    @media screen and (max-width: 768px) {
        .documents-required-section {
            padding: 20px 10px;
        }

        .documents-required-section .section-title {
            font-size: 22px;
        }

        .documents-required-section .documents-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
        }
    }

    /* career roles */
    /* --- Premium CSS for Career Roles Section --- */
    .career-roles-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 40px 20px;
        max-width: 1200px;
        margin: auto;
        background: linear-gradient(to bottom, #f8fafc, #ffffff);
        border-radius: 16px;
    }

    .career-roles-section .section-header-box {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 40px auto;
    }

    .career-roles-section .section-badge {
        display: inline-block;
        background-color: #f0f4f8;
        color: #1a2b4c;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 12px;
        border: 1px solid #d1d9e6;
    }

    .career-roles-section .section-title {
        color: #000000; /* Theme color */
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }

    .career-roles-section .section-subtitle {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

    /* Premium Grid Layout */
    .career-roles-section .career-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 24px;
    }

    .career-roles-section .career-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .career-roles-section .career-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #1a2b4c, #a0522d);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .career-roles-section .career-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-color: #cbd5e1;
    }

    .career-roles-section .career-card:hover::before {
        opacity: 1;
    }

    .career-roles-section .card-icon-wrapper {
        width: 56px;
        height: 56px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        margin:auto;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        /* margin-bottom: 20px; */
        transition: background-color 0.3s ease;
    }

    .career-roles-section .career-card:hover .card-icon-wrapper {
        background: #f0f4f8;
    }

    .career-roles-section .card-icon-wrapper .icon {
        font-size: 26px;
    }

    .career-roles-section .card-body h3 {
        margin: 0 0 10px 0;
        font-size: 20px;
        text-align: center;
        color: #1a2b4c;
        font-weight: 700;
        letter-spacing: -0.3px;
    }

    .career-roles-section .card-body p {
        margin: 0 0 20px 0;
        font-size: 15px;
        color: #64748b;
        line-height: 1.6;
    }

    .career-roles-section .card-footer {
        border-top: 1px solid #f1f5f9;
        padding-top: 16px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .career-roles-section .tag {
        font-size: 12px;
        font-weight: 600;
        color: #475569;
        background-color: #f1f5f9;
        padding: 4px 10px;
        border-radius: 6px;
    }

    /* --- Responsive Design Adjustments --- */
    @media screen and (max-width: 768px) {
        .career-roles-section {
            padding: 30px 15px;
        }

        .career-roles-section .section-title {
            font-size: 24px;
        }

        .career-roles-section .career-grid {
            grid-template-columns: 1fr;
        }
    }

    /* list */
    .mb{
        margin-bottom: 10px;
    }
    .mb .choose-list{
        padding: 8px 0;
    }

    /* placement */
    /* --- CSS for Placement Support Section --- */
    .placement-support-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 50px 20px;
        max-width: 1200px;
        margin: auto;
    }

    .placement-support-section .section-header-box {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 35px auto;
    }

    .placement-support-section .section-badge {
        display: inline-block;
        background-color: #f0f4f8;
        color: #1a2b4c;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 12px;
        border: 1px solid #d1d9e6;
    }

    .placement-support-section .section-title {
        color: #000000; /* Theme color */
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: -0.3px;
    }

    .placement-support-section .section-subtitle {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

    .placement-content-wrapper {
        background: #ffffff;
        border: 1px solid #e1e8ed;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .placement-banner-card {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        background: #f8fafc;
        border-left: 5px solid #1a2b4c;
        padding: 24px;
        border-radius: 8px;
        margin-bottom: 25px;
    }

    .placement-banner-card .banner-icon {
        font-size: 36px;
        background: #ffffff;
        width: 60px;
        height: 60px;
        min-width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .placement-banner-card .banner-text h3 {
        margin: 0 0 8px 0;
        font-size: 18px;
        color: #1a2b4c;
        font-weight: 700;
    }

    .placement-banner-card .banner-text p {
        margin: 0;
        font-size: 15px;
        color: #475569;
        line-height: 1.6;
    }

    .placement-highlights-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }

    .placement-highlights-grid .highlight-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        padding: 14px 18px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        color: #1a2b4c;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .placement-highlights-grid .highlight-item:hover {
        transform: translateY(-2px);
        border-color: #1a2b4c;
    }

    .placement-highlights-grid .check-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        background: #e6f4ea;
        color: #137333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
    }

    /* --- Responsive Design Adjustments --- */
    @media screen and (max-width: 768px) {
        .placement-support-section {
            padding: 30px 10px;
        }

        .placement-support-section .section-title {
            font-size: 22px;
        }

        .placement-banner-card {
            flex-direction: column;
            gap: 15px;
            padding: 18px;
        }

        .placement-highlights-grid {
            grid-template-columns: 1fr;
        }
    }

    /* new list styles */
    .new-list .choose-list {
        list-style-type: none !important; /* Use disc bullets */
        margin: 0; 
        
    }
    .choose-para ul{
        padding-left: 20px; 
        margin: 0; 
       
    }
    .choose-para ul .choose-list {
        color: #65656a;
        font-size: 15px;
    }

    /* faq lady  */
    .faq-per {
    width: 70%;
    margin-left: 55px !important;
    margin-top: 120px !important;
}

/* cta  */
.commitment-section {
    position: relative;
    padding: 55px 0;
    background: linear-gradient(135deg, #f7fbff, #ffffff);
    overflow: hidden;
}

/* Soft background decoration */
.commitment-section::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.08);
    top: -100px;
    left: -80px;
}

.commitment-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(220, 0, 0, 0.05);
    bottom: -100px;
    right: -70px;
}

.commitment-wrapper {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;

    gap: 35px;

    padding: 30px 40px;

    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}


/* =========================
   CONTACT CARDS
========================= */

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 24px;

    transition: all 0.3s ease;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-content span {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-content a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #222;

    transition: 0.3s ease;
}


/* WhatsApp */

.whatsapp-icon {
    /* background: #25d366 ;  */
    color: #25d366;
}
.whatsapp-icon i {
    background: #25d366 !important;
}

.whatsapp-card:hover .whatsapp-icon {
    background: #25d366;
    /* color: #fff; */
    transform: translateY(-3px);
}

.whatsapp-card:hover .contact-content a {
    color: #25d366;

}


/* Phone */

.phone-icon {
    background: #fff3e8;
    color: #f07800;
}

.phone-card:hover .phone-icon {
    background: #f07800;
    color: #fff;
    transform: translateY(-3px);
}

.phone-card:hover .contact-content a {
    color: #f07800;
}


/* =========================
   CENTER HEADING
========================= */

.commitment-heading {
    text-align: center;

    padding: 0 20px;

    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
}

.small-title {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;

    color: #e00000;
}

.commitment-heading h2 {
    margin: 0;

    font-size: 28px;
    line-height: 1.25;

    font-weight: 700;
    color: #222;
}

.commitment-heading h2 strong {
    color: #e00000;
}

.commitment-heading p {
    margin: 10px 0 0;

    font-size: 14px;
    color: #777;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    .commitment-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
    }

    .commitment-heading {
        order: -1;

        padding: 0 0 20px;

        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #eeeeee;
    }

    .whatsapp-card,
    .phone-card {
        justify-content: center;
    }
}


@media (max-width: 576px) {

    .commitment-section {
        padding: 35px 15px;
    }

    .commitment-wrapper {
        padding: 25px 18px;
        border-radius: 14px;
    }

    .commitment-heading h2 {
        font-size: 23px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 20px;
    }

    .contact-content a {
        font-size: 14px;
    }
}