@import url('https://fonts.googleapis.com/css?family=Poppins');
*{
    font-family: 'Poppins';
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}



.container-5 {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px;
}

.overview {
    display: flex;
    flex-wrap: wrap;
}

.overview-text {
    flex: 1;
    padding: 20px;
}

.overview-text p{
   font-weight: 500;
}

.overview-img {
    flex: 1;
    padding: 20px;
    
}
.overview-img img{
    border-radius: 10px;
    max-width: 100%; 
    height: auto;
}

.note{
    background-color: red;
    color:white;
    max-width:200px;
    height:auto;
    font-size: larger;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
    padding:5px;
}



.button-5 {
    background-color: orange;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 10px;
    text-decoration: none;
}
.button-5:hover{
    cursor: pointer;
}



@media only screen and (max-width:768px){
    .overview{
        display:block;
    }
    .overview-img img{
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .container-5 {
        padding: 10px;
    }

    .overview-text,
    .overview-img {
        flex: 100%;
    }

    .button-5 {
        max-width: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .button-5 {
        min-width: 150px;
    }
}
/* event card */

.event-card-8 {
    max-width: 100%;
    background-color: orange;
    color: white;;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
	margin: 10px;
}

.event-details-8 {
    display:flex;
    /* gap: 70px; */
	justify-content: space-between;
    margin:0 auto;
    font-size:larger;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.event-details-8 p {
    margin: 10px 0;
}

@media only screen and (max-width: 768px) {
    .event-card-8 {
        padding: 15px;
		margin: 10px;
    }

    .event-details-8 {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
}

@media only screen and (min-width: 1200px) {
    .event-card-8 {
        min-width: 300px;
		    margin: 10px;
    }
}

/* course card */
.course-card-8 {
    max-width: 100%;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.course-header-8 {
    background-color:orange;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.course-header-8 h1 {
    margin: 0;
}

.course-content-8 {
    padding: 20px;
}

.course-content-8 p{
    text-align: center;
    font-weight: 500;
}

.important-points-8 {
    margin-top: 20px;
}

.important-points-8 ul {
    list-style: none;
    padding: 0;
}
.important-points-8 h3{
    font-size: 15px;
    font-weight: bold;
}

.important-points-8 li {
    margin-bottom: 10px;
    font-weight: 500;
}

.button-container-8 {
    text-align: center;
    margin-top: 20px;
}

.button-10 {
    background-color:orange;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    bottom:10px;
    position:relative;
}

.button-10:hover{
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .course-card-8 {
        margin: 10px auto;
    }

    .course-header-8 {
        padding: 15px;
    }

    .course-content-8 {
        padding: 15px;
    }

    .button-10 {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1200px) {
    .course-card-8 {
        min-width: 300px;
    }
}


/* carousel */

.carousel-8 {
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.carousel-8 h1{
    text-align: center;
    margin-top: 30px;
}

.carousel-inner-8 {
    display: flex;
    transition: transform 0.5s ease;
}


.card-container-8 {
    flex: 0 0 33.33%; 
}

.card-8 {
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    height:500px;
}
.card-8 p{
    text-align: left;
}

.card-8 img{
    max-width:100%;
    height:auto;
    border-radius: 10px;
}
.button-8 {
    background-color: orange;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 10px;
    position: absolute;
    bottom: 10px; 
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
    white-space: nowrap;
}
.carousel-btn-8 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.prev-8 {
    left: 10px;
}

.next-8 {
    right: 10px;
}

@media only screen and (max-width: 768px) {
    .card-container-8 {
        flex: 0 0 100%;
    }

    .card-8 {
        margin-right: 0;
        height:600px;
    }

    .carousel-btn-8 {
        font-size: 20px;
        text-align: center;
        border-radius: 100px;
        background-color: orange;
    }
    .carousel-8 h1{
        text-align: center;
        margin-top: 0px;
        font-size: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    .carousel-8 {
        min-width: 300px;
    }
}

/* broucher certificate download */
.brochure {
    text-align: center;
    display:flex;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: rgb(249, 206, 128);
    margin: 0 auto;
    gap:50px;
    margin-top:20px;
    width:100%;
}
.broucher-text{
    margin: 50px auto;
    width:100%;
}
.certificate{
    margin:0 auto;
    max-width: 50%;
}
.certificate img{
    max-width:90%;
    height:auto;
    margin:20px;
    border-radius: 20px;
    box-shadow: 0 0 20px white;
}
@media only screen and (max-width: 768px) {
    .brochure {
        flex-direction: column;
        gap: 20px;
    }

    .certificate,
    .broucher-text {
        max-width: 100%;
    }

    .certificate img {
        max-width: 100%;
        margin:0;
    }
}

@media only screen and (min-width: 1200px) {
    .certificate {
        max-width: 40%;
    }
}

/* technology cards */


.carousel-9 {
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.carousel-inner-9 {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-9 h1{
    text-align: center;
    margin-top: 30px;
}

.card-container-9 {
    flex: 0 0 25%; 
}

.card-9 {
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    height:200px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.card-9 img{
    max-width:100%;
    height:fit-content;
    border-radius: 10px;
    margin:0 auto;
    white-space: nowrap;
    box-shadow: 10px;
}
.button-9 {
    background-color: orange;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 10px;
    position: absolute;
    bottom: 10px; 
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
    white-space: nowrap;
}
.carousel-btn-9 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.prev-9 {
    left: 10px;
}

.next-9 {
    right: 10px;
}
/* 
@media only screen and (max-width: 768px) {
    .card-container-9 {
        flex: 0 0 100%;
    }

    .card-9 {
        margin-right: 0;
        height:600px;
    }

    .carousel-btn-9 {
        font-size: 20px;
        text-align: center;
        border-radius: 100px;
        background-color: orange;
    }
}

@media only screen and (min-width: 1200px) {
    .carousel-9 {
        min-width: 300px;
    }
} */

@media only screen and (max-width: 768px) {
    .card-container-9 {
        flex: 0 0 100%;
    }

    .card-9 {
        margin-right: 0;
        height: auto; /* Adjust height as needed */
    }

    .carousel-btn-9 {
        font-size: 20px;
        text-align: center;
        border-radius: 100px;
    }
    .carousel-9 h1{
        text-align: center;
        margin-top:0px;
        font-size: 30px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
    .carousel-9 {
        min-width: 300px;
    }
}

/* Our Running Projects Carousel  */


.carousel-6 {
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.carousel-6 h1{
    text-align: center;
    margin-top: 30px;
}

.carousel-inner-6 {
    display: flex;
    transition: transform 0.5s ease;
}


.card-container-6 {
    flex: 0 0 33.33%; 
}

.card-6 {
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    height:500px;
}
.card-6 p{
    text-align: left;
}

.card-6 img{
    max-width:100%;
    height:auto;
    border-radius: 10px;
}
.button-6 {
    background-color: orange;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 10px;
    position: absolute;
    bottom: 10px; 
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
    white-space: nowrap;
}
.carousel-btn-6 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.prev-6 {
    left: 10px;
}

.next-6 {
    right: 10px;
}

@media only screen and (max-width: 768px) {
    .card-container-6 {
        flex: 0 0 100%;
    }

    .card-6 {
        margin-right: 0;
        height:600px;
    }

    .carousel-btn-6 {
        font-size: 20px;
        text-align: center;
        border-radius: 100px;
    }
    .carousel-6 h1{
        text-align: center;
        margin-top: 0px;
        font-size: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    .carousel-6 {
        min-width: 300px;
    }
}



/* Our Testimonials Carousel */


.carousel-7 {
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.carousel-7 h1{
    text-align: center;
    margin-top: 30px;
}

.carousel-inner-7 {
    display: flex;
    transition: transform 0.5s ease;
}


.card-container-7 {
    flex: 0 0 33.33%; 
}

.card-7 {
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    height:500px;
}

.card-7 img{
    max-width:200px;
    height:200px;
    border-radius: 100px;
}
.button-7 {
    background-color: orange;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 10px;
    position: absolute;
    bottom: 10px; 
    transform: translateX(-50%);
    max-width: 100%;
    height: auto;
    white-space: nowrap;
}
.carousel-btn-7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.prev-7 {
    left: 10px;
}

.next-7 {
    right: 10px;
}
/* 
@media only screen and (max-width: 768px) {
    .card-container-7 {
        flex: 0 0 100%;
    }

    .card-7 {
        margin-right: 0;
        height:600px;
    }

    .card-7 {
        max-width:100px;
        height:100px;
        border-radius: 100px;
    }

    .carousel-btn-7 {
        font-size: 20px;
        text-align: center;
        border-radius: 100px;
    }
    .carousel-7 h1{
        text-align: center;
        margin-top: 0px;
        font-size: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    .carousel-7 {
        min-width: 300px;
    }
} */


@media only screen and (max-width: 768px) {
    .carousel-7 {
        max-width: 100%;
    }

    .card-container-7 {
        flex: 0 0 100%;
        margin-right: 0;
    }

    .card-7 {
        margin-right: 0;
        margin-bottom: 10px;
        height:auto;
    }

    .card-7 img{
        height:100px;
        width:100px;
        border-radius: 100px;
    }
    
}

@media only screen and (min-width: 1200px) {
    .carousel-7 {
        max-width: 1200px; 
        margin: 0 auto; 
    } 
}


/* Learning Projects */


.carousel-11 {
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.carousel-11 h1{
    text-align: center;
    margin-top: 30px;
}

.carousel-inner-11 {
    display: flex;
    transition: transform 0.5s ease;
}


.card-container-11 {
    flex: 0 0 33.33%; 
}

.card-11 {
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    height:500px;
}
.card-11 p{
    text-align: left;
}

.card-11 img{
    max-width:100%;
    height:auto;
    border-radius: 10px;
}

.carousel-btn-11 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.prev-11 {
    left: 10px;
}

.next-11 {
    right: 10px;
}

@media only screen and (max-width: 768px) {
    .card-container-11 {
        flex: 0 0 100%;
    }

    .card-11 {
        margin-right: 0;
        height:auto;
    }
    .carousel-11 p{
        overflow: scroll;
    }

    .carousel-btn-11 {
        font-size: 20px;
        text-align: center;
        border-radius: 100px;
    }
    .carousel-11 h1{
        text-align: center;
        margin-top: 0px;
        font-size: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    .carousel-11 {
        min-width: 300px;
    }
}

/* Box Download Broucher Modal */

.modal-1 {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    
}

.modal-content-1 {
    background-color: #fefefe;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    z-index: 100;
    border-radius: 10px;
}

.close-1 {
    color:white;
    float: right;
    font-size: 25px;
    font-weight: bold;
    background-color: red;
    text-align: center;
    height:40px;
    width:40px;
    border-radius: 10px;

}

.close-1:hover,
.close-1:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content-1 form {
    display: flex;
    flex-direction: column;
}

.modal-content-1 label {
    margin-bottom: 8px;
}

.modal-content-1 input {
    padding: 8px;
    margin-bottom: 16px;
}

.modal-content-1 button {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-top:10px;
}

.modal-content-1 button:hover {
    background-color: #45a049;
}
@media screen and (max-width: 600px) {
    .modal-content-1 {
        width: 90%;
        max-width: none; 
    }
}

/* Extra Added Features */


.discount{
    display:flex;
    max-width:100%;
    gap:50px;
  }
  
  #price{
    font-size: 20px;
    margin-left: 10px;
    font-weight: 600;
  }
  #discount{
    font-size: 20px;
    font-weight: 600;
    margin-right: 10px;
    color:green;
  }
  
  @media screen and (max-width: 768px) {

    .discount{
        display:block;
    }
  
    #price {
      font-size: 24px;
      left:0;
    }
  
    #discount {
      font-size: 18px;
      right:0;
    }
  }
  
 
  