@font-face {
  font-family: Gill Sans Bold;
  src: url(../Gill\ Sans\ Bold.otf);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box !important;
}

body {
  background-color: #fff;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

a {
  text-decoration: none;
}

.logo {
  text-align: center;
  background: #800000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 10px 0px;
  width: 100%;
}

.top-left a {
  color: #800000;
  font-weight: 600;
  text-decoration: none;
}

.top-left a span {
  color: #007bff;
}

.top-header {
  background-color: #f8f9fa;
  font-size: 16px;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;

}

/* .banner{
  padding-top: 50px;
} */
:root {
  --marquee-height: 48px;
  --gap: 3rem;
  /* gap between repeated texts */
  --speed: 18s;
  /* lower = faster, higher = slower */
  --bg: #071024;
  --text-color: #00e0a3;
  --font-size: 1.05rem;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  /* hide overflow */
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  height: var(--marquee-height);
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
}

/* The moving track: contains two identical groups for seamless loop */
.marquee {
  display: flex;
  white-space: nowrap;
  /* animate the track by shifting it left by 50% (because we duplicate content) */
  animation: marqueeAnim linear infinite;
  animation-duration: var(--speed);
  align-items: center;
}

/* One group (will be duplicated in HTML) */
.marquee__group {
  display: inline-flex;
  gap: var(--gap);
  align-items: center;
  padding-right: 1rem;
  /* a bit of end spacing */
}

/* styling of each item/text */
.marquee__item {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.03);
  font-weight: 600;
  font-size: var(--font-size);
  letter-spacing: 0.2px;
}

/* Pause on hover/focus for accessibility */
.marquee-wrapper:hover .marquee,
.marquee-wrapper:focus-within .marquee {
  animation-play-state: paused;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
  }
}

/* Keyframes move from 0 -> -50% so duplicate group creates seamless loop */
@keyframes marqueeAnim {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* small responsive tweak */
@media (max-width:520px) {
  :root {
    --font-size: 0.95rem;
    --gap: 2rem;
    --speed: 12s;
  }

  .marquee-wrapper {
    height: 42px;
  }
}

.whole-box {
  margin: 50px 0px;
}

h2 {
  color: #d32f2f;
  font-size: 40px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  text-align: center;
}

.bg-back {
  background: url('../img/kash.webp') center center / cover no-repeat fixed !important;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 100% !important;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  flex-wrap: wrap;
  justify-content: center;
  padding: 36px 0 26px 0 !important;
  min-height: unset !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
	.sticky-footer {
  display: none;
}
.bg-img img {
  max-width: 600px;
  width: 100%;
  transition: transform 0.18s cubic-bezier(.4, 2, .6, 1), box-shadow 0.18s cubic-bezier(.4, 2, .6, 1);
  will-change: transform, box-shadow;
  position: relative;
  z-index: 2;
}

.bg-img img:hover {
  transform: scale(1.025) rotate(-1deg);
}

.bg-back::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
  pointer-events: none;
}

footer {
  background: #7a0000;
  /* dark red */
  color: #fff;
  padding: 40px 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-box {
  flex: 1 1 300px;
  background: #8b0000;
  border-radius: 12px;
  padding: 20px;
}

.footer-box h3 {
  color: #ffcc00;
  margin-bottom: 15px;
}

.footer-box p {
  line-height: 1.5;
  font-size: 15px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin: 10px 0;
  font-size: 15px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ffcc00;
}

.contact p {
  font-size: 14px;
  margin: 8px 0;
}

.enquire-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s;
}

.enquire-btn:hover {
  background: #ffaa00;
}

.footer-bottom {
  border-top: 2px solid #ffcc00;
  text-align: center;
  padding: 15px 10px;
  font-size: 16px;
  margin-top: 30px;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
  position: relative;
  padding: 15px 0;
}

.slide-track {
  display: flex;
  width: calc(250px * 14);
  /* (logo width * number of logos * 2 for duplicate) */
  animation: scroll 25s linear infinite;

}
.cont-form{
    position:relative;
    z-index:2;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    padding: 30px;
    margin-bottom:50px;
}
.bnv{
    position:relative;
    z-index:2;
}
.enb{
    color:#900;
    text-align:center;
    margin-bottom:10px;
    font-weight:600;
}
.add-box{
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    padding: 30px; 
    position:relative;
    z-index:2;
    height:450px;
    margin-bottom:50px;
}
.map{
    margin-bottom:50px;
}
.btn-warning{
    padding: 10px;
    background: #900;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}
.slide {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;

}

.slide img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;

  transition: 0.3s;
}



@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    width: 160px;
  }

  .slide-track {
    width: calc(160px * 14);
  }
}

