* {
      font-family: 'Poppins', sans-serif;
    }
    html {
      scroll-behavior: smooth;
      width: 100%;
      overflow-x: hidden !important; 
    }
    body {
      background-color: #f9f9f9;
      scroll-behavior: smooth;
    }

    /* Navbar */
    .navbar {
      padding: 0.5rem 1rem;
      background: #dc3545;
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
     
    }
    .navbar-brand{
      color: #ffffff !important;
      font-family: 'Poppins', sans-serif;
    }
    .navbar-brand img {
      height: 40px !important;   
      width: auto !important;
      object-fit: contain;
      margin-right: 10px;
      filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
    }

    .navbar-toggler {
      border: none;
      outline: none;
    }

    .navbar-collapse {
      text-align: center;
    }

    .nav-link {
      font-weight: 500;
      color: #ffffff !important;
    }
    .nav-link:hover {
      color: #000 !important;
      transition: 0.3s;
    }
  
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                  url('https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      color: white;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      animation: fadeInDown 1s ease;
    }
    .hero p {
      font-size: 1.2rem;
      margin-top: 10px;
    }

    /* Buttons */
    .btn-danger {
      border-radius: 30px;
      padding: 10px 25px;
      transition: all 0.3s ease;
    }
    .btn-danger:hover {
      background-color: white;
      color: #dc3545;
      transform: scale(1.05);
    }


    /* information section */
    .info-box {
        transition: all 0.3s ease;
        border-left: 5px solid #dc3545;
      }
      .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }

      .icon-circle {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
      }

      .information-list li {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.6;
        position: relative;
        padding-left: 1rem;
        word-break: break-word;
      }
      .information-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #dc3545;
        font-weight: bold;
      }

      .information-list a {
        color: #0078d7;
        text-decoration: none;
      }
      .information-list a:hover {
        text-decoration: underline;
      }

      .info-img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
      }
      .info-img:hover{
        transform:  scale(1.02) translate(2px,-4px);
      }

      .info-box h3 {
        font-size: 1.25rem;
      }


      
      @media (max-width: 768px) {
        .info-box {
          padding: 1.5rem;
          margin-bottom: 1.5rem;
        }
        h4 {
          font-size: 1.1rem;
        }
        .information-list li {
          font-size: 0.95rem;
        }

        .info-img {
          height: 300px;
        }
        .info-box h3 {
          font-size: 1.1rem;
        }
      }



    /* Section Titles */
    .section-title {
      text-align: center;
      font-weight: 700;
      margin-top: 80px;
      margin-bottom: 40px;
      color: #dc3545;
      position: relative;
    }

    .section-title::after {
      content: '';
      width: 80px;
      height: 3px;
      background-color: #dc3545;
      display: block;
      margin: 10px auto 0;
      border-radius: 10px;
    }

    /* Cards */
    .card {
      border: none;
      border-radius: 18px;
      transition: all 0.4s ease;
    }
    .card:hover {
      transform: translateY(-8px);
      /* box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
    }

    .more-pass-info{
      margin-top: 1.5rem;
      display: flex;
      justify-content: center;
    }

    #visaCarousel .card {
      border-radius: 18px;
    }

    #visaCarousel img {
      box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    }

    



    /* Laws Section */
    #laws {
      background: #fff5f5;
      padding: 60px 0;
      border-radius: 20px;
    }

    .laws-list li {
      margin: 10px 0;
      font-size: 1.1rem;
      transition: transform 0.3s ease;
    }

    .laws-list li:hover {
      transform: translate(2px, -2px);
      color: #dc3545;
    }
    /* law section 2 */
    /* Siren Title */
    .police-title {
      font-weight: 900;
      color: #dc3545;
    }

    /* LED Lights */
    .siren-light {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      display: inline-block;
      margin: 0 6px;
      animation: blinkPolice 1s infinite alternate;
    }
    .siren-light:first-child { background:red; }
    .siren-light:last-child { background:blue; animation-delay:.5s; }
    @keyframes blinkPolice {
      from { opacity:.3; transform:scale(.7); }
      to { opacity:1; transform:scale(1.3); }
    }

    /* Law Strip */
    .law-strip {
      background: #fff3f3;
      border-left: 6px solid #dc3545;
      padding: 15px 20px;
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 12px;
      border-radius: 6px;
      transition: .3s;
      opacity: 0;
      transform: translateX(-30px);
    }

    /* Activated on view */
    .law-strip.show {
      opacity: 1;
      transform: translateX(0);
    }

    /* Hover feel */
    .law-strip:hover {
      background: #ffe2e2;
      transform: translateX(6px);
      border-color: #b50000;
    }

    /* Red alert background when scrolled */
    .law-zone.alert-active {
      background: #fff0f0;
      box-shadow: inset 0 0 40px rgba(255,0,0,.3);
    }


    /* Sound playing flash indicator */
    .law-zone.sound-active {
      animation: redPulse 1s ease-in-out 3;
    }

    @keyframes redPulse {
      0% { box-shadow: inset 0 0 0 rgba(255,0,0,0.4); }
      50% { box-shadow: inset 0 0 40px rgba(255,0,0,0.6); }
      100% { box-shadow: inset 0 0 0 rgba(255,0,0,0.4); }
    }

    /* Translate Element */
    #google_translate_element {
      position: fixed;
      top: 90px;
      right: 20px;
      z-index: 1000;
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      padding: 8px;
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 25px;
      right: 25px;
      width: 55px;
      height: 55px;
      background: #dc3545;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 22px;
      color: #fff;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
      overflow: hidden;
    }

    /* Show button */
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    /* Bounce animation */
    .back-to-top:not(.launching) {
      animation: bounceButton 1.6s infinite ease-in-out;
    }

    @keyframes bounceButton {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* Rocket and arrow positioning */
    .rocket {
      position: absolute;
      opacity: 0;
      font-size: 26px;
      transition: 0.2s;
    }

    .arrow {
      transition: 0.2s;
    }

    /* Rocket launch state */
    .back-to-top.launching .arrow {
      opacity: 0;
    }

    .back-to-top.launching .rocket {
      opacity: 1;
      animation: rocketLaunch 1s ease-out forwards;
    }

    /* Rocket animation */
    @keyframes rocketLaunch {
      0% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-60px) rotate(-10deg); }
      100% { transform: translateY(-150px) rotate(-20deg); }
    }

    /* Rocket smoke */
    .back-to-top.launching::after {
      content: "💨";
      position: absolute;
      bottom: 5px;
      font-size: 20px;
      animation: smokeTrail 0.6s ease-out forwards;
    }

    @keyframes smokeTrail {
      0% { opacity: 1; transform: translateY(0); }
      100% { opacity: 0; transform: translateY(20px); }
    }

    /* Hover effect (when not launching) */
    .back-to-top:not(.launching):hover {
      background: #fff;
      color: #dc3545;
      border: 2px solid #dc3545;
      animation: none;
    }
    /* back to top button end */

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

    /* Discuss Section Styling */
    #discussion {
      border-top: 3px solid #dc3545;
      background-color: #fff;
    }

    /* Ads Placeholder Styling */
    .ads-placeholder {
      text-align: center;
      background: #f8f9fa;
      padding: 15px;
      margin: 20px 0;
      border-radius: 8px;
      border: 1px dashed #ccc;
    }
    

    /* do and dont style */
    .etiquette-section {
      background: #fafafa;
    }

    .etiquette-box {
      border-left: 5px solid #dc3545;
      transition: .3s ease;
    }

    .etiquette-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .etq-line {
      padding: 8px 0;
      font-size: 1.05rem;
      border-bottom: 1px dashed #ddd;
      position: relative;
      transition: .2s ease;
    }

    .etq-line:last-child {
      border-bottom: none;
    }

    .etq-line:hover {
      background: #f6f6f6;
      padding-left: 6px;
    }

    .etq-line.dont:hover {
      background: #ffe8e8;
    }

    .etq-line::before {
      content: "";
      position: absolute;
      left: -14px;
      top: 12px;
      width: 6px;
      height: 6px;
      background: #dc3545;
      border-radius: 50%;
      opacity: 0;
      transition: .2s;
    }

    .etq-line:hover::before {
      opacity: 1;
    }

    /* contact section button style */
    .contact-float-btn {
      display: none;
      position: fixed;
      bottom: 100px;
      right: 26px;
      background: #dc3545;
      color: #fff;
      padding: 14px 16px;
      border-radius: 50%;
      border: 2px solid #dc3545;
      font-size: 20px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.3);
      z-index: 1000;
      transition: all .3s ease;
    }

    .contact-float-btn:hover {
      background: white;
      color: #dc3545;
      transform: translate(0px ,-4px);
    }

    .contact-hint {
      position: fixed;
      bottom: 170px;
      right: 30px;
      background: #ffffff;
      color: #dc3545;
      padding: 10px 14px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
      display: none;
      opacity: 0;
      transform: translateY(10px);
      transition: .35s ease;
      z-index: 999;
    }

    .contact-hint.show {
      display: inline-block;
      opacity: 1;
      transform: translateY(0);
    }



   /* ===== Travel Tips Section ===== */
