@import url("../css/common.css");
/* theme light & dark mode button */
.theme-switch {
  position: fixed;
  width: 52px;
  height: 26px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(268deg);
  z-index: 9991;
}

.theme-switch .switch {
  width: 52px;
  height: 26px;
  background: var(--black-color-2p);
  border: 1px solid var(--common-border);
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
  display: block;
}

.switch .circle {
  width: 20px;
  height: 20px;
  background: var(--white-color-p);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.3s ease;
  z-index: 5;
}

.switch .icon {
  position: absolute;
  font-size: 18px;
  color: var(--pending-textcolor);
  transition: 0.3s ease;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.switch .sun {
  right: 6px;
  opacity: 1;
}

.switch .moon {
  left: 6px;
  opacity: 0;
}

.theme-switch input:checked+.switch {
  background: var(--black-color);
}

.theme-switch input:checked+.switch .circle {
  transform: translateX(26px);
}

.theme-switch input:checked+.switch .sun {
  opacity: 0;
}

.theme-switch input:checked+.switch .moon {
  opacity: 1;
}

.btn-custom {
  padding: 12px 28px;
  border-radius: 30px !important;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
}
a,
a:focus {
  text-decoration: none;
  -webkit-text-decoration: none;
  color: #ffffff;
}
body {
  background: url(../images/background\ main.png) repeat center top
    var(--black-color);
}
.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-outline-custom {
  color: var(--white-color-p);
  border: 1px solid var(--black-color-3);
  background-color: #161d2d;
}

.btn-outline-custom:hover {
  background-color: var(--black-color-4);
  border-color: var(--white-color);
}

.btn-white-custom {
  background-color: var(--white-color);
  color: var(--black-color-2);
  border: 1px solid var(--white-color);
}

.btn-white-custom:hover {
  background-color: transparent;
  color: var(--white-color);
}
.brand-logo img {
  width: 130px;
  object-fit: cover;
}

/* Header & Navbar */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 25px 0;
  z-index: 100;
}

.brand-logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--white-color);
}

.brand-logo span {
  color: var(--white-color);
  font-weight: 300;
}

.header-phone {
  border: 1px solid var(--white-color);
  border-radius: 999px;
  padding: 4px 22px 4px 6px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white-color-p);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2px;
  gap: 14px !important;
  transition: 0.25s ease;
}
.header-phone iconify-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white-color);
  color: var(--black-color);
  font-size: 24px;
}

.header-phone:hover {
  color: var(--white-color);
  transform: translateY(-1px);
}

.menu-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: none;
  transition: transform 0.3s;
}

.menu-btn:hover {
  transform: scale(1.05);
}

/* Side Menu (Offcanvas) */
.offcanvas-dark {
  background-color: var(--black-color-1);
  color: var(--white-color);
}

.offcanvas-dark .nav-link {
  color: var(--white-color-70);
  font-size: 18px;
  padding: 23px 20px;
  transition: 0.3s all;
}

.offcanvas-dark .nav-link:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

/* Hero Section */
.hero-section {
  padding: 180px 0 100px 0;
  min-height: 65vh;
  position: relative;
  background:
    linear-gradient(90deg, var(--black-color-2) 30%, rgba(9, 15, 28, 0.4) 100%),
    url("../images/bg-hero.jpg") no-repeat center/cover;
}

.hero-badge {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Hero Form */
.lead-form-card {
  background-color: var(--black-color-2);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--black-color-3);
}

