/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {

    --green-dark: #D4F796;
    --green-light: #e9faca;

    --banner-bg: #ECFFCA;

    --blue-dark: #c5fcf7;
    --blue-light: #C7F5FF;

    --link-hover: #06262d;

    --web-gray: #A6A6A6;
    --web-gray-light: #f4f4f4;
    --web-gray-dark: #666666;
    --heading-gray: #414141;

    --footer-bg: #f8f8f8;
    --footer-border: #e0e0e0;
    --footer-text: #555555;
}

    .w-25 { width: 25% !important; }
    .w-50 { width: 50% !important; }
    .w-75 { width: 75% !important; }

    @media (min-width: 768px) {
        .w-md-25 { width: 25% !important; }
        .w-md-50 { width: 50% !important; }
        .w-md-75 { width: 75% !important; }
    }

    @media (min-width: 992px) {
        .w-lg-25 { width: 25% !important; }
        .w-lg-50 { width: 50% !important; }
        .w-lg-75 { width: 75% !important; }
    }


body {
    /* font-family: "Inter", sans-serif !important; */
    font-family: "Manrope", sans-serif !important;
    font-size: 14px;
    line-height: 19.6px;
    font-weight: 500;
    color: #161e2d;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidespace-large {
    padding: 0 7vw;
}

.sidespace-small {
    padding: 0 5vw;
}

/* Header Styles Start  */
.top-banner {
    background-color: var(--green-dark);
    font-size: 13px;
}

.top-banner a {
    color: #71717A;
    font-weight: 600;
}

.main-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--footer-border);
    padding: 10px 0;
}

.main-navbar .navbar-brand img {
    height: 42px;
}

.main-navbar .nav-link {
    color: #71717A;
    font-weight: 600;   
    font-size: 15px;
    padding: 6px 14px;
}

.main-navbar .nav-link:hover {
    color: var(--link-hover);
}

.btn-contact {
    background-color: var(--blue-dark);
    color: #212121;;
    border: none;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-contact:hover {
    background-color: var(--blue-light);
    color: #212121;
}

.btn-login {
    border: 1px solid #ccc;
    color: #333;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 4px;
    background: transparent;
    font-weight: 600;
}

.btn-login:hover {
    background-color: var(--green-dark);
    color: #000000;
}

.header-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.notification-header {
    background: #f0ffd4;
    padding: 10px 12px;
    border-radius: 50%;
}

/* Header Styles End*/

/* Footer Styles Start */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid var(--footer-border);
    padding: 48px 0 0;
    margin-top: auto;
}

.site-footer .footer-logo img {
    height: 44px;
    margin-bottom: 14px;
}

.site-footer .footer-tagline {
    font-size: 14px;
    color: var(--footer-text);
    line-height: 1.6;
    /* max-width: 250px; */
    font-weight: 600;
}

.site-footer h6 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer ul li a {
    font-size: 14px;
    color: var(--footer-text);
    text-decoration: none;
    font-weight: 600;
}

.site-footer ul li a:hover {
    color: var(--link-hover);
}

.site-footer .footer-address {
    font-size: 14px;
    color: var(--footer-text);
    line-height: 1.7;
    font-weight: 600;
}

.site-footer .footer-address strong {
    color: #111;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.footer-bottom {
    background-color: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    padding: 14px 0;
    margin-top: 36px;
    font-size: 12px;
    color: var(--footer-text);
}

.footer-bottom .social-links a {
    color: #333;
    font-size: 16px;
    margin-left: 10px;
    text-decoration: none;
}

.footer-bottom .social-links a:hover {
    color: var(--link-hover);
}

/* Footer Styles Start */

/* Offcanvas Nav Start */
.offcanvas-nav {
    width: 80% !important;
    max-width: 320px;
}

.offcanvas-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.offcanvas-nav .nav-link:hover {
    color: var(--link-hover);
}

/* Offcanvas Nav End */


/* Home Page CSS Start */

.section-heading h2 {
    font-size: 26px;
    font-weight: 600;
    color: #212121;
}

.section-subheading {
    font-size: 17px;
    font-weight: 600;
    color: #71717A;
    line-height: 1.4;
}

/* Notification Cards */
.notications-cards .notification-card {
    background-color: var(--green-light);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 15px;
}

.notications-cards .notification-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.notications-cards .notification-card:hover .card-arrow {
    rotate: -30deg;
}

