/* =====================================================
   ev-systems-2026.css
   Page-specific styles for:
   executive-mtech-in-electrical-vehicle-systems.html
   ===================================================== */

/* ── Block 1: Base page styles ── */

.call-now h3 {
    line-height: 50px;
    font-size: 37px;
    text-align: right;
}

.faq_ques .card .card-header a.card-link {
    background-color: #3f177f;
    color: #ffffff;
}

.faq_ques .card-header a.card-link .fa-minus {
    color: #9966f8;
    background: #ffffff;
}

.faq_ques .table-bordered td,
.table-bordered th {
    color: #ffffff;
}

.faq_ques .card {
    background: #3f177f;
}

.faq_ques .card-header {
    border-bottom: 0px;
}

@media (max-width: 680px) {
    .faq_ques .card-body {
        padding: 0px;
    }

    .size-24 {
        font-size: 2rem;
    }
}

.accordion {
    background-color: #eee;
    color: #2e0969;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    display: block;
}

.accordion.active,
.accordion:hover {
    background-color: #3f177f;
    color: #fff;
}

.accordion:after {
    font-family: "Font Awesome 5 Free";
    content: '\f107';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.accordion.active:after {
    content: '\f106';
    color: #fff;
    font-family: "Font Awesome 5 Free";
}

.panel {
    padding: 0 18px;
    background-color: #f3f3f3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 13px;
}

#accordion {
    margin-bottom: 0px;
}

ul.faculty-list {
    padding-left: 0
}

ul.faculty-list li {
    display: inline-block;
    font-size: 16px;
    width: 23.7%;
    font-weight: 500;
    line-height: 140%;
    background: #fff;
    text-align: center;
    padding: 30px 18px;
    margin: 10px 10px 10px 0;
    vertical-align: top;
    min-height: 380px;
    border-radius: 5px;
    box-shadow: 0 0 12px #00000014;
    position: relative
}

ul.faculty-list li img {
    height: 105px;
    display: block;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 50%;
}

ul.faculty-list li img.faculty-arrow-icon {
    height: 25px;
    margin-top: 10px;
    margin-bottom: 0;
    position: absolute;
    bottom: 20px;
    display: inline-block
}

ul.faculty-list li span {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    display: inline-block
}

ul.faculty-list li span.one {
    min-height: 95px
}

ul.faculty-list li.one {
    min-height: auto
}

ul.faculty-list li span.two {
    min-height: 70px
}

ul.faculty-list li.two {
    min-height: auto
}

/* ── Block 2: Gallery / Lightbox styles ── */

:root {
    --g-radius: 14px;
    --g-shadow: 0 12px 30px rgba(3, 7, 18, .15);
    --g-accent: #4c3782;
}

/* SWIPER CONTAINER (custom) */
.gallery-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--g-shadow);
    border: 1px solid rgba(2, 6, 23, .06);
}

/* TRACK & SLIDES (custom class names) */
.gallery-track {
    display: flex;
    transition-property: transform;
    will-change: transform;
}

.gallery-slide {
    flex-shrink: 0;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

/* CARD */
.gallery-card {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--g-radius);
    overflow: hidden;
    border: 1px solid rgba(2, 6, 23, .06);
    box-shadow: var(--g-shadow);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    background: #fff;
}

.gallery-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ARROWS (custom elements) */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 10;
    transition: transform .15s ease, background .15s ease;
}

.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: #fff7f1;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-arrow svg {
    width: 20px;
    height: 20px;
}

/* LIGHTBOX */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(2px);
}

.gallery-content {
    position: relative;
    max-width: 92%;
    max-height: 92%;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
    transform: scale(.96);
    opacity: 0;
    transition: transform .22s ease, opacity .18s ease;
    background: #000;
}

.gallery-lightbox.active .gallery-content {
    transform: scale(1);
    opacity: 1;
}

.gallery-img {
    display: block;
    width: 100%;
    height: 72vh;
    object-fit: contain;
    background: #000;
}

.gallery-caption {
    position: absolute;
    left: 16px;
    bottom: 12px;
    color: #fff;
    font-size: 14px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, .6);
}

.gallery-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: #fff;
    border: 1px solid rgba(2, 6, 23, .08);
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

