

/* General body and layout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
  }
  
  h1, h2, h3 {
    margin: 0;
  }
  
  /* Basic layout for the header and footer */
  header, footer {
    padding: 20px 40px;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  footer {
    justify-content: center;
    padding: 20px;
    position: relative;
  }
  
  .hero {
    background: url('../Images/bg-image.png') center/cover no-repeat;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #FF5733;
    color: white;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .cta-btn:hover {
    background-color: #C0392B;
  }
  
  /* About Section */
  .about {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    height: 50;
  }
  
  .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
  }
  
  .about-img img {
    width: 200px;
    height: 200px;
    
  }
  
  .about-text {
    max-width: 600px;
    font-size: 1.1rem;
  }
  
  /* Projects Section */
  .projects {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .project-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;

  }
  
  .project-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
  }
  
  .project-card h3 {
    font-size: 1.4rem;
  }
  
  
  .project-link {
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #FF5733;
    color: white;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .project-link:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
  }
  
  footer .social-links {
    margin-top: 20px;
  }
  
  footer .social-icons a {
    margin: 0 15px;
  }
  
  footer .social-icons img {
    width: 40px;
    height: 40px;
  }
 /* Slideshow container */
.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
  text-align: center;
}

/* Slides */
.mySlides {
  display: none;
  position: relative;
}

.mySlides img {
  width: 50%;
  border-radius: 10px;
  max-height: 500px;
  object-fit: cover;
}

/* Caption below the image */
.caption {
  color: #333;
  font-size: 1rem;
  margin-top: 10px;
}

/* Navigation arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  user-select: none;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.contactme {
  text-align: center;
}