/* =========================================================
   MARS WELCOME SECTION - FULL BLEED & RESPONSIVE
   ========================================================= */

/* Forces the section to break out of any Elementor boxed containers */
.mars-welcome-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    min-height: 55vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 80px 5%; 
    position: relative; 
    background: transparent; 
    overflow: hidden; 
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.welcome-inner-wrap {
    width: 90%;
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 10;
}

/* Ambient Glowing Background Orbs */
.mars-welcome-section::before, 
.mars-welcome-section::after { 
    content: ""; 
    position: absolute; 
    filter: blur(120px); 
    opacity: 0.12; 
    z-index: 1; 
    pointer-events: none;
}
.mars-welcome-section::before { 
    width: 400px; 
    height: 400px; 
    background: #5b8def; 
    top: -120px; 
    left: -120px; 
}
.mars-welcome-section::after { 
    width: 350px; 
    height: 350px; 
    background: #7b5cff; 
    bottom: -120px; 
    right: -120px; 
}

/* Left Side - Heading */
.mars-left-content { 
    width: 35%; 
    z-index: 2; 
    animation: fadeLeft 1s ease forwards; 
}
.mars-left-content h1 { 
    font-size: 54px; 
    line-height: 1.2; 
    color: #f0f7ff; 
    margin: 0; 
    font-family: 'Orbitron', sans-serif; 
}
.mars-left-content span { 
    color: #00f5ff; 
    text-shadow: 0 0 12px rgba(0,245,255,0.6); 
}
.mars-line { 
    width: 120px; 
    height: 4px; 
    margin-top: 15px; 
    background: #00f5ff; 
    border-radius: 20px; 
}

/* Right Side - Glassmorphism Content Card */
.mars-right-content {
    width: 60%; 
    z-index: 2; 
    background: rgba(10, 12, 25, 0.85); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    padding: 45px 55px; 
    border-radius: 24px; 
    border: 2px solid rgba(0,245,255,0.35); /* Base subtle cyan border */
    box-shadow: 0 0 25px rgba(0,245,255,0.4), 0 0 60px rgba(0,245,255,0.2), inset 0 0 20px rgba(0,245,255,0.15);
    color: #ffffff; 
    animation: fadeUp 1s ease forwards;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.mars-right-content::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, #00f5ff, #7b5cff, #ff4a3f); 
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mars-right-content:hover::before {
    opacity: 1;
}

.mars-right-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,245,255,0.25);
}
.mars-right-content p { 
    color: #ffffff !important; 
    line-height: 1.8; 
    margin-top: 0;
    margin-bottom: 30px; 
    font-size: 1.2rem; 
}

/* Gradient Button */
.mars-about-btn {
    padding: 14px 32px; 
    border: none; 
    border-radius: 40px;
    background: linear-gradient(135deg, #00f5ff, #5b8def, #7b5cff); 
    color: #0f061c; 
    font-size: 16px; 
    font-weight: 700;
    cursor: pointer; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    float: right; 
    box-shadow: 0 0 12px rgba(0,245,255,0.35);
    font-family: 'Inter', sans-serif;
}
.mars-about-btn:hover { 
    transform: translateY(-3px) scale(1.03); 
    box-shadow: 0 15px 30px rgba(91,141,239,.4); 
}

/* Load Animations */
@keyframes fadeLeft { 
    from { opacity: 0; transform: translateX(-40px); } 
    to { opacity: 1; transform: translateX(0); } 
}
@keyframes fadeUp { 
    from { opacity: 0; transform: translateY(40px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* =========================================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================================= */
@media(max-width: 992px) {
    .mars-welcome-section { 
        padding: 60px 25px !important; 
        min-height: auto; 
    }
    .welcome-inner-wrap {
        flex-direction: column !important;
        gap: 30px;
    }
    .mars-left-content { 
        width: 100% !important; 
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mars-right-content { 
        width: 100% !important; 
    }
    .mars-left-content h1 { 
        font-size: 32px; 
    }
    .mars-right-content {
        padding: 25px 20px;
    }
    .mars-about-btn {
        float: right;
    }
}
