body{
    font-family: 'Outfit';
}
.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.success-tree img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid yellow;
}
h1{
text-shadow: 4px 4px 4px rgb(77, 3, 3);
}
header{
    
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.ourChanells{
    display: flex;
    align-items: center;
    line-height: 0.2em;
    padding: 5px;
    border-radius: 5px;
    background-color: rgb(13, 102, 60);
    box-shadow: 4px 4px 4px rgb(17, 17, 17);
}
.ourChanells i{
    font-size: 50px;
    color: rgb(248, 11, 11);
    padding-right: 5px;
    
}
.ourChanells:hover{
    opacity: 0.8;
}
.socialIcon{
    background-color: rgb(13, 102, 60);
    box-shadow: 4px 4px 4px rgb(17, 17, 17);
    border-radius: 5px;
    align-items: center;
}
.socialIcon i{
    padding: 5px;
    font-size: 30px;
}
.socialIcon i:hover{
    cursor: pointer;
    opacity: .5;
}
/* .fa-linkedin{
    color: rgb(47, 47, 192);
}
.fa-square-instagram{
    color: orangered;
   }
.fa-square-facebook{
    color: rgb(47, 78, 255);
} */
header a{
    text-decoration: none;
    color: white;
}
.container a{
    font-size: 20px;
    font-weight: 400;
}
#heading{
    font-size: 25px;
}

.container img{
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 0;
}
#contact{
    background-color: #198754;
    border-radius: 30px;
    padding-left: 5px;
    padding-right: 5px;
    color: white;
}
.contact{
    display: none;
}
@media (max-width: 480px) {
    header{
        flex-direction: column;
    }
    .socialIcon{
        display: flex;
    }
    .contact{
        display: block;

    }
    .container{
        display: flex;
        align-items: center;
        
    }
    .container a{
        margin-left: -5px;
        padding-left: 2px;
    }
    .container img{
        margin-left: -5px;
        width: 40px;
        height: 40px;
    }
    .navbar-toggler{
        padding: 0;
        padding-right: 5px;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 5px;
    }
}


/* contact us section  */
.contact-container {
background-color: rgb(13, 102, 60);
   
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contactTop{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#logo{
    border-radius: 50%;
    text-align: center;
}
.contact-info {
    width: 40%;
}
.contact-info h2 {
    margin-bottom: 10px;
}
.contact-form {
    width: 50%;
    background-color: #198754;
    padding: 20px;
    border-radius: 10px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}
.contact-form button {
    background-color: rgb(13, 102, 60);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: rgb(7, 133, 74);
}
.map {
    width: 100%;
    height: 300px;
}
@media (max-width: 768px) {
    .contact-info, .contact-form {
        width: 100%;
        margin-bottom: 20px;
    }
}




.footer {
    margin-top: 50px;
    background-color: #343a40;
    color: white;
    padding: 20px 0;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}



    /* whatsapp icon */
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 1000;
        text-decoration: none;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease-in-out;
    }
    
    .whatsapp-icon:hover {
        transform: scale(1.1);
    }



    #goTopBtn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #1da1f2;
        color: #ffffff;
        border: none;
        border-radius: 50%;
        padding: 10px 15px;
        font-size: 16px;
        cursor: pointer;
        display: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      }
  
      #goTopBtn:hover {
        background-color: #005f99;
      }
      #goTopBtn {
        padding: 8px 12px;
        font-size: 14px;
      }
      
      

      /* course section  */
      .courses-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .course-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        width: 300px;
        transition: transform 0.3s ease;
    }
    .course-card:hover {
        transform: scale(1.05);
    }
    .course-thumbnail {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    .course-info {
        padding: 15px;
        text-align: center;
    }
    .course-title {
        font-size: 1.2em;
        font-weight: bold;
    }
    .course-description {
        font-size: 0.9em;
        color: #555;
        margin-top: 5px;
    }