/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Full Height of the Page */
.full-height {
    height: 100vh;
}

/* Data Section Styles */
.data-section {
    background: linear-gradient(to bottom right, #1d3557, #457b9d); /* Blue gradient */
    color: white;
}

.data-section .btn-custom {
    background-color: #a8dadc;
    color: #1d3557;
}

/* Bridge Section Styles */
.bridge-section {
    background: linear-gradient(to bottom right, #2d6a4f, #95d5b2); /* Green gradient */
    color: white;
}

.bridge-section .btn-custom {
    background-color: #d4f1f4;
    color: #2d6a4f;
}

/* Common Button Styles */
.btn-custom {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-custom:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

/* Section Content */
.section-content {
    text-align: center;
}

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Centering the & symbol in the middle of the screen */
.and-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem; /* Adjust the font size of the & symbol */
    color: white;
    z-index: 2; /* Ensure it appears above the other sections */
    width: 100%; /* This allows it to span the full width */
    text-align: center; /* Center the & symbol horizontally */
}

/* Responsive Layout */
@media (max-width: 768px) {
    /* Stack the & symbol on smaller screens */
    .and-symbol {
        font-size: 2rem;
        top: 50%;
    }
}