* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.heading {
    text-align: center;
}

.heading h1 {
    font-size: 35px;
    color: transparent;
    background: linear-gradient(45deg, #890c25 60%, rgb(177, 176, 176), #890c25 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#banner {
    margin-top: 5%;
}

#banner .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#banner .content .image {
    width: 50%;
}

#banner .content .image img {
    width: 100%;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

#banner .content .text {
    width: 50%;
    background: white;
    padding: 0px 20px 10px 50px;
}

#banner .content .text h1 {
    font-weight: 700;
    font-size: 60px;
    color: #890c25;
}

#banner .content .text h1 span {
    color: black;
}

#banner .content .text .icons-content {
    width: 100%;
    height: 100px;
    border: 1px solid #890c35;
    border-radius: 20px;
    box-shadow: 0 10px 1px #890c256c;
    margin-top: 20px;
}

#banner .content .text .icons-content ul {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

#banner .content .text .icons-content ul li span {
    font-size: 30px;
    color: black;
    font-weight: 500;
}

#banner .content .text .icons-content ul li {
    list-style-type: none;
    color: rgb(22, 22, 22);
    font-weight: 500;
}

#banner .sub-text {
    margin-top: 20px;
}

#banner .sub-text .para-text {
    color: black;
    font-size: 20px;
    font-weight: 500;
    text-align: start;
}

#banner .sub-text .para-text span {
    background: linear-gradient(to right, #890c25, #e45151c6);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 35px;
    font-weight: bolder;
}

#banner .text .buttons {
    margin-top: 40px;
    display: flex;
    justify-content: start;
    column-gap: 20px;
    flex-wrap: wrap;
}

#banner .btns button {
    border-radius: 40px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 17px;
    width: 250px;
    border: 2px solid rgb(12, 100, 195);
    text-transform: capitalize;
    background: linear-gradient(to right, rgb(12, 100, 195), #ab1313c6);
    -webkit-background-clip: text;
    color: transparent;
}

#banner .btns .apply-now {
    background: linear-gradient(to right, rgb(32, 115, 203), #d82020c6);
    color: rgb(255, 255, 255);
}

#banner .btns button:hover {
    background: linear-gradient(to right, rgb(32, 115, 203), #d82020c6);
    color: rgb(255, 255, 255);
}

#banner .lt-line {
    padding: 3px 30px 0 0px;
    text-align: end;
}

#banner .lt-line span {
    color: rgb(212, 4, 4);
    font-size: 12px;
}

#banner .lt-line span img {
    width: 2vh;
}

/* #coursepage-front .content {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

#coursepage-front .content .box1 {
    width: 50%;
    padding: 10px;

}

#coursepage-front .content .box1 .text {
    padding-left: 20px;
}

#coursepage-front .content .box1 .text h1 {
    font-weight: 700;
    color: #890C25;
    font-size: 60px;
}

#coursepage-front .content .box1 .text h1 span {
    color: black;
}

#coursepage-front .content .box1 .text h6 {
    font-size: 1.2rem;
    font-weight: 500;
}

#coursepage-front .content .box1 .text p {
    font-size: 16px;
    margin-top: 10px;
}

#coursepage-front .content .box1 .text .points {
    margin-top: 30px;
}

#coursepage-front .content .box1 .text .points ul li {
    list-style-type: none;
    margin-bottom: 8px;
    font-weight: 500;
}

#coursepage-front .content .box1 .text .points ul {
    padding-left: 0px;
}

#coursepage-front .content .box1 .text .points ul li span {
    margin-right: 4px;
}

#coursepage-front .content .box1 .text .points ul li span img {
    width: 2.7vh;
}

#coursepage-front .content .box1 .text .buttons {
    display: flex;
    column-gap: 20px;
} */

.buttons {
    margin-top: 40px;
}

.buttons button {
    background: #890C25;
    border-radius: 10px;
    padding: 10px 20px;
    width: 200px;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: aliceblue;
    z-index: 1;
    transition: background 0.3s ease, color 0.3s ease;
}

.buttons button a {
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
}

/* Pattern Effect */
.buttons button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.1) 10px,
            transparent 10px,
            transparent 20px);
    transition: transform 0.5s ease;
    transform: translateX(0);
    z-index: 1;
}

