/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  padding-top: 107px;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Disclaimer Page */
h1 {
      text-align: center;
      color: #333;
      margin-bottom: 20px;
    }
    h2 {
      margin-top: 30px;
      color: #444;
    }
    p {
      margin-bottom: 15px;
    }
    ul {
      margin-left: 25px;
    }
    strong {
      color: #000;
    }
/* Top Banner */
.top-banner {
  overflow: hidden;
  background: #0077cc;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  }
.banner-text {
  font-size: 14px;
}

/* Navbar */
nav {
  overflow: hidden;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 22px; /* Adjust based on your top banner height */
  left: 0;
  width: 100%;
  z-index: 999;
  }
.company-logo img {
  width: 200px;
  height: 100px;
}
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.nav-links a:hover {
  color: #0077cc;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hero Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 20px 0;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  min-width: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
}
.carousel-indicators {
  text-align: center;
  margin-top: 10px;
}
.dot {
  height: 10px;
  width: 10px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}
.dot.active {
  background: #0077cc;
}

/* States Slider */
.big-feature-section {
  padding: 50px 0;
  background: #fff;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}
.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.state-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}
.state-slider::-webkit-scrollbar {
  display: none;
}
.state-card {
  min-width: 250px;
  max-width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.3s ease;
}
.state-card:hover {
  transform: translateY(-5px);
}
.state-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}
.state-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}
.state-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}
.state-card .read-more {
  display: inline-block;
  padding: 6px 12px;
  background: #0077cc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.state-card .read-more:hover {
  background: #005fa3;
}

/* Slider Controls */
.slider-controls {
  margin-top: 15px;
  text-align: center;
}
.slider-controls button {
  background: #0077cc;
  color: #fff;
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s ease;
}
.slider-controls button:hover {
  background: #005fa3;
}

/* Content Sections */
    .section {
      padding: 40px 0;
      border-bottom: 1px solid #eaeaea;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 40px;
      color: #2874a6;
      font-size: 2.2rem;
    }
    
    .section-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 30px;
    }
    
    .text-content {
      flex: 1;
      min-width: 300px;
    }
    
    .image-content {
      flex: 1;
      min-width: 300px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .image-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .image-content:hover img {
      transform: scale(1.03);
    }
    
    /* Info Boxes */
    .info-box {
      background: linear-gradient(to right, #e3f2fd, #bbdefb);
      padding: 25px;
      border-radius: 10px;
      margin: 30px 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .info-box h3 {
      color: #1a5276;
      margin-bottom: 15px;
      font-size: 1.5rem;
      border-bottom: 2px solid #2874a6;
      padding-bottom: 10px;
    }
    
    .info-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    
    .info-item {
      background: white;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .info-item h4 {
      color: #2874a6;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }
    
    .info-item h4 i {
      margin-right: 10px;
      color: #1a5276;
    }

    /* Activities Section */
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    
    .activity-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s;
    }
    
    .activity-card:hover {
      transform: translateY(-5px);
    }
    
    .activity-img {
      height: 200px;
      overflow: hidden;
    }
    
    .activity-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .activity-card:hover .activity-img img {
      transform: scale(1.05);
    }
    
    .activity-content {
      padding: 20px;
    }
    
    .activity-content h3 {
      color: #2874a6;
      margin-bottom: 10px;
    }
    
    /* Nearby Attractions */
    .attractions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    
    .attraction-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .attraction-img {
      height: 200px;
      overflow: hidden;
    }
    
    .attraction-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .attraction-content {
      padding: 20px;
    }
    
    .attraction-content h3 {
      color: #2874a6;
      margin-bottom: 10px;
    }
    
    /* How to Reach */
    .transport-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    
    .transport-card {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
    }
    
    .transport-icon {
      font-size: 2.5rem;
      color: #2874a6;
      margin-bottom: 15px;
    }

    .state-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* Footer */
    footer {
      background-color: #0077cc;
      color: white;
      padding: 40px 0 20px;
      margin-top: 50px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
    }
    
    .footer-section h3 {
      margin-bottom: 20px;
      font-size: 1.3rem;
      border-bottom: 1px solid #3498db;
      padding-bottom: 10px;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: #e3f2fd;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: #ffd700;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }
    
    .social-icons a {
      color: white;
      font-size: 1.2rem;
      transition: color 0.3s;
    }
    
    .social-icons a:hover {
      color: #ffd700;
    }
    
    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #3498db;
      font-size: 0.9rem;
    }
.footer-pages {
  display: flex;
  justify-content: left;   /* center items */
  gap: 15px;                 /* space between links */
  padding: 10px 0;
}

.footer-pages a {
  text-decoration: none;
  color: white;               /* adjust color */
  font-size: 12px;
}

.footer-pages a:hover {
  text-decoration: underline;
}

   /* Responsive Design */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .nav-links ul {
        flex-direction: column;
        gap: 10px;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
    }
