.creative-section {
    height: 90vh;
    display: flex;
    align-items: center;
    background: black;
    background-image: url('../image/a7c2a5077447a00d7d24d08efac1c3a8\ \(1\).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
}

.creative-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.417);
    pointer-events: none;
    z-index: 1;
}

.creative-section .home-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.creative-section .container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.creative-section .content-center {
    text-align: center;
    max-width: 800px;
    opacity: 1;
    transform: translateX(0);
}

.creative-section .badge {
    display: inline-block;
    background: linear-gradient(45deg, red, green);
    color: white;
    padding: 1rem 3rem;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    transform: scale(1);
    cursor: pointer;
    text-decoration: none;
    /* border: 1px solid; */
}


.creative-section .main-title {
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.main-title .highlight {
    background: linear-gradient(to right, red, green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, red, green);
    margin: 1.5rem 0;
    border-radius: 2px;
    transform: scaleX(1);
}

.creative-section .description {
    line-height: 1.6;
    color: #ccc;
    opacity: 1;
}

.creative-section .image-container {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
}

.creative-section .image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    max-width: 350px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(255, 0, 0, 0.244),
        0 0 80px rgba(0, 255, 51, 0.379);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.creative-section .image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(0, 255, 200, 0.3);
}

.creative-section .model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    transition: all 0.3s ease;
}

.creative-section .image-wrapper:hover .model-image {
    filter: contrast(1.2) brightness(1);
}


/* Responsive Design */