/* App Loading State - Hide all content during loader */
.app-loading main {
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out;
}

/* WOW.js default state - let WOW.js handle animations */
.wow {
    visibility: hidden;
    animation-fill-mode: both;
    animation-duration: 0.8s;
}

/* When animations are active - WOW.js adds this */
.wow.animated {
    visibility: visible !important;
}

/* Fallback for elements that should always be visible */
.wow.fallback-visible {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Immediate visibility for non-animated content */
.no-animation .wow {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Smooth transition for main content when app loads */
main {
    transition: opacity 0.4s ease-in-out;
}

/* Ensure content is always accessible */
@media (prefers-reduced-motion: reduce) {
    .wow {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    main {
        transition: none !important;
    }
}

/* Better animation performance */
.wow {
    will-change: opacity, transform;
}

.wow.animated {
    will-change: auto;
}

/* ===============================
   MOBILE OPTIMIZATION ADDITIONS
   =============================== */

/* iOS Safari specific fixes */
@supports (-webkit-appearance: none) {
    /* Fix iOS Safari input zoom */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Fix iOS Safari button styling */
    button,
    .btn {
        -webkit-appearance: none;
        border-radius: 8px;
    }
}

/* Mobile-first improvements */
@media (max-width: 767.98px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Better touch targets */
    a, button, input, select, textarea {
        min-height: 44px;
    }
    
    /* Improve readability */
    p, li, td, th {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Mobile navigation fixes */
    .navbar-toggler {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Form improvements */
    .form-control,
    .form-select {
        font-size: 16px;
        padding: 12px 16px;
        min-height: 48px;
    }
    
    /* Button improvements */
    .btn {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Tablet landscape specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .container {
        max-width: 90%;
    }
    
    .btn {
        min-height: 44px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize images for retina displays */
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Prevent WOW.js elements from disappearing after animation */
.wow.animated.fadeInUp,
.wow.animated.fadeInLeft,
.wow.animated.fadeInRight,
.wow.animated.fadeIn {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure hero content stays visible */
.hero-content.wow.animated,
.hero-visual.wow.animated {
    visibility: visible !important;
    opacity: 1 !important;
}

.step-price-config {
    margin-bottom: 14px;
    padding: 32.5px 38px 32.5px;
}

.footer-copyright p {
    margin-bottom: 0;
    font-size: 1em;
}

/* Order Summary Styles */
.order-summary-header {
    background-color: #7f02f7 !important;
    color: #fff !important;
}

.order-summary-header * {
    color: #fff !important;
}

.order-summary-total {
    background-color: #7f02f7 !important;
    color: #fff !important;
}

/* Enterprise Modal Styles */
.enterprise-modal .modal-dialog {
    max-width: 800px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.enterprise-modal .modal-content {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background: white;
}

.enterprise-modal .modal-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.enterprise-modal .modal-header .btn-close {
    margin: 0;
    padding: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.enterprise-modal .modal-header .btn-close:hover {
    opacity: 1;
}

.enterprise-modal .modal-body {
    background: white;
}

/* Form Input Focus Effects */
.enterprise-modal .form-control:focus {
    border-color: #7f02f7;
    box-shadow: 0 0 0 0.2rem rgba(127, 2, 247, 0.15);
    outline: none;
}

.enterprise-modal .form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

/* Button Hover Effects */
.enterprise-modal .btn-primary:hover:not(:disabled) {
    background-color: #6a01d1;
    border-color: #6a01d1;
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(127, 2, 247, 0.25);
}

.enterprise-modal .btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.enterprise-modal .btn {
    transition: all 0.2s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .enterprise-modal .modal-dialog {
        margin: 0.5rem auto;
        max-width: calc(100vw - 1rem);
    }
    
    .enterprise-modal .modal-header,
    .enterprise-modal .modal-body {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .enterprise-modal .form-container {
        padding: 1.5rem !important;
    }
    
    .enterprise-modal .btn-group-mobile {
        flex-direction: column-reverse !important;
        gap: 0.75rem !important;
    }
    
    .enterprise-modal .btn-group-mobile .btn {
        width: 100% !important;
        min-width: auto !important;
        order: unset !important;
    }
}

@media (max-width: 576px) {
    .enterprise-modal .modal-dialog {
        margin: 0.25rem auto;
        max-width: calc(100vw - 0.5rem);
    }
    
    .enterprise-modal .modal-header {
        padding: 1.5rem 1rem 0 1rem !important;
    }
    
    .enterprise-modal .modal-body {
        padding: 1rem 1rem 1.5rem 1rem !important;
    }
    
    .enterprise-modal .form-container {
        padding: 1rem !important;
    }
    
    .enterprise-modal .modal-title {
        font-size: 1.25rem !important;
    }
}

/* Loading State */
.enterprise-modal .btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.enterprise-modal .spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
}

/* Form Validation */
.enterprise-modal .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.enterprise-modal .form-control.is-valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15);
}

/* Trust section styling */
.enterprise-modal .trust-section {
    transition: all 0.2s ease;
}

.enterprise-modal .trust-section:hover {
    background-color: #f1f3f4 !important;
}

.enterprise-modal .form-control {
    transition: all 0.2s ease-in-out;
}

.enterprise-modal .form-control:focus {
    border-color: #7f02f7 !important;
    box-shadow: 0 0 0 0.25rem rgba(127, 2, 247, 0.15) !important;
    background-color: #fff !important;
    transform: translateY(-1px);
}

.enterprise-modal .form-control:hover {
    border-color: #7f02f7 !important;
    background-color: #fff !important;
}

.enterprise-modal .btn {
    transition: all 0.2s ease-in-out;
    border: none;
    font-weight: 600;
}

.enterprise-modal .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.enterprise-modal .btn:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .enterprise-modal .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .enterprise-modal .modal-header,
    .enterprise-modal .modal-body > div {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

.order-summary-total * {
    color: #fff !important;
}

.custom-radio {
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    transition: transform .3s;
    outline: none;
}

.custom-radio:checked {
    background: #fff;
    border: 3px solid #7F02F7;
    box-shadow: 0 0 10px rgba(127, 2, 247, 0.5);
}

.custom-radio:checked:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #7F02F7;
    margin-top: 0.17em;
    margin-left: 0.16em;
}


#range-slider-cpu .range-slider__thumb[data-lower] {
    width: 0;
    border: 0;
}

#range-slider-cpu .range-slider__range {
    border-radius: 6px;
}

#range-slider-cpu .range-slider__range {
    background: #7f02f7;
    transition: height .3s;
}

#range-slider-cpu .range-slider__thumb {
    background: #fff;
    border: 2px solid #7F02F7;
    transition: transform .3s;
    width: 1.2em;
    height: 1.2em;
}

#range-slider-cpu .range-slider__thumb[data-active] {
    transform: translate(-50%, -50%) scale(1.20);
}

#range-slider-cpu .range-slider__range[data-active] {
    height: 16px;
}

#range-slider-ram .range-slider__thumb[data-lower] {
    width: 0;
    border: 0;
}

#range-slider-ram .range-slider__range {
    border-radius: 6px;
}

#range-slider-ram .range-slider__range {
    background: #7f02f7;
    transition: height .3s;
}

