/* Competitive Comparison Cards */
.vt-comparison-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
}

.vt-comparison-card {
  background: rgba(20, 20, 20, 1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%; /* Ensure card takes full width of its container */
  max-width: 100%; /* Prevent any potential overflow */
}

.vt-comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Top Header Row */
.vt-comparison-card-header {
  background: rgba(96, 38, 198, 0.2);
  padding: 16px 20px;
}

.vt-comparison-card-header h3 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  text-align: left; /* Align header text to the left as per design */
}

/* Middle Label Row */
.vt-comparison-card-label-row {
  background: rgba(18, 19, 32, 0.2);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.vt-comparison-card-label-row .vt-comparison-label {
  color: #999;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left; /* Align labels to the left */
}

/* Bottom Value Row */
.vt-comparison-card-value-row {
  background: linear-gradient(86.16deg, rgba(255, 255, 255, 0.08) 11.14%, rgba(255, 255, 255, 0.04) 113.29%);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align content to top to ensure vertical alignment */
  gap: 8px; /* Add a small gap between the two columns for clarity */
}

/* Create two distinct columns for the values */
.vt-comparison-card-value-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0; /* Allow the column to shrink if needed */
}

/* Style for the value content inside each column */
.vt-comparison-card-value-col .vt-comparison-value {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left; /* Align the actual value text to the left */
  word-wrap: break-word; /* Ensure long text wraps correctly */
  overflow-wrap: break-word; /* Ensure long text wraps correctly */
  width: 100%; /* Ensure it fills the column width */
}

.vt-comparison-card-value-row .vt-comparison-label {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left; /* Align VisualTake label to the left */
  flex-shrink: 0; /* Prevent shrinking */
  min-width: 80px; /* Ensure the label has a minimum width to prevent squishing */
}

.vt-comparison-card-value-row .vt-comparison-value {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left; /* Align the actual value text to the left */
  flex-grow: 1; /* Allow the value to take up remaining space */
  word-wrap: break-word; /* Ensure long text wraps correctly */
  overflow-wrap: break-word; /* Ensure long text wraps correctly */
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .vt-comparison-cards-wrapper {
      gap: 20px;
      padding: 0 24px;
  }
  
  .vt-comparison-card-header h3 {
      font-size: 20px;
  }
  
  .vt-comparison-card-label-row,
  .vt-comparison-card-value-row {
      padding: 14px 18px;
  }
  
  .vt-comparison-card-label-row .vt-comparison-label,
  .vt-comparison-card-value-row .vt-comparison-label {
      font-size: 14px;
  }
  
  .vt-comparison-card-value-row .vt-comparison-value {
      font-size: 15px;
  }
  
  /* On tablet, we can make the cards slightly narrower for better readability */
  .vt-comparison-card {
      max-width: 90%;
      margin: 0 auto;
  }
}

/* Mobile-specific adjustments for perfect alignment and full width */
@media (max-width: 767.98px) {
  .vt-comparison-cards-wrapper {
      padding: 0 12px; /* Slightly smaller padding on very small screens */
  }
  
  .vt-comparison-card {
      padding: 0; /* Remove any internal padding that might affect width */
      width: 100%;
      max-width: 100%;
      margin: 0; /* Ensure no margin pushes it off-center */
  }
  
  .vt-comparison-card-header {
      padding: 14px 16px;
  }
  
  .vt-comparison-card-label-row,
  .vt-comparison-card-value-row {
      padding: 10px 16px;
  }
  
  .vt-comparison-card-label-row .vt-comparison-label,
  .vt-comparison-card-value-row .vt-comparison-label {
      font-size: 10px;
  }
  
  .vt-comparison-card-value-row .vt-comparison-value {
      font-size: 12px;
      line-height: 1.4;
  }
  
  /* Ensure the entire card wrapper is centered */
  .vt-comparison-cards-wrapper {
      display: flex;
      justify-content: center;
      align-items: stretch;
  }
}

