* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-bg-color: #f7f6f4;
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --grdaient-color: linear-gradient(90deg, rgba(227, 80, 22, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(242, 104, 24, 1) 100%);
    --btn-color: #fa4a23;
    --prime-ft3-color: #001f3e;
    --margin-left--05: -0.5rem;
    --secdry-bg-color: #d8e6ef;
    --prime-bg-color: #e9eff5;
    --prime-ft2-color: #34495f;
    /* --color-cobination: #FAFFCA; */
    --color-cobination: #fff;
    --main-head: #0C1B2A;
    /* --other-text-color: #84AE92; */
    --other-text-color: #000;
    --nain-bg-color: #f7f6f4;
    --header-footer-bg-color: #fff;
    --silver-base: #C0C0C0;
    --silver-light: #D8D8D8;
    --silver-dark: #A9A9A9;
    --silver-accent: #BCC6CC;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--nain-bg-color);

    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--silver-light);
    color: #2a2a2a;
    /* background-color: #689ff17a; light gray background */
    background: linear-gradient(302deg, rgba(104, 159, 241, 1) 0%, rgba(255, 255, 255, 1) 91%);
    color: #0C1B2A;
    /* dark navy text */
}

article {
    display: flex;
    flex-direction: column;
    /* height: 100%; */
    /* Ensures the layout fills the screen */
}

header,
footer {
    flex-shrink: 0;
}

main {
    flex: 1 0 auto;
    /* grow: 1, shrink: 0, basis: auto */
}



a {
    color: var(--main-head);
}

h1 {
    color: #0C1B2A;
    font-size: 48px;
    font-weight: 700;
}

h2 {
    color: #0C1B2A;
    font-size: 36px;
    font-weight: 600;
}

h3 {
    color: #0C1B2A;
    font-size: 30px;
    font-weight: 600;

}

h4 {
    color: #0C1B2A;
    font-size: 26px;
    font-weight: 500;

}

h5 {
    color: #0C1B2A;
    font-size: 22px;
    font-weight: 500;

}

h6 {
    color: #0C1B2A;
    font-size: 18px;
    font-weight: 500;

}

p,
span,
li {
    color: var(--other-text-color);
}

td {
    color: var(--other-text-color);
    font-weight: 900;
}

/* main.main_section {
    padding: 55px 0px;
} */

/* #mainNavigation, */
.main_section {
    /* background-color: #FAFFCA; */
    /* background-color: var(--main-bg-color); */
    /* background-image: url("../images/bgchange/bnner.jpg"); */
}

/* header,
footer {
    background: linear-gradient(21deg, #5a6382 0%, rgb(8 108 8 / 64%) 100%);
    background: var(--header-footer-bg-color);
} */
header,
footer {
    background-color: #0C1B2A;
    /* dark navy */
    color: #FFFFFF;
    /* white text */
}

.bgColor {
    background-color: #B9D4AA;
    box-shadow: 0 2px 8px rgba(0, 32, 62, 0.08);
}

.card {
    /* background-color: #B1CDE7; */
    background-color: #005fbf;
    /* background: linear-gradient(244deg, #13cd4c96 0%, rgb(58 73 1) 100%); */
    border: 1px solid #84AE92;
    border-radius: 12px;
    padding: 20px;
    color: #00203E;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 32, 62, 0.08);
}

/* .card:hover {
    background-color: #84AE92;
    box-shadow: 0 4px 16px rgba(0, 32, 62, 0.15);
    transform: translateY(-4px);
} */
.card * {
    color: #fff;
}

.card-footer {
    padding: 0;
    border: none;
    background-color: transparent;
}

#mainNavigation {
    border: 1px solid #00000030;
}

/* #mainNavigation .navbar-brand {
    font-size: 34px;
    font-weight: 700;
    color: #B9D4AA;
} */

#mainNavigation .logoDesign {
    font-size: 30px;
    color: red;
    font-weight: 700;
}


/* Custom design highlight for "a" */
#mainNavigation .logoDesign {
    color: #84AE92;
    /* Soft Cream to pop out */
    /* background-color: #84AE92; Soft Sage bg */
    /* padding: 2px 6px; */
    border-radius: 4px;
    font-size: 37px;
    font-weight: 900;
    animation: bounceIn 1s ease-in-out;
}

/* Optional: Logo letter entrance animation */
@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.customAllCourses {
    border: 0.5px solid var(--color-cobination);
    border-radius: 4px;
    color: var(--color-cobination);
}

