:root {
            --primary-color: #014e22;
            --primary-hover: #067a4f;
            --secondary-color: #f8f9fa;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: "Jost", sans-serif;
            overflow-x: hidden;
        }
        a{
        	text-decoration: none;
        }

        .nav-link{
            font-size: 14px;
            color: var(--bs-navbar-active-color);
        }

        .nav-link i{
        	color: #014e22;
        }
        
        
        .btn-primary {
            background-color: var(--primary-color) !important;
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
        }

        .btn-secondary {
            background-color: #DDA30B !important;
            border-color: #DDA30B;
        }
        
        .btn-secondary:hover {
            background-color: #DDA30B;
            border-color: #DDA30B;
        }
        
        .text-primary {
            color: var(--primary-color) !important;
        }
        
        .navbar {
            padding: 15px 0;
            transition: all 0.3s;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand img {
            height: 45px;
        }
        
        .hero-slider .carousel-item {
            height: 500px;
            background-size: cover;
            background-position: center;
        }
        
        .hero-slider .carousel-caption {
            bottom: 100px;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 10px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .how-it-works {
            background-color: #f9f9f9;
            padding: 80px 0;
        }
        
        .work-step {
            text-align: center;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .work-step .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .course-card {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .course-card img {
            /*height: 200px;*/
            object-fit: cover;
        }
        
        .course-card .card-body {
            padding: 20px;
        }
        
        .course-card .instructor {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .course-card .instructor img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        .course-card .price {
            font-weight: bold;
            color: var(--primary-color);
            font-size: 18px;
        }
        
        .category-card {
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            padding: 30px 20px;
            margin-bottom: 30px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .category-card i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        
        .testimonials {
            background-color: #f9f9f9;
            padding: 80px 0;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .testimonial-card .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .testimonial-card .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .newsletter {
            background-color: var(--primary-color);
            padding: 60px 0;
            color: white;
        }
        
        .newsletter .form-control {
            height: 50px;
            border-radius: 0;
            border: none;
        }
        
        .newsletter .btn {
            border-radius: 0;
            background-color: white;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        footer {
            background-color: #222;
            color: white;
            padding: 60px 0 20px;
        }
        
        footer .logo img {
            height: 40px;
            margin-bottom: 20px;
        }
        
        footer .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        footer .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
        }
        
        footer h5:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        footer ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 40px;
        }
        
        @media (max-width: 767.98px) {
            .hero-slider .carousel-item {
                height: 400px;
            }
            
            .hero-slider .carousel-caption {
                bottom: 20px;
            }
        }
    .bg-primary-light {
        background-color: rgba(7, 149, 96, 0.1);
    }
    
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .stats-container {
        min-width: 100px;
        transition: all 0.3s ease;
    }
    
    .stats-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .title-divider {
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #014e22, #014e2200);
        margin: 15px 0;
    }
    
    .feature-item {
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateX(5px);
    }
    
    @media (max-width: 768px) {
        .ps-lg-5 {
            padding-left: 0 !important;
        }
        
        .stats-container {
            margin-bottom: 10px;
        }
    }
    .how-it-works {
        position: relative;
        overflow: hidden;
    }
    
    .bg-primary-light {
        background-color: rgba(7, 149, 96, 0.1);
    }
    
    .title-divider {
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #014e22, #014e2200);
        margin: 15px auto;
    }
    
    .step-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    
    .steps-container {
        overflow-x: auto;
        padding-bottom: 20px;
    }
    
    .steps-container .row {
        flex-wrap: nowrap;
        min-width: 800px;
    }
    
    @media (min-width: 1200px) {
        .steps-container {
            overflow-x: visible;
        }
        
        .steps-container .row {
            flex-wrap: wrap;
            min-width: auto;
        }
    }
    
    @media (max-width: 768px) {
        .step-card {
            min-width: 160px;
        }
    }

    .bg-primary-light {
        background-color: rgba(7, 149, 96, 0.1);
    }
    
    .title-divider {
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #014e22, #014e2200);
        margin: 15px auto;
    }
    
    .category-card {
        border-radius: 12px;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    }
    
    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .category-card:hover .icon-wrapper {
        color: white !important;
        transform: rotate(5deg) scale(1.1);
    }
    
    .courses-badge {
        transition: all 0.3s ease;
    }
    
    .category-card:hover .courses-badge {
        background-color: #333 !important;
    }
    
    @media (max-width: 768px) {
        .icon-wrapper {
            width: 60px;
            height: 60px;
            font-size: 1.5rem !important;
        }
    }
        .testimonials {
        position: relative;
    }
    
    .bg-primary-light {
        background-color: rgba(7, 149, 96, 0.1);
    }
    
    .title-divider {
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #014e22, #014e2200);
        margin: 15px auto;
    }
    
    .testimonial-card {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .quote-icon {
        opacity: 0.2;
        transition: all 0.3s ease;
    }
    
    .testimonial-card:hover .quote-icon {
        opacity: 0.4;
        transform: scale(1.05);
    }
    
    .client-img img {
        object-fit: cover;
        border: 3px solid #014e22;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: auto;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin: 0 5px;
    }
    
    @media (max-width: 768px) {
        .testimonial-card {
            padding: 2rem !important;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            display: none;
        }
    }

    .popular-courses {
        position: relative;
    }
    
    .bg-primary-light {
        background-color: rgba(7, 149, 96, 0.1);
    }
    
    .course-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .course-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .course-img {
        position: relative;
        overflow: hidden;
    }
    
    .course-img img {
        transition: all 0.5s ease;
        /*height: 200px;*/
        object-fit: cover;
    }
    
    .course-card:hover .course-img img {
        transform: scale(1.05);
    }
    
    .course-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: #014e22;
        color: white;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
    }
    
    .course-body {
        position: relative;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .rating {
        color: #333;
    }
    
    .duration {
        color: #666;
        font-size: 0.9rem;
    }
    
    @media (max-width: 768px) {
        .section-header {
            text-align: center;
        }
        
        .course-img img {
            height: 180px;
        }
    }
    .btnsecondry{
        font-size: 14px;
    	color: #014e22;
        padding: 8px;
    	border-color: #014e22;
    }

    .btnsecondry:hover,
.btnsecondry:active {
    background-color: #dda30b;
        color: #fff;
        border-color: #dda30b;
}

            .form-section {
            border-left: 3px solid #014e22;
            padding-left: 15px;
            margin-bottom: 30px;
        }
        .file-upload-wrapper {
            position: relative;
            margin-bottom: 15px;
        }
        .file-upload-label {
            display: block;
            padding: 12px;
            border: 2px dashed #ddd;
            border-radius: 5px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .file-upload-label:hover {
            border-color: #014e22;
            background-color: rgba(7, 149, 96, 0.05);
        }
        .file-upload-input {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        .file-preview-container {
            display: none;
            margin-top: 15px;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 5px;
            background-color: #f9f9f9;
        }
        .file-preview {
            max-width: 100%;
            max-height: 200px;
            margin-bottom: 10px;
        }
        .file-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .remove-file {
            color: #dc3545;
            cursor: pointer;
        }
        .application-header {
            text-align: center;
            margin-bottom: 30px;
        }
        .application-header img {
            height: 60px;
            margin-bottom: 15px;
        }
        .form-control:focus, .form-select:focus {
            border-color: #014e22;
            box-shadow: 0 0 0 0.25rem rgba(7, 149, 96, 0.25);
        }
    .error-badge {
        display: inline-block;
        margin-top: 5px;
        font-size: 12px;
    }
    .loader {
        border: 3px solid #f3f3f3;
        border-radius: 50%;
        border-top: 3px solid #007bff;
        width: 20px;
        height: 20px;
        animation: spin 1s linear infinite;
        display: inline-block;
        margin-left: 10px;
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    .auth-container {
            max-width: 500px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        .auth-card {
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .social-login .btn {
            width: 100%;
            margin-bottom: 10px;
        }
            .test-container {
        max-width: 1000px;
        margin: 30px auto;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    .test-header {
        background-color: #014e22;
        color: white;
        padding: 20px;
        text-align: center;
    }
    .test-header img {
        height: 50px;
        margin-bottom: 15px;
    }
    .test-body {
        padding: 30px;
    }
    .question-card {
        border-left: 3px solid #014e22;
        padding-left: 15px;
        margin-bottom: 25px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        padding: 20px;
    }
    .options-list {
        list-style-type: none;
        padding-left: 0;
    }
    .options-list li {
        margin-bottom: 10px;
        padding: 12px 15px;
        border: 1px solid #eee;
        border-radius: 5px;
        transition: all 0.3s;
    }
    .options-list li:hover {
        background-color: rgba(7, 149, 96, 0.05);
        border-color: #014e22;
    }
    .options-list input[type="radio"] {
        margin-right: 10px;
    }
    .test-footer {
        background-color: #f8f9fa;
        padding: 20px;
        text-align: center;
        border-top: 1px solid #eee;
    }
    .btn-primary {
        background-color: #014e22;
        border-color: #014e22;
        padding: 8px;
        font-weight: 500;
        font-size: 14px;
    }
    .btn-primary:hover,
.btn-primary:active {
    background-color: #067a4f;
    border-color: #067a4f;
}

    .progress {
        height: 10px;
        margin-bottom: 20px;
    }
    .progress-bar {
        background-color: #014e22;
    }
    .time-remaining {
        font-weight: bold;
        color: #fff;
        font-size: 1.1rem;
    }
    .instructions-modal .modal-header {
        background-color: #014e22;
        color: white;
    }
    .question-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }
    .question-col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .question-col {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
    .course-title{
        font-size: 16px;
        font-weight: 600;
    }
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    .user-avatar{
        width: 30px;
    }
    .user-dropdown {
            display: flex;
            align-items: center;
        }

/* Mobile adjustments */
@media (max-width: 576px) {
    .f-about-div {
        text-align: center;
    }
    footer .social-icons a {
        font-size: 18px;
    }
    footer h5 {
        margin-top: 20px;
    }
    .nav-item a{
        margin-bottom: 5px;
        padding: 5px;
    }

            .navbar {
            padding: 0.5rem 1rem;
        }
        
        .navbar-logo {
            max-height: 40px;
            width: auto;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem;
        }
        
        .navbar-collapse {
            background-color: white;
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            margin-top: 0.5rem;
        }
        
        .navbar-nav {
            gap: 0.5rem;
        }
        
        .nav-item {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .nav-item:last-child {
            border-bottom: none;
        }
        
        .nav-link {
            padding: 0.5rem 1rem;
            font-weight: 500;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: none;
            padding-left: 1rem;
        }
        
        .dropdown-item {
            padding: 0.5rem 1rem;
        }
        
        .user-dropdown {
            margin-top: 0.5rem;
            padding-top: 0.5rem;
            border-top: 1px solid #f0f0f0;
        }
        
        .user-avatar {
            width: 30px;
            height: 30px;
        }
        
        .user-name {
            font-weight: 500;
        }
        
        .mobile-btn {
            width: 100%;
            margin: 0.25rem 0;
            text-align: center;
        }
        .feature-icon{
            height: 65px;
        }
}
.alert-congrats {
        background: linear-gradient(135deg, #014e22 0%, #014e22 100%);
        color: white;
        border: none;
        border-radius: 10px;
    }
    .status-card {
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    .courses-badge {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 20px;
        padding: 8px 15px;
        margin: 5px;
        display: inline-block;
    }
    .payment-btn {
        font-weight: bold;
        padding: 12px 25px;
        border-radius: 30px;
        margin: 10px;
        min-width: 200px;
    }
    .payment-info-card {
        border-left: 4px solid #014e22;
        background-color: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    .bank-details {
        background-color: #e9ecef;
        padding: 15px;
        border-radius: 8px;
        margin-top: 15px;
    }
        /* Additional styles for the course selection modal */
    .container_check {
        display: block;
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 16px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .container_check input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #eee;
        border-radius: 4px;
        border: 1px solid #ddd;
    }
    .container_check:hover input ~ .checkmark {
        background-color: #f1f1f1;
    }
    .container_check input:checked ~ .checkmark {
        background-color: #014e22;
        border-color: #014e22;
    }
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    .container_check input:checked ~ .checkmark:after {
        display: block;
    }
    .container_check .checkmark:after {
        left: 7px;
        top: 3px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .course-card {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 0px;
        transition: all 0.3s ease;
    }
    .course-card:hover {
        border-color: #014e22;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .course-card.selected {
        border-color: #014e22;
        background-color: #f0f9f5;
    }
    /* Additional styles for course details page */
        .course-hero {
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
        }
        
        .course-meta-badge {
            background-color: rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 3px 15px;
            font-size: 14px;
        }
        
        .course-tabs .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            border: none;
            padding: 12px 20px;
        }
        
        .course-tabs .nav-link.active {
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
            background: transparent;
            font-weight: bold;
        }
        
        .instructor-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .curriculum-item {
            border-left: 3px solid var(--primary-color);
            padding-left: 15px;
            margin-bottom: 20px;
        }
        
        .enroll-card {
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            position: sticky;
            top: 20px;
        }
        
        .feature-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .feature-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        .bg-primary {
          background-color: #DDA30B !important;
         }
         .subheading{
    padding: 10px;
    font-size: 12px;
    background-color: #014e22;
    color: #fff !important;
         }