/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Parallax Section */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 27, 56, 0.7);
    z-index: 1;
}

#hero.parallax {
    background-image: url('../../fusa/img/fusa-section-1.jpg');
}

.parallax-bg-2 {
    background-image: url('../../fusa/img/fusa-section-2.jpg');
}

.parallax-bg-3 {
    background-image: url('../../fusa/img/fusa-section-3.jpg');
}

/* Hero Section */
#hero {
    color: white;
    text-align: center;
    padding: 140px 20px;
}

#hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

#hero p {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    margin-bottom: 10px;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Sections General */
section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #003366;
}

.light-text {
    color: #ffffff;
}

.subtitle {
    font-size: 1.2em;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.subtitle-black {
    font-size: 1.2em;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.section-bg {
    background-color: #f4f7f6;
}

/* Benefits Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.color-gradient-1{
        background: linear-gradient(-45deg, #f403d1, #64b5f6);

}
.color-gradient-2{
        background: linear-gradient(-45deg, #ffec61, #f321d7);

}
.color-gradient-3{
        background: linear-gradient(-45deg, #24ff72, #9a4eff);

}

#customization{
   background: linear-gradient(-45deg, #f403d1, #64b5f6); 
}

#customization h2{
color: #ffffff;
}
#customization p{
color: #ffffff;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #ffffff;
}
.feature-item p {
    color: #ffffff;
}

/* Journey Section */
.journey-timeline {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Ensures all steps have the same height */
    position: relative;
}

.journey-step {
    flex: 1;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns content to the top */
}

.journey-icon {
    background-color: #5156e9;
    border: 2px solid #007bff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
}

.journey-icon img {
    width: 50px;
    height: 50px;
}

.journey-connector {
    flex: 0.5;
    height: 2px;
    background-color: #007bff;
    align-self: center; /* Centers the connector vertically */
}

/* Core Features Section */
#core-features .container h2, #core-features .container p {
    position: relative;
    z-index: 2;
}

.features-grid-core {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item-core {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
}

/* Customization Section */
.customization-img {
    max-width: 80%;
    margin-top: 40px;
    border-radius: 8px;
}

/* Other Scopes Section */
.scopes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.scope-item {
    background: #ffffff;
    padding: 30px;
    border-left: 5px solid #007bff;
}

/* Contact Section */
#contact .container h2, #contact .container p {
    position: relative;
    z-index: 2;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .journey-timeline {
        flex-direction: column;
    }
    .journey-connector {
        width: 2px;
        height: 50px;
        flex: auto;
    }
    .scopes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #hero h1 { font-size: 2.5em; }
    section h2 { font-size: 2.2em; }
}