.notications-cards .card-icon {
    flex-shrink: 0;
    font-size: 24px;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notications-cards .card-content {
    flex: 1;
    text-align: left;
}

.notications-cards .card-title {
    font-size: 15px;
    font-weight: 600;
    color: #161e2d;
    margin-bottom: 6px;
    line-height: 1.3;
}

.notications-cards .card-meta {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 600;
    margin-bottom: 6px;
}

.notications-cards .card-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
}

.notications-cards .card-arrow {
    flex-shrink: 0;
    font-size: 16px;
    color: #333;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 50%;
    padding: 20px;
}

.notications-cards .notification-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.learningsteps-section img{
    height: 400px;
    object-fit: contain;
    width: 100%;
}

.whychooselearning-section {
    text-align: left;
}

.whychooselearning-section .main-heading {
    font-size: 26px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 16px;
    line-height: 1.3;
}

.whychooselearning-section .section-description {
    color: #71717A;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 32px;
}

.whychooselearning-section .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.whychooselearning-section .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #161e2d;
    font-weight: 500;
}

.whychooselearning-section .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    background-color: var(--blue-dark);
    border-radius: 8px;
    color: var(--link-hover);
    font-size: 18px;
    flex-shrink: 0;
}

.whychooselearning-section .feature-text {
    display: block;
}

.whychooselearning-section .btn-learn-more {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whychooselearning-section .btn-learn-more:hover {
    background-color: #333333;
    text-decoration: none;
    color: #ffffff;
}

.whychooselearning-section .choose-learning-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notications-cards .notification-card {
        padding: 16px;
        gap: 12px;
    }

    .notications-cards .card-title {
        font-size: 14px;
    }

    .notications-cards .card-meta {
        font-size: 11px;
    }

    .notications-cards .card-description {
        font-size: 12px;
    }

    .notications-cards .card-icon {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }

    .learningsteps-section img{
        height: auto;
    }
}

@media (max-width: 576px) {

    .section-heading h2 {
        font-size: 23px;
    }

    .section-subheading {
        font-size: 15px;    
    }

    .whychooselearning-section .main-heading {
        font-size: 23px;
    }

    .keyfeatures-cards .keyfeature-title {
        font-size: 15px;
        font-weight: 600;
    }

    .notications-cards .notification-card {
        padding: 14px;
        gap: 10px;
    }

    .notications-cards .card-title {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .notications-cards .card-meta {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .notications-cards .card-description {
        font-size: 11px;
    }

    .notications-cards .card-icon {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }

    .notications-cards .card-arrow {
        font-size: 14px;
        width: 20px;
        height: 20px;
    }

    .learningsteps-section img {
        /* height: 120px; */
    }

}

/* Training Category Cards */
.training-cards-carousel .training-card {
    /* background-color: #f8f8f8; */
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.training-cards-carousel .training-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.training-cards-carousel .training-card-icon {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--link-hover);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        30% 100%,
        15% 85%,
        0 70%,
        0 0
    );
}

.training-cards-carousel .training-card-icon img {
    height: 30px;
    width: 30px;
}

/* .training-cards-carousel .training-card:hover .training-card-icon {
    background-color: #b3ecf5;
    transform: scale(1.08);
} */

.training-cards-carousel .training-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #161e2d;
    margin-bottom: 12px;
    line-height: 1.3;
}

.training-cards-carousel .training-card-description {
    font-size: 13px;
    color: var(--web-gray-dark);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Training Cards */
@media (max-width: 768px) {
    .training-cards-carousel .training-card {
        padding: 24px 20px;
    }

    .training-cards-carousel .training-card-title {
        font-size: 16px;
    }

    .training-cards-carousel .training-card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .training-cards-carousel .training-card {
        padding: 20px 16px;
    }

    .training-cards-carousel .training-card-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .training-cards-carousel .training-card-description {
        font-size: 12px;
    }

    .training-cards-carousel .training-card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }
}

/* Home Page CSS End */

.keyfeatures-section {
    background-color: var(--green-dark);
    padding: 60px 0;
}


.keyfeatures-section .section-heading h2 {
    color: #1a1a1a;
}

.keyfeatures-section .section-subheading {
    color: #555555;
}

.keyfeatures-cards .keyfeature-card {
    background-color: #ffffff;
    border-radius: 0;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border: 2px dashed #e0e0e0;
    position: relative;
    overflow: hidden;
    /* text-align: center; */
}