.searchForm {
    /* padding-left: 20px; */
    width: 100%;
    height: 100%;
    min-width: 310px;
    max-width: 400px;
    border-radius: 6px;
    border: 0.5px solid var(--color-cobination);
    padding: 0 14px;
}

.searchForm input::placeholder {
    color: var(--color-cobination);
}

.searchForm input {
    width: 100%;
    height: 100%;
    padding: 0px 10px;
    border: none;
    background-color: transparent;
    background-image: url('../images/search.png');
    background-repeat: no-repeat;
    background-size: 8%;
    background-position: left center;
    outline: none;
    padding-left: 35px;
    color: var(--color-cobination) !important;
}

#mainNavigation .navbar-nav {
    gap: 25px;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    background: url('../images/close.svg') no-repeat center center;
    cursor: pointer;
}

.explorelinks {
    /* padding-top: 20px; */
}

.exploreCourseBtn {
    background-color: var(--danger-color);
    /* background: linear-gradient(90deg, rgb(227 80 22 / 96%) 0%, rgba(253, 29, 29, 1) 50%, rgb(242 104 24) 100%); */
    /* background: linear-gradient(90deg, #5A827E 0%, #84AE92 50%, #B9D4AA 100%); */
    background-color: #0C1B2A;
    color: var(--color-cobination);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.exploreCourseBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(90, 130, 126, 0.4);
    background-color: #0C1B2A;
    color: #fff;

}

.freeAssmenet {
    background: transparent;
    border: 2px solid #078064;
    color: #078064;
}

.viewSchedule {
    background: transparent;
    border: 2px solid var(--btn-color);
    color: var(--btn-color);
}

.main_section_head {
    font-size: 40px;
    margin: 0;
    line-height: 38px;
    font-weight: 600;
    color: var(--main-head);
}

.main_section_para {
    margin: 0;
    font-size: 19px;
    line-height: 20px;
    padding: 25px 0px;
    color: var(--other-text-color);
    font-weight: 600;
    letter-spacing: 1px;
    word-spacing: 5px;
}

.trustedLinkSection {
    padding-top: 6px;
}

.trustedLinkSection .swiper-slide {
    min-width: 80px;
    max-width: 106px;
    /* min-height: 70px;
    max-height: 94px; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.trustedLinkSection .swiper-wrapper {
    justify-content: center;
    align-items: center;
}

.trustedLinkSection .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trustedclients {
    font-size: 17px;
    font-weight: 800;
    margin: 0;
    padding: 14px 0;
    color: var(--other-text-color);
}

.logo-heading {
    color: var(--other-text-color);
    font-weight: 800;
}

#trainingPartner .swiper-slide {
    min-width: 80px;
    max-width: 120px;
    /* min-height: 70px;
    max-height: 94px; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

#trainingPartner .swiper-wrapper {
    justify-content: center;
    align-items: center;
}

#trainingPartner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trainingPartnerOfficial {
    /* margin-top: -60px; */
    /* background: linear-gradient(21deg, #5a6382 0%, rgb(100 255 99) 100%); */
    /* background: linear-gradient(21deg, #5a6382 0%, rgb(6 129 6) 100%); */
    background-color: #204f95;
}

.trainingPartnerOfficial .card {
    /* border-radius: 20px; */
    background: transparent;
    border: none;
    box-shadow: unset;
}

.trainingPartnerOfficial h2 {
    /* font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding: 15px 0; */
}

.provideTrainingPartner {
    padding-top: 12px;
}

/* video section */
.video-container {
    position: relative;
    /* display: inline-block; */
    cursor: pointer;
    max-width: 440px;
    width: 100%;
    min-width: 288px;
    /* border-radius: 34px; */
    box-shadow: 0px 0px 15px 0px #000;
}

.video-container #preview,
.video-container video#videoPlayerCourses,
.video-container {
    border-top-left-radius: 34px;
}

.thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-size: 38px;
    color: white;
    opacity: 0.8;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.hide {
    display: none;
}

.backImg {
    position: absolute;
    top: -77px;
    left: 80%;
    z-index: 0;
    max-width: 200px;
    min-width: 186px;
    width: 94%;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
        /* move up */
    }

    100% {
        transform: translateY(0);
        /* back to original */
    }
}

#demo {
    transition: opacity 0.5s ease;
}

.fade-out {
    opacity: 0;
}

.listOfcourses {
    padding-top: 12px;
}

.listOfcourses ul li i {
    color: #1a8754;
}

.listOfcourses ul li {
    font-size: 18px;
}

.globalAccreditation {
    margin: 0;
    font-size: 19px;
    padding-top: 20px;

}

