@import url(about.css);
@import url(contact.css);
@import url(collagelistingmobile.css);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Maazard-Regular";
}

a {
    text-decoration: none;
    color: inherit !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0 !important;
}

button {
    cursor: pointer;
}

.semiBold {
    font-family: 'Maazard-SemiBold';
}


.red {
    color: #FA000D;
}
.ash{
    color: #213D39;
    opacity: .88;
}

.subContent{
    font-size: 16px;
    line-height: 26px;
    color: #213D39;
    opacity: .88;
}

.subTitle{
    color: #213D39;
    opacity: .88;
    font-size: 15px;
    line-height: 25px;
}

.bold{
    font-family: "Maazard-Bold"
}

.sub {
    width: 60%;
    text-align: center;
    color: #213D39;
    opacity: .88;
    font-size: 15px;
    line-height: 20px;
}
/* header start */

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerOne {
    background: var(--Gray-900, #1D2026);
    border: 1px solid #1D2026;
    height: 40px;
 align-items: center !important;
 padding: 0;
}


.headerOne .nav_bar ul li {
    display: inline-block; /* Ensures proper spacing */
    padding: 10px 15px; /* Adjust as needed */
    text-decoration: none;
    position: relative; /* Required for the underline */
    font-size: 14px;
    color: #8C94A3;
    font-family: 'Maazard-Medium';
}

ul {
    padding: 0;
    margin: 0;
}

.nav_bar ul li.active {
    position: relative; /* Needed for absolute positioning of ::after */
    color: white;
    font-family: 'Maazard-SemiBold';
}

.nav_bar ul li.active::after {
    content: "";
    position: absolute;
    top: 0;  /* Places the border at the top */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FF6636;
}


.nav_bar ul li a{
    padding-top: 0;
    margin-top: 0;
}

.mainHeader {
    box-shadow: 0px -1px 0px 0px #E9EAF0 inset;
}

.mainHeader select {
    width: 100%;
    padding: 0px 10px;
}

.inputSearch,
.mainHeader select {
    border: 1px solid lightGrey;
    height: 35px;
    color: #8C94A3;
}

.inputSearch input {
    border: none;
    width: 80%;

}

.inputSearch input::placeholder,
.mainHeader select {
    font-size: 14px;
}

.inputSearch {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    gap: 10px;
}

input:focus,select:focus{
    outline: none;
}

.inputSearch input:focus,
.headerOne select:focus {
    border: none;
    outline: none;

}

.contactDiv h6 {
    font-size: 13px;
}

.contactDiv h5 {
    font-size: 14px;
    font-family: 'Maazard-Bold';
}

.contactDiv img {
    width: 40px;
}

.create_btn {
    background-color: #FFEEE8;
    color: #FA000D;
    font-family: 'Maazard-Medium';

}

.sign_btn {
    color: #FFEEE8;
    background-color: #FA000D;
}

.sign_btn,
.create_btn {
    border: none;
    padding: 8px 20px;
    font-size: 14px;
}

/* phone-nav */
.menuSec {
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
}

.menuNavBar li {
    padding: 21px 15px;
    padding-bottom: 0px;
    cursor: pointer;
    transition: all .8s ease;
    font-size: 18px;
}


.menuNavBar li.active a {
    color: #FA000D !important;
    font-family: "Maazard-SemiBold";
}


.menuNavBar {
    list-style: none;
    margin: 0px;
    text-align: left;
}


.menusec .nav-icon1 span {
    background: black;
}


/* .navbarIcon {
    display: none;
} */

.nav-icon1 {

    float: right;
    width: 30px;
    height: 30px;
    position: relative;
    margin: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 100;

}

.nav-icon1 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: rgb(1, 1, 1);
    border-radius: 5px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}


.menusec .nav-icon1 span {
    background: black;
}

.nav-icon1 span:nth-child(1) {
    top: 0px;
}

.nav-icon1 span:nth-child(2) {
    top: 12px;
}

.nav-icon1 span:nth-child(3) {
    top: 24px;
}

.nav-icon1.open span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.nav-icon1.open span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.menuNavBar .sign {
    background: rgb(48, 127, 226);
    padding: 5px 30px;
    border-radius: 10px;
    color: white;
}

/* header end */

/* hero start */

.heroSec {
    background-image: url(../images/heroImg.png);

    background-position: center;
    background-size: cover;
    padding: 120px 0px;
}

.heroSec h1,.title {
    color: #FFF;
    font-size: 55px;
    line-height: 65px;
    font-family: 'Maazard-SemiBold';
}

.heroSec h1 span {
    color: #EC010B;
    font-family: 'Maazard-SemiBold';

}

.heroSec p {
    color: #FFF;
    width: 90%;
}

.find_btn,.numBtn{
    background: #FA000D;
    color: #FFF;
}

.find_btn,
.get_btn,.numBtn {
    border-radius: 6px;
    border: none;
    padding: 8px 20px;
    font-family: 'Maazard-SemiBold';
    font-size: 15px;
}

.get_btn {
    background-color: #FFF;
    color: #000;
}

.heroSec h6 {
    color: #64CCC5;
    font-size: 17px;
}

/* hero sec end */


/* link sec start */

.linkSec {
    border-bottom: 1px solid #EAEAEA;
}


.link {
    text-decoration: underline;
}

.leftOne,
.rightOne,
.leftTwo,
.rightTwo {
    position: absolute;
    background-color: #FFF;
    border: none;
    border-radius: 50%;
    filter: drop-shadow(0px 4px 8.9px rgba(0, 0, 0, 0.10));
}

.leftOne,
.rightOne {
    font-size: 15px;
    height: 30px;
    width: 30px;
}

