* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
   padding-top: 70px;
}
/* --------Navbar CSS-------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: indigo;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  z-index: 1000;
}
.navbar .logo img {
  height: 100px;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  text-decoration: none;
  color: indigo;
  font-weight: 700;
  font-size: 20px;
  transition: 0.3s;
}
.nav-links a:hover {
  color: red;
}
.hamburger {
  display: none;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  color: indigo;
}
/* Responsive Mobile Nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }
  .navbar .logo img {
  height: 50px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 15px 0;
  }
  .hamburger {
    display: block;
  }
}
/* --------Navbar CSS-------- */

/*-------- Hero Banner------ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 60px;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
}

.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.scroll-btn {
  background: red;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background: darkred;
}

/* ✅ MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    padding: 80px 10px 40px 10px;
    display: flex;
    flex-direction: column;
  }

  .bg-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .scroll-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}

/*-------- Hero Banner------ */

.about{
  padding: 80px 20px;
  text-align: center;
  background: #fff;
  font-size: 20px;
  line-height: 35px
}
/* ------Gallery Section------ */
.gallery, .contact {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}
.gallery-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background:black;
  color:white;
  padding: 10px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .caption {
  opacity: 1;
}
/* ------Gallery Section------ */

/*------ Contact Section ------*/
#contact {
  padding: 80px 20px;
  background:#fff;
  color: #fff;
  text-align: center;
}
#contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color:indigo;
}
form {
  max-width: 500px;
  margin: 0 auto;
  background: #2a2a2a;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
form label {
  display: block;
  text-align: left;
  margin: 15px 0 5px;
  font-weight: 500;
  color: #ddd;
}
form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background: #444;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s ease;
}
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  background: #555;
}
form button {
  margin-top: 20px;
  background: indigo;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
form button:hover {
  background: #e91e63;
}
/* ------Contact Section------ */

/*-------Footer Section------ */
.footer {
  background: #000;
  padding: 30px 20px;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}
.footer-content {
  max-width: 960px;
  margin: auto;
}
.footer .socials {
  margin-top: 10px;
}
.footer .socials a {
  margin: 0 8px;
  display: inline-block;
  transition: opacity 0.3s;
}
.footer .socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.footer .socials a:hover {
  opacity: 0.6;
}
/*-------Footer Section------ */