/* Main Content */
#main {
    background-color: rgba(2, 2, 36, 0.8);
    color:white;
    margin-top: 65px;
    padding-top: 25px;
    padding-bottom: 40px;
    flex: 1 0 auto;
    position:relative;
}

/* Allow the main section to expand and push the footer down */
#main .container {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center; /* Center the column horizontally */
}

/* Animation */
#main .solution-workflow-text {
    opacity: 0;
    transform: translateY(20px); /* Start with a slight downward position */
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.4s; /* Slight delay for staggered effect */
}

#main .solution-box {
    padding: 15px;
    justify-content: center;
    width: 100%;
}

.solution-box h1 {
    padding-top: 15px;
}

#main p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

#main ul {
    list-style: disc;
    padding-left: 20px;
}

#main ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}

#main h2{
    text-align: center;
    
}

.solution-workflow-text {
    margin-top: 80px;
    display: flex;
    width: 100%;    
    
}

 /*.text-container {
    margin: 0 auto;
    padding-right: 30px;
    text-align: left;
 }*/

 .sol-video-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: -1;
}

.sol-background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Workflow solutions cards*/

.feature-card {
    display: flex;
    align-items: flex-start;
    border-radius: 3px;
    opacity: 0.87;
    padding-top: 20px;
}

/* Container for all partners */
.partners-details, .key-features-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* space between cards */
    justify-content: center;
}

/* Each partner card styling */
.partner-card {
    display: flex;
    align-items: flex-start;
    width: calc(50% - 10px); /* two cards per row with gap considered */
    background-color: #e3ebf7;
    color: rgb(19, 19, 19);
    opacity: 0.9;
    padding: 15px;
    border-radius: 3px;
    transition: transform 0.2s;
}

.partner-card:hover {
    transform: translateY(-2px);
}

/* Partner image styling */
.partner-image {
    width: 100px;
    height: auto;
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 4px;
}

/* Partner info text */
.partner-info h5 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.partner-info p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.4;
}