.green-f {
    color: #15803d;
    border: 1px solid #17803d80;
    background: #f0fdf4;
}

.tooltip-inner {
    background-color: rgba(0, 0, 0, 0.8) !important;
    /* Custom RGBA color */
    color: #fff;
    /* Text color */
    padding: 8px 12px;
    /* Padding for better readability */
    font-size: 14px;
    /* Adjust font size */
}

.tooltip.bs-tooltip-bottom .arrow::before {
    border-bottom-color: rgba(0, 0, 0, 0.8) !important;
    /* Arrow color */
}

.bg-trclr {
    color: var(--prime-ft3-color);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.margin-left-05 {
    margin-left: var(--margin-left--05);
}

.secdry-bg-color {
    background-color: var(--secdry-bg-color);
}

.share-icon-mr {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
}

.share-icon-mr:hover {
    background-color: #f0f0f0;
}

/* Social icons initially hidden */
.social-icon {
    list-style: none;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding-left: 10px;
}

/* Show social icons on hover */
.share-icon-mr:hover .social-icon {
    display: flex;
}

.social-icon li a {
    text-decoration: none;
    color: #555;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icon li a:hover {
    color: #007bff;
}

.fa-share-nodes {
    font-size: 16px;
    margin-right: 8px;
}

/* upcme tarrn */
.upcomingTraining-sec .upcoming-header {
    padding: 4px !important;
    font-size: 15px;
    color: #fff;
    font-family: 600;
    background: var(--main-head);
    margin-bottom: 10px !important;
}

.upcomingTraining-sec .upcomingTraining-list-holder .upcomingTraining-list-scroll {
    max-height: 520px;
    position: relative;
    overflow: scroll;
}

.logo-box {
    width: 75px;
    height: 75px;
    -o-object-fit: cover;
    object-fit: cover;
    justify-content: center;
    display: flex;
    margin: auto;
}

.date-list-group li:first-child {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--main-head);
    padding-top: 0;
    padding-bottom: 8px;
}

.date-list-group li {
    position: relative;
    padding-left: 10px;
    padding-top: 2px;
}

.date-list-group li:first-child:after {
    top: 6px;
}

.date-list-group li:after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #bbb;
    position: absolute;
    left: 0;
    bottom: 6px;
    top: -6px;
}

.upcoming-header {
    padding: 4px !important;
    font-size: 15px;
    color: #fff;
    font-family: 600;
    background: var(--main-head);
    margin-bottom: 10px !important;
}

.date-list-group li .single-dateText {
    padding-left: 10px;
}

.date-list-group {
    margin: 0;
    padding: 0;
    list-style: none;
}

.date-list-group li {
    position: relative;
    padding-left: 10px;
    padding-top: 2px;
}

.date-list-group li .single-dateText:after {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #bbb;
    position: absolute;
    left: 0;
    bottom: auto;
    top: 17px;
}

.upcoming-training-trainer-img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.btn.btnText-themeRed {
    color: #fff;
    background-color: transparent;
    border-bottom: 2px solid #fff;
    padding: 3px 0;
    min-width: auto;
    border-radius: 0;
}

.mainheading {
    display: inline-block;
    position: relative;
    color: #fff;
}

.ourCoursesSection .mainheading {

    color: var(--main-head);

}

.other-border::after {
    content: "";
    border-bottom: 3px solid #fff;
    width: 90px;
    height: 3px;
    position: absolute;
    bottom: -13px;
    left: 0;
}


header {
    position: sticky;
    top: 0;
    /* background-color: #fff; */
    z-index: 1000;
}

.borderCustomBottomAgile {
    /* border-bottom: 1px solid #006d29; */
    background-image: url('../images/1000_F_538330772_Uvspt7W6PCBAlOmSteScP3dWuUes7QZj.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}

.borderCustomBottomAgile .container {
    background: rgba(255, 255, 255, 0.5);
}

.custnmBgColor {
    /* background: linear-gradient(302deg, rgba(96, 141, 27, 0.6) 0%, rgba(42, 94, 62, 0.7) 100%); */
    background-color: #204f95;
    background-size: 200% 200%;
    animation: animateGradient 6s linear infinite;
}

/* Keyframes for smooth gradient movement */
@keyframes gradientShift {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

#agileAndScrumSection.nav {
    flex-direction: column;
    gap: 12px;
    border-right: 0.5px solid #00000030;
}

#agileAndScrumSection.nav-tabs {
    border-bottom: none;
}

#agileAndScrumSection.nav-tabs button {
    border: none;
    background-color: transparent;
    font-size: 19px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

#agileAndScrumSection.nav-tabs button i {
    font-size: 15px;
}