/* Ensure proper spacing for the section on smaller screens */
@media (max-width: 767.98px) {
  .vt-section {
      padding: 60px 16px;
  }
  
  .vt-section-header {
      gap: 16px;
      margin-bottom: 30px;
  }
  
  .vt-section-title1 {
      font-size: 28px !important;
      line-height: 1.3;
  }
  
  .vt-section-subtitle {
      font-size: 16px !important;
      line-height: 1.5;
  }
}

/* Features matrix Cards */
.vt-features-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px;
}

.vt-features-card {
  background: rgba(20, 20, 20, 1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%; /* Ensure card takes full width of its container */
  max-width: 100%; /* Prevent any potential overflow */
}

.vt-features-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Top Header Row */
.vt-features-card-header {
  background: rgba(0, 142, 59, 0.2);
  padding: 16px 20px;
}

.vt-features-card-header h3 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  text-align: left; /* Align header text to the left as per design */
}

/* Middle Label Row */
.vt-features-card-label-row {
  background: rgba(18, 19, 32, 0.2);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.vt-features-card-label-row .vt-features-label {
  color: #999;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left; /* Align labels to the left */
}

/* Bottom Value Row */
.vt-features-card-value-row {
  background: linear-gradient(86.16deg, rgba(255, 255, 255, 0.08) 11.14%, rgba(255, 255, 255, 0.04) 113.29%);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align content to top to ensure vertical alignment */
  gap: 8px; /* Add a small gap between the two columns for clarity */
}

/* Create two distinct columns for the values */
.vt-features-card-value-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0; /* Allow the column to shrink if needed */
}

/* Style for the value content inside each column */
.vt-features-card-value-col .vt-features-value {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left; /* Align the actual value text to the left */
  word-wrap: break-word; /* Ensure long text wraps correctly */
  overflow-wrap: break-word; /* Ensure long text wraps correctly */
  width: 100%; /* Ensure it fills the column width */
}

.vt-features-card-value-row .vt-features-label {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left; /* Align VisualTake label to the left */
  flex-shrink: 0; /* Prevent shrinking */
  min-width: 80px; /* Ensure the label has a minimum width to prevent squishing */
}

.vt-features-card-value-row .vt-features-value {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left; /* Align the actual value text to the left */
  flex-grow: 1; /* Allow the value to take up remaining space */
  word-wrap: break-word; /* Ensure long text wraps correctly */
  overflow-wrap: break-word; /* Ensure long text wraps correctly */
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .vt-features-cards-wrapper {
      gap: 20px;
      padding: 0 24px;
  }
  
  .vt-features-card-header h3 {
      font-size: 20px;
  }
  
  .vt-features-card-label-row,
  .vt-features-card-value-row {
      padding: 14px 18px;
  }
  
  .vt-features-card-label-row .vt-features-label,
  .vt-features-card-value-row .vt-features-label {
      font-size: 14px;
  }
  
  .vt-features-card-value-row .vt-features-value {
      font-size: 15px;
  }
  
  /* On tablet, we can make the cards slightly narrower for better readability */
  .vt-features-card {
      max-width: 90%;
      margin: 0 auto;
  }
}

/* Mobile-specific adjustments for perfect alignment and full width */
@media (max-width: 767.98px) {
  .vt-features-cards-wrapper {
      padding: 0 12px; /* Slightly smaller padding on very small screens */
  }
  
  .vt-features-card {
      padding: 0; /* Remove any internal padding that might affect width */
      width: 100%;
      max-width: 100%;
      margin: 0; /* Ensure no margin pushes it off-center */
  }
  
  .vt-features-card-header {
      padding: 14px 16px;
  }
  
  .vt-features-card-label-row,
  .vt-features-card-value-row {
      padding: 10px 16px;
  }
  
  .vt-features-card-label-row .vt-features-label,
  .vt-features-card-value-row .vt-features-label {
      font-size: 10px;
  }
  
  .vt-features-card-value-row .vt-features-value {
      font-size: 12px;
      line-height: 1.4;
  }
  
  /* Ensure the entire card wrapper is centered */
  .vt-features-cards-wrapper {
      display: flex;
      justify-content: center;
      align-items: stretch;
  }
}