/* RESPONSIVE TUNING */
@media (max-width: 1024px) {
    .gallery-slide {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        height: 240px;
    }
}

.sticky-form {
    z-index: 9;
}

.banner-click {
    display: block;
    height: 100%;
    min-height: 490px;
    background-size: contain;
}

/* ── Block 3: Banner form styles ── */

.form-ban {
    right: 0;
    top: 12%;
    max-width: 430px !important;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #3f177f;
    width: 100%;
    position: relative;
}

.form-title {
    text-align: center;
    margin-bottom: 10px;
}

.form-title h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a3769;
    margin-bottom: 5px;
}

.form-title strong {
    color: #3f177f;
}

.form-title p {
    color: #7f8c8d;
    font-size: 0.8rem;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 10px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-control {
    width: 100%;
    padding: 7px 12px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    background: white;
    color: #2e0969;
}

.form-control:focus {
    outline: none;
    border-color: #9966f8;
    box-shadow: 0 0 0 2px rgba(153, 102, 248, 0.1);
}

.form-control::placeholder {
    color: #2e0969;
    font-size: 0.85rem;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px;
    padding-right: 35px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #3f177f;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.75rem;
    color: #4a3769;
    line-height: 1.3;
    cursor: pointer;
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #3f177f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(153, 102, 248, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Tablet adjustments */
@media (min-width: 481px) and (max-width: 768px) {
    .form-ban {
        position: relative !important;
        top: auto;
        right: auto;
        margin: 30px auto 0 auto;
        max-width: 430px !important;
    }
}

/* Desktop adjustments */
@media (min-width: 769px) {
    .form-container {
        max-width: 380px;
    }
}

/* Extra compact for mobile */
@media (max-width: 480px) {
    .form-ban {
        position: relative !important;
        top: auto;
        right: auto;
        margin: 30px auto 0 auto;
        max-width: 430px !important;
    }

    .form-container {
        max-width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-title h2 {
        font-size: 1.2rem;
    }

    .form-control {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .submit-btn {
        padding: 10px;
        font-size: 0.85rem;
    }

    .checkbox-group label {
        font-size: 0.7rem;
    }
}

/* Ultra compact for very small screens */
@media (max-width: 360px) {
    .form-container {
        padding: 12px;
    }

    .form-title {
        margin-bottom: 15px;
    }

    .form-grid {
        gap: 8px;
    }

    .form-control {
        padding: 6px 10px;
    }
}/* =============================================================
   BANNER TWO-COLUMN LAYOUT  â€“ executive-mtech-in-data-science
   ============================================================= */

/* Override banner height so content can breathe */
.banner_area.banner_two.banner-two-col {
    min-height: 560px;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Two-column flex layout */
.banner-layout {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 60px 0 50px;
    width: 100%;
}

/* â”€â”€ LEFT COLUMN â”€â”€ */
.banner-left {
    flex: 0 0 55%;
    max-width: 55%;
    color: #fff;
}

/* Dark overlay wrap so text is always readable against banner background image */
.banner-left-wrap {
    background: linear-gradient(135deg, rgba(62, 20, 130, 0.82) 0%, rgba(46, 9, 105, 0.72) 100%);
    border-radius: 14px;
    padding: 30px 32px 28px;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Breadcrumb */
.banner-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    font-size: 13px;
    opacity: 0.85;
}

.banner-breadcrumb a {
    color: #b48cff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.banner-breadcrumb a:hover {
    opacity: 0.7;
}

.banner-breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Title */
.banner-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Highlight bullets */
.banner-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.banner-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    margin-bottom: 11px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid #9966f8;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.banner-highlights li:hover {
    background: rgba(255, 255, 255, 0.14);
}

.banner-highlights li i.fas.fa-check-circle {
    color: #9966f8;
    font-size: 17px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* CTA Buttons */
.banner-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.banner-btn--primary {
    background: #9966f8;
    color: #fff;
    border-color: #9966f8;
    box-shadow: 0 6px 20px rgba(153, 102, 248, 0.45);
}

.banner-btn--primary:hover {
    background: #3e1482;
    border-color: #3e1482;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(62, 20, 130, 0.5);
    color: #fff;
    text-decoration: none;
}

.banner-btn--secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.banner-btn--secondary:hover {
    background: #fff;
    color: #3f177f;
    transform: translateY(-2px);
    text-decoration: none;
}

/* â”€â”€ RIGHT COLUMN â€“ FORM CARD â”€â”€ */
.banner-right {
    flex: 0 0 42%;
    max-width: 42%;
}

.banner-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Form card header */
.banner-form-header {
    background: linear-gradient(135deg, #3e1482 0%, #b48cff 100%);
    padding: 20px 24px 18px;
    text-align: center;
}

.banner-form-header h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}

.banner-form-header h3 span {
    color: #9966f8;
}

.banner-form-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12.5px;
    margin: 0;
}

/* Form body */
.banner-form {
    padding: 20px 22px 22px;
}

.bform-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.bform-group {
    flex: 1;
}

.bform-group--full {
    flex: 0 0 100%;
    width: 100%;
}

.bform-control {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid #e0e6ed;
    border-radius: 7px;
    font-size: 13.5px;
    background: #f8fafc;
    color: #2e0969;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.bform-control:focus {
    border-color: #9966f8;
    box-shadow: 0 0 0 3px rgba(153, 102, 248, 0.12);
    background: #fff;
}

.bform-control::placeholder {
    color: #8973af;
    font-size: 13px;
}

select.bform-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 13px;
    padding-right: 34px;
    cursor: pointer;
}

/* Consent checkbox */
.bform-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
}

.bform-checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #3f177f;
    flex-shrink: 0;
    margin-top: 2px;
}

.bform-checkbox label {
    font-size: 12px;
    color: #4a3769;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
}

/* Submit button */
.bform-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3e1482 0%, #b48cff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 16px rgba(62, 20, 130, 0.4);
}

