.py-5 {
  margin-top: 2rem;
}

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


.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  margin-left: 16px;
  z-index: 20;
}

  .about-section {
    background: url('../images/index/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    border-radius: 16px;
    max-width: 800px;
    margin: 48px auto 32px auto;
    padding: 40px 32px 32px 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.39);
  border-radius: 16px;
  z-index: -1;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.about-section h2 {
  color: #005bea;
  font-size: 3.2rem;
  margin-bottom: 22px;
  font-family: 'Pacifico', cursive;
}
.about-section p {
  color: #333;
  font-size: 1.45rem;
  margin-bottom: 28px;
}
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
}
.about-highlights li {
  background: linear-gradient(90deg, #00c6fb 0%, #005bea 100%);
  color: #fff;
  margin: 14px 0;
  padding: 16px 22px;
  border-radius: 8px;
  font-size: 1.18rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
/* Animated Down Arrow */
.scroll-down-animated {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  margin-bottom: 50px;
}
.scroll-down-animated span {
  display: block;
  width: 32px;
  height: 32px;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
  animation: bounce-arrow 1.2s infinite cubic-bezier(.68,-0.55,.27,1.55);
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateY(18px) rotate(45deg);
    opacity: 0.7;
  }
}
.home-title span {
  background: linear-gradient(90deg, #00c6fb 0%, #005bea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #337df5;
  font-family: 'Pacifico', cursive;
  font-size: 6rem;
}
.hearing-you-box {
  margin: 32px auto 0 auto;
  padding: 18px 38px;
  background: linear-gradient(90deg, #00c6fb 0%, #005bea 100%);
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  text-align: center;
  width: fit-content;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s, border-radius 0.25s;
  cursor: pointer;
}
.hearing-you-box:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 24px 0 0 0;
}
.social-icon {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border-radius: 50%;
  background: transparent;
  padding: 6px;
}
.social-icon:hover {
  color: #007bff;
  transform: scale(1.18) translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22), 0 1.5px 6px rgba(0,0,0,0.12);
  background: #fff2;
  z-index: 2;
}
/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "poppins", sans-serif;
}

#home {
      position: relative;
      width: 100vw;
      height: 100vh;
      margin: 0;
      padding: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
}
.home-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 6rem;
  font-family: 'Pacifico', cursive;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.2);
  margin-top: -30vh;
  margin-bottom: 0;
  text-align: center;
  pointer-events: none;
}

.home-title span {
  color: #337df5;
  font-family: 'Pacifico', cursive;
  font-size: 6rem;
} 

#home .scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #000000;
  font-size: 2rem;
  pointer-events: none;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/index/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

a{
  text-decoration: none;
  color: #333333;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: url('../images/index/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  font-family: 'Pacifico', cursive;
  color: #000000;
  text-decoration: none;
  font-size: 1.4rem;
}

section {
  display: block;
  unicode-bidi: isolate;
  padding: 2rem;
  margin: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Floating Images Section */
  .floating-images {
    width: 98vw;
    overflow-x: hidden;
    padding: 2rem 0;
    background: url('../images/index/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    /* Blur effect */
    isolation: isolate;
  }
  .floating-images::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.39);
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
    border-radius: 16px;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
  }
  .floating-images > * {
    position: relative;
    z-index: 1;
  }
.float-img-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  justify-content: center;
  align-items: center;
  align-items: stretch;
  width: max-content;
  margin: 0 auto;
  animation: float-scroll 48s linear infinite;
}