.keyfeatures-cards .keyfeature-card .keyfeature-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.keyfeatures-cards .keyfeature-card:hover {
    transform: translateY(-3px);
    /* border-color: var(--blue-dark); */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.keyfeatures-cards .keyfeature-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.keyfeatures-cards .keyfeature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--blue-dark);
    /* border-radius: 50%; */
    color: var(--link-hover);
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 15% 85%, 0 70%, 0 0);
}

.keyfeatures-cards .keyfeature-card:hover .keyfeature-icon {
    background-color: #a8e9f5;
    transform: scale(1.1);
}

.keyfeatures-cards .keyfeature-title {
    font-size: 17px;
    font-weight: 600;
    color: #212121;
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

.keyfeatures-cards .keyfeature-description {
    font-size: 15px;
    color: #71717A;
    line-height: 1.5;
    margin: 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

/* Responsive Design for Key Features */
@media (max-width: 768px) {
    .keyfeatures-section {
        padding: 40px 0;
    }

    .keyfeatures-cards .keyfeature-card {
        padding: 16px;
        gap: 10px;
    }

    .keyfeatures-cards .keyfeature-title {
        font-size: 14px;
        margin-bottom: 0;
    }

    .keyfeatures-cards .keyfeature-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .keyfeatures-section {
        padding: 30px 0;
    }

    .keyfeatures-cards .keyfeature-card {
        padding: 14px;
        gap: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .keyfeatures-cards .keyfeature-card .keyfeature-top {
        flex-direction: column;
        align-items: center;
    }

    .keyfeatures-cards .keyfeature-title {
        font-size: 13px;
        margin-bottom: 0;
    }

    .keyfeatures-cards .keyfeature-description {
        font-size: 13px;
    }

    .keyfeatures-cards .keyfeature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* TESTIMONIALS SECTION  */
.testimonials-section {
    text-align: center;
    background: #e9e7fe;
}

.testimonials-section .section-subheading {
    color: #555555;
}

.testimonials-cards {
    position: relative;
}

/* .testimonials-cards .testimonial-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 10px;
}

.testimonials-cards .testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.testimonials-cards .testimonial-quote-icon {
    font-size: 28px;
    color: #bbb;
    line-height: 1;
}

.testimonials-cards .testimonial-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    font-weight: 600;
    height: 70px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.testimonials-cards .testimonial-user {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    width: 100%;
}

.testimonials-cards .testimonial-avatar {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonials-cards .testimonial-name {
    font-size: 15px;
    font-weight: 600;   
    color: #555555;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-cards .testimonial-card {
        padding: 20px;
        gap: 12px;
    }

    .testimonials-cards .testimonial-text {
        font-size: 12px;
    }

    .testimonials-cards .testimonial-avatar {
        width: 36px !important;
        height: 36px;
    }

    .testimonials-cards .testimonial-name {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .testimonials-cards .testimonial-card {
        padding: 18px;
        gap: 10px;
    }

    .testimonials-cards .testimonial-text {
        font-size: 11px;
    }

    .testimonials-cards .testimonial-avatar {
        width: 32px !important;
        height: 32px;
    }

    .testimonials-cards .testimonial-name {
        font-size: 10px;
    }
} */

 /* OWL CAROUSEL STYLES  */
.main-slider-section,
.middle-slider-section,
.bottom-slider-section {
    width: 100%;
}

.main-slider,
.middle-slider,
.bottom-slider {
    width: 100%;
}

.slider-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* border-radius: 12px; */
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.owl-carousel .owl-nav button {
    background-color: rgba(255, 255, 255, 0.8) !important;
    color: #333 !important;
    border: none !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0;
}

.owl-carousel:hover .owl-nav button {
    opacity: 1;
}

.owl-carousel .owl-nav button:hover {
    background-color: var(--blue-dark) !important;
    color: var(--link-hover) !important;
}

.owl-carousel .owl-nav button span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.owl-carousel .owl-dot {
    background-color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
    background-color: var(--blue-dark) !important;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .owl-carousel .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .slider-image {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .owl-carousel .owl-nav button {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .owl-carousel .owl-dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }

    .slider-image {
        border-radius: 6px;
    }
}


.bottom-slider-logo img {
    width: 100%;
    height: 50px;
    object-fit: cover;
}

.navbar-toggler:focus{
    box-shadow: none !important;
}