/* Base Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
  background-color: #fffdfc;
}

img {
  max-width: 100%;
  display: block;
}

/* Brand Colors */
:root {
  --primary: #1A73E8; /* Royal Blue */
  --dark: #1c1c1c;
  --light: #fff9f4;
}

/* Navigation */
header {
  background-color: var(--light);
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

.btn {
  background-color: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #165ec4;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


/* Sections */
section {
  padding: 4rem 1rem;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}



/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.card h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
  color: var(--dark);
}

.card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #555;
}

/* Reviews */
.reviews {
  padding: 60px 20px;
  background-color: #f5f9ff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #1A73E8;
  margin-bottom: 40px;
  font-weight: 700;
}

.review-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.review-card h3 {
  margin: 10px 0 5px;
  color: #333;
  font-weight: 600;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.95rem;
  color: #555;
}


/* CTA Section */
.cta {
  background: var(--primary);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta .btn {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

.cta .btn:hover {
  background: #f3f3f3;
}

/* Footer */

<footer class="footer">
  <div class="footer-container">
    
    <div class="footer-section">
      <h4>Company</h4>
      <ul>
        <li><a href="about.html">About Us</a></li>
        <li><a href="packages.html">Packages</a></li>
        <li><a href="contact.html">Contact</a></li>
        <li><a href="blog.html">Blog</a></li>
      </ul>
    </div>

    <div class="footer-section">
      <h4>Explore</h4>
      <ul>
        <li><a href="packages.html">North Sikkim</a></li>
        <li><a href="packages.html">East Sikkim</a></li>
        <li><a href="packages.html">Honeymoon Trips</a></li>
        <li><a href="packages.html">Adventure Tours</a></li>
      </ul>
    </div>

    <div class="footer-section">
      <h4>Legal</h4>
      <ul>
        <li><a href="#">Privacy Policy</a></li>
        <li><a href="#">Terms of Use</a></li>
      </ul>
    </div>

    <div class="footer-section contact">
      <h4>Contact Us</h4>
      <p>Tadong, Gangtok, Sikkim 737102</p>
      <p>Soreng, West Sikkim 737121</p>
      <p><a href="tel:+918670102436">+91-8670102436</a></p>
      <p><a href="mailto:info@zoomsikkim.com">info@zoomsikkim.com</a></p>
      <p><a href="https://wa.me/918145308047" target="_blank">Chat on WhatsApp</a></p>
    </div>

  </div>

  <div class="footer-bottom">
    <p>&copy; 2025 Zoom Sikkim. All rights reserved.</p>
  </div>
</footer>










/*Gallary*/

.gallery {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.gallery-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-caption {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  background-color: #f4f4f4;
  color: #333;
}
.gallery-slider {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 60px 0;
}

.swiper {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/*popup*/
.popup-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 300px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  padding: 20px;
  z-index: 9999;
  display: none;
  animation: fadeIn 0.5s ease;
}

.popup-content h3 {
  margin-top: 0;
  color: #1A73E8;
}

.popup-content p {
  font-size: 14px;
  color: #333;
}

.popup-button {
  display: block;
  text-align: center;
  margin: 10px 0;
  padding: 10px;
  background-color: #1A73E8;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.popup-button.call {
  background-color: #28a745;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #888;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*Booking*/

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

form button {
  background-color: #1A73E8;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/*contact*/


.contact-direct {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  width: 250px;
}

.contact-box img {
  width: 40px;
  margin-bottom: 10px;
}

.contact-box h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.contact-box a {
  color: #1A73E8;
  font-weight: bold;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

.contact-direct-btn {
  text-align: center;
  margin-top: 30px;
}

.contact-direct-btn p {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
}

/*contact us directly*/

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background-color: #1DA851;
}

.btn-contact img {
  width: 20px;
}

.map-section {
  padding: 40px 20px;
  background: #f9f9f9;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1A73E8;
  font-size: 2em;
}

.maps-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.map-box {
  flex: 1 1 400px;
  max-width: 500px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.map-box h3 {
  margin-bottom: 10px;
  color: #333;
}


.page-title {
  text-align: center;
  color: #1A73E8;
  margin-top: 20px;
  font-size: 2em;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 350px;
  padding: 15px;
  text-align: center;
}

.blog-card img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
}

.blog-card h2 {
  margin-top: 15px;
  font-size: 1.2em;
  color: #333;
}

.blog-card p {
  color: #555;
  margin: 10px 0;
}

.read-more {
  text-decoration: none;
  color: #1A73E8;
  font-weight: bold;
}


