/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: #f5f5f5;
}

/* Sticky Navbar */
#navbar {
    position: sticky;
    top: 0;
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    width: 100%;
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#navbar h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

#navbar ul {
    display: flex;
    list-style: none;
}

#navbar ul li {
    margin-left: 2rem;
}

/* Navbar Link Styles */
#navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease; /* Transition for smooth color change */
}

#navbar ul li a:hover {
    color: #3e8ee4;
}


#navbar ul li a:hover {
    color: #3e8ee4;
}

/* Sections */
.section {
    padding: 5rem 0;
    background-color: #fff;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.section p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Info */
.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #3e8ee4;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #3e8ee4;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
  }
  
  .slide {
    display: none;
    height: 450px;
    background-size: cover;
    background-position: center;
  }
  
  .fade {
    transition: transform 0.6s ease-in-out;
  }
  
  /* Prev and Next buttons */
  .prev, .next {
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    border-radius: 0 3px 3px 0;
    transform: translateY(-50%);
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }


/* Responsive Design */
@media (max-width: 768px) {
    #navbar ul {
        flex-direction: column;
    }

    #navbar ul li {
        margin-left: 0;
        margin-top: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }
}