#range-slider-ram .range-slider__thumb {
    background: #fff;
    border: 2px solid #7F02F7;
    transition: transform .3s;
    width: 1.2em;
    height: 1.2em;
}

#range-slider-ram .range-slider__thumb[data-active] {
    transform: translate(-50%, -50%) scale(1.20);
}

#range-slider-ram .range-slider__range[data-active] {
    height: 16px;
}

#range-slider-storage .range-slider__thumb[data-lower] {
    width: 0;
    border: 0;
}

#range-slider-storage .range-slider__range {
    border-radius: 6px;
}

#range-slider-storage .range-slider__range {
    background: #7f02f7;
    transition: height .3s;
}

#range-slider-storage .range-slider__thumb {
    background: #fff;
    border: 2px solid #7F02F7;
    transition: transform .3s;
    width: 1.2em;
    height: 1.2em;
}

#range-slider-storage .range-slider__thumb[data-active] {
    transform: translate(-50%, -50%) scale(1.20);
}

#range-slider-storage .range-slider__range[data-active] {
    height: 16px;
}

.modal-checkout {
    margin: 30px;
}

.modal-content {
    background-color: #f1f2f4;
}

.modal-header {
    border: 0;
}

.modal-title.h4 {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin: auto;
    width: 100%;
}

.content-logo-pci {
    width: 100%;
    margin: auto;
    text-align: center;
}

.content-logo-pci > p {
    font-size: 0.6em;
    left: 10px;
    position: relative;
    top: -6px;
    display: inline;
}

.content-logo-pci > p > span {
    position: relative;
    top: 7px;
    color: #225e63;
}

.logo-pci {
    width: 100px;
}


.summary {
    width: 100%;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
    margin-bottom: 4px;
}

.total-divider {
    border-bottom: 1px solid #ccc;
    margin-bottom: 8px;
}

.total {
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 18px;
    font-weight: bold;
}

.detail-product-icon {
    float: left;
    top: 10px;
    position: relative;
    padding-right: 20px;
}

.detail-product-icon > span::before {
    font-size: 41px;
}

.loader-payment {
    width: 100%;
    margin: auto;
    text-align: center;
}

.loader-payment > button {
    width: 100%;
}

.input-cant {
    text-align: right;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
}