.travel-tips-section {
  background: linear-gradient(to bottom right, #fff, #f8f8f8);
}

.travel-tips-section .section-title {
  color: #dc3545;
  font-weight: 700;
  position: relative;
}

.travel-tips-section .section-title::after {
  content: '';
  width: 90px;
  height: 3px;
  background: #dc3545;
  display: block;
  margin: 10px auto;
  border-radius: 5px;
}

/* ===== Tip Card ===== */
.tip-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #dc3545;
  opacity: 0;
  transform: translateY(40px);
}

.tip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(220, 53, 69, 0.2);
}

.tip-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgba(220, 53, 69, 0.05);
  transition: height 0.4s ease;
  border-radius: 0 0 14px 14px;
}

.tip-card:hover::before {
  height: 100%;
}

/* ===== Icons ===== */
.tip-icon {
  background: #dc3545;
  color: #fff;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
}

.tip-card:hover .tip-icon {
  background: #fff;
  color: #dc3545;
  border: 2px solid #dc3545;
  transform: rotateY(180deg);
}

/* ===== Text ===== */
.tip-title {
  font-weight: 700;
  color: #212529;
  margin-bottom: 10px;
  font-size: 1.2rem;
  transition: 0.3s ease;
}

.tip-text {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.5;
}

.tip-card:hover .tip-title {
  color: #dc3545;
}



    
/* footer style */
 footer {
    background: #212529;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
  }