@import "./assets/section-css/reset.css";
@import "./assets/section-css/mobile-menu.css";
@import "./assets/section-css/header.css";
@import "./assets/section-css/hero.css";
@import "./assets/section-css/about.css";
@import "./assets/section-css/category.css";
@import "./assets/section-css/features.css";
@import "./assets/section-css/course.css";
@import "./assets/section-css/why-choose.css";
@import "./assets/section-css/funfact.css";
@import "./assets/section-css/partner.css";
@import "./assets/section-css/testimonial.css";
@import "./assets/section-css/blog.css";
@import "./assets/section-css/call-action.css";
@import "./assets/section-css/video.css";
@import "./assets/section-css/team.css";
@import "./assets/section-css/faq.css";
@import "./assets/section-css/breadcrumbs.css";
@import "./assets/section-css/apply.css";
@import "./assets/section-css/event.css";
@import "./assets/section-css/contact.css";
@import "./assets/section-css/product.css";
@import "./assets/section-css/error.css";
@import "./assets/section-css/checkout.css";
@import "./assets/section-css/sidebars.css";
@import "./assets/section-css/auth-pages.css";
@import "./assets/section-css/footer.css";

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html,body,section {
    font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
}
p{
  font-weight: 300;
  font-size: 15px;
}

.navbar-nav .nav-link {
    font-weight: bold;
}


.nav-tabs .nav-link.active {
    border-bottom: 3px solid #09888f ;
}
.btn-warning{
    background-color: #ff6b00;
    color: #fff;

}
main section{
    margin-top: 65px;
}

.breadcrumb{
    font-size: 12px;
}

.ed-about__features-list li   {
    font-weight: 400;
    margin-bottom: 15px;
}
.ed-hero__content-title{
    font-size: 52px;
    line-height: 58px;
}

.ed-partner__slider img{
    width: 40px;
}
.certification-section,
.contact-section {
    background-color: #f8f9fa;
    border-radius: 10px;
}

.cert-title, .enroll-title {
    font-size: 2rem;
    font-weight: 700;
    color: #09888f;
}

.cert-title span, .cert-bold span {
    color: #ff6b00;
}

.cert-text, .cert-benefits li {
    font-size: 16px;
    color: #444;
    font-weight: 300;
    line-height: 32px;
}

.cert-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cert-benefits i {
    color: #09888f;
    margin-right: 10px;
    font-size: 1.3rem;
}

.cert-btn, .enroll-btn {
    background-color: #09888f;
    border: none;
 
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    color: white;
}

.cert-btn:hover, .enroll-btn:hover {
    background-color: #ff6b00;
}


/* Course Card */
.course-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}


/* Course Header with Overlay */
.course-box-header {
    position: relative;
    margin-bottom: 8px;
    padding: 20px;
    height: 150px;
    width: 100%;  /* Makes it responsive */
    max-width: 100%; /* Ensures it doesn't exceed container width */
    min-width: 280px; /* Adjusted for better small screen support */
    border-radius: 15px 15px 0px 0px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
/* Add Black Transparent Overlay */
.course-box-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity (0.5 = 50%) */
     
}

.course-box:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}



/* Course Title */
.course-box-title {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
    color: #fff;
    padding-top: 30px;
    position: relative; /* Ensure text appears above the overlay */
    z-index: 1;
}

/* Course Title Link */
.course-box-title a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Improve readability */
}


/* Course Tag */
.course-box-tag {
    font-size: 12px;
    background: #ff6b00;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
}

/* Arrow Icon */
.course-box-arrow {
    font-size: 18px;
    color: #ff6b00;
    text-decoration: none;
    transition: transform 0.3s;
}

.course-box-arrow:hover {
    transform: translateX(5px);
}

/* Bottom Section */
.course-box-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    margin-top: 8px;
    padding: 10px;
    border-radius: 10px;
}

/* Weeks & Level */
.course-box-duration,
.course-box-level {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
}

.course-box-duration i,
.course-box-level i {
    font-size: 14px;
    color: #ff6b00;
}



.related-course{
    background: #b8eff2;
    padding: 10px;

}
.related-course .course-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 320px;

}

.related-course .course-box-header {
    position: relative;
    margin-bottom: 8px;
    padding: 20px;
    height: 150px;
    min-width: 320px;
    border-radius: 15px 15px 0px 0px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}




/* General Card Styling */
.course-card, .custom-course-card, .enroll-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-card:hover, .custom-course-card:hover, .enroll-card:hover {
    transform: scale(1.05);
}


.custom-course-bottom {
    background: #09888f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ddd;
    margin-top: 10px;
    border-radius: 0px 0px 10px 10px;
}

.custom-course-type {
    background: #ff6b00;
    color: #fff;
    padding: 5px;
    font-size: 10px;
    font-weight: 900;
    border-radius: 20px;
}