.btn-cant {
    width: 50px;
    height: 50px;
    margin: 0;
    padding: 0;
}

.StripeElement {
    padding-top: 24px;
}

.accordion {
    padding-top: 24px;
}

.title-checkout {
    text-align: center;
}

.text-suscription {
    color: #7f02f7;
}

.pricing-1-table {
}

.feature-table {
    padding-top: 1px;
    background-color: #fff;

}

.pricing-1-table .pricing-discount {
    top: 10px;
    right: 7px;
}

.color--pink {
    color: #7f02f7;
}

.regular-price-content {
    margin-top: 3px !important;
    margin-bottom: 0 !important;
    height: 10px;
}

.regular-price-content span {
    font-size: 22px;
    font-weight: 100;
    font-style: italic;
    display: block;
}

.regular-price-label {
    float: left;
}

.regular-price {
    font-size: 20px;
    font-weight: 100;
    font-style: italic;
    margin: auto;
    text-decoration-line: line-through;
    text-decoration-thickness: 0.04rem;
    padding-left: 12px;
    float: left;
}



.suscription--terms{
    font-size: 0.65rem;
}

.wizard-buttons {
    padding-bottom: 30px;
    float: right;
}

.wizard-tabs {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.wizard-tabs .nav-item {
    margin-bottom: -1px;
}

.wizard-tabs .nav-link {
    border: 1px solid transparent;
    border-radius: 0.25rem;
    padding: 10px 15px;
    margin-right: 2px;
    line-height: 1.5;
    color: #7f02f7;
    background-color: #fff;
    border-color: #ddd;
}

.wizard-tabs .nav-link.active,
.wizard-tabs .nav-link:hover {
    color: #495057;
    background-color: #f8f9fa;
    border-color: #ddd #ddd #fff;
}

.wizard-buttons {
    margin-top: 20px;
    text-align: center;
}

.wizard-buttons .btn {
    margin: 0 5px;
}





.op-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
}

.op-payment-confirmation {
    text-align: left;
}

.op-payment-confirmation h1 {
    color: #28a745;
    font-size: 30px;
    font-weight: 700;
}

.op-payment-details {
    background-color: #f9f9f9;
    padding: 10px;
    margin: 15px 0;
    border-left: 4px solid #28a745;
}

@media (max-width: 600px) {
    .op-container {
        width: 100%;
        padding: 10px;
    }
}


.op_input_cant{
    margin-bottom: auto;
}

.op_detail_product_feature_item{
    font-size: 14px;
    padding: 2px !important;
}

.op_detail_product_feature_text{
    font-size: 14px;
}
.op_detail_product_features_list{
    margin-left: 0;
    padding-left: 0;
}

/* Enhanced styles for purchase flow */
.checkout-container {
  padding-top: 30px;
  padding-bottom: 70px;
}

/* Make configuration card more compact */
.sticky-top {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  scrollbar-width: thin;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.sticky-top::-webkit-scrollbar {
  width: 5px;
}

.sticky-top::-webkit-scrollbar-thumb {
  background-color: rgba(127, 2, 247, 0.2);
  border-radius: 10px;
}

/* Sticky navigation bar */
.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  padding: 15px 0;
  background-color: white;
  margin-top: auto;
}

/* Compact pricing preview card */
.section-title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

/* Make the progress bar more prominent */
.progress {
  height: 8px !important;
  border-radius: 10px;
  overflow: hidden;
  background-color: #e9ecef;
}

/* Progress bar styling moved to primary-color-override.css */
.progress-bar {
  transition: width 0.5s ease;
}

