/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: url('uploaded/background.jpg') no-repeat center center / cover;
  position: relative;
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
}

/* Main Wrapper Layout */
.main {
  position: relative;
  z-index: 1;
}

.main-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  flex-wrap: wrap;
}

.image-box {
  text-align: center;
}

.image-box img {
  width: 200px;
  height: auto;
}

.caption {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  font-family: "Mangal", sans-serif;
}

/* Form Styling */
.form-box {
  background: rgba(255, 255, 255, 0.5);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  text-align: left;
}

.form-box::-webkit-scrollbar {
  width: 6px;
}
.form-box::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
}
.form-box::-webkit-scrollbar-track {
  background: transparent;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  width: 100%;
  padding: 12px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background: #555;
}

/* Form title */
.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  font-family: "Mangal", sans-serif;
}

/* Navbar */
.navbar {
  background-color: white;
  padding: 15px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.nav-logo {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  font-family: "Mangal", sans-serif;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #007bff;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Dropdown Menu */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 10px 0;
  z-index: 999;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 5px 20px;
}

.dropdown-menu li a {
  white-space: nowrap;
  font-size: 14px;
  color: #333;
}

.dropdown-menu li a:hover {
  color: #007bff;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 60px;
    right: 30px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
    width: 85%;
  }

  .main-wrapper {
    flex-direction: column;
  }

  .image-box img {
    width: 150px;
  }

  .form-box {
    max-width: 90%;
  }
}

/* Slider */
.slider-container {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
  object-fit: cover;
  height: 400px;
}

.slide.active {
  display: block;
}

@media (max-width: 768px) {
  .slide {
    height: 250px;
  }
}

/* About Section */
.about-section {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  margin: 20px auto;
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.about-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
  font-family: "Mangal", sans-serif;
}

.about-section p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Gallery */
.gallery-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.gallery-section h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-family: "Mangal", sans-serif;
  color: #333;
}

.gallery-section p {
  color: #555;
  margin-bottom: 30px;
  font-size: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Contact Page */
.contact-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  text-align: left;
  font-family: 'Segoe UI', sans-serif;
}

.contact-section h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  font-family: "Mangal", sans-serif;
}

.contact-section p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form button {
  background-color: #333;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #555;
}


.form-selection {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

.form-selection h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-family: "Mangal", sans-serif;
  color: #333;
}

.form-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.form-btn {
  display: flex;
  width: 160px;
  flex-direction: column;
  align-items: center;
  padding: 20px 30px;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: #333;
  transition: all 0.3s ease;
  width: 120px;
}

.form-btn:hover {
  background-color: #f1f1f1;
  transform: translateY(-3px);
}

.form-btn .icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.header-banner {
  text-align: center;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  border-radius: 8px;
  font-family: 'Mangal', sans-serif;
}
.header-banner h2 {
  color: red;
  font-size: 20px;
  margin: 10px 0;
}
.header-banner h3 {
  font-size: 16px;
  color: #2d2d2d;
  margin: 5px 0;
}

.footer-signatures {
  display: flex;
  justify-content: space-around;
  padding: 30px 15px;
  background: rgba(255,255,255,0.9);
  font-family: 'Mangal', sans-serif;
  font-size: 14px;
  margin-top: 40px;
  border-top: 1px solid #ccc;
}
.text-center{
  text-align: center;
}
.m-0{
  margin: 0;
}