* {
    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);
}

.header {
    display: flex;
    justify-content: space-between;
    background: #890c25;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo {
    background: rgb(239, 239, 239);
    position: absolute;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: 0px 2px 5px #890c25f0;
    top: 0px;
    left: 45%;
    z-index: 100;
}

.header .logo img {
    width: 18vh;
}

.mobilecall {
    text-align: end;
    position: fixed;
    z-index: 10;
    left: 90%;
    top: 80%;
}

.mobilecall img {
    width: 8vh;
}

.btns {
    position: relative;
    left: 89%;
}

.btns button {
    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;
}

.btns button a {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btns button:hover {
    transform: scale(1.06);
}

.btns button a img {
    width: 3.3vh;
    margin-right: 10px;
}

.btns #call-icon {
    display: none;
}

#coursepage-front .content {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

#coursepage-front .content .box1 {
    width: 50%;
    padding: 10px;
    /* background: red; */
}

#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;
}

.buttons {
    margin-top: 30px;
}

.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;
    /* background: red; */
    text-align: center;
    overflow: hidden;
}

#coursepage-front .content .box2 img {
    width: 500px;
    height: 100%;
    border-radius: 10px;
}

#informative {
    padding: 0;
    margin-top: 5%;
}

#informative .content {
    background: #890c25;
    padding: 20px;
    padding-bottom: 8%;
    display: flex;
}

#informative .content .box1 {
    width: 60%;
}

#informative .content .box2 {
    width: 40%;
}

#informative .content .box1 .textbox {
    color: white;
    margin-top: 30px;
}

#informative .content .box1 .textbox p {
    font-size: 18px;
}

#informative .content .box1 .textbox h2 {
    margin-top: -15px;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

#informative .content .box1 .textbox .icons {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 50px;
}

#informative .content .box1 .textbox .icons .box {
    width: 28%;
    height: 125px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
}

#informative .content .box1 .textbox .icons .box h3 {
    font-size: 22px;
    margin-top: 10px;
}

#informative .content .box1 .textbox .icons .box img {
    width: 6.1vh;
}

#informative .content .box2 .textbox2 {
    position: absolute;
    border-radius: 30px;
    width: 33%;
    padding: 30px;
    margin: auto;
    background: linear-gradient(60deg, #f1d0a1, #f7f7f7fb);
    margin-top: -150px;
    left: 58.1%;
}

#informative .content .box2 .textbox2 .content-box {
    display: flex;
    justify-content: space-between;
}

#informative .content .box2 .textbox2 .content-box p {
    font-weight: 500;
}

#informative .content .box2 .textbox2 .content-box h5 {
    color: #890C25;
    margin-top: -5px;
}

#informative .content .box2 .textbox2 h1 {
    font-size: 45px;
    margin-top: 30px;
    color: transparent;
    background: linear-gradient(90deg, rgb(19, 58, 132), #890C25, #134F89);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


#informative .content .box2 .textbox2 .points {
    margin-top: 10px;
    padding: 20px;
}

#informative .content .box2 .textbox2 .points ul {
    padding-left: 0px;
}

#informative .content .box2 .textbox2 .points ul li {
    margin-bottom: 15px;
}

#informative .content .box2 .textbox2 .points ul li span {
    font-weight: 700;
}

#tools {
    margin-top: 5%;
    padding: 30px;
}

/* #tools .content{
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    column-gap: 25px;
}

#tools .content .row {
    display: grid;
    justify-content: start; 
    gap: 20px; 
    margin-bottom: 30px; 
}

#tools .content .row:nth-child(1) {
    grid-template-columns: repeat(1, auto); 
}

#tools .content .row:nth-child(2) {
    grid-template-columns: repeat(2, auto); 
}

#tools .content .row:nth-child(3) {
    grid-template-columns: repeat(4, auto); 
}

#tools .content .row:nth-child(4) {
    grid-template-columns: repeat(4, auto);
}

#tools .content .box {
    width: 130px;
    height: 130px;
    justify-content: center;
    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;
} */

/* #tools .content .box img {
    width: 12vh;
}

 #tools .content .box img#canva {
    width: 8vh;
}  */

/* #tools .content .main-box2 .row {
    display: grid;
    justify-content: end; 
    gap: 20px;
    margin-bottom: 30px;
}


#tools .content .main-box2 .row:nth-child(3) {
    grid-template-columns: repeat(3, auto); 
} */


#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;
}

#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: 3%;
}

#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%;
}

#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;
}

#bottom-button {
    display: none;
}