.leftOne {
    top: calc(50% - 15px);
    left: 20%;
}

.rightOne {
    top: calc(50% - 15px);
    right: 20%;
}

.link a {
    font-size: 16px;
}

/* link sec end */

/* process sec start */

.heading {

    color: #0C0C0C;
    font-size: 35px;
    line-height: 47px;
    font-family: 'Maazard-SemiBold';

}



.processHead h6 {
    font-size: 17px;
    color: #FA000D;
}

.chooseCard {
    padding: 20px;
    margin: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);

}

.owl-carousel .chooseCard img {
    width: 50px !important;
}

.chooseCard h5 {
    font-family: 'Maazard-SemiBold';
    font-size: 16px;
    width: 70%;
}

.chooseCard p {
    font-size: 12px;
    line-height: 17px;
}

.chooseCard:hover {
    background-color: #000;
    color: #FFF;
}

#carouselTwo .owl-stage-outer {
    padding-bottom: 50px;
    padding-top: 50px;
}

.owl-row {
    position: relative;
}

.rightTwo,
.leftTwo {
    height: 50px;
    width: 50px;
}

.rightTwo {
    right: 10%;
}

.leftTwo {
    left: 10%;
}

.leftTwo,
.rightTwo {
    top: 55%;
}

.proBtn button {
    border: 1px solid #FA000D;
    padding: 8px 20px;
    background: transparent;
    font-size: 14px;
    font-family: 'Maazard-SemiBold';
    border-radius: 4px;
}

.proBtn button:hover {
    background-color: #FA000D;
    color: #FFF;
}

/* end */

/* benner sec start */

.bannerSec {
    background-color: #1B1B1B;
    color: #FFF;
}

.bannerSec h6 {
    color: #FA000D;
}

.bannerSec h2 {
    letter-spacing: .4px;
    width: 80%;
    font-size: 40px;
    line-height: 50px;
    font-family: 'Maazard-SemiBold';
}

.bannerSec p {
    font-size: 15px;
    color: #F4F4F4;
}

.talk_btn {
    gap: 10px;
    display: flex;
    align-items: center;
    border-radius: 23px;
    background: #FBFBFB;
    border: none;
    padding: 8px 20px 8px 10px;
    font-size: 14px;
}

.talk_btn div {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    color: #FFF;
    background-color: #000;
}

.talk_btn div i {
    font-size: 12px;
}

/* end */

.whatCard .whatImg {
    padding: 10px;
    border-radius: 9.241px;
    border: 1.155px solid rgba(236, 1, 11, 0.80);
    width: max-content;
}

.whatCard h5 {
    font-size: 20px;
    font-family: 'Maazard-SemiBold';
}



/* end */

/* guide sec start */

.guideSec p {
    color: #213D39;
    opacity: .88;
    font-size: 15px;
    line-height: 20px;
    width: 90%;
}

.guideContent {
    position: relative;
}

.guideContent img {
    position: absolute;
    z-index: -1;
    width: 150px;
    left: -3%;
    top: 25%;
}

/* end */

/* help sec start */

.helpSec {
    background-image: url(../images/helpBg.png);
    background-position: center;
    background-size: cover;
    /* margin-left: 100px; */
    padding-left: 50px;
    padding-right: 100px;
}

.helpSec .helpHead p {

    font-size: 18px;
}

.helpCard {
    border-radius: 30px;
    background: #FFF;
    border: 1px solid #FA000D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 15px;
}

.helpImg {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: rgba(108, 87, 219, 0.06);
}

.helpCard h5 {
    font-size: 22px;
    font-family: 'Maazard-SemiBold';
}

.helpCard p,
.whatCard p {
    font-family: 'Maazard-ExtraLight';
    font-size: 15px;
}

.helpCol {
    margin-top: -100px;
}

/* end */

/* how sec start */

.howSec h6,
.helpCard p,
.whatCard p,
.grey {
    color: #213D39;
    opacity: .88;
}

.howSec h6 {
    font-size: 18px;

}

.howCard {
    padding: 20px 40px;
    border-radius: 30px;
}

.howCard h5 {
    font-size: 26px;
}

.num {

    color: white;
    border-radius: 9px;
    height: 30px;
    width: 35px;
    background-color: rgba(236, 1, 11, 0.80);
}

.howCard p {
    font-size: 15px;
    font-family: "Maazard-ExtraLight";
}



.howCard:hover {
    outline: 2px solid #FA000D;

}

/* capabilities  */

.capSec {
    background: #0E0E0E;
    color: #FFF;
    padding: 100px 0px;
    position: relative;
}

.capSec img {
    position: absolute;
    left: 25%;
    top: 60%;
}

.capSec p {
    font-size: 18px;
}

.diplomaCard {
    background: rgba(86, 86, 86, 0.80);
    padding: 50px 20px 50px 40px;
}

.diplomaCard p {
    font-size: 14px;
}

.rightThree {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 45%;
    right: 10%;
}

/* end */

/* feedback */

.feedSec {
    background: rgba(255, 241, 241, 0.80);
    padding-top: 100px;
    padding-bottom: 100px;
}

.profilePic {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-image: url(../images/man.png);
    background-position: center;
    background-size: cover;
}

.owl-carousel .cardHead img {
    height: 30px !important;
    width: 40px;
}

.feedCard {
    background-color: #FFF;
    border-radius: 20px;
    padding: 20px;
}

.cardHead h5 {
    font-size: 18px;
}

.cardHead h6 {
    font-size: 14px;
}

.feedCard p {
    font-size: 13px;
}