/* Ensure proper spacing for the section on smaller screens */
@media (max-width: 767.98px) {
  .vt-section {
      padding: 60px 16px;
  }
  
  .vt-section-header {
      gap: 16px;
      margin-bottom: 30px;
  }
  
  .vt-section-title1 {
      font-size: 28px !important;
      line-height: 1.3;
  }
  
  .vt-section-subtitle {
      font-size: 14px !important;
      line-height: 1.5;
  }
}

/* Celegram section */
@media (max-width: 576px) {
.vt-hero-section3 {
  padding-top: 180px !important;
  padding-bottom: 40px;
}

.vt-hero-title4 {
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 100%;
}

.vt-hero-image3 {
  width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
  margin: 30px auto !important;
}

.vt-btn-secondary3 {
  padding: 6px 16px !important;
  font-size: 12px !important;
}
}

@media (max-width: 768px) {
.vt-celegram-description-content {
  flex-direction: column !important;
  text-align: center !important;
}

.vt-celegram-text p {
  text-align: center !important;
}

.vt-celegram-badge1,
.vt-celegram-badge2 {
  width: 90px !important;
  height: 36px !important;
  font-size: 12px !important;
}
}

@media (max-width: 991px) {
.vt-professional-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  padding: 0 16px !important;
  max-width: none !important;
}
}

@media (max-width: 576px) {
.vt-professional-grid {
  grid-template-columns: 1fr !important;
}

.vt-card1 {
  padding: 20px !important;
  border-radius: 14px;
}

.vt-card1 h3 {
  font-size: 20px !important;
}

.vt-card1 li {
  font-size: 14px !important;
}
}

.vt-about-section-full2 {
position: relative;
padding: 80px 0 180px; /* Extra bottom padding for quote boxes */
}

/* Ensure the background image matches the height of its container */
.vt-about-section-full2 .vt-section-main-content2 img {
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
}

/* Optional: Prevent overflow if needed */
.vt-about-section-full2 .vt-section-main-content2 {
  overflow: hidden;
}

/* Tablet & Mobile: Sync image height with container */
@media (max-width: 991px) {
  .vt-about-section-full2 .vt-section-main-content2 {
      min-height: 300px;
  }

  .vt-about-section-full2 .vt-section-main-content2 img {
      height: 450px !important;
      object-fit: cover;
      width: 100%;
  }

  .vt-about-section-full3 .vt-section-main-content2 img {
      height: 450px !important;
      object-fit: cover;
      width: 100%;
  }

  .vt-about-section-full3 .quote-box-container2 {
    margin-top: -120px;
  }
}

@media (max-width: 768px) {
  .vt-about-section-full2 .vt-section-main-content2 {
      min-height: 450px;
  }
}

@media (max-width: 480px) {
  .vt-about-section-full2 .vt-section-main-content2 {
      min-height: 400px;
  }
}

.quote-box-container {
position: relative !important;
top: auto !important;
bottom: auto !important;
padding: 0 16px !important;
margin-top: -60px; /* Pull up slightly under banner */
z-index: 10;
}

@media (min-width: 992px) {
/* Desktop: side-by-side quote boxes */
.quote-box-container {
  display: flex !important;
  justify-content: space-between !important;
  gap: 60px !important;
  padding: 0 120px !important;
  margin-top: -70px !important;
}
}

@media (max-width: 991px) {
  .vt-about-section-full2{
      padding-bottom: 90px !important;
  }

/* Tablet & Mobile: stack vertically */
.quote-box-container {
  flex-direction: column !important;
  gap: 24px !important;
  margin-top: -170px;
}

.vt-quote-box2 {
  width: 100% !important;
  min-width: auto !important;
}
}

