*{
    margin: 0;
    
    font-family: Georgia;
}

html{
    height: 1500px;
}
a{
    color: white;
    text-decoration: none; 
    padding: 12px;

    display: inline-block;
}
.fa-search{
    padding-top: 10px;
    padding-right: 10px;
}


header{
    display: flex;
    justify-content: space-between;
    background-color: black;

    color: white;
    position: sticky;
    top: 0;
}
.home{
    background-color: #009688;
}
a:hover{
    background-color: rgb(241, 240, 240);
    color: black;
}

.parent-link{
    background-color: rgb(241, 240, 240);
    width: 130px;
    display: flex;
    flex-direction: column;
    position: absolute;
    margin-left: 397px;
    visibility: hidden;
}

.drop:hover + .parent-link{
    visibility: visible;
    
     
}

.main-img{
    
    width: 100%;
    height: 500px;
}
.text{
    color: green;
    position: relative;
    bottom: 500px;
    left: 350px;
    font-size: x-large;
    
}

.our-team{
    text-align: center;
}

.division{
    text-align: center;
    margin-top: 30px;
}
.flex{
    display: flex;
    justify-content: space-around;
       
}
.b{
    margin-bottom: 20px;
}

.m{
    margin-bottom: 20px;
}
.a{
    margin-bottom: 20px;
}
.division2{
    
    margin-top: 30px;
}
.ma{
    color: red;
    
}
.t{
    color: red;
    
}
.d{
    color: red;
    
}


.btn1{
  background-color: gray; /* Green */
  border: none;
  color: black;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 12px;

}
.btn2{
    background-color: gray; /* Green */
  border: none;
  color: black;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 12px;
  .button:hover span {
  padding-right: 25px;
}


}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: gray;
    color: white;
    text-align: center;
    font-size: 10px;
    height: 7px;
    padding: 14px;
    border: 2px;
    font-family: Bradley Hand, cursive;
    /*background-color: black;*/
    /*color: white;
    padding: 20px;*/
}

/* General Styles */
body {
    font-family: Georgia;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #343a40;    
    /*background-color: #f0f0f0; /* Light gray background color */
        
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    width: 100%;
    /*background-color: #343a40; */
    background-color: #f0f0f0; /* Light gray background color*/
    padding: 10px 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
}

.navbar ul li a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
    padding-top: 60px; /* Adjust for fixed navbar */
}

.main-img {
    
    width: 100%;
    /*max-width: 2000px; /* Adjust to your desired maximum width */
    height: auto;
    max-height: 550px; /* Adjust to your desired maximum height */
    object-fit: contain; /* Ensures the image scales nicely */
    
    
}

.vertical-text {
    position: absolute;
    top: 50%;
    left: 10px; /* Adjust this value to position the text further from the left edge */
    transform: translateY(-50%);
    /*background-color: rgba(0, 0, 0, 0.5);*/
    background-color: #f0f0f0; /* Light gray background color*/
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.text-link {
    display: block;
    color: black;
    font-size: 12px;
    margin: 5px 0;
    transition: color 0.3s;
}

.text-link:hover {
    color: #007bff;
}

/* Team Section */
.team {
    text-align: center;
    padding: 50px 20px;
}

.our-team {
    font-size: 36px;
    margin-bottom: 20px;
    color: red;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.member {
    /*background-color: white;*/
    background-color: #f0f0f0; /* Light gray background color*/
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.member:hover {
    transform: translateY(-10px);
    /*box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);*/
    box-shadow: 0 4px 6px rgba(100, 100, 100, 0.2); /* Dark gray shadow */

}

/* Sessions Section */
.sessions {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.session {
    /*background-color: white;*/
    background-color: #f0f0f0; /* Light gray background color*/
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    /* align-items: center;  Remove this line to not center everything */
}

.session:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.session h2 {
    color: red;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.session p {
    margin: 10px 0;
    
}

.session .btn {
    align-self: center; /* This centers only the button */
    margin-top: 15px; /* Optional: to add some space above the button */
}
.session .btn a {
    text-decoration: none; /* Optional: to remove underline from the link */
    color: #0056b3; /* Adjust the color as needed */
}
.btn {
    display: block;
    margin-top: 20px;
    background-color: grey;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.btn a {
    color: #0056b3;
}

/* Footer Section */
.footer {
   /* background-color: #343a40;*/
    background-color: #b8b4b4; /* Light gray background color*/
    color: white;
    /*padding: 20px 0;*/
    text-align: center;
    font-family: 'Bradley Hand', cursive;
    font-size: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: gray;
    height: 10px;
    padding: 14px;
    border: 2px;
    line-height: 2;
    height: 5%; /* 10% of the viewport height */
     
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

        