* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Caveat";
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

h1{
    font-size:2em;
}
.caveat {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}


header {
    display: flex;
    align-items: center;
    background: #E1E1E1;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    top: 0;
    z-index: 10;
}

.logo img {
    width: 30%;
    height: 30%;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3cm;
}

.nav-links a {
    font-size: 25px;
    text-decoration: none;
    color: #333;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
}

section {
    padding: 2rem 1rem;
    background: #e0e0e0;
    margin-bottom: 1rem;
}

.home {
    margin-top: 20px;
    font-size: 25px;
}

.hero,
.custom-section {
    background: #e7e7e7;

}

.custom-section img {
    height: 50%;
    width: 50%;
}
section h1 {
  font-size: 2rem;
}
.custom-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.customh1{
    font-size:30px;
}
ul {
    margin-top: 1rem;
    padding-left: 1rem;
}

.gallery {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Heading {
    padding-right: 40px;
    font-size: 40px;
}

.gallery-section {
    background-color: #eee;
    padding: 30px 10px;
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 20px;
}



.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 100%;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
}



@media (max-width: 480px) {
    .overlay {
        font-size: 12px;
        padding: 8px;
    }
}

footer {
    background: #fff;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #ccc;
}

.social-icons a {
    margin: 0 10px;
    font-size: 1.2rem;
    color: #000;
}

.slideshow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    overflow: hidden;
    border-radius: 10px;
}

.slide img {
    width: 40%;
    height: 40%;

}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
}

/* Optional: fade effect */
.fade {
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}


/* Tablet and below */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 160px;
        gap: 5px;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .Heading {
        font-size: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .custom-section img {
        height: 60%;
        width: 60%;
    }

    .home {
        margin-top: 20px;
    }
    h1{
        font-size:24px;
    }
}

.container {
    font-family: Arial, Helvetica, sans-serif;
  background-color: white;
  border: 1px solid #ccc;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container h1 {
   
  font-size: 24px;
  font-weight: bold;
 
}

.container .subtitle h3 {
     border-bottom: 2px solid #000;
   
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.container ul {
     font-family: Arial, Helvetica, sans-serif;
  list-style-type: disc;
  text-align: left;
  margin: 0 auto 20px auto;
  padding-left: 20px;
  max-width: 300px;
}

.container ul li {
     font-family: Arial, Helvetica, sans-serif;
  margin: 8px 0;
}
.container .endmessage{
border-top: 2px solid #000;


}