@media (max-width: 576px) {
.vt-about-section-full2 .vt-section-content h2 {
  font-size: 28px !important;
  line-height: 1.2;
}

.vt-about-section-full2 .vt-section-content p {
  font-size: 14px !important;
  width: 100% !important;
}

.vt-quote-box2 h4 {
  font-size: 18px !important;
}

.vt-quote-box2 p {
  font-size: 13px !important;
}
}

/* Movycart Responsive */
@media (max-width: 576px) {  
  .vt-hero-section3 {
  padding-top: 180px !important;
  padding-bottom: 40px;
}

.vt-hero-title4 {
  font-size: 21px !important;
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 100%;
}

.vt-video-player2 {
  height: 250px !important;
  border-radius: 12px !important;
}

.vt-btn-secondary3 {
  padding: 6px 16px !important;
  font-size: 12px !important;
}
}

@media (max-width: 768px) {
.vt-celegram-description-content {
  flex-direction: column !important;
  text-align: center !important;
}

.vt-celegram-text p {
  text-align: center !important;
}

.vt-celegram-badge1,
.vt-celegram-badge2 {
  width: 90px !important;
  height: 36px !important;
  font-size: 12px !important;
}
}

@media (max-width: 1200px) {
.vt-movycart-row {
  flex-direction: column !important;
  align-items: center !important;
  gap: 20px !important;
}

.vt-movycart-column-left {
  width: 100% !important;
  height: auto !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

.vt-movycart-Card {
  width: 100% !important;
  max-width: 400px !important;
  height: auto !important;
  min-height: 200px !important;
}

.card1, .card2, .card3, .card6 {
  width: 100% !important;
  max-width: 400px !important;
}

.card-purple, .card-seamless {
  width: calc(50% - 10px) !important;
  min-height: 150px !important;
}
}

@media (max-width: 768px) {
.vt-movycart-column-left {
  flex-direction: column !important;
}

.card-purple, .card-seamless {
  width: 100% !important;
}

.vt-movycart-Card h5 {
  font-size: 18px !important;
}

.vt-movycart-Card p {
  font-size: 12px !important;
}

.card-purple h5 {
  font-size: 32px !important;
}

.card-purple .users-text {
  font-size: 16px !important;
}

.vt-movycart-grid-card h3 {
  font-size: 48px !important;
}
}

.vt-movycart-map-bg {
width: 100% !important;
height: auto !important;
}

.movycart-map {
margin: 40px auto !important;
}

@media (max-width: 768px) {
.movycart-map-content {
  padding: 15px !important;
  width: max-content;
}

.movycart-title1, .movycart-title2 {
  font-size: 24px !important;
}
}

.quote-box-container2 {
position: relative !important;
top: auto !important;
bottom: auto !important;
padding: 0 16px !important;
margin-top: -60px; /* Pull up slightly under banner */
z-index: 10;
}

@media (min-width: 992px) {
/* Desktop: side-by-side quote boxes */
.quote-box-container2 {
  display: flex !important;
  justify-content: space-between !important;
  gap: 60px !important;
  padding: 0 120px !important;
  margin-top: -70px !important;
}
}

@media (max-width: 991px) {
/* Tablet & Mobile: stack vertically */
.quote-box-container2 {
  flex-direction: column !important;
  gap: 24px !important;
  margin-top: -170px;
}

.vt-quote-box2 {
  width: 100% !important;
  min-width: auto !important;
}
}

@media (max-width: 576px) {
.vt-about-section-full2 .vt-section-content h2 {
  font-size: 28px !important;
  line-height: 1.2;
}

.vt-about-section-full2 .vt-section-content p {
  font-size: 14px !important;
  width: 100% !important;
}

.vt-quote-box2 h4 {
  font-size: 18px !important;
}

.vt-quote-box2 p {
  font-size: 13px !important;
}
}


/* Form Css */
/* === DEMO MODAL STYLES === */

.vt-demo-modal,
.vt-modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
}