#agileAndScrumSection.nav-tabs button.active,
#agileAndScrumSection.nav-tabs button:hover {
    background-color: #d8fff2e8;
    color: #007e81;
}

.certificates-list li a {
    color: #007e81;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.certificates-list li a:hover {
    color: #007e81;
    text-decoration: underline;
}

.subhead {
    margin: 0;
    padding: 12px 0;
    font-size: 22px;
    font-weight: 700;
}

.customBorder {
    border-right: 0.5px solid #00000030;
}

footer {
    /* background-color: #222; */
    color: #fff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-section {
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
    font-weight: 800;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: var(--color-cobination);
    font-size: 18px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f39c12;
}

.social-icons a {
    margin: 0 8px;
    color: #ddd;
    font-size: 20px;
    transition: color 0.3s;
}

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

.copyright {
    text-align: center;
    /* margin-top: 20px; */
    font-size: 18px;
    color: #fff;
    border-top: 1px solid #fff;
    padding: 10px 0;
}

.swiper-slide {
    width: auto !important;
    /* Auto width for continuous effect */
    transition-timing-function: linear;
    /* Uniform speed throughout */
}

.swiper-wrapper {
    transition-timing-function: linear !important;
    /* Smooth loop */
}

.ourCoursesDataList a {
    text-decoration: none;
}

.ourCoursesDataList .card {
    min-width: 200px;
    max-width: 374px;
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 400px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ourCoursesDataList .card:hover {
    /* transform: scale(1.05); */
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 1) !important;
    border-radius: 12px; */
    transform: scale(0.9);
}

.ourCoursesDataList .OurCourseLogo {
    min-width: 70px;
    max-width: 100px;
    width: 100%;
}

.ourCoursesDataList .OurCourseLogo img {
    height: 100%;
    width: 100%;
}

.ourCoursesDataList h3 {
    font-size: 21px;
    margin: 0;
    padding: 12px 0;
    font-weight: 900;
    color: #fff;
    text-shadow: unset;
}

.ourCoursesDataList ul li {
    font-size: 18px;
    text-shadow: unset;
}

#ourCourseTab button {
    border: none;
    position: relative;
    color: var(--other-text-color);
    font-weight: 800;
    background-color: transparent;
}

#ourCourseTab button.active {
    color: var(--main-head);
}

#ourCourseTab button.active::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--main-head);
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
}

#ourCourseTab button.active::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 40%;
    background-color: var(--main-head);
    top: 50%;
    left: 100%;
    transform: translate(-100%, -50%);
}

#ourCourseTab button::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 40%;
    background-color: var(--main-head);
    top: 50%;
    left: 100%;
    transform: translate(-100%, -50%);
}

#ourCourseTab li:last-child button::after {
    background-color: transparent;

}

#ourCourseTab {
    border: none;
    justify-content: end;
}

.ourCoursesSection .swiper-button-next:after,
.ourCoursesSection .swiper-button-prev:after {
    font-size: 25px;
    color: #fff;
}

.ourCoursesSection .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0;
}

#OurCoursesDetailsList {
    padding-left: 25px;
    /* Adjust as needed */
    padding-right: 25px;
    /* Adjust as needed */
}

