   /* Initial hidden state for all elements */
   .scroll-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 1.6s ease-out;
    }
    /* When element is in view */
    .scroll-visible {
    opacity: 1;
    transform: translateY(0);
    }
    /* Scale-in effect (starts small and grows to normal size) */
    .scroll-scale {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease-out, transform 1.6s ease-out;
    }
    .scroll-scaled {
    opacity: 1;
    transform: scale(1);
    }
    /* Global hover fill effect - can be applied to any element */
    .hover-fill {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s ease;
    }
    .hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #000000; /* Default fill color - black */
    transition: width 0.3s ease;
    z-index: -1;
    }
    .hover-fill:hover::before {
    width: 100%;
    }
    /* Alternative fill directions */
    .fill-rl::before {
    left: auto;
    right: 0;
    }
    .fill-bt::before {
    width: 100%;
    height: 0%;
    bottom: 0;
    top: auto;
    transition: height 0.3s ease;
    }
    .fill-bt:hover::before {
    height: 100%;
    }
    .fill-tb::before {
    width: 100%;
    height: 0%;
    transition: height 0.3s ease;
    }
    .fill-tb:hover::before {
    height: 100%;
    }
    /* Fill color variations */
    .fill-primary::before {
    background-color: #3498db;
    }
    .fill-success::before {
    background-color: #2ecc71;
    }
    .fill-danger::before {
    background-color: #e74c3c;
    }
    .fill-warning::before {
    background-color: #f39c12;
    }
    .fill-dark::before {
    background-color: #34495e;
    }
    /* Custom fill color for .rev-button */
    .rev-button.hover-fill::before {
    background-color: #000000;
    }
    /* Apply this to make buttons maintain white text on hover */
    .hover-fill:hover {
    color: white;
    }



    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fade-in {
        animation: fadeIn 1s ease-in-out;
    }
    



.effect-list li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.effect-list li.visible {
    opacity: 1;
    transform: translateY(0);
}

.dashboard-previews {
    display: none;
    opacity: 0;
    /* transform: translateY(20px); */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.dashboard-previews.active {
    display: block;
    opacity: 1;
    /* transform: translateY(0); */
}

.dashboard-previews.hidden {
    display: none;
}

.grow-card {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
 }
 
 .grow-card.show {
    opacity: 1;
    transform: translateX(0);
 }

 .landing-platform .col-md-5,
 .crm-platform .col-md-5 {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
 }
 .landing-platform .col-md-7,
 .crm-platform .col-md-7 {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
 }
 .landing-platform.show .col-md-5,
 .landing-platform.show .col-md-7,
 .crm-platform.show .col-md-5,
 .crm-platform.show .col-md-7 {
   opacity: 1;
   transform: translateX(0);
 }
 @media (max-width: 767.98px) {
    .landing-platform .col-md-5,
    .crm-platform .col-md-5,
    .landing-platform .col-md-7,
    .crm-platform .col-md-7 {
      transform: translateX(0) !important;
      opacity: 1 !important;
    }
  }
/* Ensure each section takes full width and has proper positioning */

#tab-container {
    position: relative;
    min-height: 800px;
    display: flex;
  flex-direction: column;
  align-items: center;
  gap:2px;
}

.tab-section {
    margin: 0 auto;
    background: #fff;
    border: 1px solid #DFD5D5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.6s ease, opacity 0.6s ease;
    padding: 0px 50px;
}




/* Optional: Add styles for the feature content */
.feature-content {
    position: relative; /* Ensure content is positioned relative to its parent */
    z-index: 1; /* Ensure content is above the background */
}

.feature-interface {
    position: relative; /* Same as above */
    z-index: 1; /* Ensure content is above the background */
}

/* Default styles */
.mvg-feature-card {
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
        box-sizing: border-box; /* Ensures border doesn't affect layout */
}

/* Hover effect */
.mvg-feature-card:hover {
    border: 1px solid #DFD5D5;
}

/* Active tab effect */
.mvg-feature-card.blue {
    color: white;
    background-color: #FF9314;
}

/* Content transitions */
.mvg-tab-content {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

/* Show active content */
.mvg-tab-content.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}
.feature-item:hover , .mvg-feature-card:hover {
    cursor: pointer;
}


.tab-section  .col-lg-7{
    padding-top: 50px;
    padding-bottom: 50px;
}

#tab-m-1 {
    top: 100px;
}

#tab-m-2 {
    top: 130px;
}

#tab-m-3 {
	top: 160px;;
}

#tab-m-4 {
    top: 190px;
}

.tab-section {
	position: sticky;
	top: 100px;
}

#tab-container, .row, .col-lg-7, .col-lg-5 {
    overflow: visible !important;
  }

/* body, html {
    overflow: visible !important;
}  */

@media (max-width: 480px) {
    #tab-m-1 {
        top: 10px;
    }
    
    #tab-m-2 {
        top: 10px;
    }
    
    #tab-m-3 {
        top: 10px;;
    }
    
    #tab-m-4 {
        top: 10px;
    }

    .movegistics-intro{
        background-image: none !important;
        background-color: #e8e3fd !important;
    }

    .movegistics-intro .container{
        padding: 0px !important;
    }
    #business-moves-tab-section{
        position: relative;
        min-height: 800px;
        display: flex;
        flex-direction: column;
        align-items: center;

    }
    .business-moves-tab {
        background: transparent;
        position: sticky;
        background-size: cover;
        background-color: #e8e3fd;
        padding-bottom: 10px;
        margin-top: 0px !important;
    }
    #bmoves-tab-1 {
        top: 20px;
    }
    
    #bmoves-tab-2 {
        top: 25px;
    }
    
    #bmoves-tab-3 {
        top: 25px;;
    }
    
    #bmoves-tab- {
        top: 35px;
    }

.tab-section  .col-lg-7{
    padding-top: 0px;
    padding-bottom: 0px;
}

}


@media only screen and (min-width: 768px) and (max-width: 991px) {

    .tab-section {
        position: sticky;
        top: 140px;
    }
    #tab-m-1 {
        top: 140px;
    }
    
    #tab-m-2 {
        top: 155px;
    }
    
    #tab-m-3 {
        top: 170px;;
    }
    
    #tab-m-4 {
        top: 185px;
    }
    .tab-section{
        padding: 50px 0px 50px 26px;
        height: auto;
    }
    .feature-image-mobile img{
        width: 400px;
        height: 180px;
    }
    .tab-section  .col-lg-7{
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