.buttons button:hover::before {
    transform: translateX(100%);
}

.buttons button:hover {
    color: #ffffff;
}

#coursepage-front .content .box1 .buttons p {
    font-size: 14px;
    color: goldenrod;
    margin-top: 3px;
}


#coursepage-front .content .box2 {
    width: 50%;
    height: 500px;
    text-align: center;
    overflow: hidden;
}

#coursepage-front .content .box2 img {
    width: 500px;
    height: 100%;
    border-radius: 10px;
}

#who-should-join {
    margin-top: 5%;
}

#who-should-join .content {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    margin-top: 50px;
    padding: 0 10%;
}

#who-should-join .content .box {
    width: 30%;
    background: white;
    color: #333;
    border: 2px solid #890c25;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}


#who-should-join .content .box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #890c25;
    position: relative;
}

#who-should-join .content .box h3::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #890c25;
    transition: width 0.4s ease;
}

#who-should-join .content .box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15);
}

#who-should-join .content .box:hover h3::after {
    width: 100%;
}

#who-should-join .content .box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

#digital-skills {
    margin-top: 5%;
    width: 80%;
}

#digital-skills .content {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

#digital-skills .content .box {
    width: 23%;
    background: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
}

#digital-skills .content .box .image {
    width: 20%;
    margin: auto;
}

#digital-skills .content .box .image img {
    width: 100%;
}

#digital-skills .content .box .text {
    margin-top: 20px;
}


#digital-skills .content .box .text h6 {
    color: #890c25;
    text-align: center;
}

#digital-skills .content .box .text ul {
    padding-left: 0;
    margin-top: 20px;
}

#digital-skills .content .box .text ul li {
    list-style-type: none;
    display: flex;
}

#digital-skills .content .box .text ul li span{
    margin-right: 5px;
}

#digital-skills .content .box .text ul li span img{
    width: 2.5vh;
}

#exe-roadmap{
    margin-top: 5%;
}

#exe-roadmap .image{
    width: 80%;
    margin-top: 40px;
    margin: auto;
}

#exe-roadmap .image img{
    width: 100%;
}

#tools {
    margin-top: 5%;
    padding: 30px;
}

#tools .image-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 40px;
}

#tools .images {
    display: flex;
    width: max-content;
    position: absolute;
    animation: none;
}

#tools .images img {
    width: 13vh;
    margin-right: 70px;
}

#tools .images img#canva {
    width: 7vh;
}

#roadmap {
    margin-top: 5%;
}

#roadmap .content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#roadmap .content .slide-wrapper {
    width: 90%;
    overflow: hidden;
    position: relative;
}

#roadmap .content .left-button,
#roadmap .content .right-button {
    width: 5%;
}

#roadmap .content .left-button img,
#roadmap .content .right-button img {
    width: 4vh;
    cursor: pointer;
}

#roadmap .content .main-content {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

#roadmap .content .main-content .box {
    flex-shrink: 0;
    width: 15.2%;
    padding: 15px;
    border: 1px solid rgba(128, 128, 128, 0.59);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}

#roadmap .content .main-content .box p {
    color: grey;
}

#roadmap .content .main-content .box h5 {
    color: #890C25;
}

#roadmap #describe {
    width: 90%;
    margin: auto;
    margin-top: 50px;
    padding: 30px;
    border: 1px solid rgba(128, 128, 128, 0.59);
    border-radius: 10px;
    background: #efeeee6f;
}

#roadmap #describe h4 {
    font-weight: 700;
}

#roadmap #describe p {
    margin-top: 10px;
}

#roadmap #describe h5 {
    margin-top: 25px;
}

#roadmap #describe ul {
    margin-top: 15px;
}

#roadmap #describe ul li {
    margin-bottom: 10px;
}

#accordionExample {
    display: none;
}

#cover-modules{
    margin-top: 5%;
    width: 90%;
}

#cover-modules .points{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#cover-modules .points ul{
    width: 30%;
}

#cover-modules .points ul li{
    list-style-type: none;
    margin-bottom: 15px;
    display: flex;
}

#cover-modules .points ul li span{
    margin-right: 5px;
}

#learners-achieved {
    margin-top: 5%;
}

#learners-achieved .content {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: auto;
    margin-top: 50px;
}

