/* Base Styles */
.full-page-slider-title {
  padding: 30px 0;
  text-align: center;
}

.full-page-slider-title .sec-title > div > p > span {
  font-size: clamp(28px, 4vw, 40px) !important;
  font-weight: 350 !important;
}

/* Desktop Styles */
.desktop-version {
  display: block;
}

.mobile-version {
  display: none;
}

/* Desktop Background Images */
.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
}

.bg ul {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bg ul li {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.bg ul li a {
  display: block;
  height: 100%;
  position: relative;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, .7) 100%);
}

.bg ul li a:after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 2;
  position: absolute;
  background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, rgba(14, 14, 1, 0.7) 100%);
  max-width: 499px;
}

.bg ul li a img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.bg ul li.active a img {
  opacity: 1;
  visibility: visible;
}

/* Desktop Content */
.fullpage-slider-content {
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 2;
  position: relative;
}

.fullpage-slider-content li.content-scroll {
  height: 100vh;
  padding: 50px;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  position: relative;
  max-width: 800px;
  width: 90%;
  z-index: 2;
}

.main-content-box {
  background: rgba(0, 0, 0, 0.75);
  padding: 40px;
  position: relative;
  color: white;
  backdrop-filter: blur(5px);
  border-radius: 8px;
}

/* Desktop Side Navigation */
.slider-side-arrow {
  position: absolute;
  right: 30px;
  top: 0;
  z-index: 4;
  height: 100%;
}

.slider-side-arrow ul {
  position: sticky;
  top: 96px;
  height: calc(100vh - 96px);
  list-style: none;
  margin: 0;
  padding: 80px 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.slider-side-arrow ul li {
  transition: all 0.6s ease;
  height: 34px;
  color: white;
  font-weight: 200;
  font-size: 14px;
  text-align: right;
}

.slider-side-arrow ul li.active {
  height: 87%;
}

.slider-side-arrow ul li a {
  color: white;
  display: block;
  text-decoration: none;
  transition: all 0.6s ease-in-out;
  text-transform: uppercase;
  position: relative;
}

.slider-side-arrow ul li:not(:first-child) a::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: white;
}

/* Content Styling */
.blue-highlight-box {
  position: absolute;
  top: -90px;
  right: -28px;
  background: #5558ff;
  color: white;
  padding: 25px 50px;
  font-size: 40px;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  border-radius: 4px;
}

.main-title {
  font-size: 25px;
  margin-bottom: 25px;
  line-height: 1.2;
  text-align: center;
  font-family: 'Poppins', sans-serif !important;
}

.benefits-section {
  margin-bottom: 10px;
}

.benefits-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif !important;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
  opacity: 0.9;
}

.benefits-list li:before {
  content: "•";
  color: white;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 18px;
}

.cta-button {
  position: absolute;
  bottom: -20px;
  right: -28px;
  background: #ef4444;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  z-index: 3;
  width: 275px;
  text-align: center;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  word-wrap: break-word;
  hyphens: auto;
  border-radius: 4px;
}

.cta-button:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
  color: white;
  text-decoration: none;
}

/* Mobile Styles - Simplified */
@media (max-width: 1023px) {
  .desktop-version {
    display: none;
  }
  
  .mobile-version {
    display: block;
  }
}

/* Mobile Content - Simple Stack Layout */
.mobile-slider-content {
  display: block;
}

.mobile-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  overflow: hidden;
}

.mobile-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mobile-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.mobile-content-wrapper {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 500px;
  padding: 20px;
}

.mobile-content-box {
  background: rgba(0, 0, 0, 0.85);
  padding: 30px 25px;
  border-radius: 12px;
  color: white;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-highlight-box {
  background: #5558ff;
  color: white;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(85, 88, 255, 0.3);
}

.mobile-main-title {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif !important;
  color: white;
}

.mobile-benefits-section {
  margin-bottom: 25px;
  text-align: left;
}

.mobile-benefits-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif !important;
  text-align: center;
}

.mobile-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-benefits-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
  opacity: 0.9;
  font-size: 14px;
}

.mobile-benefits-list li:before {
  content: "•";
  color: #5558ff;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 16px;
}

.mobile-cta-button {
  display: inline-block;
  background: #ef4444;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  margin-top: 15px;
}

.mobile-cta-button:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
  color: white;
  text-decoration: none;
}

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .mobile-content-wrapper {
    max-width: 600px;
  }
  
  .mobile-content-box {
    padding: 40px 35px;
  }
  
  .mobile-highlight-box {
    font-size: 22px;
    padding: 15px 25px;
  }
  
  .mobile-main-title {
    font-size: 28px;
  }
  
  .mobile-benefits-title {
    font-size: 20px;
  }
  
  .mobile-benefits-list li {
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .mobile-content-wrapper {
    width: 95%;
    padding: 15px;
  }
  
  .mobile-content-box {
    padding: 25px 20px;
  }
  
  .mobile-highlight-box {
    font-size: 16px;
    padding: 10px 15px;
    margin-bottom: 15px;
  }
  
  .mobile-main-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .mobile-benefits-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .mobile-benefits-list li {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .mobile-cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Viewport height fix for mobile browsers */
.mobile-section {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

.fullpage-slider-content li.content-scroll {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .mobile-section {
        min-height: -webkit-fill-available;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile-content-box,
    .main-content-box {
        border: 1px solid white;
    }
}

/* Print styles */
@media print {
    .desktop-version,
    .mobile-version {
        display: block !important;
    }
    
    .mobile-section,
    .content-scroll {
        height: auto !important;
        min-height: auto !important;
        page-break-inside: avoid;
    }
}

/* Ensure proper stacking contexts */
.desktop-version {
    isolation: isolate;
}

.mobile-version {
    isolation: isolate;
}
ul.fullpage-slider-content uli:first-child{
  height:100vh;
}