/* Lock background scroll when demo modal is open */
html.vt-modal-open,
body.vt-modal-open {
  overflow: hidden;
  height: 100%;
}

/* Social Icons Responsive Size */
@media (max-width: 768px) {
.socialmedia-icon {
  width: 20px;
  height: 20px;
}

.socialmedia-icon svg {
  width: 20px;
  height: 20px;
}
}

/* Platform Preview Full Width */
@media (max-width: 991.98px) {
.vt-platform-preview-celegram,
.vt-platform-preview-movycart {
  width: 100%;
  max-width: 100%;
}
}

/* Footer Center Alignment */
@media (max-width: 768px) {
.vt-footer-copyright {
  text-align: center;
  align-items: center;
}

.vt-footer-copyright > div:first-child {
  justify-content: center;
  width: 100%;
}

.social-icons {
  justify-content: center;
  width: 100%;
  margin: 0;
}
}

.vt-modal-overlay {
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
z-index: 9998;
}

.vt-demo-modal.show,
.vt-modal-overlay.show {
display: block;
}

.vt-demo-modal-content {
position: relative;
background: rgba(15, 15, 15, 1);
border-radius: 20px;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
display: flex;
max-width: 800px;
width: 90%;
max-height: 90vh;
overflow: hidden;
margin: auto; /* Horizontal center */
position: absolute;
top: 50%; /* Vertical center */
left: 50%;
transform: translate(-50%, -50%); /* Perfect center */
backdrop-filter: blur(10px);
animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.vt-demo-close {
position: absolute;
top: 16px;
right: 20px;
font-size: 28px;
color: white;
cursor: pointer;
z-index: 10;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: background 0.2s;
}

.vt-demo-close:hover {
background: none;
}

.vt-demo-image-section {
width: 40%;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background: rgba(15,15,15,0.95);
}

.vt-demo-image-section img {
height: 100%;
border-radius: 12px;
object-fit: cover;
position: relative;
top: 0;
left: 0;
z-index: 1;
width: -webkit-fill-available;
}

.vt-demo-logo-container {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 8px;
padding: 20px;
margin-top: 30%; /* Adjust as needed to fine-tune vertical center */
margin-left: -20%;
text-align: center;
}

.vt-demo-logo-container .vt-demo-logo {
width: 86px;
height: 60px;
}

.vt-demo-logo-container h3 {
font-family: 'Satoshi', sans-serif;
font-size: 20px;
font-weight: 500;
color: white;
margin: 0;
line-height: 1.2;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Text at Bottom */
.vt-demo-text-bottom {
position: relative;
z-index: 2;
text-align: center;
color: white;
padding: 20px;
margin-bottom: 20px;
width: 100%;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.vt-demo-text-bottom p {
font-family: 'Satoshi', sans-serif;
font-size: 20px;
font-weight: 500;
margin: 0 0 8px 0;
line-height: 1.3;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.vt-demo-text-bottom small {
font-family: 'Poppins', sans-serif;
font-size: 12px;
color: rgba(255,255,255,0.7);
display: block;
text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.vt-demo-branding-overlay {
position: relative;
z-index: 2;
text-align: center;
color: white;
padding: 20px;
max-width: 80%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
}

.vt-demo-branding-overlay .vt-demo-logo {
filter: drop-shadow(0 0 4px rgba(147, 51, 234, 0.5));
}

.vt-demo-branding-overlay h3 {
font-family: 'Satoshi', sans-serif;
font-size: 18px;
font-weight: 500;
margin: 0;
line-height: 1.3;
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.vt-demo-branding-overlay p {
font-family: 'Poppins', sans-serif;
font-size: 13px;
color: rgba(255,255,255,0.7);
margin: 0;
text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.vt-demo-form-section {
width: 60%;
padding: 55px 70px 55px 20px;
display: flex;
flex-direction: column;
justify-content: center;
}

.demoform{
padding: 10px 0 10px;
}

.vt-form-group {
margin-bottom: 20px;
}

.vt-form-group label {
display: block;
font-family: 'Satoshi', sans-serif;
font-size: 12px;
color: rgba(255,255,255,0.8);
margin-bottom: 8px;
}

.vt-form-group input,
.vt-form-group textarea {
width: 100%;
padding: 12px 16px;
border: 1px solid rgba(255,255,255,0.1);
border-radius: 10px;
background: #00000033;
color: white;
font-family: 'Poppins', sans-serif;
font-size: 12px;
}

.vt-form-group input:focus,
.vt-form-group textarea:focus {
outline: none;
border-color: #7C3AED;
box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.3);
}

.vt-demo-submit-btn {
width: 100%;
padding: 14px;
border: none;
border-radius: 10px;
background: var(--gradient-primary);
color: white;
font-family: 'Poppins', sans-serif;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: opacity 0.3s;
margin-top: 50px;
}

.vt-demo-submit-btn:hover {
opacity: 0.9;
}

/* Mobile: Hide image section */
@media (max-width: 768px) {
.vt-demo-modal-content {
  flex-direction: column;
  width: 95%;
  max-width: 500px;
}

.vt-demo-image-section {
  display: none;
}

.vt-demo-form-section {
  width: 100%;
  padding: 24px 16px;
}

.vt-form-group input,
.vt-form-group textarea {
  font-size: 14px;
  padding: 10px 12px;
}
}

/* Navigation bar */
.vt-navbar {
position: relative;
background: rgba(255, 255, 255, 0.04) !important;
backdrop-filter: blur(500px) !important;
width: 100%;
height: 73px;
border-radius: 20px;
display: flex;
align-items: center;
padding: 1px;
}

.dropdown-toggle::after {
display: inline-block;
margin-left: .255em;
vertical-align: 0 !important;
border-top: none !important;
border-right: none !important;
border-bottom: 0;
border-left: none !important;
}

/* === MOBILE NAVIGATION (single, unified block) === */
@media (max-width: 991px) {
.vt-navbar {
  height: auto !important;
  padding: 0 !important;
}

/* Logo stays in navbar, but NOT inside #vtNavbar */
.vt-navbar .navbar-brand {
  padding: 16px 24px 16px 16px;
  margin: 0 !important;
  height: auto;
  z-index: 1060;
  display: flex;
  align-items: center;
}

.navbar-toggler {
  color: white; /* ensures currentColor = white for SVG */
}

.vt-close-icon {
  color: white !important;
  stroke: white !important;
}

/* Hamburger & close icons — controlled solely by aria-expanded */
.navbar-toggler .vt-hamburger-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.navbar-toggler .vt-close-icon {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1060;
  stroke: white !important;
  fill: none;
}

.navbar-toggler[aria-expanded="true"] .vt-hamburger-icon {
  display: none;
}
.navbar-toggler[aria-expanded="true"] .vt-close-icon {
  display: block;
  filter: none !important;
  stroke: white !important;
  height: 24px;
  width: 24px;
}

/* Full-screen drawer — fixed, covers entire viewport */
#vtNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #100c11;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  z-index: 1050;
}

#vtNavbar.show {
  visibility: visible;
  opacity: 1;
}

/* Push content below logo — critical fix for overlap */
#vtNavbar .navbar-nav {
  width: 100%;
  padding-top: 80px; /* > logo height + padding (24+16+24 ≈ 64 → use 80 safe) */
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Nav items */
#vtNavbar .nav-item {
  width: 100%;
}

#vtNavbar .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
  padding: 0.75rem 1.5rem !important;
  margin: 0 !important;
  width: 100%;
  text-align: left;
  display: block;
}

#vtNavbar .nav-link:hover {
  opacity: 0.8;
}

/* Dropdown toggles */
#vtNavbar .dropdown-toggle::after {
  content: ">";
  margin-left: 8px;
  font-size: 16px;
  color: white;
  vertical-align: middle;
}

/* Dropdown menus */
#vtNavbar .dropdown-menu {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  min-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

#vtNavbar .dropdown-menu .dropdown-item {
  padding-left: 1.5rem !important; /* matches nav-link */
  padding-right: 1.5rem !important;
  text-align: left !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px !important;
  background: transparent !important;
  line-height: 1.5;
}

