
/* Section Base */
.air-creative-section {
    background: #121212;
    padding: 70px 0;
    color: #e6e6e6;
    font-family: Arial, sans-serif;
}

/* Title */
.creative-title {
    text-align: center;
    font-size: 3rem;
    text-transform: uppercase;
    color: #ff7b00;
    margin-bottom: 60px;
    animation: fadeInDown 1.5s ease forwards;
}

/* Wrapper */
.creative-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 60px;
}

/* Middle neon line */
.creative-line {
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(#ff7b00, #ffa64d, #ff7b00);
    box-shadow: 0 0 15px #ff7b00;
    animation: glowPulse 4s infinite;
}

/* Blocks */
.creative-block {
    width: 45%;
}

/* Left (Image) */
.creative-img-box {
    background: #1a1a1a;
    padding: 12px;
    border-radius: 12px;
    border: 2px solid #ff7b00;
    box-shadow: 0 0 20px rgba(255,123,0,0.3);
    animation: slideLeft 1.3s ease forwards;
}

.creative-img-box img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Right (Text) */
.creative-text-box {
    animation: slideRight 1.3s ease forwards;
}

.creative-text-box h2 {
    color: #ff7b00;
    font-size: 2rem;
    margin-bottom: 15px;
}

.creative-text-box p {
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ddd;
}

/* Highlight Box */
.highlight {
    background: rgba(255,123,0,0.15);
    padding: 20px;
    border-left: 4px solid #ff7b00;
    border-radius: 6px;
    animation: fadeInUp 1.5s ease forwards;
}

.highlight h3 {
    color: #ff7b00;
    margin-bottom: 10px;
}

.highlight ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.highlight ul li {
    margin-bottom: 8px;
    color: #fff;
}

/* MAIN FLEX SECTION */
.insight-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LEFT IMAGE */
.insight-left img {
    width: 500px;   /* bigger image */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.insight-left img:hover {
    transform: scale(1.05);
}

/* VERTICAL LINE */
.vertical-line {
    width: 2px;
    height: 350px;
    background: #ff7c04;   /* orange line */
    border-radius: 10px;
}

/* RIGHT CONTENT */
.insight-right {
    flex: 1;
}

.insight-right h1 {
    font-size: 38px;
    color: #222;
    margin-bottom: 15px;
}

.insight-right p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.learn-more-btn {
    display: inline-block;
    background: #ff7c04;
    color: white;
    padding: 12px 26px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(255,124,4,0.4);
    transition: 0.3s ease;
}

.learn-more-btn:hover {
    background: #e66e02;
}

/* RESPONSIVE */
@media(max-width: 850px) {
    .insight-section {
        flex-direction: column;
        text-align: center;
    }

    .vertical-line {
        width: 100%;
        height: 2px;     /* horizontal line on mobile */
    }

    .insight-left img {
        width: 100%;
    }
}
