/* external: https://cdn-vexar.lon1.digitaloceanspaces.com/uploads/templates/sections/fbff4300-4e50-490e-af67-746cbe1634e5/style.css */
.vxr_t1_main_box {
position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #221d08 0%, #322b0f 50%, #000000 100%);
    overflow: hidden;
}

.vxr_t1_main_box::before {
content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.vxr_t1_main_box::after {
content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.vxr_t1_container {
position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.vxr_t1_content {
text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.vxr_t1_title {
font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vxr_t1_description {
font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.vxr_t1_cta_button {
display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #fd9e49 0%, #bb4602 100%);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgb(213 123 43 / 30%);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vxr_t1_cta_button::before {
content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.vxr_t1_cta_button:hover {
transform: translateY(-3px);
    box-shadow: 0 15px 40px rgb(213 123 43 / 30%);
    background: linear-gradient(135deg, #ff810d 0%, #bb2d02 100%);
}

.vxr_t1_cta_button:hover::before {
left: 100%;
}

.vxr_t1_cta_button:active {
transform: translateY(-1px);
}

/* AOS fix for button visibility */
.vxr_t1_cta_button[data-aos] {
opacity: 1 !important;
    transform: none !important;
}

.vxr_t1_cta_button[data-aos].aos-animate {
opacity: 1 !important;
}

/* Floating elements */
.vxr_t1_floating_element {
position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.vxr_t1_floating_element:nth-child(1) {
top: 10%;
    left: 10%;
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    animation: floatUp 6s ease-in-out infinite;
}

.vxr_t1_floating_element:nth-child(2) {
top: 20%;
    right: 15%;
    width: 15px;
    height: 15px;
    background: #764ba2;
    border-radius: 3px;
    animation: floatDown 8s ease-in-out infinite;
}

.vxr_t1_floating_element:nth-child(3) {
bottom: 20%;
    left: 20%;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: floatSide 7s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatDown {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
}

@keyframes floatSide {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
.vxr_t1_main_box {
        min-height: 70vh;
    }

    .vxr_t1_content {
        padding: 40px 0;
    }

    .vxr_t1_title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .vxr_t1_description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }

    .vxr_t1_cta_button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vxr_t1_container {
        padding: 0 15px;
    }

    .vxr_t1_title {
        font-size: 2rem;
    }

    .vxr_t1_description {
        font-size: 1rem;
    }

    .vxr_t1_cta_button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}