@media (max-width: 480px) {
  .slide {
    width: 120px;
  }

  .slide-track {
    width: calc(120px * 14);
  }
}

@media(max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}

.subtitle {
  text-align: center;
  color: #1976d2;
  margin-bottom: 20px;
  font-size: 20px;
}

.pass-section {
  position: relative;
  z-index: 2;
  text-align: center;
}

.highlight {
  color: #d17900;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  background: #e0f3ff;
  color: #005fa3;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  margin: 10px 0;
  text-decoration: none;
  font-size: 14px;
}

.whatsapp-link::before {
  content: "";
  background-image: url(../img/WhatsApp.svg);
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

ul {
  margin: 20px 0;
  padding-left: 20px;
}

ul li {
  margin: 8px 0;
}

.collection {
  margin-top: 15px;
}

.collection strong {
  display: block;
  margin-bottom: 10px;
  color: #000;
}

.collection span {
  display: inline-block;
  margin: 4px 6px;
}

.collection span a {
  text-decoration: none;
  background: #e0f3ff;
  color: #005fa3;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.footer-note {
  margin-top: 20px;
  font-size: 14px;
}

.social {
  margin: 15px 0;
  text-align: center;
}

.social a {
  margin: 0 6px;
  text-decoration: none;
  font-weight: bold;
}

.social a:nth-child(1) {
  color: #1877f2;
}

.social a:nth-child(2) {
  color: #d6249f;
}

.social a:nth-child(3) {
  color: #25d366;
}

.btn-groups{
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px !important;
  font-weight: bold;
  text-decoration: none;
  margin: 10px;
  background: linear-gradient(90deg, #ffe082 60%, #b38100 100%);
  color: #684a00;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border: none;
}

.btn:hover {
  background: #b88f00;
}
.modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background: rgba(0, 0, 0, 0.6);
    }

    /* Popup content */
    .modal-content {
      background: #fff;
      margin: 5% auto;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 500px;
      position: relative;
      animation: fadeIn 0.3s ease-in-out;
    }

    /* Close button */
    .close {
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Input styles */
    .modal-content input, .modal-content textarea {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    /* Submit button */
    .modal-content button {
      width: 100%;
      padding: 12px;
      background: #0066ff;
      border: none;
      color: #fff;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
    }

    .modal-content button:hover {
      background: #0047b3;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(-30px);}
      to {opacity: 1; transform: translateY(0);}
    }
    .popup {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      justify-content: center;
      align-items: center;
    }

    /* Popup content */
    .popup-content {
      position: relative;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      max-width: 500px;
      width: 100%;
      animation: fadeIn 0.4s ease-in-out;
    }

    .popup-content img {
      width: 100%;
      display: block;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 1px;
    right: 5px;
      font-size: 22px;
      color: #fff;
      background: rgba(0,0,0,0.6);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: scale(0.8);}
      to {opacity: 1; transform: scale(1);}
    }
@media (max-width: 600px) {

  .btn {
    width: 100%;
    font-size: 14px;
  }
  h2 {
   font-size: 28px;
  }
  .top-header {
        flex-direction: column;
        text-align: center;
    }
    .sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    
     z-index: 9999;
    
  }

  .sticky-footer .footer-btn {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 0;
    color: #fff;
    transition: all 0.3s ease;
  }

  .sticky-footer .footer-btn.whatsapp {
    background: #25D366;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
.footer-btn.whatsapp img{
  margin-right: 5px;
}
  .sticky-footer .footer-btn.contact-us {
    background: #ffcc00;
    color: black;
  }

  .sticky-footer .footer-btn:hover {
    opacity: 0.9;
  }
}