.ourCoursesSection .swiper-button-prev,
.ourCoursesSection .swiper-button-next {
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.combo-home-bg {
    /* background: linear-gradient(90deg, #00203E 0%, rgba(99, 180, 255, 0.71) 100%); */
    background: #00203E;
    background: linear-gradient(90deg, #5A827E 0%, rgb(99 255 141) 100%);

    border-radius: 18px;
}

.adjustable--hw {
    right: -45px;
    top: -180px;
}

.ext-padding {
    padding-left: 63px !important;
}

.slanted-div {
    clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%);
}

.fw-800 {
    font-weight: 800;
}

.combo-course-btn-bg {
    font-size: 33px;
    background: linear-gradient(90deg,
            #025844 0%,
            rgb(128 255 35) 50%,
            #025844 100%);
    background-size: 200% 100%;
    animation: gradientShift 4s linear infinite;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.pract-test-ad-sec .homedeskpt {
    mix-blend-mode: luminosity;
}

.another-graident.pract-test-ad-sec .homedeskpt {
    mix-blend-mode: unset;
}

.practisetest {
    text-shadow: unset;
    font-size: 20px;
    margin: 0;
    font-weight: 700;
    color: #0c1b2a;
}

.combo-course-txt-clr p {
    font-size: 26px;
    text-shadow: unset;
    color: var(--main-head);
}

.combo-course-txt-clr p span {
    font-size: 26px;
    text-shadow: unset;
    color: var(--main-head);
}

#know-more-webinars-btn {
    font-size: 25px;
}

.pract-test-ad-sec {
    background: linear-gradient(306deg, #025844 0%, rgb(240 255 35 / 76%) 100%);
}

.start-test-btn {
    background-color: #01203d;
    font-size: 20px;
    text-decoration: none;
}

.web-bg-sec {
    background-image: url(../images/web-home-bg.webp);
    background-repeat: no-repeat;
    background-size: contain !important;
    background-position: left !important;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    margin-top: 0;
}

#customDropDown.dropdown-menu {
    /* left: -100px; */
    background: #ffffff;
    box-shadow: 0px 4px 30px rgba(31, 34, 39, 0.2);
    border: 0px;
    padding: 20px 17px 0px 20px;
    width: 1000px;
    /* margin-top: 4px; */
    overflow: hidden;
    height: 490px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.course_categories:hover,
.course_categories.active {
    color: #073593;
    background: #f3f4f6;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
}

.course_categories.active {
    color: #073593;
    background: #f3f4f6;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
}

.course-cat {
    margin-left: 0px !important;
    padding-left: 1.8rem !important;
}

.course_categories {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1rem;
    color: #1f2937;
    font-weight: 600;
    padding: 0.9rem;
    margin-left: 0.9rem;
}

.course_categories {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1rem;
    color: #1f2937;
    font-weight: 600;
    padding: 0.9rem;
    margin-left: 0.9rem;
}

.ps-cust-cat {
    padding-left: 40px;
}

.course-title {
    font-weight: 600;
    color: #1f2937;
    border-bottom: 1px solid #d9e3f7;
}

.course-title {
    font-weight: 600;
    color: #1f2937;
    border-bottom: 1px solid #d9e3f7;
}

.category-inner-container,
.subcategory-inner-container {
    border-right: 1px solid #d9e3f7;
    height: 420px !important;
    /* overflow-y: scroll !important; */
    overflow-x: hidden !important;
}

.text-dec-n-bl {
    text-decoration: none;
}

.course-ext {
    padding-right: 0px !important;
}

.course-subcategories {
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 0.9rem;
    color: #585c5f;
    padding: 0.3rem;
    /* display: block; */
}

.course-subcategories {
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 0.9rem;
    color: #A8ABCA;
    /* padding: 0.3rem; */
    /* display: block; */
}

.cust-width-menu-mid .subcate:hover .sdt2co {
    color: #073593;
}

.sdt2co {
    font-size: 0.9rem;
    font-weight: 600;
}

.popular-btn {
    border: none;
    background: #FA4A23;
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 0.9rem;
    border-radius: 0.12rem;
    width: fit-content;
    color: #FFFFFF;
    position: relative;
    top: -2px;
}

.subcate {
    padding: 0.3rem;
}

.subcate {
    padding: 0.3rem;
}

.cust-width-menu-mid {
    width: 587px;
    margin-left: -26px !important;
}

.advance-btn {
    background: #01203D;
    border: none;
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 0.9rem;
    border-radius: 2px;
    width: fit-content;
    color: #FFFFFF;
    position: relative;
    top: -2px;
}

.semiarList {
    font-size: 20px;
    margin: 0;
}

.searchForm .form-control:focus {
    background-color: transparent;
    border: none;
    outline: 0;
    box-shadow: 0 0 0 0;
}

.ourCoursesDataList .swiper-slide {
    /* min-height: 200px;
    max-height: 388px;
    height: 300px; */
}

.text-align-center {
    text-align: center;
}

.skill-team-btn {
    background-color: #01203d;
    padding: 16px 0px;
}

.w-90 {
    width: 90%;
}

.rounded-1 {
    border-radius: var(--bs-border-radius-sm) !important;
}

.card-subtit {
    font-size: 16px;
    text-shadow: unset;
    color: #fff;
    font-weight: 900;
    margin: 0;
}

.cardmain {
    font-size: 18px;
    text-shadow: unset;
    color: #fff;
    font-weight: 900;
    margin: 0;
    padding: 20px 0;
}

.solid-points li {
    text-shadow: unset;
    color: #fff;
    font-size: 18px;
}



.rounded-3 {
    border-radius: .3rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.border-2 {
    border-width: 2px !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.find-right-course-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
}

.find-right-course-cards .card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%;

}

.find-right-course-cards .card-footer .amnt-cont {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.find-right-course-cards .card-footer .amnt-cont .amnt-div {
    width: 100%;

}

.find-right-course-cards .card-footer .amnt-cont a {
    width: 100%;

}

.find-right-course-cards .find-card-container:hover {
    background-color: #012d58;
    box-shadow: 0 4px 16px rgba(0, 32, 62, 0.15);
    transform: translateY(-4px);
}

.SubHeading {
    font-weight: 800;
    text-shadow: unset;
    color: #fff;
    font-size: 26px;
    text-align: center;

}

.find-card-container {
    height: 100%;
    min-width: 400px;
    max-width: 500px;
    /* min-height: 600px;
    max-height: 500px; */
    width: 100%;
    height: 100%;
    background: #187d73;
    /* background: linear-gradient(254deg, rgba(24, 125, 115, 1) 0%, rgba(16, 120, 59, 1) 50%, rgb(237 191 83) 100%); */
    transition: all 0.3s ease-in-out;
    /* box-shadow: 0 2px 8px rgba(0, 32, 62, 0.08); */
    border: 1px solid #84AE92;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 1);
}

.card-title.home-online {
    /* color: var(--main-head); */
    color: #fff;
    font-size: 30px;
}

.find-card-container .card {
    background: transparent;
    border: none;
    box-shadow: unset;
    height: 100%;
    position: relative;
    border-radius: 20px;
}

.meetOurtTeam .swiper-slide {
    min-width: 220px;
    max-width: 372px;
    /* margin-left: 50px;
    margin-left: 50px; */
}

#meetOurTeam .card {
    /* background: #2A7B9B;
    background: linear-gradient(194deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%); */
    background: #4287ed;
    background: linear-gradient(102deg, rgb(7, 54, 124) 0%, rgba(3, 82, 119, 0.966) 99%);

}

#meetOurTeam .card svg path {
    fill: #fff;

}

#meetOurTeam .card * {
    color: #fff;
    text-shadow: unset;
    font-weight: 700;
}

#meetOurTeam .card h5 {
    font-size: 20px;
}

