.body{
    position: relative;
}


.nav__container{
    height: 15vh;
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 0;
    left: 0;
    background-color: white;
    padding: 0px 5rem;
}

.options{
    display: flex;
    margin: 0;
    padding: 0;
}
.option{
    margin-right: 50px;
}
.options_container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo_container{
    height: 70%;
}
.logo_image{
    height: 70%;
}

.about_us_button:hover{
 transform: scale(1.01);

}
.blog_image{
  width: 100%;
}

.option a{
    color: black;
    text-decoration: none;
}

.option {
    text-decoration: none;
    font-size: 1.2rem;
    color: black;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    
}
.option a::after{
    content: "";
    bottom: 0;
    left: 50%;
    text-decoration: none;
    transform: translate(-150%, 0%);
    position: absolute;
    background-color: #5B9B45;
    width: 100%;
    height: 10%;
    transition: all 0.3s ease-in;
}
.option:hover a::after{
    transform: translate(-50%, 0%);
}

.orange_button{
    background-color: #5B9B45;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px); /* Move the element down initially */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth transition for opacity and transform */
}

.service_box{
    width: 20rem;
    transition: all 0.5s ease-in-out;
    padding: 5px;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
}
.service_title{
    position: relative;
}
.service_title::before{
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: #5B9B45;
    z-index: 10;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 10px);
   
}
.service_box:hover{
    background-color: #5B9B45;
    color: white;
}
.service_box:hover .service_title::before {
    background-color: white;
}
.border_shadow{
    border: 1px solid #ccc;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.shadow{
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.college_name{
    margin-bottom: 10px;
}

.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
  }


  .footer_logo{
    min-width: 100px;
    max-width: 200px;
  }

  .contact_us_logos{
    width: 30px;
    height: 30px;
  }

  .social_logos{
    margin-bottom: 10px;
  }
  .course_name{
    margin-bottom: 10px;
}
   

  .course_image{
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  .tile_border{
    border: 1px solid #5B9B45;
    border-radius: 10px;
  }
  .text-orange{
    color: #5B9B45;
  }

  .backGroundImage{
    position: relative;
  }

  .backGroundImage::after{
    content: "";
    background-image: url('./Resources/collegeImage.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.2;
   
  }

  .backGroundImageCourses{
    position: relative;
  }
  .backGroundImageCourses::after{
    content: "";
    background-image: url('./Resources/courses.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.2;
   
  }
  .show-on-small{
    display: none;
  }
  @media (max-width: 576px) { /* Targets devices with width ≤ 576px */
    .hide-on-small {
        display: none;
    }
    .show-on-small {
      display: block;
    }
    .nav__container{
      padding: 0px 2rem;
    }
}

.line{
  width: 1.5rem;
  height: 3px;
  background-color: black;
  margin: 3px 0px;
}
.menu_icon{
  border: 1px solid black;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.menu_icon:hover{
  background-color:lightgray
}
.hidden_menu_options{
  position: absolute;
  right: 0;
  background-color: white;
  width: 100%;
  padding: 10px;
  /* transform: translate(-50%, -50%); */
  z-index: 100;
  border: 1px solid lightgrey;
  margin-top: 10px;
}
.hidden_menu_option{
  margin-bottom: 10px;
}
.show{
  display: block;
}
.hide{
  display: none;
}