.bform-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(180, 140, 255, 0.5);
}

.bform-submit:active {
    transform: translateY(0);
}

/* â”€â”€ MOBILE RESPONSIVENESS â”€â”€ */
@media (max-width: 991px) {
    .banner-layout {
        flex-direction: column;
        gap: 30px;
        padding: 45px 0 40px;
    }

    .banner-left,
    .banner-right {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .banner-title {
        font-size: 1.85rem;
    }

    .banner_area.banner_two.banner-two-col {
        min-height: auto;
    }

    .banner-left-wrap {
        padding: 24px 24px 22px;
    }
}

@media (max-width: 767px) {
    .banner-layout {
        padding: 35px 0 30px;
    }

    .banner-title {
        font-size: 1.55rem;
    }

    .banner-highlights li {
        font-size: 14px;
    }

    .banner-cta-btns {
        flex-direction: column;
    }

    .banner-btn {
        justify-content: center;
        padding: 12px 20px;
    }

    .bform-row {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.35rem;
    }

    .banner-form-header h3 {
        font-size: 1.05rem;
    }

    .banner-form-card {
        border-radius: 12px;
    }
}

/* =============================================================
   CUSTOM STYLING FOR USER CONTACT FORM (contact-form)
   ============================================================= */
.banner-form-card .contact-form {
    padding: 24px 28px 24px;
}

.banner-form-card .contact-form .row {
    margin-left: -6px;
    margin-right: -6px;
}

.banner-form-card .contact-form .col-md-6,
.banner-form-card .contact-form .col-12 {
    padding-left: 6px;
    padding-right: 6px;
}

.banner-form-card .contact-form .form-group {
    margin-bottom: 12px;
}

.banner-form-card .contact-form .form-control {
    width: 100% !important;
    padding: 10px 14px;
    height: 44px;
    border: 1.5px solid #e0e6ed;
    border-radius: 8px;
    font-size: 13.5px;
    background: #f8fafc;
    color: #2e0969;
    transition: all 0.25s ease;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.banner-form-card .contact-form .form-control:focus {
    border-color: #9966f8;
    box-shadow: 0 0 0 3px rgba(153, 102, 248, 0.12);
    background: #fff;
    outline: none;
}

.banner-form-card .contact-form .form-control::placeholder {
    color: #8973af;
    font-size: 13px;
}

.banner-form-card .contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 36px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.banner-form-card .contact-form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #3f177f;
    vertical-align: middle;
    margin-top: 0;
    margin-right: 6px;
    cursor: pointer;
}

.banner-form-card .contact-form .text-center p {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 13px !important;
    color: #4a3769 !important;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: left !important;
}

.banner-form-card .contact-form .common-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #9966f8 0%, #3e1482 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 16px rgba(153, 102, 248, 0.4);
    display: block;
    margin-top: 10px;
}

