/* 
 * SkyDreamix Tech Solution - Creative Solution Page Styles
 */

.creative-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/creative-hero-v1.png') center/cover no-repeat;
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.creative-hero p {
    color: var(--white) !important;
}

.creative-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 163, 214, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 1;
}

.creative-hero .container {
    position: relative;
    z-index: 2;
}

.highlight-text {
    background: var(--primary-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-btn {
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    background: var(--primary-color);
    border: none;
    width: fit-content;
    margin: 0 auto;
}

.premium-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 10px 25px rgba(46, 163, 214, 0.3);
    color: #fff;
}

.hero-image-container {
    position: relative;
}

.accent-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), var(--highlight-color));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

.floating-animation {
    animation: floatCreative 6s ease-in-out infinite;
}

@keyframes floatCreative {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Section Styles */
.creative-section {
    position: relative;
}

.creative-hero h1 {
    color:
        var(--white);
}

.bg-light-alt {
    background-color: #f8fafc;
}

.section-tag {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
}

.tag-primary {
    color: var(--primary-color);
}

.tag-dark {
    color: var(--primary-dark);
}

.tag-purple {
    color: var(--highlight-purple);
}

.tag-highlight {
    color: var(--highlight-color);
}


.section-tag::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    vertical-align: middle;
    margin-right: 10px;
}

.section-image-box {
    position: relative;
    transition: all 0.5s ease;
}

.section-image-box img {

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.creative-section:hover .section-image-box img {
    transform: scale(1.02);

}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--primary-dark) !important;
}

.feature-list i {
    color: #6366f1;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .creative-hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
    }

    .section-content {
        padding: 40px 15px 0 !important;
        text-align: center;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }

    .section-content>*:not(.feature-list) {
        grid-column: 1 / -1;
    }

    .feature-list {
        grid-column: 2;
        justify-self: start;
        text-align: left;
        display: block;
        margin: 0 auto 30px !important;
        width: 100%;
        max-width: 380px;
    }

    .creative-section .row {
        flex-direction: column !important;
    }

    .section-image-box {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
}