/* HERO ANIMATIONS & STYLES */

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.playfair-font {
    font-family: 'Playfair Display', serif;
    /* Ensure you have this font or a similar serif */
}

.animate-up-text {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Global Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* 1. WHY CHOOSE US - "Floating Islands" */
.creative-why-section {
    background: #fdfdfd;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Text */
.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.creative-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 50px 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.creative-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), #a8e063);
    border-radius: 50%;
    opacity: 0.1;
    transition: 0.5s;
}

.creative-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.creative-card:hover::after {
    transform: scale(5);
    opacity: 0.05;
}

.creative-icon {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

.creative-card:hover .creative-icon {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

/* 2. SEO MAGAZINELAYOUT - "Overlapping" */
.creative-seo-section {
    padding: 150px 0;
    background: #fff;
    position: relative;
}

.seo-blob-bg {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 233, 171, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.overlap-img-box {
    position: relative;
    z-index: 1;
}

.main-seo-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-badge-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 250px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.seo-content-box {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

.seo-title-decor {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #111, #444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3. SCROLLING TAGS */
.scrolling-tags-wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 60px 0;
    background: #111;
    position: relative;
    transform: skewY(-2deg);
    margin: 50px 0;
}

.scrolling-tags-inner {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

.tag-item {
    display: inline-block;
    color: rgba(255, 255, 255, 0.2);
    font-size: 4rem;
    font-weight: 900;
    margin-right: 50px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.tag-item.highlight {
    color: var(--primary);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 4. CREATIVE CTA - "Real Journey Begins" */
.creative-cta-section {
    padding: 120px 0;
    min-height: 600px;
    background: url('../images/cta_bg.png') center/cover fixed;
    /* Real Image */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creative-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darker overlay for text readability */
}

.portal-card {
    background: rgba(255, 255, 255, 0.95);
    /* Solid clean look */
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portal-card h2 {
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.portal-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* No rotating bg needed for this clean look */
.portal-card::before {
    display: none;
}

.glow-btn {
    position: relative;
    padding: 16px 40px;
    background: var(--primary);
    /* Solid Green */
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: 0.3s;
    border: none;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    z-index: 1;
}

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4);
    color: white;
}

.glow-btn:hover::before {
    width: 100%;
}

.glow-btn-outline {
    background: transparent;
    color: var(--text-dark);
    box-shadow: none;
}

.glow-btn-outline:hover {
    background: var(--text-dark);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* PROFESSIONAL FOOTER */
.professional-footer {
    background-color: #0f172a;
    /* Slate 900 */
    color: #94a3b8;
    /* Slate 400 */
    padding: 80px 0 30px;
    font-size: 14px;
    position: relative;
    z-index: 10;
}

.professional-footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.pro-footer-logo {
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
    height: 50px;
    object-fit: contain;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-link-list a:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--secondary);
    /* Gold/Yellow accent */
    font-size: 16px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .creative-why-section {
        padding: 60px 0;
    }

    .creative-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .creative-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .seo-blob-bg {
        width: 300px;
        height: 300px;
        right: -50px;
    }

    .floating-badge-card {
        position: static;
        margin-top: -30px;
        margin-left: auto;
        margin-right: auto;
        transform: none !important;
        animation: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .seo-content-box {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .creative-cta-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .portal-card {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .seo-title-decor {
        font-size: 2.5rem;
    }

    .scrolling-tags-wrapper {
        padding: 30px 0;
    }

    .tag-item {
        font-size: 2rem;
        margin-right: 30px;
    }

    .portal-card h2 {
        font-size: 24px;
    }

    .glow-btn {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
    }

    .creative-cta-section {
        background-attachment: scroll;
        /* Fix for mobile fixed bg issues */
    }
}