/* Section */
.futuristic-section {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #ffffff;
    padding: 60px 20px;
    border-radius: 20px;
}

/* Typography */
.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    color: #00eaff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.highlight {
    color: #00eaff;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 20px;
}

/* Buttons */
.modern-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00eaff, #007cbb);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.modern-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Images */
.img-fluid {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.05);
}

/* Divider */
.decorative-divider {
    height: 2px;
    background: linear-gradient(to right, #00eaff, transparent);
    margin: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .modern-button {
        font-size: 0.9rem;
    }

    .img-fluid {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}





@media (max-width: 768px) {
    .row {
        flex-direction: column-reverse; /* Ensure image appears first */
        text-align: center;
    }

    .col-lg-6 {
        width: 100%;
        margin-bottom: 20px;
    }

    .image-container img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .section-text {
        font-size: 1rem;
        padding: 0 15px;
    }

    .simple-button {
        display: inline-block;
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 15px;
        width: auto;
    }

    .content {
        padding: 20px;
    }
}