@keyframes float-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.float-img {
  position: relative;
  width: 320px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  flex-shrink: 0;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.float-img:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.float-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.1) 100%);
  color: #fff;
  padding: 20px 16px 12px 16px;
  box-sizing: border-box;
}
.float-img-overlay h1 {
  font-size: 1.5rem;
  margin-bottom: 0.3em;
  font-family: 'Pacifico', cursive;
  letter-spacing: 1px;
}
.float-img-overlay p {
  font-size: 1rem;
  margin: 0;
  font-family: 'poppins', sans-serif;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #eee;
  padding: 1rem;
  border-radius: 8px;
  width: 300px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.card img {
  width: 100%;
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  gap: 10px;
}

input, select, button {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #28a745;
  color: white;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

button:hover {
  background-color: #218838;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(215, 215, 215, 0.8);
  backdrop-filter: blur(2px);
  z-index: 10;
  height: max-content;
}


header h1 {
  margin: 0;
  padding: 10px;
  font-size: 2rem;
  transition: transform 0.3s ease-in-out;
  font-weight: bold;
}

header h1:hover {
  transform: scale(1.05);
}

.site-footer {
      background: #23272f;
      color: #fff;
      font-family: 'Segoe UI', Arial, sans-serif;
      padding: 40px 0 0 0;
      margin-top: 40px;
    }
    .footer-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
.footer-columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  flex: 2;
  min-width: 0;
  justify-content: space-between;
}
    .footer-col {
      min-width: 150px;
      flex: 1 1 150px;
    }
    .footer-col h3 {
      font-size: 1.1rem;
      margin-bottom: 12px;
      color: #ffd700;
      letter-spacing: 0.5px;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-col ul li {
      margin-bottom: 8px;
    }
    .footer-col ul li a {
      color: #d1d1d1;
      text-decoration: none;
      font-size: 0.98rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover {
      color: #ffd700;
    }
    .footer-connect {
      flex: 1 1 180px;
      min-width: 180px;
      margin-top: 0;
      text-align: left;
    }
    .footer-connect h3 {
      font-size: 1.1rem;
      margin-bottom: 12px;
      color: #ffd700;
    }
    .footer-social {
      display: flex;
      gap: 14px;
      margin-top: 6px;
    }
    .footer-social-icon {
      color: #fff;
      font-size: 1.3rem;
      background: #33384a;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
      text-decoration: none;
    }
    .footer-social-icon:hover {
      background: #ffd700;
      color: #23272f;
    }
    .footer-bottom {
      border-top: 1px solid #44495a;
      margin-top: 32px;
      padding: 18px 32px 18px 32px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-payments img {
      height: 32px;
      margin-right: 10px;
      vertical-align: middle;
      filter: grayscale(0.2) brightness(0.95);
      transition: filter 0.2s;
    }
    .footer-payments img:last-child {
      margin-right: 0;
    }
    .footer-payments img:hover {
      filter: none;
    }
    .footer-copyright {
      color: #bdbdbd;
      font-size: 0.97rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
    }
    .footer-links a {
      color: #ffd700;
      text-decoration: none;
      margin: 0 3px;
      font-size: 0.97rem;
    }
    .footer-links a:hover {
      text-decoration: underline;
      color: #fff;
    }

    /* Responsive Styles */
    @media (max-width: 900px) {
      .site-footer {
        width:auto;
      }
      
    }
    @media (max-width: 600px) {
      .footer-main {
        padding: 0 8px;
      }
      .footer-columns {
        flex-direction: column;
        gap: 10px;
      }
      .footer-col {
        min-width: 0;
        margin-bottom: 18px;
      }
      .footer-connect {
        min-width: 0;
        margin-top: 10px;
        text-align: left;
      }
      .footer-bottom {
        padding: 14px 8px;
        font-size: 0.95rem;
      }
      .footer-payments img {
        height: 26px;
        margin-right: 6px;
      }
      .footer-social-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
      }
      .footer-social {
        justify-content: center;
      }
      nav {
        position: relative;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        border-radius: 8px;
        flex-direction: column;
        min-width: 180px;
        padding: 12px 0;
        z-index: 15;
      }
      .nav-links.show {
        display: flex;
      }
      .nav-links li {
        display: block;
        margin: 0;
        padding: 8px 24px;
        border-bottom: 1px solid #eee;
      }
      .nav-links li:last-child {
        border-bottom: none;
      }
      .nav-links li a {
        font-size: 1.2rem;
        color: #005bea;
        font-family: 'Pacifico', cursive;
      }
      .nav-toggle {
        display: block;
      }
      .footer-copyright {
        justify-content: center;
      }
      .home-title span {
        font-size: 4rem;
      }
      .home-title {
        font-size: 4rem;
        margin-top: 2rem;
      }
      .floating-images {
        min-height: 0;
        margin: 0;
      }
      .py-5 {
        margin: 3rem;
      }

    }

    @media (max-width: 400px) {
      .footer-col h3, .footer-connect h3 {
        font-size: 1rem;
      }
      .footer-bottom {
        font-size: 0.92rem;
      }
    }




    body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
          font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('../images/index/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  width: 100vw;
  position: relative;
  background-blend-mode: darken;
      }
      .place-card img {
        height: 200px;
        object-fit: cover;
      }
      /* Popup styles */
      .place-popup {
        display: none;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        background: rgba(0, 0, 0, 0.85);
        color: #fff;
        padding: 16px 20px;
        border-radius: 8px;
        min-width: 220px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        pointer-events: none;
        font-size: 1rem;
      }
      .place-card {
        position: relative;
        cursor: pointer;
      }
      .place-card:hover .place-popup {
        display: block;
      }
      .cards {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .card {
        background: #ff0000;
        padding: 0.5rem;
        border-radius: 8px;
        width: 400px;
        box-shadow: 2px 2px 8px rgba(12, 173, 85, 0.1);
        transition: transform 0.3s;
      }

      .card:hover {
        transform: scale(1.05);
      }
      .show-more-link {
        color: #000000;
        text-decoration: none;
        font-weight: bold;
      }
      .show-more-link:hover {
        color: blue;
        transition: 0.5s;
      }
      nav ul li a {
        text-decoration: none;
        color: #000;

        transition: color 0.3s, transform 0.3s;
      }

    



