/* Dark Theme and Gold Accent */
body.dark-theme {
  background: #000000;
  color: #fff;
}
.text-gold, .btn-gold, .service-icon i, .how-icon i {
  color: #f8b13d !important;
}
.btn-gold {
  background: linear-gradient(to right, #e49200, #FBF5B7, #FFC107, #FCF6BA, #d7a409);
  border: none;
  color: #000 !important;
  font-weight: 600;
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-gold:hover, .btn-gold:focus {
  box-shadow: 0 0 10px #f8b13d99;
  transform: translateY(-2px) scale(1.03);
  color: #000 !important;
  background: linear-gradient(to right, #e49200, #FBF5B7, #FFC107, #FCF6BA, #d7a409);
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: #f8b13d;
  color: #000;
  border-color: #f8b13d;
}
.bg-dark-2 {
  background: #111111;
}
.hero-section {
  position: relative;
  min-height: 95vh;
  background: #000;
}
.hero-img {
  object-fit: cover;
  height: 95vh;
  min-height: 500px;
  max-height: 100vh;
  width: 100vw;
  filter: brightness(0.7);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0,0,0,0.7) 60%, rgba(24,24,24,0.7) 100%);
  z-index: 1;
}
.display-2 {
    font-size: 3.5rem;
}
.hero-content {
    position: absolute;
    top: 0%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 99;
    max-width: 50%;
    padding: 2rem 2.5rem;
    /* background: rgba(0, 0, 0, 0.35); */
    border-radius: 18px;
    /* box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25); */
    height: 100%;
    display: flex !important;
    align-items: center;
}
.swiper-pagination.hero-pagination {
  display: none;
}
.swiper-pagination.hero-pagination-bottom {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 8px;
  z-index: 10;
  justify-content: center;
}
.swiper-pagination.hero-pagination-bottom .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 6px;
  background: #f8b13d;
  border: none;
  opacity: 0.7;
  margin: 0 2px;
  transition: background 0.2s, opacity 0.2s;
}
.swiper-pagination.hero-pagination-bottom .swiper-pagination-bullet-active {
  background: #ffd700;
  opacity: 1;
}
.app-swiper .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 8px;
  z-index: 10;
  justify-content: center;
  margin-top: 0;
}
.app-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 6px;
  background: #f8b13d;
  border: none;
  opacity: 0.7;
  margin: 0 2px;
  transition: background 0.2s, opacity 0.2s;
}
.app-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffd700;
  opacity: 1;
}
.app-swiper .swiper-wrapper {
    padding-bottom: 50px;
    padding-top: 0px;
}
@media (max-width: 767px) {
  .swiper-pagination.hero-pagination-bottom {
    bottom: 12px;
  }
}
.about-img-float {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.service-card, .how-card {
  background: #000000c5;
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #f8b13d30;
}
.service-card:hover, .how-card:hover {
  box-shadow: 0 0 16px #f8b13d44;
  transform: translateY(-6px) scale(1.03);
}
.app-section .swiper-slide img {
  border: 2px solid #f8b13d;
  background: #111;
  transition: box-shadow 0.2s, transform 0.2s;
}
.app-section .swiper-slide img:hover {
  box-shadow: 0 0 12px #0172ed99;
  transform: scale(1.05);
}
.app-swiper .swiper-pagination {
  margin-top: 16px;
}
.enquiry-form {
  background: #181818;
  border: 1px solid #222;
}
.footer-section {
  background: #000;
  border-top: 1px solid #222;
}
.footer-section a {
  color: #f8b13d;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-section a:hover {
  color: #0172ed;
}
::-webkit-scrollbar {
  width: 8px;
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #f8b13d;
  border-radius: 8px;
}
header#header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(0,0,0,0.95);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
  transition: background 0.3s, box-shadow 0.3s;
}
@media (max-width: 991px) {
  .hero-content {
    left: 3%;
    max-width: 95vw;
    padding: 1.5rem 1rem;
  }
  .hero-img {
    height: 60vh;
    min-height: 320px;
  }
}
@media (max-width: 767px) {
  .hero-content {
    top: 10%;
    left: 2%;
    max-width: 98vw;
    padding: 1rem 0.5rem;
  }
  .hero-img {
    height: 40vh;
    min-height: 180px;
  }
  .display-2 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-content .btn-gold {
    font-size: 16px;
    padding: 10px 15px;
  }
  .hero-content .btn-outline-light {
    font-size: 16px;
    padding: 10px 15px;
  }
  .hero-section {
    position: relative;
    min-height: auto;
    background: #000;
  }
}
.about-img-gallery {
  position: relative;
  width: 100%;
  min-height: 320px;
}
.about-img-gallery .main-img {
  width: 90%;
  /* border: 4px solid #f8b13d; */
  z-index: 2;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
  height: 450px;
  object-fit: cover;
}
.about-img-gallery .about-thumb {
  position: absolute;
  width: 70px;
  height: 70px;
  object-fit: cover;
  /* border: 3px solid #ffd700; */
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
  border-radius: 16px;
  opacity: 0.92;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-img-gallery .thumb1 { top: 10%; left: 70%; z-index: 3; }
.about-img-gallery .thumb2 { top: 60%; left: 60%; z-index: 3; }
.about-img-gallery .thumb3 { top: 70%; left: 10%; z-index: 3; }
.about-img-gallery .thumb4 { top: 20%; left: 0%; z-index: 3; }
.about-img-gallery .about-thumb:hover {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 4px 24px 0 #f8b13d99;
  z-index: 5;
}
.about-features li {
  font-size: 1.08rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.about-features li i {
  font-size: 1.2rem;
  color: #ffd700;
}
.services-section {
  position: relative;
  background: url('../images/banner2.jpg') center center/cover no-repeat;
  z-index: 1;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.82);
  z-index: 2;
}
.services-section > .container {
  position: relative;
  z-index: 3;
}
.how-section {
  position: relative;
  overflow: hidden;
}
.how-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #f8b13d33 0%, #000 80%);
  filter: blur(60px);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.trendy-card {
  background: #181818e6;
  border: 1.5px solid #f8b13d55;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 #f8b13d22;
  position: relative;
  overflow: visible;
  transition: box-shadow 0.2s, transform 0.2s;
}
.trendy-card:hover {
  box-shadow: 0 0 32px #f8b13d77, 0 2px 24px #0172ed33;
  transform: translateY(-8px) scale(1.04);
}
.gradient-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8b13d 0%, #ffd700 100%);
  color: #000;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 16px #f8b13d44;
  transition: background 0.2s, color 0.2s;
}
.trendy-card:hover .gradient-icon {
  /* background: linear-gradient(135deg, #0172ed 0%, #f8b13d 100%); */
  color: #fff;
}
.step-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: linear-gradient(135deg, #f8b13d 60%, #0172ed 100%);
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #f8b13d55;
  /* border: 2px solid #fff2; */
  z-index: 2;
}
.how-icon i {
    color: black !important;
}
.ad-banners-section {
  background: #0a0a0a;
}
.ad-banner-card {
  background: #181818;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 #f8b13d22;
  transition: box-shadow 0.2s, transform 0.2s;
  /* min-height: 220px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-banner-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ad-banner-card:hover img {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 0 24px #f8b13d55;
}
@media (max-width: 991px) {
  .ad-banner-card img {
    height: 160px;
  }
}
@media (max-width: 767px) {
  .ad-banner-card img {
    height: 120px;
  }
}
.contact-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #0172ed33 0%, #000 80%);
  filter: blur(80px);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.contact-card {
  background: none !important;
  border-radius: 22px;
  border: none;
  box-shadow: 0 4px 32px 0 #0172ed22;
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 340px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #181818 60%, #0172ed 100%);
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
  transition: background 0.3s;
}
.contact-card:hover .contact-card-bg {
  background: linear-gradient(135deg, #181818 40%, #f8b13d 100%);
}
.contact-card .position-relative {
  z-index: 2;
}
.contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8b13d 60%, #0172ed 100%);
  box-shadow: 0 2px 12px #f8b13d44;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.contact-details-list li {
  font-size: 1.08rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.glassy-form {
  background: linear-gradient(120deg, #181818cc 60%, #222222cc 100%);
  border: 1.5px solid #f8b13d33;
  box-shadow: 0 4px 32px 0 #f8b13d22;
  backdrop-filter: blur(6px);
  border-radius: 22px;
  z-index: 2;
}
.glassy-form input,
.glassy-form textarea {
  background: #111a;
  color: #fff;
  border: 1.5px solid #f8b13d33;
  border-radius: 10px;
  transition: border 0.2s, box-shadow 0.2s;
}
.glassy-form input:focus,
.glassy-form textarea:focus {
  border: 1.5px solid #f8b13d;
  box-shadow: 0 0 8px #f8b13d55;
  background: #181818cc;
  color: #fff;
}
.download-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.download-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #f8b13d44 0%, #07090c22 80%, #000 100%);
  filter: blur(60px);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.download-card {
  /* background: #181818e6; */
  border-radius: 28px;
  /* border: 1.5px solid #f8b13d55; */
  /* box-shadow: 0 4px 32px 0 #f8b13d22; */
  max-width: 100%;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.2s, transform 0.2s;
}
.download-card:hover {
  /* box-shadow: 0 0 32px #f8b13d77, 0 2px 24px #0172ed33; */
  transform: translateY(-6px) scale(1.03);
}
.download-logo {
  width: 200px;
  height: 90px;
  object-fit: contain;
  border-radius: 18px;
  /* background: #fff2; */
  /* box-shadow: 0 2px 16px #f8b13d44; */
}
.download-btn-animate {
  animation: pulse 1.6s infinite alternate;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 12px;
  box-shadow: 0 2px 16px #f8b13d44;
}
@keyframes pulse {
  0% { box-shadow: 0 0 16px #f8b13d44; transform: scale(1); }
  100% { box-shadow: 0 0 32px #ffd70099; transform: scale(1.04); }
}
@media (max-width: 767px) {
  .download-card {
    padding: 2rem 1rem;
  }
  .download-logo {
    width: 60px;
    height: 60px;
  }
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(0 0 0) !important;
}
.offcanvas-body li a {
    padding: 15px 15px;
}