#learners-achieved .content .box1 {
    width: 50%;
    padding: 20px;
}

#learners-achieved .content .box1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#learners-achieved .content .box1 .small-box {
    width: calc(50% - 20px);
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* text-align: spac; */
    display: flex;
    justify-content: start;
    align-items: center;
    column-gap: 20px;
}

#learners-achieved .content .box1 .small-box .image {
    background: #890c2540;
    padding: 10px;
    border-radius: 50%;
}

#learners-achieved .content .box1 .small-box .image img {
    width: 3.5vh;
}

#learners-achieved .content .box1 .small-box .text {
    text-align: start;
}

#learners-achieved .content .box1 .small-box .text h4 {
    font-weight: 700;
    font-size: 28px;
}

#learners-achieved .content .box1 .small-box .text p {
    font-size: 14px;
    color: rgb(87, 87, 87);
}

#learners-achieved .content .box2 {
    width: 50%;
    padding: 20px;
}

#learners-achieved .content .box2 .rec-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 30px;
    margin-top: 20px;
}

#learners-achieved .content .box2 .rec-images img {
    width: 75px;
    height: 25px;
}

#learners-achieved .content .box2 .rec-images img#cognizant {
    height: 45px;
}

#partners {
    margin-top: 5%;
}

#partners .image-slider1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 40px;
}

#partners .images1 {
    display: flex;
    width: max-content;
    position: absolute;
    animation: none;
}

#partners .images1 img {
    width: 90px;
    height: 30px;
    margin-right: 55px;
}

#course-details-to-know {
    margin-top: 10%;
}

#course-details-to-know .content {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
}

#course-details-to-know .content .box {
    text-align: center;
}

#course-details-to-know .content .box .icons img {
    width: 10vh;
}


#valuable-certificate {
    margin-top: 5%;
}

#valuable-certificate .content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

#valuable-certificate .content .box {
    width: 50%;
}

#valuable-certificate .content .box1 {
    padding: 30px;
}

#valuable-certificate .content .box1 .text {
    text-align: start;
    padding: 20px;
    padding-left: 30px;
}

#valuable-certificate .content .box1 h1 {
    font-weight: 700;
}

#valuable-certificate .content .box1 h1 span {
    color: #890C25;
}

#valuable-certificate .content .box1 p {
    font-weight: 500;
    margin-top: 15px;
}

#valuable-certificate .content .box1 p span {
    font-weight: 700;
}

#valuable-certificate .submit-btn {
    margin-top: 30px;
    width: 200px;
}

#valuable-certificate .content .box2 {
    text-align: center;
}

#valuable-certificate .content .box2 .image {
    width: 40%;
    margin: auto;
}

#valuable-certificate .content .box2 .image img {
    width: 100%;
}

#faq-section {
    margin-top: 5%;
    background-color: #ffffff;
}

#faq-section #faqAccordion {
    width: 80%;
    margin: auto;
    margin-top: 50px;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.accordion-button {
    background-color: #f9f9f9;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px;
    transition: background-color 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #890c25;
    /* Main theme color */
}

.accordion-button:hover {
    background-color: #890c25;
    color: #ffffff;
}

.accordion-body {
    background-color: #fdfdfd;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    padding: 20px;
}

#cta-big {
    margin-top: 5%;
    background: #890c25;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

#cta-big .content {
    text-align: center;
    padding: 30px;
    width: 80%;
    color: white;
}

#cta-big .content h1 {
    font-size: 50px;
    font-weight: 700;
}

#cta-big .content .btns-cta {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-top: 30px;
}

#cta-big .content .btns-cta .cta-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#cta-big .content .btns-cta .cta-btn a {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

#cta-big .content .btns-cta .cta-btn:hover {
    transform: scale(1.06);
}


body.no-scroll {
    overflow: hidden;
}

#brochure-pop-up,
.brochure-overlay,
#pop-up,
.overlay {
    display: none;
}

#brochure-pop-up,
#pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: 80%;
}

.brochure-overlay,
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.689);
    z-index: 1000;
}

#brochure-pop-up .brochure-cross,
#pop-up .cross {
    text-align: end;
}

#brochure-pop-up .brochure-cross img,
#pop-up .cross img {
    width: 4vh;
    cursor: pointer;
}