#vtNavbar .dropdown-toggle::after {
  content: ">";
  margin-left: 8px;
  font-size: 16px;
  color: white;
  vertical-align: middle;
}

#vtNavbar .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}

#vtNavbar .nav-link {
  width: 100%;
  text-align: left;
  padding: 10px 12px 10px 20px !important;
  margin: 0 !important;
  font-size: 16px;
}

/* Ensure button looks like others */
#vtNavbar .vt-btn-primary {
  background: linear-gradient(135deg, #6a4cff, #4a3aff) !important;
  border: none !important;
  color: white !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  display: block;
  font-size: 16px;
  margin-left: 20px;
}

/* Hide desktop-only elements */
.header-cta {
  display: none !important;
}

/* Ensure container doesn’t add padding */
#vtNavbar .container-fluid {
  padding: 0 !important;
  margin: 0 !important;
}

/* Fix typo: "anchor-center" → "center" */
.vt-navbar .navbar-brand {
  align-items: center;
}
}

/* Dropdown arrows (desktop/mobile) */
.dropdown-arrow-desktop,
.dropdown-arrow-mobile {
display: inline-block;
margin-left: 4px;
font-size: 12px;
line-height: 1;
vertical-align: middle;
}

@media (max-width: 991px) {
.dropdown-arrow-desktop {
  display: none !important;
}
.dropdown-arrow-mobile {
  display: none !important;
}
}

