body{
    margin: 0;
    padding: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-image: url(../Images/ChatGPT\ Image\ Apr\ 28\,\ 2025\,\ 03_39_36\ PM.png);
    background-attachment: scroll; /* Makes background fixed during scroll */
    background-size: cover; /* Cover entire screen without zooming */
    background-repeat: no-repeat; /* Don't repeat the background */
    background-position: center center; /* Center the background */
    zoom: 80%;
    overflow-y: auto;
    overflow-x: auto;
} 

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    text-align: left;
    
}

.logo img {
    margin: 0;
}

nav {
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
    background-color: #9e4c08d8;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}

nav ul {
    flex: 1;
    text-align: right;
    margin-right: 20px;
    font-weight: bold;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a {
    text-decoration: none;
    color : black;
    font-size: 20px;;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #c27e197c;
    transition: 0.3s;
    width:100% ;
    height: 10px;
    position: relative;
}
.social-media img {
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}

.social-media img:hover {
    transform: scale(1.15);

}
.courses{
    font-size: 2rem;
    background-color: rgba(255, 223, 163, 0.363);
    border-radius: 90px;
    margin: 20px 20px 20px 20px;
    padding: 20px 20px 20px 20px;
    color: black;
    margin: 20px 20px 20px 20px;
}

.Hero{
    text-align: center;
}

.course-table {
    width: 100%;
    margin: 20px auto;
    background-color: rgb(255, 254, 254); 
    border-radius: 40px;
    font-size: 1.2rem;
}

.course-table th {
    background-color: #f56e00;
    color: rgb(0, 0, 0);
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.course-table, th , td {
    height: 30px;
    text-align: center;
    padding: 5px;
    text-align: left;
    border: 1px solid #49220f;
    border-radius: 5px;
}

.course-table th , td:hover{
    color: rgba(26, 10, 4, 0.979);
    transition: 0.3s;
}
.btn-container{
    text-align: center;
    margin: 20px;
}
#btn_1{
    background-color: #db6e1498;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease; 
}



#btn_1::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: black;
    z-index: 0;
    transition: width 0.4s ease;
}

#btn_1:hover::before{
    width: 100%
}

#btn_1:hover{
    color: white;
    transform: scale(1.1);
    transition: .3s;
}

#btn_1 span{
    position: relative;
    z-index: 1;
}

.terms-title {
    text-align: center;
    font-size: 2em;
    color: black;
    margin: 20px;
    font-weight: bold;
}
.terms-and-conditions {

    margin: 20px;
    font-size: 2rem;
    color: black;
    background-color: rgba(244, 165, 96, 0.329);
    border-radius: 50px;
    margin: 20px 20px 20px 20px;
    padding: 20px 20px 20px 20px;
}



.disease-container {
    font-size: 2rem;
}
aside {
    padding-bottom: 20px;
    margin-top: 100px;
    margin-bottom: 50px;
    background-color: rgba(175, 85, 44, 0.336);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 25px;
}

aside h2{
    font-size: 25px;
}

aside a {
    color: rgb(226, 97, 11);
    
}

.phone a:hover {
    color: #220303 ;
    transform: scale(1.2);
    transition: 0.3s;
}

.social_media img:hover{
    transition: 0.3s;
    transform: scale(1.2);
}


.Contact {
    text-align: center;
    margin: 20px 0;
}


.visit-us-content {
    display: flex; /* Enable Flexbox */
    justify-content: space-around; /* Space out the items evenly */
    align-items: center; /* Align items vertically in the center */
    gap: 25px; /* Add spacing between items */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.visit-us-content address,
.visit-us-content .phone,
.visit-us-content .maps {
    flex: 1; /* Make each item take up equal space */
    max-width: 400px; /* Optional: Limit the width of each item */
    text-align: center; /* Align text to the left */
}


.visit-us-content iframe {
    width: 350px;
    height: 400px;
    border-radius: 15px; /* Add rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.visit-us-content iframe:hover {
    transform: scale(1.1); /* Scale up the map */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Enhance the shadow on hover */

}


@media (max-width: 768px) {
  body {
    zoom: 100%;
    background-size: cover;
    background-attachment: scroll;
    overflow-x: hidden;
  }

  nav {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }

  nav ul {
    text-align: center;
    margin: 10px 0;
  }

  nav ul li {
    display: block;
    margin: 10px 0;
  }

  .logo {
    width: 80px;
    height: 80px;
    margin: 10px auto;
    text-align: center;
  }

  .courses,
  .terms-and-conditions,
  aside,
  .btn-container {
    margin: 10px;
    padding: 15px;
    font-size: 1.2rem;
  }

  .terms-title {
    font-size: 1.5rem;
  }

  .course-table {
    font-size: 1rem;
    width: 100%;
    overflow-x: auto;
  }

  .course-table th,
  .course-table td {
    padding: 8px;
    font-size: 0.9rem;
  }

  #btn_1 {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .visit-us-content {
    flex-direction: column;
    align-items: center;
  }

  .visit-us-content address,
  .visit-us-content .phone,
  .visit-us-content .maps {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .visit-us-content iframe {
    width: 100%;
    height: 300px;
  }

  aside {
    font-size: 1.2rem;
    margin: 20px 10px;
  }

  .Contact {
    font-size: 1rem;
    margin: 15px 0;
  }
}
