/* General Styles */
body {
  margin: 0;
  font-family:  'Nunito', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 8px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo a {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  color: white;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3;
  text-decoration: none;
  transition: background-color 0.3s ;
  padding: 10px 15px;
}

.nav-links li a:hover {
  color: white;
  background-color: red;
}
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111;
  min-width: 180px;
  border-radius: 5px;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 999;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #222;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: block;
}
.dropdown-content a:hover {
  background-color: red;
  color: white;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.overlay h1 {
  font-size: 3rem;
  color: white; 
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}
.subtitle {
  font-size: 20px;
  color: #ffc107;
  animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.static-quotes {
  background: url("../images/quotes-bg.jpg") no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  color: black;
}

.static-quotes h2 {
  font-size: 50px;
  margin-bottom: 40px;
}

.quote-card {
  background-color: rgba(0, 0, 0, 0.6);
  margin: 15px auto;
  padding: 20px;
  width: 80%;
  border-radius: 10px;
  font-style: italic;
  font-size: 18px;
  color: #f1f1f1;
  transition: transform 0.3s ease;
}

.quote-card:hover {
  transform: scale(1.03);
}

.fade-in-delay {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.explore-more {
  background: url("../images/explore-bg.jpg") no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  color: black;
}

.explore-box h2 {
  font-size: 30px;
  margin-bottom: 40px;
  background-color: black;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 10px;
}

.explore-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.explore-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  color: #000;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ff9900;
}
.fade-up {
  animation: fadeInUp 2s ease-out;
}

.card {
  width: 180px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  overflow: hidden;
  color: black;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.card:hover {
  transform: translateY(-10px);
}

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

.explore-cards .card h4,
.explore-cards .card h4 a {
  color: white;
  text-decoration: none;
}

.explore-cards .card h4 a:visited {
  color: white;
}
.footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Glow animation for heading */
.glow-text {
  color: #fff;
  text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900, 0 0 30px #ff6600;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900, 0 0 30px #ff6600; }
  to { text-shadow: 0 0 20px #ffaa00, 0 0 30px #ff8800, 0 0 40px #ff5500; }
}

body.destination-page {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('../images/destination-bg.jpg') no-repeat center center fixed;
  background-size: cover;
}
.navbar {
  background-color: rgba(0,0,0,0.8);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo a {
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: #ff9800;
  color: black;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0,0,0,0.9);
  list-style: none;
  padding: 0;
  min-width: 180px;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgba(0,0,0,0.9);
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 10px;
    border-radius: 0 0 5px 5px;
  }
  .nav-links.active {
    display: flex;
  }
  .dropdown-content {
    position: relative;
  }
}
.destination-page {
  padding: 40px 5%;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center; 
}
.destination-card {
  background:burlywood;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  width: 250px;   
  height: 250px;  
}

.destination-card img {
  width: 100%;
  height: 70%;   
  object-fit: cover; 
}

.destination-card h3 {
  margin: 5px 0 0;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.destination-card p {
  margin: 5px 10px;
  font-size: 14px;
  color: #555;
  text-align: center;
  flex-grow: 1;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .destination-card {
    width: 45%;
    height: 45%;
  }
}

@media (max-width: 480px) {
  .destination-card {
    width: 90%;
    height: auto;
  }
  .destination-card img {
    height: 150px; 
  }
}

.destination-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  border-radius: 10px;
  padding: 25px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.modal-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.modal-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #222;
}

.modal-content p {
  color: #444;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}
.close-btn:hover {
  color: black;
}

body.indiafood-page{
  background-image: url("../images/food-bg.jpg");
  background-size: cover;   
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; 
}

.navbar {
  background: black;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.nav-links li a:hover,
.nav-links li a.active {
  color: #ff5722;
}
.navbar {
  background-color: #2e2e2e;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
  margin-bottom: 0;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  transition: background 0.2s;
}

.nav-links li a:hover {
  background-color: black;
  border-radius: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 150px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: black;
}

.indiafood-page {
  
  background-size: cover;
  min-height: 100vh;
  padding-bottom: 40px;
}
.indiafood-heading {
  text-align: center;
  margin-top: 30px;
  font-size: 3rem;
  font-weight: bold;
  color: yellow; 
}
.indiafood-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background: transparent;
}
.indiafood-card {
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 230px;
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
  text-align: center;
  background: lightgoldenrodyellow;
}

.indiafood-card:hover {
  transform: scale(1.05);
}

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

.indiafood-card h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
  color: #222;
}

.indiafood-card p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #777;
}

.indiafood-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  border-radius: 10px;
  padding: 25px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: zoomIn 0.4s ease-in-out;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
}

.modal-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #222;
}

.modal-content p {
  font-size: 1rem;
  color: #444;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.close-btn:hover {
  color: black;
}

 body.historical-page{
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background:  url('../images/historical-bg.jpg') no-repeat center center fixed;
  color: #222;
  background-size: cover;
  min-height: 100vh;
  background-position:center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: white;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.main-heading {
  text-align: center;
  margin: 2rem 0;
  font-size: 2rem;
  position: relative;
}
.main-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background:black;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.dynasty-heading {
 font-size: 2rem; 
  margin: 2rem auto;
  color: #2c3e50;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
  text-align: center;
  font-weight: 600;
  width: fit-content;
}

.section-divider {
  width: 100%;
  height: 4px;
  background-color: #000;
  margin: 2rem auto;
  border-radius: 1px;
}

.fort-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.fort-card {
  width: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
}

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

.fort-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background:burlywood;
  padding: 2rem;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.modal-content .close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('../images/contact-bg.jpg') no-repeat center center fixed;
  background-size: cover;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 8px 12px;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
   outline: none;
  border: none;
  box-shadow: none;
}
.nav-links li a.active {
   background: none;  
  color: #fff;          
  border-radius: 4px;
}
.nav-links li a:hover {
  background: red;
  color: #fff;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #111;
  min-width: 180px;
  border-radius: 5px;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 999;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  padding: 12px;
  color: #fff;
  text-align: left;
  display: block;
  text-decoration: none;
}

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

.contact-section {
  max-width: 500px;
  margin: 50px auto;
  padding: 50px;
  background: transparent;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 20px;
  color: #333;
}

.contact-section label {
  display: block;
  margin: 12px 0 6px;
  font-weight: bold;
  text-align: left;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-section textarea {
  resize: none;
  height: 120px;
}

.contact-section button {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  
  transition: 0.3s;
}

.contact-section button:hover {
  background: #ff6600;
}