#meetOurTeam .card p {
    font-size: 17px;
}

.meetOurTeamNavigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}

.meetOurTeamNavigation .meetourTeamPrev {
    position: relative !important;
    background-color: transparent;
    border: 2px solid #001F3E;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 12px;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    margin-top: 0;
}

.meetOurTeamNavigation .meetourTeamNext {
    position: relative !important;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 2px solid #001F3E;
    border-radius: 50%;
    margin-right: 30px;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    margin-top: 0;
}

.meetOurTeamNavigation .meetourTeamPrev::after {
    position: relative !important;
    font-size: 13px;
    color: #001F3E;
    font-weight: bold;
}

.meetOurTeamNavigation .meetourTeamNext::after {
    position: relative !important;
    font-size: 13px;
    color: #001F3E;
    font-weight: bold;
}

.detailsOfGrowCarreer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

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

.growCareerLogo {
    min-width: 35px;
    max-width: 40px;
    width: 100%;
}

.detailsTitle {
    padding-left: 12px;
}

.detailsTitle p {
    margin: 0;
}

.detailsTitle .growCarreerNumber {
    font-size: 20px;
    font-weight: 800;
}

.detailsTitle .growCarreerTitle {
    font-size: 17px;
    font-weight: 400;
}

.mainSubHead {
    font-size: 22px;
    font-weight: 700;
    padding-top: 24px;
}

.growYourcarrer .card {
    border-radius: 12px;
}

.requestclaa.pract-test-ad-sec {
    /* Two backgrounds: a linear gradient and an image */
    background-image:
        /* gradient layer */
        url(../images/backhomeblue.webp);
    /* image layer */
    background-repeat: no-repeat, no-repeat;
    background-size: 200% 100%, cover;
    /* Gradient needs extra width for animation */
    background-position: 0% 50%, center;
    animation: animateGradient 6s linear infinite;
}

/* Animate gradient background position smoothly from left to right */
@keyframes animateGradient {
    0% {
        background-position: 0% 50%, center;
    }

    100% {
        background-position: 100% 50%, center;
    }
}


.pract-test-ad-sec {
    /* background: linear-gradient(306deg, #025844 0%, rgb(240 255 35 / 76%) 100%); */
    /* background: #B1CDE7; */
    background: linear-gradient(181deg, rgb(22 86 151) 0%, rgba(172, 232, 242, 1) 99%);
}

.btn-org-bdr-clr:hover {
    border: 2px solid #01203d;
}

.btn-org-bdr-clr:hover {
    border: 2px solid #01203d;
}