.rightFour,
.leftFour {
    position: absolute;
    height: 35px;
    width: 35px;
    border: none;
    border-radius: 50%;
    top: 54%;
    background: #FFF;
    box-shadow: -4px 4px 20px 0px rgba(32, 180, 134, 0.12);
}

.rightFour {
    right: 10%
}

.leftFour {
    left: 10%;
}

/* faq start */

.faq h2 {
    padding-bottom: 30px;
}

.faq-card {
    border: none;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

.faq-card.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-header {
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-header.active {
    color: red;
}

.faq-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: white;
    /* White background */
    border-radius: 50%;
    /* Circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Light shadow for soft effect */
    transition: all 0.3s ease-in-out;
}

.faq-body {
    display: none;
    margin-top: 10px;
    color: #666;
}

.faq-body.show {
    display: block;
}

.faq-icon i {
    color: #4A3AFF;
    font-size: 1.2rem;
    transition: transform 0.3s ease-in-out;
}

.faq-icon.active {
    background-color: red;
}

.faq-icon.active i {
    color: white;
}

/* faq end */
/* footer */
.foot {
    background-color: #000;
    color: #fff;
}

.foot p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.foot h5 {
    font-family: "Maazard-SemiBold";
    font-size: 16px;
    padding-bottom: 20px;
}


.foot ul li a,
.foot h6 {
    font-size: 12.5px;
    font-family: "Maazard-ExtraLight" !important;

}

.foot ul li,
.foot h6 {
    margin-bottom: 8px;
}


/* Subscribe Form */
.subscrib-btn {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 30px;
    padding: 5px 5px 5px 20px;
    width: fit-content;
}

.subscribe-input {
    color: var(--Light-Black, rgba(12, 12, 12, 0.90));
    font-size: 14px;
    font-weight: 400;
    border: none;
}

.subscribe-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
}

.subscribe-btn:hover {
    background-color: #333;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
}



/* Social Icons */
.social-icons i {
    font-size: 20px;
    margin: 10px;
    padding: 10px;
    background: white;
    color: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ccc;
}


/* ===HOME END=== */

/* ====COLLEGE START=== */

