body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.navbar {
    background-color: #4CAF50; 
}

.brand-header {
    display: flex;
    align-items: center;
    font-size: 32px;
    color: #3A940F !important;
    text-decoration: none;
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

.brand-header img {
    margin-right: 10px;
}

.nav-item {
    margin: 0 45px !important;
    font-size: 22px;
    font-weight: 400;
    font-family: "Lato", sans-serif;
}

.nav-link {
    color: rgb(0, 0, 0) !important;
}

.nav-link.active {
    font-weight: bold;
    color: black !important;
}

.navbar-toggler {
    position: relative;
    margin-left: auto;
}

/************************************************** Sidebar starts here ********************************************************************/
.sidebar {
    position: fixed;
    top: 0;
    right: -250px; 
    width: 250px;
    height: 100%;
    background-color: #4CAF50; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    transition: right 0.3s ease; 
    z-index: 1050; 
}

.sidebar.show {
    right: 0; 
}

.sidebar .nav-link {
    padding: 10px 20px; 
    display: block;
    color: #333; 
    margin-top: 30px;
}

.sidebar .nav-link:hover {
    background-color: transparent;  
}

.sidebar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    border: none;
    background-color: transparent;
}



@media (max-width: 768px) {
    .nav-item {
        margin: 0 10px;
    }
    .brand-header{
        font-size: 22px;
    }
    .nav-link{
        font-size: 19px;
    }
    .footer-section  h3{
        font-size: 20px !important;
    }
}

@media (min-width: 992px) {
    .nav-item {
        margin: 0 30px !important; 
    }
    .sidebar {
        display: none; 
    }
    
    .navbar-nav {
        display: flex !important; 
    }
}
.content {
    width: 100%;
    position: relative;
}

.content-image img {
    width: 100%;
    max-height: 500px;
}

.content-text {
    position: absolute;
    width: 55%;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
    color: rgba(146, 238, 102, 1);
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-size: 52px;
}

.content-text h1 {
    font-size: 47px;
    font-weight: 700;
    line-height: 62.4px;
    text-align: left;
}

.container-sec {
    padding: 25px 150px;
    background: linear-gradient(90.25deg, #00FFF0 0.2%, rgba(76, 92, 42, 0) 82.58%);
}

.program {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
}

.program img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.program-text h2 {
    margin: 0 0 10px 0;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
}

.program-text p {
    margin: 0;
    color: #555;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.6px;
    text-align: left;
}


@media (max-width:550px){
    .content-text h1 {
        font-size: 14px;
        line-height: 20.4px;
       
    }
    .content-text {
        width: 70%;
        left: 0;
    }
    .container-sec {
      padding: 0 0;
    }
    .program{
        padding: 20px 20px 0;
        margin-bottom: 0;
        flex-direction: column;
    }
    .program-text  {
        padding: 20px;
    }
    .program-text h2 {
        font-size: 13px;
    }
    .program-text p{
        font-size: 16px;
    }

}
@media (min-width:427px) and  (max-width:770px)  {
    .content-text h1 {
        font-size: 26px;
        line-height: 34px;
    }
    .container-sec {
        padding: 25px 20px;
          }
   
}
@media (min-width:771px) and  (max-width:1025px)  {
    .content-text h1 {
        font-size: 35px;
        line-height: 50px;
    }
}


.footer-section {
    background-color: #023020;
    color: white;
    padding: 40px 0 20px 0;
}
.footer-brand{
    margin-bottom: 30px;
}
.list-unstyled a{
    color: #ffffff;
}
.list-unstyled li{
    margin: 17px 0;
}
.footer-brand img {
    width: 50px;
    height: 50px;
}
.footer-section  h3{
    font-size: 25px;
}
.footer-copy {
    font-size: 15px;
    margin: 10px 0;
}
.social-icons{
    margin-top: 40px;
    display: flex;
}
.social-icon {
    margin-right: 15px;
    color: #fff;
    text-decoration: none;
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #4e4e4e54; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}
.social-icon:hover{
    color: #000000;
    text-decoration: none;
}
.form-control{
    background-color: #4e4e4e54; 
    border: none;
}
.input-group-append{
    background-color: transparent;
    color: #4e4e4e54;
}