body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8f8f8;
  color: #222;
  scroll-behavior: smooth;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: url('images/rewa-banner.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.hero-content {
  z-index: 10;
  padding: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  background: #ff6600;
  color: white;
  padding: 12px 25px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
}

.btn:hover {
  background: #e85c00;
}
.section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #444;
  line-height: 1.7;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.fact-card {
  background: #f0f4ff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

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

.history {
  background: #fdfdfd;
}

.timeline {
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid #4a90e2;
}

.timeline-item {
  margin-bottom: 30px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 0;
  width: 20px;
  height: 20px;
  background: #4a90e2;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #4a90e2;
}

.timeline-item .year {
  font-weight: bold;
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 5px;
  display: inline-block;
}

.timeline-item p {
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
}

.tourism {
  background-color: #eef7fa;
  padding: 60px 20px;
}

.tourism h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.tourism p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #333;
  font-size: 1rem;
}

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

.place {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.place img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.place h3 {
  font-size: 1.2rem;
  color: #007acc;
  margin: 15px 0 5px;
}

.place p {
  padding: 0 15px 20px;
  font-size: 0.95rem;
  color: #555;
}

.gallery {
  background-color: #ffffff;
  padding: 60px 20px;
}

.gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery p {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

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

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.map-section {
  background: #ffffff;
  padding: 60px 20px;
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.map-section p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

.map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-section {
  background: #f1f1f1;
  padding: 60px 20px;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.contact-section p {
  text-align: center;
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  background-color: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #0088cc;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.footer {
  background-color: #002244;
  color: #fff;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  color: #aaa;
}


.navbar {
  background-color: #004080;
  color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}

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

.navbar nav {
  display: flex;
  align-items: center;
}

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

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

.nav-links li a:hover {
  color: #ffcc00;
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #004080;
    width: 100%;
    flex-direction: column;
    display: none;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


Smooth scroll effect */
html {
  scroll-behavior: smooth;
} 

/* tourism style */


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
}

.navbar {
  background: #006699;
  color: white;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

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

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

.nav-links a {
  color: white;
  text-decoration: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.section {
  padding: 2rem;
  background: white;
  margin: 1rem;
  border-radius: 10px;
}

.section h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.card {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: #e8f1f8;
  border-radius: 8px;
  padding: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.card img {
  width: 280px;
  border-radius: 8px;
  object-fit: cover;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #003355;
  color: white;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #006699;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card img {
    width: 100%;
  }
}

.adsense-placeholder {
  width: 100%;
  max-width: 728px;
  height: 90px;
  margin: 20px auto;
  background: #e0e0e0;
  text-align: center;
  line-height: 90px;
  font-size: 1rem;
  color: #333;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
}

@media (max-width: 480px) {
  .section {
    padding: 20px 10px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
html, body {
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
}