.banner-form-card .contact-form .common-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(153, 102, 248, 0.5);
    background: linear-gradient(135deg, #3e1482 0%, #b48cff 100%);
    color: #fff;
}

.common-btn:before{
    background: transparent;
}

/* =============================================================
   COURSE INFO STRIP – Duration / Fees / Eligibility
   ============================================================= */
.ev-course-info-strip {
    background: #f8fafc; /* Premium light grey background */
    padding: 40px 0;
    font-family: 'Heebo', sans-serif;
    position: relative;
    border-bottom: 1px solid #f8fafc;
}

.ev-info-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 25px;
}

/* Card Styling */
.ev-info-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 85px 10px 30px;
    box-shadow: 0 12px 35px rgba(46, 9, 105, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    overflow: hidden;
}

.ev-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(46, 9, 105, 0.09);
}

.ev-info-card--duration {
    flex: 1;
}

.ev-info-card--fees {
    flex: 1;
}

.ev-info-card--eligibility {
    flex: 1.8;
}

/* Icon Block */
.ev-info-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 65px;
    border-radius: 0 0 20px 0;
    background: linear-gradient(135deg, rgba(63, 23, 127, 0.18) 0%, rgba(153, 102, 248, 0.05) 100%);
    border-right: 1px solid rgba(63, 23, 127, 0.15);
    border-bottom: 1px solid rgba(63, 23, 127, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ev-info-icon i {
    font-size: 26px;
    color: #3f177f;
}

/* Body Text Block */
.ev-info-body {
    flex: 1;
}

.ev-info-title {
    font-size: 19px;
    font-weight: 700;
    color: #2e0969;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.ev-info-body p {
    font-size: 14.5px;
    color: #4a3769 !important;
    line-height: 1.7;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.ev-info-body p:last-child {
    margin-bottom: 0;
}

/* Custom Lists inside Course Info Strip */
.ev-custom-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.ev-custom-list li {
    font-size: 14.5px;
    color: #4a3769;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    font-weight: 400;
}

.ev-custom-list li:last-child {
    margin-bottom: 0;
}

.ev-custom-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #9966f8;
    font-size: 13px;
}

.ev-sub-note {
    font-size: 13px;
    color: #907db4 !important;
    margin-top: 10px !important;
    font-style: italic;
}

.ev-sub-title {
    font-size: 17px;
    font-weight: 700;
    color: #2e0969;
    margin-bottom: 10px;
}

.ev-numbered-list {
    padding-left: 18px;
    margin: 0;
}

.ev-numbered-list > li {
    font-size: 14.5px;
    color: #4a3769;
    line-height: 1.6;
    margin-bottom: 10px;
}

.ev-numbered-list > li > strong {
    color: #2e0969;
}

.ev-circle-list {
    list-style-type: circle;
    padding-left: 20px;
}

.ev-circle-list li {
    font-size: 14px;
    color: #4a3769;
    line-height: 1.6;
    margin-bottom: 5px;
}

.ev-info-relaxation {
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px dashed #f1f5f9;
}

.ev-info-relaxation strong {
    font-weight: 700;
    color: #2e0969;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .ev-info-grid {
        flex-wrap: wrap;
    }
    
    .ev-info-card--duration,
    .ev-info-card--fees {
        flex: 0 0 calc(50% - 12.5px);
    }
    
    .ev-info-card--eligibility {
        flex: 0 0 100%;
        margin-top: 5px;
    }

    .ev-course-info-strip {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .ev-info-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .ev-info-card--duration,
    .ev-info-card--fees,
    .ev-info-card--eligibility {
        flex: 0 0 100%;
        margin-top: 0;
    }
    
    .ev-info-card {
        padding: 75px 20px 20px 20px;
    }

    .ev-info-icon {
        width: 55px;
        height: 55px;
        border-radius: 0 0 16px 0;
    }

    .ev-info-icon i {
        font-size: 22px;
    }

    .ev-info-title {
        font-size: 18px;
    }

    .ev-info-body p {
        font-size: 14px;
    }

    .ev-course-info-strip {
        padding: 40px 0;
    }
}






