* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Styles */
.navbar {
  background: black;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: yellow;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.btn-login,
.btn-signup {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-login {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-login:hover {
  background: white;
  color: yellow;
}

.btn-signup {
  background: #ffd700;
  color: #333;
}

.btn-signup:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}
/* Language Dropdown */
.language-dropdown {
  position: relative;
}

.language-btn {
  background: linear-gradient(135deg, #ff9933, #138808);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.language-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.language-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-option:hover {
  background: linear-gradient(135deg, #ff9933, #138808);
  color: white;
}

.language-option:first-child {
  border-radius: 15px 15px 0 0;
}

.language-option:last-child {
  border-radius: 0 0 15px 15px;
  border-bottom: none;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 80px;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}

.slide-content h1 {
  font-size: 60px;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7),
    2px 2px 6px rgba(0, 0, 0, 0.8);
}

.slide-content p {
  font-size: 24px;
  color: white;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7),
    2px 2px 6px rgba(0, 0, 0, 0.8);
}

.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: black;
  border-radius: 2px;
}

/* Festivals and Culture Section */
.festivals-culture {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fff5f5, #f0f8ff);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.culture-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.culture-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.culture-caption {
  padding: 1.5rem;
}

.culture-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ff9933;
}

.culture-caption p {
  color: #666;
  line-height: 1.6;
}

/* Taste of India Section */
.taste-india {
  padding: 5rem 0;
  background: #fff;
}

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

.food-item {
  text-align: center;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.food-item:hover {
  transform: scale(1.05);
}

.food-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.food-item h3 {
  padding: 1rem;
  font-size: 1.2rem;
  color: #333;
  background: linear-gradient(135deg, #ff9933, #ffb366);
  color: white;
  margin: 0;
}

/* Dance Culture Section */
.dance-culture {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f4ff, #fff0f5);
}

.dance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.dance-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dance-item:hover {
  transform: translateY(-5px);
}

.dance-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.dance-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.dance-item:hover .dance-overlay {
  transform: translateY(0);
}

.dance-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.dance-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-buttons {
    display: none;
  }

  .slide-content h1 {
    font-size: 2.8rem;
  }

  .slide-content p {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .food-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .dance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }
}

#scrollTopBtn {
  position: fixed;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  bottom: 5.625rem;
  right: 1.875rem;
  z-index: 100;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #ff9933, #ffb366);
  color: white;
  border: none;
  padding: 0;
  border-radius: 10%;
  cursor: pointer;
  display: none; /* default hidden */
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

/* This class makes it visible and keeps flex */
#scrollTopBtn.show {
  display: flex;
}

#scrollTopBtn:hover {
  background: linear-gradient(135deg, #e86800, #ff9933);
  transform: scale(1.1);
}

/* Small screens (phones) */
@media screen and (max-width: 500px) {
  #scrollTopBtn {
    bottom: 6.8rem; /* Raised slightly above footer for phones */
    right: 1rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Styles */
.navbar {
  background: black;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: yellow;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.btn-login,
.btn-signup {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-login {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-login:hover {
  background: white;
  color: yellow;
}

.btn-signup {
  background: #ffd700;
  color: #333;
}

.btn-signup:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}
.link-home {
  border: none;
  outline: none;
}
/* Language Dropdown */
.language-dropdown {
  position: relative;
}

.language-btn {
  background: linear-gradient(135deg, #ff9933, #138808);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.language-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.language-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-option:hover {
  background: linear-gradient(135deg, #ff9933, #138808);
  color: white;
}

.language-option:first-child {
  border-radius: 15px 15px 0 0;
}

.language-option:last-child {
  border-radius: 0 0 15px 15px;
  border-bottom: none;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 80px;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 20px;
}

.slide-content h1 {
  font-size: 60px;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7),
    2px 2px 6px rgba(0, 0, 0, 0.8);
}

.slide-content p {
  font-size: 24px;
  color: white;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7),
    2px 2px 6px rgba(0, 0, 0, 0.8);
}

.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: black;
  border-radius: 2px;
}

.section-title.show {
  opacity: 1;
  transform: translateY(0);
  font-size: 2.8rem;
  font-weight: 800;
}

/* Festivals and Culture Section */
.festivals-culture {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fff5f5, #f0f8ff);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.culture-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.culture-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.culture-caption {
  padding: 1.5rem;
}

.culture-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ff9933;
}

.culture-caption p {
  color: #666;
  line-height: 1.6;
}

/* Highlights Section */
.highlights-section {
  padding: 5rem 0;
  background: #f9f9f9;
  text-align: center;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.5rem;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.highlight-card h3 {
  font-size: 1.5rem;
  color: #ff9933;
  margin-top: 1rem;
}

.highlight-card p {
  padding: 0 1.2rem;
  color: #555;
  margin: 1rem 0;
}

.card-button {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, #ff9933, #138808);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.card-button:hover {
  background: linear-gradient(135deg, #e86800, #0f7d2e);
}

/* Responsive */
@media (max-width: 768px) {
  .highlight-card img {
    height: 180px;
  }
}

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-buttons {
    display: none;
  }

  .slide-content h1 {
    font-size: 2.8rem;
  }

  .slide-content p {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .culture-grid {
    grid-template-columns: 1fr;
  }

  .food-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .dance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }
}

#scrollTopBtn {
  position: fixed;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  bottom: 5.625rem;
  right: 1.875rem;
  z-index: 100;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #ff9933, #ffb366);
  color: white;
  border: none;
  padding: 0;
  border-radius: 10%;
  cursor: pointer;
  display: none; /* default hidden */
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

/* This class makes it visible and keeps flex */
#scrollTopBtn.show {
  display: flex;
}

#scrollTopBtn:hover {
  background: linear-gradient(135deg, #e86800, #ff9933);
  transform: scale(1.1);
}

/* Small screens (phones) */
@media screen and (max-width: 500px) {
  #scrollTopBtn {
    bottom: 6.8rem;
    right: 1rem;
  }
}