.btn-org-bg-clr:hover {
    background-color: #01203d;
    background: #01203d;
    transition: background-color 0.3s linear;
}

.btn-org-bdr-clr {
    border: 2px solid #fa4a23;
}

.btn-org-bg-clr {
    background-color: #fa4a23;
}

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

.clientsLogo .logoClients {
    min-width: 100px;
    max-width: 150px;
    width: 100%;
    margin: 10px 30px;
    object-fit: fill;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px;
    border-radius: 6px;
    min-height: 80px;
}

#course_reviews .bx-tggle-shdw {
    box-shadow: -1px 6px 6px -6px var(--prime-ft2-color);
}

.transition-all {
    transition: all 0.5s ease-in-out;
}

.prime-ft2-bg-color {
    color: #001f3e;
    background: beige !important;
    font-size: 20px;
    border-radius: 10px !important;
}

.prime-ft2-bg-color.active {
    background-color: var(--prime-ft2-color) !important;
    color: #fff !important;
}

#course_reviews #ourPartnerLoveUs {
    /* border: 1px solid var(--prime-ft2-color) !important; */
    border: none !important;
    max-width: 370px;
    margin: auto;
    border-radius: 15px;
}

#ourPartnerLoveSlidder .swiper-slide {
    min-width: 220px;
    max-width: 372px;
}

.mt-n1r {
    margin-top: -1rem;
}

.page_speed_63520233 {
    color: #0276B7;
}

#ourPartnerLoveSlidder .card {
    margin-top: 20px;
    /* From https://css.glass */
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


#ourPartnerLoveSlidder .card * {
    color: #fff;
}

#ourPartnerLoveSlidder .card_truncer {
    font-size: 18px;
    font-weight: 500;
    padding: 14px 5px;
    color: #fff;
}

#ourPartnerLoveSlidder svg path {
    fill: #fff;
}

#ourPartnerLoveSlidder .page_speed_63520233 {
    color: #fff;
}

#ourPartnerLoveSlidder .swiper-button-next,
#ourPartnerLoveSlidder .swiper-button-prev {
    color: #fff;
    border-color: #fff;
}

#ourPartnerLoveSlidder .swiper-button-next::after,
#ourPartnerLoveSlidder .swiper-button-prev::after {
    color: #fff;
    border-color: #fff;
}

.ourBlogsCards {
    /* min-height: 200px;
    max-height: 450px; */
    height: 100%;
    min-width: 300px;
    max-width: 400px;
    width: 100%;
    /* padding: 20px; */
    box-shadow: 0px 0px 8px 0px #001F3E;
    margin: 12px 0;
    margin-left: 8px;
    border-radius: 12px;
}

.ourBlogsCards .card {
    border: none;
}

.ourBlogsCards:hover {
    box-shadow: 5px 5px 5px 5px #001F3E;
}

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

.roundLookBtn {
    padding: 6px 34px;
    color: #fff !important;
    background-color: var(--prime-ft3-color);
    font-size: 16px;
    border-radius: 30px;
    margin: 0;
}

.date_looks {
    font-size: 15px;
    margin: 0;
}

.ourBlogSubHead {
    text-align: left;
    font-size: 17px;
    padding: 14px 0;
    margin: 0;
    font-weight: 800;
}

