/* style.css */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #fceabb, #f8b500);
  color: #333;
  margin: 0;
  padding: 0;
}
header {
  background-color: #ff6f61;
  color: white;
  padding: 20px;
  text-align: center;
}
nav a {
  margin: 0 15px;
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.intro {
  text-align: center;
  margin-top: 50px;
}
/* button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
} */
.message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 10px;
    font-size: 18px;
    color: white;
}
.success { background-color: #00b894; }
.error   { background-color: #d63031; }
.warning { background-color: #fdcb6e; color: #2d3436; }
.info    { background-color: #0984e3; }

.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.slide {
    display: none;
    position: relative;
}
.slide img {
    width: 100%;
    border-radius: 12px;
}
.caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
}

.navbar {
    background-color: #74b9ff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 22px;
    color: white;
    font-weight: bold;
}

.hamburger {
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: block;
}

#nav-toggle {
    display: none;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background-color: #74b9ff;
}

.nav-links li {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-size: 18px;
}
.container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
}
/* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 1.5rem 0;
            text-align: center;
            background-color: #0984e3;
        }



/* Show menu when toggled */
#nav-toggle:checked + .hamburger + .nav-links {
    display: flex;
}

/* Desktop styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    .nav-links {
        display: flex !important;
        flex-direction: row;
        width: auto;
    }
    .nav-links li {
        border: none;
    }
    .nav-links a {
        padding: 0 15px;
    }
}

button {
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    background-color: #00cec9;
    color: white;
    cursor: pointer;
}

@media (max-width: 600px) {
    button {
        font-size: 14px;
        padding: 8px 12px;
    }
}

.left-textarea {
  text-align: left; /*Align the text horizontally */
}
.footer {
    background-color: #2d3436;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 16px;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    transition: transform 0.3s ease;
}

.social-icons img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.social-icons a:hover {
    transform: scale(1.2);
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fab1a0;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}
.password-box {
 
            margin: 40px auto;
            max-width: 400px;
            padding: 20px;
            background-color: #ffeaa7;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
}
        input[type="password"],
        input[type="text"] {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            border-radius: 8px;
            border: 1px solid #ccc;
            margin-bottom: 10px;
        }
.toggle-btn {
            background-color: #00cec9;
            color: white;
            border: none;
            padding: 10px 16px;
            border-radius: 8px;
            cursor: pointer;
}
.expandable {
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
}
.expandable:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
}

#caption {
  text-align: center;
  color: #f1f1f1;
  padding: 10px;
  font-size: 18px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