#brochure-pop-up .form,
#pop-up .form {
    background: rgb(253, 253, 253);
    border-radius: 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    display: flex;
}

#brochure-pop-up .form .image,
#pop-up .form .image {
    width: 50%;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#brochure-pop-up .form .image img,
#pop-up .form .image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#brochure-pop-up .form .full-form,
#pop-up .form .full-form {
    width: 50%;
    padding: 20px;
}

#brochure-pop-up .form .input-field,
#pop-up .form .input-field {
    margin-bottom: 15px;
    width: 80%;
    margin: auto;
    margin-bottom: 8px;
}

#brochure-pop-up .form .input-field h4,
#pop-up .form .input-field h4 {
    font-size: 22px;
    color: rgb(37, 37, 37);
}

#brochure-pop-up .form .input-field label,
#pop-up .form .input-field label {
    font-size: 14px;
}

#brochure-pop-up .form .fields,
#pop-up .form .fields {
    margin-top: 20px;
}

#brochure-pop-up .form .input-field input,
#pop-up .form .input-field input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: 0;
    padding-left: 10px;
    border: 1px solid rgb(205, 205, 205);
}

#brochure-pop-up .form .input-field select,
#pop-up .form .input-field select {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    outline: 0;
    padding-left: 10px;
    border: 1px solid rgb(205, 205, 205);
}

#brochure-pop-up .form .sub-btn,
#pop-up .form .sub-btn {
    margin-top: 20px;
}

#brochure-pop-up .form .sub-btn input,
#pop-up .form .sub-btn input {
    background: #890C25;
    color: white;
    font-size: 18px;
    font-weight: 500;
}

#brochure-pop-up .form .sub-btn input:hover #pop-up .form .sub-btn input:hover {
    background: #640518;
}


#course-types {
    position: relative;
    margin-top: 5%;
}

#course-types .course-head {
    margin-top: 50px;
    text-align: center;
}

#course-types .courses {
    display: flex;
    justify-content: center;
    column-gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    row-gap: 20px;
}

#course-types .courses .box {
    width: 30%;
    padding: 30px;
    border: 1px solid rgb(216, 216, 216);
    border-radius: 10px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

#course-types .courses .box.focoused {
    background: #890C25;
    color: rgb(238, 238, 238);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

#course-types .courses .box.focoused .heading h3 {
    color: rgb(238, 238, 238);
}

#course-types .courses .box .heading {
    margin-bottom: 30px;
}

#course-types .courses .box.focoused .heading p {
    color: rgb(233, 233, 233);
}

#course-types .courses .box.focoused .btns a button {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 17px;
    width: 250px;
    text-decoration: none;
    color: white;
    border: 2px solid rgb(255, 255, 255);
    text-transform: capitalize;
}

#course-types .courses .box.focoused .btns a button:hover {
    color: white;
}

#course-types .courses .box .heading h3 {
    font-size: 30px;
    font-weight: 700;
}

#course-types .courses .box .heading p {
    color: rgb(109, 109, 109);
}

#course-types .courses .box .btns {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

#course-types .courses .box .btns a button {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 17px;
    width: 250px;
    text-decoration: none;
    background: linear-gradient(to right, rgb(63, 3, 19), #d82020c6);
    color: transparent;
    -webkit-background-clip: text;
    border: 2px solid #890c25;
    text-transform: capitalize;
}

#course-types .courses .box .btns a button:hover {
    color: white;
    background: linear-gradient(to right, rgb(163, 3, 19), #d82020c6);
}

#course-types .courses .box .points {
    margin-top: 50px;
}

#course-types .courses .box .points ul li {
    font-size: 17px;
    font-weight: 450;
    list-style-type: none;
    padding-bottom: 15px;
    margin-left: -30px;
    display: flex;
    gap: 6px;
}

#course-types .courses .box .points ul li span img {
    width: 4vh;
}

/* 
#thankyou {
    background: #890c25;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#thankyou .content {
    width: 50%;
    margin: auto;

}

#thankyou .content .logo {
    width: 20%;
    background: rgb(239, 239, 239);
    text-align: center;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: 0px 2px 5px #890c25f0;
}

#thankyou .content .logo img {
    width: 100%;
    text-align: center;
} */