.page-content{margin:0;padding:0}.page-content > *:first-child,.page-content > section:first-child,.page-content > div:first-child,.page-content > .breadcrum-area:first-child,.page-content > .section-space:first-child{margin-top:0;padding-top:0}.page-content section:first-of-type,.page-content .section:first-of-type,.page-content .breadcrum-area{margin-top:0}.page-content .breadcrum-area.innerheadbg{margin-top:0;padding-top:100px}.page-content section{padding:60px 0}.page-content section:first-child{padding-top:100px}.page-content > h1,.page-content > h2,.page-content > h3,.page-content > p,.page-content > ul,.page-content > ol{max-width:1200px;margin:0 auto;padding:0 15px}

/
* CTA Info Box - Dark Theme */
.welcome-cta {
    margin-top: 50px;
    padding: 35px 40px;
    background: var(--black-bg-2, #1f1f1f);
    backdrop-filter: blur(10px);
    border: 2px solid var(--orange-color, #ff5723);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 87, 35, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.welcome-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 87, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.welcome-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 87, 35, 0.4);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.cta-content i {
    font-size: 36px;
    color: var(--orange-color, #ff5723);
    filter: drop-shadow(0 0 10px rgba(255, 87, 35, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 87, 35, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 87, 35, 0.8));
    }
}

.cta-content p {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color, #ffffff);
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .welcome-cta {
        padding: 25px 20px;
        margin-top: 30px;
    }
    .cta-content {
        flex-direction: column;
        gap: 15px;
    }
    .cta-content i {
        font-size: 32px;
    }
    .cta-content p {
        font-size: 18px;
        text-align: center;
    }
}