.enroll-section {
    background: linear-gradient(135deg, #09888f, #00b4d8);
    padding: 10px 0;
    border-radius: 10px;
    font-size: 12px;
}

.enroll-input {
    border: 2px solid #09888f;
    border-radius: 8px;
    height: 30px;
    padding: 5px;
    transition: all 0.3s ease-in-out;
}

.enroll-input:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.4);
    color: #ccc;
}




.tab-content{
     

}

.course-tabs ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin-bottom: 20px;
}

.course-tabs ul li a {
    display: inline-block;
    padding: 10px 40px;
    border-radius: 30px;
    background: #f0f0f0;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

.course-tabs ul li a.active, .course-tabs ul li a:hover {
    background: #ff6b00;
    color: #fff;
}

 
/* Course */



.bg-gradient {
                        background: linear-gradient(135deg, #229389, #008081);
                        color: white;
                        /* Ensures good contrast */
                    }
               
                    .nav-tabs {
                        border-bottom: 2px solid #ddd;
                        /* Light grey border for the entire tab container */
                    }

                    .nav-tabs .nav-link {
                        color: grey;
                        position: relative;
                        border: none;
                        /* Remove default Bootstrap border */
                        background: transparent;
                        padding-bottom: 25px;
                        /* Reduce spacing to align text and border */
                        font-weight: 500;
                        /* Optional: Make text a bit bold for better appearance */
                    }

                    .nav-tabs .nav-link.active {
                        color: #09888f;
                    }

                    .nav-tabs .nav-link.active::after {
                        content: "";
                        position: absolute;
                        left: 50%;
                        bottom: 0;
                        /* Aligns perfectly with text */
                        width: 100%;
                        /* Adjust width to match text length */
                        height: 3px;
                        background-color: #09888f;
                        transform: translateX(-50%);
                    }
              
                    .section-hiring {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        max-width: 100%;
                        background: linear-gradient(to right, #4C1D95 30%, #8B5CF6);
                        overflow: hidden;
                        border-radius: 10px;
                        color: #09888f;
                        border-radius: 50px;
                        background: #fff;
                        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

                            margin-top: 120px;
                    }

                    .hiring-content {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        padding: 3rem;
                      

                    }

                    .hiring-title {
                        font-size: clamp(2rem, 3vw, 2rem);
                        font-weight: 600;
                        margin-bottom: 0.5rem;
                        color: #09888f;
                    }

                    .hiring-text {
                        font-size: clamp(1rem, 1.5vw, 1.5rem);
                        line-height: 1.1;
                    }

                    .hiring-image {
                        overflow: hidden;
                        clip-path: polygon(0 100%, 20% 0, 100% 0, 100% 100%);
                    }

                    .hiring-image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        object-position: center;
                    }

                    @media (max-width: 600px) {
                        .section-hiring {
                            grid-template-columns: 1fr;
                            text-align: center;
                        }

                        .hiring-image {
                            clip-path: none;
                        }
                    }

                    .tab-pane {
                        background: #ffff;
                        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

                        border-radius: 20px;
                        margin-top: 50px;
                        border-left: #09888f 2px solid;
                        padding: 20px
                    }


                    .tab-pane h6{
                        font-size: 16px;

                    }
                    .tab-pane li{
                        font-size: 14px;
                        color: #333;
                        line-height: 38px;
                        padding: 10px;
                        background-color:rgb(164, 239, 239);
                        border-radius: 10px;
                        border-bottom: 2px solid #eee;

                    }

                    .accordion-item{
                         
                        margin-bottom:  10px;
                       
                        font-weight: 400;
                        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

                    }
                   .accordion-header p {
                       font-weight: 600;
                       color: #333;
                       font-family: Arial, Helvetica, sans-serif;
                    }


.ed-course {
    background: #b8eff2;
}


.ed-testimonial__text{
    font-size: 12px;
    line-height: 1.6em;
}

.ed-about__features-list li { line-height: 12px;}



/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-card {
    text-align: center;
    background: #09888F;
    color: #fff;
    padding: 20px;
    height: 150px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.contact-card:hover {
    background: #076f73;
}

.contact-icon img {
    width: 50px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #eee;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form {
 
    padding: 30px;
    border-radius: 10px;
    
}

.form-header {
    margin-bottom: 20px;
    text-align: center;
}

.form-subtitle {
    display: block;
    font-size: 16px;
    color: #09888F;
    font-weight: bold;
    text-transform: uppercase;
}

.form-title {
    font-size: 28px;
    font-weight: bold;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
   
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-check {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 10px;
}

.btn-primary  {
   
   
     background: #09888F;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: none;
    padding: 10px 40px;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}
.btn{
    font-size: 16px;

    padding: 5px 40px;
    border-radius: 30px;
}
.btn-primary:hover {
    background: #076f73;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-card {
        margin-bottom: 20px;
    }

    .contact-form {
        margin-top: 30px;
    }
}
























 
