﻿* {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: RobotRegular;
    src: url(../fonts/Roboto/Roboto-Regular.ttf);
}

@font-face {
    font-family: RobotMedium;
    src: url(../fonts/Roboto/Roboto-Medium.ttf);
}



body {
    overflow-x: hidden;
    font-family: RobotRegular;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: RobotMedium;
    font-weight: 500;
}



.bannerImg {
    background-image: url(../images/Traincrest-Banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: block;
    position: relative;
    padding: 100px 0px;
    z-index: 1;
    background-color: #fff;
}

    .bannerImg::after {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
        z-index: -1;
    }

.bnrBtn {
    width: 100%;
    display: flex;
    align-items: center;
}

    .bnrBtn button:nth-child(1) {
        margin-right: 10px;
    }

.bannerText .bnrBtn .bannerPrimaryBtn {
    background-color: #fff;
    color: #011E66;
    padding: 10px 30px !important;
    border-radius: 50px;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.bannerText .bnrBtn .bannerSecondaryBtn {
    background-color: #011E66;
    color: #fff;
    padding: 10px 30px !important;
    border-radius: 50px;
    outline: none;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.bannerText .bnrBtn .bannerPrimaryBtn:hover {
    background-color: #011E66;
    color: #fff;
    transition: all 0.3s ease;
}

.bannerText .bnrBtn .bannerSecondaryBtn:hover {
    background-color: #fff;
    color: #011E66;
    transition: all 0.3s ease;
}

.bannerText .bnrBtn .bannerPrimaryBtn:hover,
.bannerText .bnrBtn .bannerSecondaryBtn:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btnBg {
    background-color: #ff7900;
    color: #fff;
    padding: 10px 30px !important;
    border-radius: 50px;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.btnWhite {
    background-color: #fff;
    color: #222;
    padding: 10px 30px;
    border-radius: 50px;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.bannerText {
    width: 100%;
    display: block;
    color: #fff;
}

    .bannerText h1 {
        font-size: 60px;
        font-weight: 600;
    }

    .bannerText h1,
    .bannerText p,
    .bannerText .bnrBtn button {
        font-family: 'Montserrat', sans-serif;
    }

    .bannerText .bnr-slug p {
        align-items: center;
        align-content: center;
        justify-content: center;
        width: 250px;
        height: 40px;
        background-color: #ff7900;
        padding: 4px 4px;
        border-radius: 20px;
        text-align: center;
        font-size: 16px;
        color: rgba(0, 0, 0, 0.8);
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
    }

    .bannerText .bnr-slug span {
        font-weight: bolder;
    }

.headingDiv {
    padding-top: 70px;
    padding-bottom: 50px;
    text-align: center;
}



/* CSS styles for tabs */
.tabs-container {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #222;
}

.tab {
    cursor: pointer;
    padding: 14px 20px;
    font-size: 15px;
    background-color: transparent;
    border: none;
    outline: none;
}

    .tab.activateTab {
        background-color: #222;
        color: #fff;
        border-radius: 50px;
    }

.tab-content {
    display: none;
    width: 100%;
    box-sizing: border-box;
}

    .tab-content.activateTab {
        display: block;
    }

.courseCard {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.courseImageDiv {
    flex: 1;
}

.courseImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.courseContentDiv {
    flex: 2;
    padding: 20px;
    background-color: #fff;
}

.courseHeadingDiv {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.courseDescriptionDiv {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.courseDetailsDiv {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.courseFooterDiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    padding-top: 10px;
}

.courseRatingDiv {
    display: flex;
    align-items: center;
}

.stars {
    color: gold;
    margin-right: 5px;
}

.ratingCount {
    color: #666;
    font-size: 0.8em;
}

.coursePriceDiv {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.tab-content .courseCard:nth-child(1),
.tab-content .courseCard:nth-child(2) {
    margin-bottom: 0px;
}

.centerBtnDiv {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 50px;
}

.greyBg {
    background-color: #f9f9f9;
}

.logoSliderDiv {
    border: 1px solid #ff7900;
    background-color: #fff;
    border-radius: 20px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

    .logoSliderDiv:hover {
        background-color: rgba(255, 121, 0, 0.2);
    }

.techdiv {
    width: 100%;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    /*  height: 265px;*/
}

    .techdiv img {
        display: block;
        border-radius: 10px;
        width: 100%;
    }

    .techdiv p:nth-child(2) {
        margin-top: 20px;
        font-size: 18px;
        margin-bottom: 0px;
    }

    .techdiv p:nth-child(3) {
        margin-bottom: 10px;
    }

.journeyContainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    margin: 50px auto;
    padding: 20px;
}

.textSection {
    flex: 1;
    padding-right: 20px;
}

.imageSection {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.journeyImage {
    width: 100%;
    border-radius: 8px;
}

.courseHeadingDiv {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subHeadingDiv {
    font-size: 1.2em;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.stepsDiv {
    display: flex;
    flex-wrap: wrap;
}

.stepDiv {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 45%;
    margin-right: 5%;
}

    .stepDiv:nth-child(2n) {
        margin-right: 0;
    }

.stepNumberDiv {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    background-color: #e74c3c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

    .stepNumberDiv:nth-child(2) {
        background-color: #1abc9c;
    }

    .stepNumberDiv:nth-child(3) {
        background-color: #3498db;
    }

    .stepNumberDiv:nth-child(4) {
        background-color: #e67e22;
    }

.stepContentDiv {
    flex: 1;
}

.stepTitleDiv {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stepDescriptionDiv {
    font-size: 0.9em;
    color: #7f8c8d;
}






.footerContainer {
    background-color: #002147;
}

.footerLogoDiv img {
    max-width: 150px;
    filter: brightness(0) invert(1);
}

.footerTextDiv {
    font-size: 0.9em;
    color: #adb5bd;
}

.footerAddressDiv {
    font-size: 0.9em;
    color: #adb5bd;
}

.footerHeadingDiv {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.footerSocialDiv a {
    font-size: 16px;
    text-decoration: none;
}

.footerBottomDiv {
    font-size: 0.9em;
    color: #adb5bd;
}

.list-unstyled li {
    margin: 10px 0px;
}

    .list-unstyled li a {
        text-decoration: none;
    }

.testimonial {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    text-align: center;
}

.testimonialDiv {
    position: relative;
}

.testimonialQuote {
    font-size: 48px;
    color: #0066ff;
    position: absolute;
    top: -20px;
    left: 10px;
}

.testimonialRating span {
    font-size: 16px;
    color: #ff9800;
    margin-top: 10px;
    display: inline-block;
}

.testimonialText {
    font-size: 16px;
    color: #222;
    margin: 20px 0;
    text-align: left;
    height: 306px;
}

.testimonialAuthor {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.testimonialRating {
    text-align: left;
    width: 100%;
    padding-top: 20px;
}

.testimonialImage {
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px !important;
}

.testimonialName p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0px;
    padding: 0px;
    text-align: left;
}


.testimonialRole p {
    font-size: 14px;
    color: #999;
    margin: 0px;
    padding: 0px;
    padding-left: 0px;
    text-align: left;
}

.inputgroupDiv {
    display: flex;
    align-items: center;
    width: 100%;
}

.inputcustm {
    height: 50px;
    width: 80%;
    padding: 0 1rem;
    color: #222;
    background-color: #fff;
    font-size: 15px;
    border: 1px solid #5e4dcd;
    border-radius: 6px 0 0 6px;
}

.button--submit {
    min-height: 50px;
    padding: .5em 2em;
    border: none;
    border-radius: 0 6px 6px 0;
    background-color: #ff7900;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

    .button--submit:hover {
        background-color: #ff7900;
    }

.input:focus,
.input:focus-visible {
    border-color: #3898EC;
    outline: none;
}

.subscribeMain {
    width: 80%;
    display: block;
    margin: auto;
    background-image: url(../images/subscribeBg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
    overflow: hidden;
    color: #fff;
    padding: 50px 20px;
}

.subscribeText {
    font-size: 30px;
    font-weight: 600;
    display: flex;
    height: 100%;
    align-items: center;
}

    .subscribeText p {
        margin-bottom: 0px;
    }

.AuthorizedBg {
    background-color: #fffdf7;
    width: 90%;
    display: block;
    margin: auto;
    border-radius: 40px;
    margin-top: 110px;
    position: relative;
    padding-top: 125px;
    padding-bottom: 50px;
}

.AuthorizedPArtner {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ddd;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #fff;
}

    .AuthorizedPArtner img {
        width: 70% !important;
        display: block;
        margin: auto;
    }

.AuthorizedheadingDiv {
    width: 50%;
    display: block;
    border-radius: 35px;
    background-color: #ff7900;
    color: #fff;
    text-align: center;
    margin: auto;
    padding: 40px 20px;
    position: absolute;
    top: -60px;
    z-index: 7;
    left: 50%;
    transform: translateX(-50%);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-dot {
    display: block;
    /* Ensure they are not hidden */
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -25px;
    /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -25px;
    /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
}


@media (max-width: 1366px) {
    .courseContentDiv {
        padding: 10px;
    }

    .AuthorizedheadingDiv {
        border-radius: 15px;
        padding: 20px 10px;
        top: -39px;
    }

    .courseHeadingDiv {
        font-size: 18px;
        margin-bottom: 0px;
    }
}

@media(max-width: 1280px) {
    .bannerText h1 {
        font-size: 40px;
    }

    .h2,
    h2 {
        font-size: 25px;
    }
}

@media(max-width: 1025px) {
    .bannerText h1 {
        font-size: 25px;
    }

    .btnBg,
    .btnWhite,
    .bannerSecondaryBtn,
    .bannerPrimaryBtn {
        padding: 6px 20px;
        font-size: 16px;
    }

    .bnr-slug {
        display: flex;
    }

    .tab {
        padding: 8px 4px;
        font-size: 16px;
    }

    .AuthorizedBg {
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .h2,
    h2 {
        font-size: 20px;
    }

    .techdiv p:nth-child(2) {
        font-size: 16px;
    }

    .subscribeText {
        font-size: 25px;
        font-weight: 600;
    }

    .list-unstyled li {
        margin: 10px 0px;
        font-size: 14px;
    }

    .subscribeMain {
        border-radius: 20px;
        padding: 21px 20px;
    }

    .bannerImg {
        padding: 90px 0px;
    }
}

@media (min-width: 701px) and (max-width: 991px) {
    .tab {
        padding: 8px 4px;
        font-size: 14px;
    }

    .bannerText h1 {
        font-size: 24px;
    }

    .bannerImg .col-md-7 {
        width: 100%;
    }

    .tabs-container {
        margin-bottom: 20px;
    }

    .tab.activateTab {
        border-radius: 10px;
    }

    .tab-content .col-md-6 {
        width: 100%;
        display: block;
        margin: auto;
    }

    .journeyContainer {
        display: block;
    }

    .journeyImage {
        margin-top: 20px;
    }

    .bannerImg {
        padding: 10px 0px
    }

    .subscribeText {
        font-size: 18px;
        font-weight: 600;
    }

    .bnrBtn {
        justify-content: normal;
        margin-bottom: 10px;
    }
}

@media(min-width: 551px) and (max-width: 700px) {
    .h2,
    h2 {
        font-size: 18px;
    }

    .testimonialText {
        height: auto;
    }

    .tabs-container {
        margin-bottom: 20px;
        flex-wrap: wrap;
        justify-content: center;
        border: none;
    }

    .tab.activateTab {
        border-radius: 40px;
        padding: 6px 15px;
    }

    .headingDiv {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .centerBtnDiv {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .techdiv {
        margin-top: 20px;
    }

    .bannerText h1 {
        font-size: 16px;
    }

    .bannerText p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .bannerText .bnr-slug p {
        width: 150px;
        height: 20px;
        padding: 2px 2px;
        font-size: 10px;
        font-weight: 600;
        margin-bottom: 0px;
        margin-top: 4px;
    }

    .bannerText .bnr-slug span {
        font-size: 10px;
    }

    .bannerImg {
        padding: 5px 0px;
    }

    .bnrBtn {
        justify-content: normal;
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .bannerText .bnrBtn .bannerPrimaryBtn,
    .bannerText .bnrBtn .bannerSecondaryBtn {
        padding: 5px 15px !important;
        font-size: 12px;
        font-weight: 500;
    }

    .coursePriceDiv {
        font-size: 16px;
    }

    .courseDescriptionDiv {
        margin-bottom: 5px;
    }

    .courseContentDiv {
        padding: 3px 10px;
    }

    .logoSliderDiv {
        height: 200px;
    }

    .AuthorizedheadingDiv {
        width: 90%;
    }

    .button--submit {
        padding: .5em 0.2em;
    }

    .journeyContainer {
        display: block;
    }
}

@media (min-width: 0px) and (max-width: 550px) {
    .stepsDiv {
        display: block;
    }

    .stepDiv {
        width: 100%;
    }

    .journeyContainer {
        display: block;
    }
}