.form-label-small {
  font-size: 10px;
  color: var(--white-color-70);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

.custom-input {
  background-color: var(--black-color-1);
  border: 1px solid var(--black-color-4);
  color: var(--white-color);
  padding: 14px 20px;
  border-radius: 8px;
  width: 100%;
  font-size: 14px;
  transition: all 0.3s;
}

.custom-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.custom-input::placeholder {
  color: var(--black-color-5);
}

.phone-group {
  display: flex;
  gap: 10px;
}

.phone-code {
  width: 100px;
}

/* Curation Section */
.curation-section {
  padding: 100px 0;
}

.curation-circle {
  width: 410px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.curation-circle img {
  width: 90%;
  height: auto;
  object-fit: cover;
}

.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-circle-bg {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(13, 86, 222, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* Slider Navigation Arrows */
.slider-nav-arrows {
  display: flex;
  gap: 12px;
}

.custom-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--black-color-1);
  border: 1px solid var(--black-color-3);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 20px;
}

.custom-arrow:hover {
  background-color: var(--black-color-3);
  border-color: var(--primary-color);
}

/* Advantages Card */
.advantage-card {
  background-color: var(--black-color-1);
  border-radius: 20px;
  padding: 40px 30px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  margin: 0 10px;
  transition: transform 0.3s;
}

.advantage-card:hover {
  transform: translateY(-5px);
  background-color: var(--black-color-3);
}

.advantage-num {
  font-size: 68px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
}

/* Tabs Styling */
.nav-pills-custom .nav-link {
  background-color: transparent;
  border: 1px solid var(--black-color-5);
  color: var(--white-color);
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-pills-custom .nav-link.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Testimonial Card */
.testimonial-slide-wrap {
  margin: 0 10px;
}

.testimonial-img-box {
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
}

.testimonial-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-content-box {
  padding: 30px;
}

.testi-title-row {
  border-bottom: 1px solid var(--black-color-3);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing-container {
  background-color: #090f1c7d;
  border-radius: 30px;
  border: 1px solid var(--black-color-3);
  padding: 60px;
}

.pricing-card {
  background-color: var(--black-color-1);
  border-radius: 24px;
  border: 1px solid var(--black-color-3);
  overflow: hidden;
}

.pricing-header {
  padding: 30px;
  border-bottom: 1px solid var(--black-color-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #142342;
}

.pricing-list {
  padding: 0;
}

.pricing-list li {
  padding: 16px 30px;
  border-bottom: 1px solid var(--black-color-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--white-color-70);
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li span.val {
  color: var(--white-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Query Block */
.query-box {
  background-color: #090f1c7d;
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  border: 1px solid var(--black-color-3);
}

/* Footer */
.footer-sec {
  border-top: 1px solid var(--black-color-3);
  padding: 80px 0 20px;
  background-color: var(--black-color-2);
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--white-color-70);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.newsletter-wrapper {
  position: relative;
}

.newsletter-wrapper input {
  padding-right: 50px;
  border-radius: 30px;
}

.newsletter-wrapper button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--black-color-2);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 10px;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.footer-bottom {
  border-top: 1px solid var(--black-color-3);
  padding-top: 20px;
  margin-top: 40px;
}

/* Slick outline fix */
.slick-slide {
  outline: none;
}

@media (max-width: 991px) {
  .pricing-container {
    padding: 30px;
  }

  .hero-section {
    padding-top: 140px;
  }
}

.social-footers-home a {
  height: 34px;
  width: 34px;
  background: var(--white-color-p);
  border: 1px solid var(--white-color-p);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s;
}

.social-footers-home a:hover {
  background: transparent;
  color: var(--white-color);
}
.footer-email input {
  width: 100%;
  height: 38px;
  border-radius: 40px;
  outline: none;
  border: 1px solid var(--input-border);
  padding: 8px 30px 7px 15px;
  font-size: 13px;
  background: transparent;
  color: var(--white-color);
  font-weight: 500;
}

.footer-email button {
  position: absolute;
  right: 3px;
  top: 3px;
  border-radius: 100%;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--primary-color);
  color: var(--white-color-p);
  font-size: 24px;
}
.btn-read-more {
  background: var(--primary-color);
  color: var(--white-color-p);
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-read-more:hover {
  opacity: 0.85;
  color: var(--white-color);
}
/* Thumbnail / poster */
.vp-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px;
  border: solid 1px #ffffff1c;
}

.vp-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vp-wrapper:hover .vp-poster img {
  transform: scale(1.02);
}

/* Dark gradient at bottom for text */
.vp-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 30%,
      rgba(0, 0, 0, 0.55) 65%,
      rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
}

/* Play Button */
.vp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s;
  cursor: pointer;
}

.vp-play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.vp-wrapper:hover .vp-play-btn {
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Title block */
.vp-title-block {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  padding: 18px 20px 24px;
}

.vp-title-block h2 {
  color: var(--white-color);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.vp-title-block p {
  color: var(--white-color-70);
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.3px;
}

/* ── Actual Video (hidden until play clicked) ── */
.vp-video {
  display: none;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  object-fit: fill;
}

/* Custom Controls Bar */
.vp-controls {
  display: none;
  align-items: center;
  gap: 14px;
  background: var(--black-color-1);
  padding: 12px 18px;
  border-top: 1px solid var(--common-border);
  border-radius: 62px;
  margin-top: 12px;
}

.vp-controls.active {
  display: flex;
}

.ctrl-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition:
    color 0.2s,
    transform 0.15s;
}

.ctrl-btn:hover {
  color: var(--primary-color);
  transform: scale(1.15);
}

.ctrl-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Progress Bar */
.vp-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vp-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: var(--black-color-5);
  outline: none;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.vp-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(13, 86, 222, 0.3);
}

.vp-time {
  color: var(--white-color-70);
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
}

/* Volume */
.vp-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background: var(--black-color-5);
  outline: none;
  cursor: pointer;
  accent-color: var(--primary-color);
}

/* Fullscreen hide native controls */
video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}