@media (min-width: 992px) {
.dropdown-arrow-mobile {
  display: none !important;
}
.dropdown-arrow-desktop {
  display: inline-block !important;
}
}

.dropdown-arrow-desktop {
color: rgba(255, 255, 255, 0.6);
font-weight: normal;
}

.dropdown-arrow-mobile {
color: white;
font-weight: 500;
}

.nav-link.dropdown-toggle:hover .dropdown-arrow-desktop,
.nav-link.dropdown-toggle:hover .dropdown-arrow-mobile {
color: white;
}

.vt-role-slider-wrapper {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Improves iOS scroll behavior */
}

.vt-role-slider {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: grab;
}

/* Mobile: allow vertical page scroll when touching slider; horizontal swipe still works via JS */
@media (max-width: 768px) {
    .vt-role-slider-wrapper,
    .vt-role-slider,
    .vt-role-card {
        touch-action: pan-y;
    }
}

/* Tablet: reflow footer into 2 rows × 2 columns */
@media (min-width: 768px) and (max-width: 991.98px) {
  .vt-footer .row.g-4.mb-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: min-content;
    gap: 1.5rem;
  }
  .vt-footer .col-lg-3,
  .vt-footer .col-lg-2 {
    grid-column: auto;
    grid-row: auto;
  }
  /* Force order: [0] & [1] → row 1, [2] & [3] → row 2 */
  .vt-footer .col-lg-3:nth-child(1) { grid-area: 1 / 1 / auto / auto; }
  .vt-footer .col-lg-2:nth-child(2) { grid-area: 1 / 2 / auto / auto; }
  .vt-footer .col-lg-2:nth-child(3) { grid-area: 2 / 1 / auto / auto; }
  .vt-footer .col-lg-3:nth-child(4) { grid-area: 2 / 2 / auto / auto; }
}

/* Prevent background scroll on iOS/Safari when modal is open */
html.vt-modal-open,
html.vt-modal-open body {
  overscroll-behavior: none; /* Stops pull-to-refresh & bounce */
  -webkit-overflow-scrolling: auto; /* Disables inertial scroll */
  height: 100%;
  overflow: hidden !important;
}

/* Optional: disable touchmove on body when modal is open (aggressive but effective) */
html.vt-modal-open body {
  touch-action: none;
}