.ourBlogAbout {
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

.ReadMore {
    text-decoration: underline;
    font-size: 14px;
    text-align: left;
    margin: 0;
    font-weight: 600;
}

.explore-cards,
.explorerequest {
    background-color: #0c1b2a;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.explore-cards,
.explorerequest i {
    padding-left: 12px;
}

.subscribeBtn {
    border-radius: 5px;
    padding: 8px 30px;
    font-size: 20px;
    color: #fff;
    background-color: #01293d;
    border: 1px solid #fff;
    cursor: pointer;
}

.subscribeEmail input {
    height: 100%;
    padding: 12px 6px;
    border-radius: 8px;
    font-size: 16px;
}


.social-icons a {
    font-size: 20px;
    display: flex;
    padding: 8px;
    transition: 0.3s;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;

}

.social-icons a.facebook {
    background-color: #3b5998;
}

.social-icons a i {
    color: #fff;
}

/* Facebook Blue */
.social-icons a.twitter {
    /* background- */
}


/* YouTube Red */
.social-icons a.instagram {
    background-color: #E1306C;
}

/* Instagram Pink */
.social-icons a.linkedin {
    background-color: #0077b5;
    color: #fff;

}

/* LinkedIn Blue */

.social-icons a:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.paymentList {
    flex-wrap: wrap;
}

.paymentList li img {
    min-width: 30px;
    max-width: 100px;

}

.another-graident {
    /* background: linear-gradient(182deg, #13cdbc96 0%, rgb(188 219 69 / 95%) 100%); */
    background: #4287ed;
    background: linear-gradient(181deg, rgb(22 86 151) 0%, rgba(172, 232, 242, 1) 99%);
}

.benefitsSection {
    background-image: url('../images/banne.png');
    background-repeat: no-repeat;
    background-size: cover;
}

footer {
    background-image:
        url(../images/backhomeblue.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#course_reviews {
    background-image: linear-gradient(164deg, #5a7182cc 0%, rgb(19 108 8 / 65%)), url(../images/bgchange/product-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bgColorCustom {
    /* background-color: #00000030; */
    background: linear-gradient(182deg, #1e3c72 0%, #2a52be 50%, #031a4df0 100%);
}

.SubHeading {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin: auto;
    text-align: center;
    padding-top: 20px;
}

.SubHeading::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    height: 4px;
    width: 0;
    background: #fff;
    border-radius: 2px;
    transform: translate(-50%, 0);
    animation: underlineGrow 2s ease-in-out infinite alternate;
}

@keyframes underlineGrow {
    0% {
        width: 10%;
    }

    100% {
        width: 50%;
    }
}

.other-border.mainheading::after {
    animation: underlineGrow 2s ease-in-out infinite alternate;
    border-color: var(--main-head);
}

@keyframes underlineGrowSmall {
    0% {
        width: 10%;
    }

    100% {
        width: 50%;
    }
}

.upcomingSection .other-border.mainheading::after {
    border-color: #fff;
}

.adjustable-main-hw,
img.liveWebinar {
    animation: floatUpDown 3s ease-in-out infinite;
    /* optional smooth transform origin */
    transform-origin: center bottom;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
        /* moves up by 15px */
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(10px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.bounce-heading {
    animation: bounceIn 0.8s ease-out;
}

.course-car-tit {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.course-card-head {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.ourLatestblogs .course-car-tit {

    color: var(--main-head);

}

.ourLatestblogs .course-card-head {

    color: var(--main-head);
    padding-bottom: 20px;

}

.ourLatestblogs .card * {
    color: #021f3e;

}

.fade-scroll-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-scroll-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulseBrand {
    0% {
        transform: scale(0.8);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    100% {
        transform: scale(0.8);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

#mainNavigation .navbar-brand {
    /* background: rgba(255, 255, 255, 0.9); */
    /* Soft white with transparency */
    /* padding: 10px 24px; */
    /* border-radius: 5px;
    backdrop-filter: blur(10px);
    display: inline-block; */
    /* animation: pulseBrand 3s ease-in-out infinite;
    transition: background 0.2s ease; */
}

#mainNavigation .navbar-brand img {
    min-width: 200px;
    max-width: 270px;
    border-radius: 5px;
}

.changeTextColor {
    color: #fff;
}

.changeTextColor span,
.textColorSet {
    color: #fff !important;
}

#ourBlogsSlider .card {
    background: rgb(18 151 229 / 0%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgb(11 84 195);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.requestclaa {
    background: linear-gradient(181deg, rgb(22 86 151) 0%, rgba(172, 232, 242, 1) 99%);
}

.paymentList {
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.ourclients .card {
    /* From https://css.glass */
    background: linear-gradient(77deg, rgb(85 137 215) 0%, rgb(255 255 255 / 83%) 91%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgb(179 189 235);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10.3px);
    /* border: 1px solid rgba(255, 255, 255, 1); */
    border: none;
}

.growYourcarrer .card {
    background: linear-gradient(181deg, rgb(85 137 215) 0%, rgb(255 255 255 / 83%) 91%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgb(107 120 147);
    backdrop-filter: blur(20px);
    border: none;
}

.growYourcarrer .mainSubHead,
.ourclients h2,
.ourclients h3 {
    padding: 0;
    font-size: 30px;
    color: #0c1b2a;
}

.enrollerSecction {
    max-width: 120px;
}

.enrollerSecction img {
    mix-blend-mode: darken;
    width: 100%;
}

.growYourcarrer .card p {
    color: #0c1b2a;
}

.ourLatestblogs .course-car-tit {
    color: #0c1b2a;
    font-weight: bold;
}
.allCourseWithSearch{
    margin: 0;
    padding: 0;
    margin: 0 12px;
}
.searchForm {
    min-height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.accordion-item{
    border: none;
    border-bottom: 1px solid #d7d7d7;
}