.courseheader {
    padding: 30px 30px 60px 30px;
    border: 1.097px solid var(--Primary-200, #FFDDD1);
}


.course {
    display: flex;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    gap: 13px;
    background: var(--Primary-100, #FFEEE8);
    border: none;
    color: #FF6636;
}

.start {
    display: flex;
    padding: 10px 35px;
    align-items: center;
    gap: 8px;
    background: rgba(236, 1, 11, 0.80);
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #ff5722;
outline: none;
}

.nav-tabs .nav-link{
    border: none;
    /* to remove the border that appears in prev button when clicked on next button */
}

.tabs {
    border: 1.097px solid var(--Primary-200, #FFDDD1);
    background: var(--Gray-White, #FFF);
}

/* headertop3 */
.headertop3 {
    border: 1.097px solid var(--Gray-100, #E9EAF0);
    background: var(--Gray-White, #FFF);
    box-shadow: 0px 6.579px 17.545px 0px rgba(0, 0, 0, 0.06);

}

.headertop3 p {
    color: #4E5566;
    padding-bottom: 50px;
}

.down-arrow {
    background: rgba(236, 1, 11, 0.80);
    max-width: 60px;
    justify-content: center;
    border: none;
    padding: 15px
}

/* headertop3 */
.headertop4 {

    gap: 40.325px;
    border: 1.097px solid #E9EAF0;
    background: #FFF;
    box-shadow: 0px 6.579px 17.545px 0px rgba(0, 0, 0, 0.06);
}

.semSec p{
    font-size: 15px;
}

.starte {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--Primary-100, #FFEEE8);
    color: var(--Primary-500, #FF6636);
    font-size: 16px;
    font-family: "Maazard-SemiBold";
    border: none;
}

.media {
    border-bottom: 1px solid #E0E0E0;
}

.media h6 {
    padding-top: 10px;
}

.semesters {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #DADADA;
    background: #FFF;
}

.semSec div {
    font-size: 15px;
   
}

.semesters div{
    margin-bottom: 8px;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:active ,.nav-tabs .nav-link:hover{
    outline: none;
    box-shadow: none;
}




input[type="checkbox"] {
    width: 15px;
    height: 15px;
    appearance: none;
    background: rgba(236, 1, 11, 0.80) !important;
    /* border: 2px solid rgba(236, 1, 11, 1); */
    /* border-radius: 4px; */
    position: relative;
    flex-shrink: 0 !important;
    cursor: pointer;

}

/* White tick when checked */
input[type="checkbox"]:checked::before {
    content: "\2713";
    color: white !important;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family:"Maazard-Regular";
} 

.list-unstyled .li .a {
    color: var(--Light-Grey, #F4F4F4);
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.48px;
}

.btn-save {
    background: rgba(236, 1, 11, 0.80);
    padding: 10px 20px;
    border: none;
    color: white;
    font-size: 14px;
}

.headertop5 {
    /* padding: 228px 39px 174.675px 38px; */
 
    gap: 40.325px;
    border: 1.097px solid #E9EAF0;
    background: #FFF;
    box-shadow: 0px 6.579px 17.545px 0px rgba(0, 0, 0, 0.06);
}

.mediaBox{
    padding-left: 40px ;
    padding-right: 40px;
}

.headertop6 {
    border: 1.097px solid #E9EAF0;
    box-shadow: 0px 6.579px 17.545px 0px rgba(0, 0, 0, 0.06);
}

.headertop6 h6{
    font-size: 15px;
}

.tabs .nav-tabs {
    border-bottom: none !important;
}


.tabs .nav-tabs button {
    padding-bottom: 0 !important;
}

.tabs .nav-tabs .nav-links:hover {
    border: none !important;
    outline: none !important;
}

.headertop6 h5{
    font-size: 18px;
}

.tabRow .nav-link{
    color: #4E5566;
}

.tabRow .nav-link.active{
    color: #000;

}

.tabRow .nav-link:hover{
    outline: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.faq-card.active .faq-question{
    color: #EC010B;
}

/* ===END=== */

.find_btn:hover,.numBtn:hover{
    background: transparent;
    outline: 2px solid #EC010B !important;
transition: background-color .3s ease-in-out;
}

.get_btn:hover{
    background: transparent;
    outline: 2px solid #fff !important;
    color: #fff;
transition: background-color .3s ease-in-out;
}

.howSec p{
    margin-left: 35px !important;
}


/* ===COLEGE DETAIL== */
.ma-regular {
    font-family: 'Maazard-Regular';
}

.ma-bold {
    font-family: 'Maazard-Bold';
}

.ma-extrabold {
    font-family: 'Maazard-ExtraBold';
}

.ma-semibold {
    font-family: 'Maazard-SemiBold';
}

.ma-medium {
    font-family: 'Maazard-Medium';
}

.ma-extralight {
    font-family: 'Maazard-ExtraLight';
}

h6,
h5,
h4,
h3,
h2 {
    margin: 0;
}

p {
    margin: 0 !important;
}


.video-wrapper {
    display: flex;
    flex-direction: column;

}

video {
    width: 100%;
    background: #ccc;
}

.creator-info {
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: start;

}

.creator-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;

}

.creator-info p {
    /* width: 35%; */
    color: #1D2026;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
}


.creators {
    margin-left: -15px;
}

.ratings {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ratings p {
    font-size: 12px;
    color: #6E7485;
}

.ratings strong {
    color: black;
}

.stars {
    color: red;
    font-size: 20px;
}

/* sidebar */
.sidebar {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid #E9EAF0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header_1 h5 {
    color: #1D2026;
    font-size: 26.283px;
    font-style: normal;
    font-weight: 400;
    line-height: 35.045px;
}

.header_1 h4,
.header_2 h4 {
    font-size: 26.283px;
}

.header_2 h5 {
    color: rgba(236, 1, 11, 0.80);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 35.045px;
}

.details {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;

}

.details h6 {
    color: #6E7485;
    font-size: 15.332px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.093px;
    letter-spacing: -0.153px;
}

.details h5 {
    color: #1D2026;
    font-size: 15.332px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.093px;
    letter-spacing: -0.153px;
}

.details i {
    color: #A1A5B3;
}



button {
    border: none;
    background: none;
}

.talkclg_btn {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: red;
}

.talkclg_btn button {
    background: red;
}

.talkclg_btn h6 {
    font-size: 16px;
    color: white;
}

.start_btn {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFEEE8;
}

.start_btn button {
    background: #FFEEE8;
}

.start_btn h6 {
    font-size: 16px;
    color: red;
}

.second_btns {
    background: #F5F7FA;
    display: flex;
    width: 236px;
    justify-content: center;
    align-items: center;
}

.second_btns button {
    padding: 10px;
}

small {
    color: #8C94A3;
    font-size: 15.332px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.093px;
}

.facilities {
    border-top: 1px solid #E9EAF0;
    margin-top: 15px;
}


.facilities h5 {
    color: #1D2026;
    font-size: 17.522px;
    font-style: normal;
    font-weight: 500;
    line-height: 24.093px;
}

.facilities p {
   padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4E5566;
    font-size: 15.332px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.093px;
}

.facilities i {
    color: #EC010BCC;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.social-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    border-top: 1px solid #E9EAF0;
}

.social-icon h5 {
    color: #1D2026;
    font-size: 17.522px;
    font-style: normal;
    font-weight: 500;
    line-height: 24.093px;
}

.social-icon i {
    background: #F5F7FA;
    padding: 15px;
}

/* Sidebar ends */


.header .caption {
    color: #1D2026;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 43.806px;
    letter-spacing: -0.35px;
}

/* tab */
.nav-tabs .row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.nav-tabs div {
    color: #4E5566;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    flex: 1;
}

.nav-tabs div.active {
    border-bottom: 3px solid red;
    color: red;
}

.tab-content {
    display: none;
    margin-top: 10px;
}

.tab-content.active {
    display: block;
}

/* tab */

.description h2 {
    color: #1D2026;
    font-size: 26.283px;
    font-style: normal;
    font-weight: 600;
    line-height: 35.045px;
    letter-spacing: -0.263px;
}


.green_box {
    background: #eef8f0;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    height: max-content;
}

.green_box h2 {
    color: #1D2026;
    /* font-size: 26.283px;
    font-style: normal;
    font-weight: 600; */
}

.green_ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
}

.green_li {
    display: flex;
    align-items: flex-start;

    padding: 10px;
    border-radius: 5px;

}



.green_li i {
    color: #23BD33;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.green_li p {
    color: #4E5566;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

/* mediaBoxils */

.course-container {
    background: white;
    border-radius: 5px;
    padding: 10px;

}

.course-row {
    color: var #4E5566;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}


.course-header div {
    flex: 1;
    text-align: left;
}

.course-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.course-item:last-child {
    border-bottom: none;
}

.course-item img {
    width: 120px;
    height: 80px;
    border-radius: 5px;
    margin-right: 15px;
}

.course-info {
    flex: 2;
}

.course-title {
    color: #1D2026;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.course-eligibility {
    color: rgba(236, 1, 11, 0.80);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.course-details {
    color: #4E5566;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.course-price {
    color: rgba(236, 1, 11, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.course-action {
    color: rgba(236, 1, 11, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.course-action a {
    color: red;
    font-weight: bold;
    text-decoration: none;
}

.course-action a:hover {
    text-decoration: underline;
}

.require {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
}

.require h2 {
    color: #1D2026;
    text-align: start;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
}

.require ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
}

.require ul li {
    color: #4E5566;
    font-size: 15.332px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 5px;
}




/* course details */


/* curriculum */
.red_highlight {
    font-size: 14px;
    color: #EC010BCC;
}

.blue_highlight {
    font-size: 14px;
    color: #564FFD;
}

.curriculum-container {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.section-header span {
    display: flex;
    align-items: center;
}

.section-header h5 {
    margin: 0;
    font-size: 1rem;
    flex-grow: 1;
}

.section-header .d-flex.align-items-center {
    gap: 5px;
}

.curriculum-section.open .section-header {
    color: red;
}

.lecture-list {
    padding: 10px 20px;
    list-style: none;
    display: none;
}

.curriculum-section.open .lecture-list {
    display: block;
}

.lecture-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    gap: 10px;
}

.section-header h5 {
    font-size: 1rem;
    margin: 0;
}

.lecture-list li i {
    margin-right: 8px;
}

.lecture-list li span {
    margin-left: auto;
}




/* curriculum ends */
/* rating */
.rating-container {
    background: white;
    width: 100%;
    padding: 20px;
    border-radius: 5px;
}

.rating-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.rating-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.rating-box p {
    color: #1D2026;

    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

.rating-score {
    width: 150px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.rating-score h2 {
    color: #1D2026;

    text-align: center;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
}

.star_text {
    font-size: 10px;
    color: rgb(230, 230, 230);
}

.stars {
    color: red;
    font-size: 20px;
}

.rating-details {
    width: 100%;
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating-bar {
    flex-grow: 1;
    height: 8px;
    background: #fde8e8;
    border-radius: 4px;
    margin: 0 10px;
    position: relative;
    min-width: 80px;
}

.rating-stars {
    width: 120px;
    color: red;
}

.rating-fill {
    height: 100%;
    background: red;
    border-radius: 4px;
}

.rating-percentage {
    min-width: 40px;
    text-align: right;
}
/* rating ends */

/* feedback */

.feedback-container {
    background: white;
    width: 100%;
    padding: 20px;
    border-radius: 5px;

}

.feedback-row {
    display: flex;

    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.feedback-container h3 {
    color: #1D2026;
    font-size: 26.283px;
    font-style: normal;
    font-weight: 600;
}

.feedback-filter {
    float: right;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    background: white;
}

.feedback-text {
    border-bottom: 1px solid #ddd;
    padding-left: 40px;
}


.feedback-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;

}

.feedback-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.feedback-content {
    flex-grow: 1;
}

.feedback-user {
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.feedback-time {
    color: gray;
    font-size: 14px;
    margin-left: 10px;
}

.feedback-stars {
    color: red;
    margin-bottom: 5px;
}

.feedback-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center !important;
    padding: 10px 20px;
    background-color: #fff5f2;
    border: none;
    border-radius: 5px;
    color: red;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.load-more-btn:hover {
    background-color: #ffe5e0;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid red;
    border-top: 2px solid transparent;
    border-radius: 50%;
    margin-left: 8px;
    animation: spin 0.8s linear infinite;
}

/* feedback ends */


.headertop3 ul li{
    margin-bottom: 10px;
}

.clgTab .nav-tabs button{
    padding-bottom: 10px !important;
}
/* COLLEGE DETAIL END */

/* about */

.abtTab{
    border-radius: 27.24px;
background: #FFF;
box-shadow: 0px 11.544px 27.706px 0px rgba(27, 50, 118, 0.04);
backdrop-filter: blur(11.54415225982666px);
}

.foot ul li:hover{
    color:#FA000D !important;
}

.abtTabs .num{
    display: flex;
    width: 69.265px;
    height: 69.265px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 18.16px;
    color: rgba(236, 1, 11, 0.80);
/* background: rgba(236, 1, 11, 0.80); */
background: #F7F9FD;
font-size: 30px;
}

/* scroll bar */
.scroll-container {
    height: 398px;
    overflow-y: scroll;
    overflow-x: hidden;
    text-align: left;
    /* Ensures content remains left-aligned */
    box-sizing: border-box;
}

/* Reset child elements to normal direction */
.scroll-container * {
    direction: ltr;
}

.scroll-container::-webkit-scrollbar {
    width: 5px;

}

.scroll-container::-webkit-scrollbar-track {
    border-radius: 3.24px;
    background: #C4C4C4;

}

.scroll-container::-webkit-scrollbar-thumb {
    background: #FA000D;
    border-radius: 3.24px;

}

.abtTabs button{
    margin-bottom: 20px;
}

.num{
    flex-shrink: 0;
}


.tab .active .num{
    background: #FA000D;
    color: white;
}

/* BLOG */

.blog{
    background-image: url(../images/blog.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top:90px !important;
    /* padding-bottom: 90px; */
    
    
}
.lorem{
color: white;
 width:35%;
  font-size: 15px;
}
.title{
   
    font-size:70px;
}
.wonder{
    color: #101E46; 
    line-height: 41px;
}

.btn{
    border-radius: 1205.852px;
background: rgba(236, 1, 11, 0.80);
padding: 12px 24px;
font-size: 14px;
}

.images_section{
    background: #F7F9FD;
}

/* card section css */

.popular_card{
    border-radius: 22.098px;
background: #FFF;
box-shadow: 0px 0px 66.293px 0px rgba(0, 0, 0, 0.05);
}
.boredr{
    border-radius: 22.098px;
background: #E3DBD8;
width: 340px;
height: 1.105px;
flex-shrink: 0;
}

.tag_cont{
    display: flex;        
  flex-wrap: wrap;       
  gap: 0.5rem;           
  margin-top: 1rem;

}

.tag {
    display: flex;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 20px;  
  background-color: #fff;
  color: #555;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.tag:hover{
    background: rgba(236, 1, 11, 0.80);
    color: white;
}

/* BLOG DETAIL */

.blogdetail{
    background-color: #F7F9FD;;
}


.explore{
font-family:"Maazard-SemiBold";

}
.mistake{
        color: #213D39;
}
.aliuam{
width: 40%;
padding-top: 10px;
padding-bottom: 10px;
color: #727272;
font-size: 15px;
}

.footerdiv{
border-top: 2px solid #E3DBD8;
padding-top: 8px;
padding-bottom:8px;
border-bottom:2px solid #E3DBD8;
}
.spa{
border-radius: 26.434px;
color:#727272;
background: #F1F5EB;
padding: 10px 20px;

}
.soc_icons{
width: 46.26px;
height: 46.26px;
flex-shrink: 0;
border-radius: 39.651px;
border: 1.322px solid #727272;
display: flex;
align-items: center;
justify-content: center;
}
.soc_icons:hover {
background-color: red;
border-color: red;
color: #fff; /* This changes the icon color for better contrast */
}
/* card section css */

/* COUNTRY SUPPORT PAGE */

.countryHero{
   
    padding: 100px 0px 0px 0px !important;
}
.countryHero1{
    background-color: #000 !important;
    background-image: none ;
}


.countryHero .con_btn h5{
    font-family:"Maazard-SemiBold";
}

.con_btn{
    padding: 8px 30px;
    border-radius: 10px;
background: rgba(236, 1, 11, 0.80);
width: max-content;
color: #FFF;
}

.con_btn span{
    font-size: 14px;
}

.con_btn h5{
    font-size: 16px;
    color: #FFF;
}
.eiffel{
    position: absolute;
    /* top: 0; */
    width:23%;
    left: -3%;
    bottom: 0;
}

.con_btn img{
    height: 40px;
    width: 40px;
}

.graphBar{
    border-radius: 10px;
background: #FFF;

/* CARD SHADOW */
box-shadow: 1px 5px 50px 0px rgba(84, 99, 122, 0.10);
}

.graphOne h5{
    color: #27B94E;
}

.graphTwo h5{
    color: #FFA41B;
}

.graphThree h5{
    color: #D60000;
}

.graphOne h5,.graphTwo h5,.graphThree h5{
    font-family:"Maazard-SemiBold";
    font-size: 22px;
}

.graphOne h6,.graphTwo h6,.graphThree h6{
    font-size: 13px;
    color: #4D607D;
    margin-top: 5px;
}

.top{
    font-size: 12px;
    letter-spacing: .5px;
    color: #D60000;
    font-family:"Maazard-SemiBold";

}

.conLeft,.conRight{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    box-shadow:0px 7.378px 16.415px rgba(0, 0, 0, 0.10) ;

}

.flag{
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 1px solid #D60000;
    background-position: center;
    background-size: cover;
}

.countryCard{
    border-radius: 21.705px;
border: 1.085px solid #E3DBD8;
background: #FFF;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
padding: 30px 15px;
margin: 10px;
}

.countryCard ul{
    list-style: none;
}

.countryCard h5{
    color: #FFF;
    font-family:"Maazard-SemiBold";

}

.countryCard ul li{
    color:#FFF;  
    font-size: 15px;
    font-family:"Maazard-ExtraLight";
margin-bottom: 10px;
}

.countryCard ul li i{
    color: #D60000;
    margin-right: 10px;
}



.conAbout{
   
    background: #F7F9FD;
}

.conAbout button{
    border-radius: 999px;
background: rgba(236, 1, 11, 0.80);
color: #FFF;
padding: 10px 20px;
font-size: 14px;
}

.conAbout h2{
    font-size: 55px;
    line-height: 65px;
    font-family:"Maazard-SemiBold";

}

.conAbout h6{
    font-size: 13px;
    letter-spacing: .5px;
    color: #202020;
    font-family:"Maazard-SemiBold";

}

.countryDetail h4{
    font-family:"Maazard-SemiBold";
  width: 75%;
  font-size: 28px;
}

.countryDetail h4 span{
    font-family:"Maazard-SemiBold";
    color: rgba(236, 1, 11, 0.80);
}

.detailCard{
    border-radius:20px;
background:  #FFF;
box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
padding: 10px 20px;
}

.detailCard button{
    font-family:"Maazard-SemiBold";

    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid  #E3DBD8;;
}

.detailCard button:hover{
    color: rgba(236, 1, 11, 0.80);

}

.countryDetail table{
    border-collapse: separate;
    /* border-spacing: 0px 20px; */
    border: 1px solid var(--Gray-100, #E9EAF0);
    background: var(--Gray-White, #FFF);
    padding: 0px 10px;
}

.countryDetail table td,.countryDetail table th{
    border-bottom: 1px solid #E9EAF0; 
    padding: 10px;
    font-family:"Maazard-Medium";

} 

.countryDetail tr:last-child td {
    border-bottom: none; 
}

.countryDetail td:nth-child(2) {
    color: rgba(236, 1, 11, 0.80);
}

.countryDetail th{
    color: #4E5566;
}

.countryDetail td{
 font-size: 15px;
}


#caroTwo .owl-dots {
    text-align: center;
    margin-top: 20px;
  }
  
  #caroTwo .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s ease;
  }
  
  #caroTwo .owl-dot.active {
    background: #e91e63; /* pink color for active dot */
  }

  /* ==BENEFIT== */

  .benefitSec{
    background-image: url(../images/benBg.svg) !important;
  }

  .benefitCard1{
    background: #F1F4FF;
  }
  
  .benefitCard2,.benefitCard1{
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
    height: 100%;
  }

  .benefitCard2{
    background: #0A0A0A;
  }

  .benefitCard1 p{
    color: #5C6C7B;
  }

  .benefitCards{
    margin-top: -40px;
  }

  .benefitCards .container{
    width: 55%;
  }

  .red{
    color: #EC010BCC;
  }

  .missionContent i{
    font-size: 28px;
  }

  .missionContent h4{
    font-size:28px;
  }

  .read_btn{
    background-color: transparent;
    border: none;
    color: #EC010BCC;
  }

  .value{
    padding: 20px 0px;
    border-top: 1px solid #DEE2E5;
    border-bottom: 1px solid #DEE2E5;
  }

  /* logos */
.benLogos{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* gap: 10px; */
}

  /* why sec */

  .whySec{
    padding: 80px 0px;
  }

  .whySec h6{
    font-size: 14px;
    color: #E5C541;
  }

  .whySec h2{
    font-size: 47px;
    line-height: 57px;
    color: #FFF;
    font-family:"Maazard-SemiBold";

  }

  
.progress-container {
    width:100%;
}

.progress-item {
    margin-bottom: 20px;
    position: relative;
}

.label {
    font-size: 17px;
    font-family:"Maazard-SemiBold";
    color: #FFF;
}

.percent {
    position: absolute;
    right: 0;
    font-size: 7;
    color: #FFF;
    font-family:"Maazard-SemiBold";
}

.progress-bar {
    width: 100%;
    height:15px;
    background-color: #333;
    margin-top: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: rgba(236, 1, 11, 0.80);
    transition: width 1s ease-in-out;
}

.parentHead{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.parentHead h6{
    width: 70%;
    line-height: 28px;
}

.parentHead h2{
    width: 50%;
}

/* number sec */

.numberSec{
    padding: 80px 0px;
}

.whySec p,.numberSec p,.numCard h6{
    color: rgba(193,203,213);
}

.numCard h3{
    font-family: "Maazard-SemiBold";
    color: #FFF;
    font-size: 35px;
}

.numCard h6{
 font-size: 15px;
}


/* ===DOMESTIC=== */

.domBg{
    background-image: url(../images/dom5.svg) !important;
        padding: 30px 0px 0px 0px !important;
        background-position: center;
        background-size: cover;
}

/* placement */

.placeCard{
    border-radius: 20px;
border: 1px solid #E3DBD8;
height: 100%;
}

.placeCard:hover{
    outline: 1px solid rgba(236, 1, 11, 0.80) ;
}

/* job sec */

.jobBg{
    background:#FDEFF1;
   padding-top: 100px;
   padding-bottom: 100px;
   
}

.cvCard{
    background-color: #FFF;
    border-radius: 10px;
    padding: 5px 20px 5px 5px;
}

.redPart{
    border-radius: 10px;
    background: rgba(236, 1, 11, 0.80);
    position: relative;
   height: 100%;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.outline{
    font-feature-settings: 'liga' off, 'clig' off;
color: transparent;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: var(--White, #FFF);
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
/* font-family: "Segoe UI', Tahoma, Geneva, Verdana, sans-serif"; */
font-size: 20px;
font-style: normal;

line-height: 36px; /* 120% */
text-transform: capitalize;
}

.redPart h4{
    position: absolute;
    top: 0;
    left: 10px;
}

.redPart i{
    font-size: 40px;
    color: white;
}

.cvCard h5{
    color: #034833;
    font-size: 18px;
    font-family: "Maazard-Medium";

}

.cvCard p{
    font-size: 13px;
    color: #727272;
}

.clientBox{
    display: flex;
    justify-content: space-between;
}

.client{
    /* background-color: #101E46; */
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.clients{
   height: 120px;
   width: 200px;
   /* padding: 50px; */
   display: flex;
   justify-content: center;
   align-items: center;
    border-radius: 22.333px;
background: #FFF;
box-shadow: 0px 41.875px 55.833px 0px rgba(212, 217, 232, 0.20);
}

.clients img{
    width: 120px;
}

.domestic{
    background: #F7F9FD;
}

.appBox{
    border-radius: 20px;
background: var(--White, #FFF);
box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);

}

.appBox button{
    background-color: rgba(236, 1, 11, 0.80);
    width: 100%;
    padding: 15px;
    color: #FFF;
    font-family: "Maazard-SemiBold";
    border-radius: 0px 0px 20px 20px;
}

.appContent{
    display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}

.coachingCard{
    border-radius: 15.55px;
background: #FFF;
box-shadow: 0px 0px 46.651px 0px rgba(0, 0, 0, 0.05);
}

.coachingCard button{
    border-radius: 10px;
    border: 0.778px solid rgba(236, 1, 11, 0.80);
    padding: 10px 15px;
}

.coachingCard button i{
    color: rgba(236, 1, 11, 0.80);
    rotate: 45deg;
}

.coachingCard:hover button{
    background: rgba(236, 1, 11, 0.80);

}  

.coachingCard:hover button i{
color: #FFF;
}  

.detailCard button.active{
    color: rgba(236, 1, 11, 0.80);
}


.asstContent{
    border-radius: 0px 0px 20px 20px;
background: var(--White, #FFF);
padding: 15px 15px 30px 15px;
box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

.asstContent button{
border: 1px solid rgba(236, 1, 11, 0.80);
background-color: transparent;
padding: 15px 30px;
border-radius: 999px;
color:  rgba(236, 1, 11, 0.80);
}

.asstContent button:hover{
    background-color: rgba(236, 1, 11, 0.80);
    color: #FFF;
}



.value p{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin: 0;
}

.value.open p {
  max-height: 300px; /* adjust as needed */
  margin-top: 10px;
}

.value.semiBold.red {
  color: rgba(236, 1, 11, 0.80);
}

.value{
    cursor: pointer;
}

.numCard h6{
    color: #5C6C7B;
}

.owl-carousel .owl-stage-outer {
    display: flex;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

.countryCard{
    min-width: 280px;
    min-height: 280px;
}

/* COURSE DETAIL */
/* 
.feeTable th,.feeTable td{
    padding: 20px 10px;
} */

.feeTable h5,.feeTable2 h6{
    color: #213D39;
    opacity: .88; 
    font-size: 18px;
    /* font-family: "Maazard-SemiBold"; */
}

.details-row h6{
    color: #213D39;
    opacity: .88; 
    font-size: 17px;
}

.feeTable h5{
    font-family: "Maazard-SemiBold";
}

.feeTable td:nth-child(2),
.feeTable td:nth-child(3) {


    color: rgba(236, 1, 11, 0.80);

  font-family: "Maazard-SemiBold";

}

.details-row {
  
    background-color: #f9f9f9; /* light background for contrast */
    border-top: none;
    border-bottom: none;
  }


  .d-arrow{
    transition: transform 0.5s ease-in ;
    color: #fff;
}





  
  .feeTable2{
    border-top: 1px solid #E9EAF0;
  }
  

.parentSec .find_btn:hover{
    color: #000;

}

.usa{
    background-image: url(../images/us.svg);
}

.uae{
    background-image: url(../images/uae.svg);
}

.kuwait{
    background-image: url(../images/kuwait.svg);
}


.sa{
    background-image: url(../images/sa.svg);
}

.baharain{
    background-image: url(../images/baharain.svg);
}

.qa{
    background-image: url(../images/qa.svg);
}

.ca{
    background-image: url(../images/ca.svg);
}

.au{
    background-image: url(../images/au.svg);
}

.uk{
    background-image: url(../images/uk.svg);
}

.nz{
    background-image: url(../images/nz.svg);
}

.ie{
    background-image: url(../images/ie.svg);
}

.in{
    background-image: url(../images/in.svg);
}


.oman{
    background-image: url(../images/oman.svg);
}

.proBtn button{
    color: #000;
}

.scrollingwrapper .scroll_card.active{
    color: rgba(236, 1, 11, 0.80) !important;
    font-family: "Maazard-SemiBold" !important;
   
}

.social-icons i{
    cursor: pointer;
}

.social-icons i:hover{
    color: #FFF;
    background-color: rgba(236, 1, 11, 0.80)
}

  
  .ragTable table::-webkit-scrollbar {
    display: none !important; /* Chrome/Safari */
  }
  

  .courseSearch{
    border-radius: 0px 2.437px 2.437px 0px;
background: rgba(236, 1, 11, 0.80);
width: 100%;
height: 100%;
  }

  .filterBtnx{
    margin-left: 10px;
    color:  rgba(236, 1, 11, 0.80);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 0px 67.2px 0px rgba(0, 0, 0, 0.24);
    width: 100%;
height: 100%;
  }

  .options{
    border-radius: 11px;
background: #FFF;
box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.10);
font-size: 14px;
padding: 10px 20px;
  }

 .courseSearchBox .scroll_wrapper {
    display: flex;
    overflow-x: auto;
   
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    width: 100%;
}

.courseSearchBox .scroll_wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

.courseSearchBox .scrollcard{
    /* min-width: 50vw; Each card takes full screen width */
    scroll-snap-align: start;
    flex: 0 0 50;
    padding: 5px;
    background:none;
    text-align: center;
    text-decoration: none;
    /* color: #333; */
    font-size: 18px;
    border-radius: 8px;
    white-space: nowrap;
}

.courseSearchBox .options.active{
border: 1px solid  rgba(236, 1, 11, 0.80);
}


  .nav_bar ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .nav_bar ul li:hover .dropdown-menu {
    display: block;

  }

  .drop:hover {
    background-color: red;
    color: white !important;
  }
  .nav-bar .dropdown-menu li {
   display: block !important;
width: 100%; 

 }
/* Positioning for full-page loader and menu (if any) */

.menuSec {
    position: fixed;
    left: 0;
    top: 0;
}


#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
  }

  /* Spinner circle */
  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid red;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  /* Keyframes for rotation */
  @keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


 /* MODAL */

 .modal button,
.modal h4 {
    font-family: "Maazard-SemiBold";
}

.modal-content {
    border: 3px solid  rgba(236, 1, 11, 0.80);
    border-radius: 20px
}

.modalHead {
    padding-bottom: 10px;
    border-bottom: 2px solid #d7dedd
}

.modal input,.select {
    width: 100%;
    padding: 7px 10px;
    border: 2px solid #d7dedd;
    border-radius: 5px
}

.modal .selectA {
    border: 2px solid #d7dedd;
    border-radius: 5px;
    height: 100%
}

.modal input:focus {
    outline: 0
}

.modalBtn{
    width: 100%;
    background-color:  rgba(236, 1, 11, 0.80);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-family: 'Maazard-SemiBold';
}