body{
  margin: auto 0;
  font-family: Arial, Helvetica, sans-serif;
}
header{
  display: flex;
  background-color:#1f2937 ;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
}
a{
  text-decoration: none;
  color: #F9FAF8;
}

.logo{
  width: 80px;
  height: 80px;
  object-fit: cover;
  
}
.logo img{
  width: 100%;
  height: 100%;
}
.main-nav{
  display: flex;
  gap: 20px;
  list-style: none;
}
.Hero-container{
  display: flex;
  background-color: #1f2937;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

h2{
  color: #F9FAF8;
}
h1{
  color: #1f2937;
  text-align: center;
}
.Hero-information{
  color: #F9FAF8;
}
.PlaceHolder{
  width: 500px;
  height: 300px;
  
}
.placeholder-image{
  width: 100%;
  height: 100%;
  object-position: top;
object-fit: cover;
}
.signup{
  background-color:#3882F6 ;
  color: #F9FAF8;
  border: none;
  padding: 8px 25px;
  border-radius: 5px;
  font-weight: bold;
}

section{
  margin-bottom: 50px;
}
.course-container{
  margin-top: 50px;
display: flex;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .course-container{
    flex-wrap: wrap;
  }
}
.image-container{
  height: 500px;
  width: 500px;
}
.course {
  background-color: #f8f8f8;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.show-btn {
  display: block;
  margin-top: 10px;
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.show-btn:hover {
  background-color: #2980b9;
}
.course-images{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 900px) {
  .course-images{
    height: 500px;
    object-fit: contain;
  }
}
.gallery-container {
  padding: 20px; /* Add padding around the gallery */
  max-width: 1200px; /* Limit the maximum width of the gallery */
  margin: 0 auto; /* Center the gallery horizontally */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust column size as needed */
  gap: 10px; /* Adjust gap between images */
}

.gallery img {
  width: 100%; /* Take up full width of container */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Maintain aspect ratio without cropping */
}



@media (max-width: 800px) {
  /* Adjust layout for smaller screens (mobile) */
  .gallery {
    grid-template-columns: 1fr; /* Only one column on mobile devices */
  }
}

.About-us,.Contact{
  background-color:#E5E7EB ;
  padding: 20px;
}
.info{
  list-style: disc;
  font-size: 20px;
}
.facebookContainer{
  width: 50px;
  height: 50px;
  padding: 20px;
}
.facebookImage{
  height: 100%;
  width: 100%;
}
.facebookLink{
 color: #1f2937;
}
.Contact{
  display: flex;
  flex-direction: column;
  align-items: center;
 
}
.linkContainer{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.youtubeImage{
  padding-top: 5px;
  height: 80%;
  width: 50px;
}
.footer {
  background-color: #1f2937;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Footer link styles */
.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}
h3{
  font-weight: 600;
  font-size:200%;
}

.show-more-button {
  display: block;
  margin: 20px auto; /* Center the button horizontally */
  padding: 10px 20px; /* Add padding to the button */
  font-size: 1.2rem; /* Increase font size for better visibility */
  background-color: #007bff; /* Button background color */
  color: #fff; /* Button text color */
  border: none; /* Remove border */
  border-radius: 5px; /* Add border radius for rounded corners */
  cursor: pointer; /* Change cursor to pointer on hover */
  margin-top: 50px;
}

.show-more-button:hover {
  background-color: #0056b3; /* Darker background color on hover */
}

@keyframes wipe-in-up {
  from {
    clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

[transition-style="in:wipe:up"] {
  animation: 2.5s cubic-bezier(.25, 1, .30, 1) wipe-in-up both;
}
#whatsappButton {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
  margin-top: 50px;
  
}
.whatsapp-logo::before {
  content: "\f232"; /* Unicode for the WhatsApp logo */
  font-family: "Font Awesome 5 Brands"; /* Font Awesome for icons */
  margin-right: 10px; /* Add space between logo and text */
  font-size: 24px;
}

.whatsapp-logo {
  display: block;
  margin: 0 auto;
}
