body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* =====================================================
   COURSE PAGE
===================================================== */

.bitc-course-page {
    width: 100%;
    overflow: hidden;
}


/* =====================================================
   COMMON CONTAINER
===================================================== */

.bitc-course-page .bitc-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.course-section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.course-section-label {
    display: inline-block;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: #102f6b;

    margin-bottom: 14px;

    position: relative;
    padding-bottom: 12px;
}


/* YELLOW UNDERLINE */

.course-section-label::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 45px;
    height: 4px;

    transform: translateX(-50%);

    background: #f5c400;

    border-radius: 5px;
}


.course-section-heading h1,
.course-section-heading h2 {
    margin: 0 0 20px;

    font-family: "Inter", sans-serif;

    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;

    font-weight: 800;

    color: #0c326f;
}


.course-section-heading h1 span,
.course-section-heading h2 span {
    color: #e52b2b;
}


.course-section-heading p {
    max-width: 760px;

    margin: 0 auto;

    font-family: "Inter", sans-serif;

    font-size: 17px;
    line-height: 1.8;

    color: #555;
}


/* =====================================================
   OUR COURSES
===================================================== */

.course-intro {
    padding: 90px 0 100px;

    background: #fff;
}


/* =====================================================
   COURSE GRID
===================================================== */

.course-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* =====================================================
   COURSE CARD
===================================================== */

.course-card {
    position: relative;

    padding: 35px 32px;

    background: #fff;

    border: 1px solid #e5e8ee;

    border-radius: 16px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;

    overflow: hidden;
}


.course-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #f5c400;
}


.course-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.11);
}


/* =====================================================
   COURSE ICON
===================================================== */

.course-card-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: #eef4ff;

    color: #103a7c;

    font-size: 27px;
}


.course-number {
    position: absolute;

    top: 25px;
    right: 28px;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 700;

    color: #aaa;
}


.course-card h2 {
    margin: 0 0 14px;

    font-family: "Inter", sans-serif;

    font-size: 25px;
    line-height: 1.25;

    color: #0b326f;

    font-weight: 700;
}


.course-card p {
    margin: 0 0 25px;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    line-height: 1.75;

    color: #666;
}


.course-card-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    font-weight: 700;

    color: #103b7d;

    transition: gap 0.3s ease;
}


.course-card-link i {
    color: #eab900;
}


.course-card-link:hover {
    gap: 14px;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.course-testimonials {
    padding: 95px 0 100px;

    background: #edf5ff;
}


/* =====================================================
   TESTIMONIAL GRID
===================================================== */

.course-testimonial-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* =====================================================
   TESTIMONIAL CARD
===================================================== */

.course-testimonial-card {
    padding: 32px;

    background: #fff;

    border-radius: 16px;

    border: 1px solid #e1e7f0;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}


.testimonial-stars {
    display: flex;

    gap: 5px;

    margin-bottom: 18px;

    color: #f5c400;

    font-size: 15px;
}


.course-testimonial-card > p {
    margin: 0 0 28px;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: #555;

    font-style: italic;
}


/* =====================================================
   STUDENT
===================================================== */

.testimonial-student {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-top: 20px;

    border-top: 1px solid #eee;
}


.testimonial-avatar {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #103b7d;

    color: #fff;

    font-size: 17px;
}


.testimonial-student strong {
    display: block;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    color: #102f6b;
}


.testimonial-student span {
    display: block;

    margin-top: 3px;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    color: #777;
}


/* =====================================================
   VIEW MORE
===================================================== */

.testimonial-view-more {
    text-align: center;

    margin-top: 42px;
}


.testimonial-view-more a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 25px;

    border-radius: 7px;

    background: #103b7d;

    color: #fff;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.testimonial-view-more a i {
    color: #f5c400;
}


.testimonial-view-more a:hover {
    background: #e52b2b;

    transform: translateY(-2px);
}


/* =====================================================
   WHY BHARAT ITC
===================================================== */

.course-why {
    padding: 95px 0 100px;

    background: #f8f9fb;
}


/* =====================================================
   WHY GRID
===================================================== */

.course-why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


.course-why-card {
    padding: 32px 25px;

    text-align: center;

    background: #fff;

    border-radius: 15px;

    border: 1px solid #e4e7ec;

    transition: all 0.3s ease;
}


.course-why-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


.course-why-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef4ff;

    color: #103b7d;

    font-size: 23px;
}


.course-why-card h3 {
    margin: 0 0 12px;

    font-family: "Inter", sans-serif;

    font-size: 19px;

    color: #102f6b;
}


.course-why-card p {
    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #666;
}


/* =====================================================
   CTA
===================================================== */

.course-cta {
    padding:22px 0;

    background: #092952;
}


.course-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.course-cta-inner > div:first-child {
    max-width: 700px;
}


.course-cta-inner span {
    display: block;

    margin-bottom: 12px;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #f5c400;
}


.course-cta-inner h2 {
    margin: 0 0 12px;

    font-family: "Inter", sans-serif;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.2;

    color: #fff;
}


.course-cta-inner h2 strong {
    color: #f5c400;
}


.course-cta-inner p {
    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 16px;

    line-height: 1.7;

    color: #d7e0ee;
}


/* =====================================================
   CTA BUTTONS
===================================================== */

.course-cta-buttons {
    display: flex;

    gap: 13px;

    flex-shrink: 0;
}


.course-cta-buttons a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 15px 24px;

    border-radius: 7px;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.course-cta-buttons a:first-child {
    background: #f5c400;

    color: #082d66;
}


.course-cta-buttons a:last-child {
    border: 1px solid #fff;

    color: #fff;
}


.course-cta-buttons a:hover {
    transform: translateY(-3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .bitc-course-page .bitc-container {
        width: min(100% - 28px, 1200px);
    }


    .course-intro,
    .course-testimonials,
    .course-why {
        padding: 65px 0 70px;
    }


    .course-section-heading {
        margin-bottom: 38px;
    }


    .course-section-heading h1,
    .course-section-heading h2 {
        font-size: 34px;
    }


    .course-section-heading p {
        font-size: 15px;
    }


    .course-grid,
    .course-testimonial-grid,
    .course-why-grid {
        grid-template-columns: 1fr;
    }


    .course-card {
        padding: 28px 24px;
    }


    .course-testimonial-card {
        padding: 27px 23px;
    }


    .course-cta {
        padding: 55px 0;
    }


    .course-cta-buttons {
        width: 100%;

        flex-direction: column;
    }


    .course-cta-buttons a {
        width: 100%;
    }

}