* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  height: 70px;
  width: 100%;
  background: #ff7a00; /* saffron */
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}


.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-menu li a:hover {
text-decoration: underline;
font-size: medium;
transition: all 0.45s ease;
  /* opacity: 0.85; */
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ff7a00;
    /* opacity: 0; */
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}
.video-section {
  position: relative;
  width: 100%;
  bottom: 10px;
  /* height: 100vh; */
  overflow: hidden;
}

/* VIDEO */
.video-section video {
  width: 100%;
  height: 90%;

  object-fit: cover;   /* IMPORTANT */
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 122, 0, 0.55); /* saffron overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.video-overlay h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.video-overlay p {
  font-size: 18px;
}

/* RESPONSIVE TEXT */
@media (max-width: 768px) {
  .video-overlay h2 {
    font-size: 30px;
  }

  .video-overlay p {
    font-size: 16px;
  }
}
.intro-section {
  padding: 80px 8%;
  background: #fff;
}

.intro-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 42px;
  color: #ff7a00;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.read-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border: 1.5px solid #ff7a00;
  border-radius: 30px;
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.read-btn:hover {
  background: #ff7a00;
  color: #fff;
}

/* RIGHT */
.intro-image {
  flex: 1;
  text-align: center;
}

.intro-image img {
  width: 380px;
  height: 400px;
  object-fit: cover;
  border-radius: 10%;
}

/* SOCIAL */
.social-icons {
  margin-top: 25px;
}

.social-icons a {
  font-size: 20px;
  color: #ff7a00;
  margin: 0 8px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .intro-container {
    flex-direction: column;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 34px;
  }

  .intro-image img {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .intro-text h2 {
    font-size: 28px;
  }

  .intro-text p {
    font-size: 15px;
  }

  .intro-image img {
    width: 240px;
    height: 240px;
  }
}
.gallery-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.gallery-title {
  font-size: 36px;
  color: #ff7a00;
  font-weight: 700;
}

.gallery-subtitle {
  margin-bottom: 50px;
  color: #555;
}

.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 122, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