/* Environment Resources Tab Redesign */
.nav-tabs {
  border-bottom: none;
  display: flex;
  margin-bottom: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-tabs .nav-item {
  flex: 1;
  text-align: center;
  margin-bottom: 0;
}

.nav-tabs .nav-link {
  border: none;
  border-radius: 6px;
  padding: 10px 5px;
  font-weight: 500;
  font-size: 14px;
  color: #555;
  transition: all 0.2s ease;
}

.nav-tabs .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.nav-tabs .nav-link.active {
  background-color: #fff;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Environment Resource Selector Custom Styling */
.env-resource-tabs.rs-nav {
  border-bottom: none;
  display: flex;
  margin-bottom: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.env-resource-tabs .rs-nav-item {
  flex: 1;
  text-align: center;
  margin: 0 2px;
}

.env-resource-tabs .rs-nav-item-active .rs-nav-item-content {
  background-color: #fff;
  color: #333 !important; 
  border-color: transparent !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.env-resource-tabs .rs-nav-item-content {
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 15px !important;
  font-weight: 500;
  font-size: 14px;
  color: #666 !important;
  transition: all 0.2s ease;
}

.env-resource-tabs .rs-nav-item-content:hover:not(.rs-nav-item-active .rs-nav-item-content) {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Environment badge styling */
.env-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 8px;
}

.env-badge-prod {
  background-color: rgba(0, 123, 255, 0.1);
  color: #0062cc;
}

.env-badge-staging {
  background-color: rgba(40, 167, 69, 0.1);
  color: #1e7e34;
}

.env-badge-int {
  background-color: rgba(255, 193, 7, 0.1);
  color: #d39e00;
}

.env-badge-dev {
  background-color: rgba(23, 162, 184, 0.1);
  color: #117a8b;
}

/* Resource slider styling */
.resource-slider-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.resource-slider-container:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* RS Slider styling moved to primary-color-override.css */
.rs-slider-handle {
  border-color: #7F02F7 !important;
}

.rs-slider-handle:hover, .rs-slider-handle:active {
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.15) !important;
}

/* Improve spacing in configuration sections */
.card-body {
  padding: 1rem;
}

/* Compact resource display */
.resource-cell {
  padding: 0.25rem;
}

/* Subtle nav tabs */
.rs-nav-subtle .rs-nav-item.rs-nav-item-active {
  color: #7F02F7;
  border-bottom-color: #7F02F7;
}

.rs-nav-subtle .rs-nav-item:hover:not(.rs-nav-item-active) {
  color: #7F02F7;
}

/* Improve card styling */
.card {
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  border: none;
}

.card-header {
  background-color: rgba(127, 2, 247, 0.03);
  border-bottom: 1px solid rgba(127, 2, 247, 0.1);
}

/* Button primary styling has been moved to primary-color-override.css */

.btn-outline-secondary:hover {
  background-color: #f5f5f5;
  color: #333;
}

/* Badge styling */
.badge-primary-light {
  background-color: rgba(127, 2, 247, 0.1);
  color: #7F02F7;
}

/* Simplified item rows */
.config-item {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background-color 0.2s ease;
}

.config-item:hover {
  background-color: rgba(127, 2, 247, 0.03);
}

.config-item:last-child {
  border-bottom: none;
}

/* Step content transitions */
.step-content {
  transition: all 0.3s ease;
}

/* More compact form styling */
.form-control {
  padding: 0.5rem 0.75rem;
}

.form-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
}

/* Price display */
.total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

/* Improved focus states */
.form-control:focus, .form-select:focus {
  border-color: #555;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

/* Radio button styling moved to primary-color-override.css */

/* Add smooth animations */
.animated-content {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Trust Badges styling */
.trust-badges {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.trust-badges .payment-icons img {
  filter: grayscale(0.5);
  transition: filter 0.3s ease;
  opacity: 0.7;
}

.trust-badges .payment-icons img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-badges .badge {
  transition: all 0.2s ease;
}

.trust-badges .badge:hover {
  background-color: rgba(127, 2, 247, 0.1);
  color: #7F02F7;
  border-color: #7F02F7;
}

/* Success Page Styling */
.payment-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Checkout Success Page Button Hover Fix */
.home-button,
.home-button:hover,
.home-button:focus,
.home-button:active,
.home-button:visited {
  color: white !important;
  text-decoration: none !important;
}

.btn-primary.home-button:hover {
  color: white !important;
  background-color: #6a01d1 !important;
  border-color: #6a01d1 !important;
}

/* Animation for success page */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card.shadow-lg {
  animation: fadeIn 0.6s ease-out;
}

.card-header.bg-success {
  background-color: #28a745 !important;
}

/* Mobile responsive fixes */
@media (max-width: 767px) {
  /* Fix feature boxes display on mobile */
  .fbox-11, .fbox-2 {
    margin-bottom: 30px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Ensure feature content is visible */
  .fbox-11 .fbox-txt, .fbox-2 .fbox-txt {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Increase font size for better readability on mobile */
  .fbox-11 .fbox-txt p, .fbox-2 .fbox-txt p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  /* Fix wrapper for features section */
  .fbox-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Ensure proper spacing */
  #features .rows-3, .row-cols-md-3 {
    row-gap: 30px !important;
  }
  
  /* Fix for Quality Control section */
  .txt-box {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .txt-box p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
  
  /* Fix for FAQs section */
  .question, .questions-holder {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .question h5, .question p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Fix for Process Steps section */
  .cbox-2, .process-step, .cbox-2-txt {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .cbox-2-txt h5, .cbox-2-txt p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
  
  /* Fix for Deployment Pipeline section */
  #deployment-pipeline, .flow-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Fix for general wow animations on mobile */
  .wow {
    visibility: visible !important;
    animation-name: none !important;
    opacity: 1 !important;
  }
  
  /* Fix image blocks on mobile */
  .img-block {
    margin-bottom: 30px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Improve section spacing on mobile */
  .section-title, .txt-block {
    margin-bottom: 30px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}