/*!
Theme Name: AIODE
Author: Music Creation
Description: Unlocking the Future of Music Creation
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aiode
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* ===== AIODE HOME PAGE STYLES ===== */

/* =============================== */
/* GLOBAL RESET & TYPOGRAPHY      */
/* =============================== */

* {
    padding: 0%;
    margin: 0%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'salt' on;
}

/* Font + Design Tokens */
:root {
    --font-label: "Aiode Label", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Aiode Body", -apple-system, BlinkMacSystemFont, sans-serif;

    --aiode-bg-main: #0E0E11;
    --aiode-bg-footer: #232329;
    --aiode-text-main: #FFFFFF;
    --aiode-text-muted: #D5D6DE;

    --aiode-accent-purple: #7B21FF;
    --aiode-accent-purple-soft: #A94BFF;
    --aiode-accent-yellow: #F7B000;
    --aiode-accent-yellow-soft: #FFC83E;

    --aiode-radius-xl: 20px;
    --aiode-radius-pill: 100px;
}

/* If you don't have the custom fonts, use these fallbacks */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding-top: 55px;
}
body.admin-bar .aiode-top-bar {
    margin-top: 33px !important;
}

a {
    text-decoration: none;
}

/* =============================== */
/* GLOBAL UTILITIES (SAFE EXTRAS) */
/* =============================== */

/* Generic containers */
.aiode-container-wide {
    max-width: 1600px;
    margin: 0 auto;
}

.aiode-container-medium {
    max-width: 1340px;
    margin: 0 auto;
}

.aiode-container-narrow {
    max-width: 1180px;
    margin: 0 auto;
}

/* Dark sections */
.aiode-section-dark {
    background: var(--aiode-bg-main);
    color: var(--aiode-text-main);
}

/* Global section headings */
.aiode-section-heading-xl {
    font-size: 70px;
    line-height: 70px;
    font-weight: 700;
    color: var(--aiode-text-main);
}

.aiode-section-heading-lg {
    font-size: 44px;
    line-height: 48px;
    font-weight: 700;
    color: var(--aiode-text-main);
}

.aiode-section-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: var(--aiode-text-main);
}

/* Gradient highlight span – use in markup with class */
.aiode-gradient-highlight {
    background: linear-gradient(270deg, #AC37FF, #6721FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Reusable pill button base */
.aiode-btn-pill {
    display: inline-block;
    border-radius: var(--aiode-radius-pill);
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 15px 40px;
    border: 5px solid transparent;
    text-decoration: none;
    cursor: pointer;
	transition: 0.3s ease-in-out;
}

/* Yellow CTA variant (optional extra class) */
.aiode-btn-yellow {
    background-color: var(--aiode-accent-yellow);
    color: #0E0E11;
    border-color: var(--aiode-accent-yellow-soft);
    box-shadow: 0px 0px 20px 0px var(--aiode-accent-yellow);
	transition: 0.3s ease-in-out;
}

.aiode-btn-yellow:hover {
    background-color: var(--aiode-accent-yellow);
    border-color: var(--aiode-accent-yellow);
    color: #0E0E11;
    box-shadow: 0px 0px 0px 8px rgba(34, 34, 41, 0.67);
}

/* Purple CTA variant (optional extra class) */
.aiode-btn-purple {
    background-color: #5703D3;
    color: #ffffff;
    border: 5px solid #7C31FF;
    box-shadow: 0px 0px 44px 0px #7C31FF;
	transition: 0.3s ease-in-out;
}

/* Generic card */
.aiode-card {
    border-radius: var(--aiode-radius-xl);
    border: 1px solid #3D3D49;
    background: transparent;
}

/* Circular social dot (optional helper) */
.aiode-social-dot {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #D5D6DE;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fade-up animation utility */
.aiode-fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: aiodeFadeUp .8s ease-out forwards;
}

.aiode-fade-up.delay-1 {
    animation-delay: .15s;
}

.aiode-fade-up.delay-2 {
    animation-delay: .30s;
}

.aiode-fade-up.delay-3 {
    animation-delay: .45s;
}

@keyframes aiodeFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================== */
/* TOP BAR & HEADER                */
/* =============================== */

/* Yellow Notice Bar */

.aiode-top-bar {
    background: #f6a700;
    color: #151515;
    text-align: center;
    font-size: 18px;
    padding: 8px 0;
    font-family: "Aiode Body" sans-serif;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    overflow: hidden;
}

.topbar {
    background: #ffb703;
    padding: 10px 15px;
    font-family: Arial, sans-serif;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.topbar .text {
    font-size: 14px;
    color: #000;
}

.gift {
    font-size: 18px;
}

.countdown {
    display: flex;
    gap: 6px;
}

.countdown div {
    background: rgba(255, 255, 255, 0.4);
    padding: 5px 8px;
    border-radius: 4px;
    text-align: center;
    min-width: 40px;
}

.countdown span {
    font-weight: bold;
    font-size: 14px;
}

.countdown small {
    display: block;
    font-size: 10px;
}


.countdown-bar {
    display: flex;
    align-items: center;
    gap: 1px;
    font-family: Arial, sans-serif;
}

.time-box {
    background: #d39906;
    padding: 6px 10px;
    border-radius: 6px;
    min-width: 30px;
    text-align: center;
    color: #000;
}

.time-box span {
    font-size: 14px;
    font-weight: bold;
}

.time-box small {
    font-size: 15px;
    margin-left: 2px;
    font-weight: bold;

}

.colon {
    font-weight: bold;
    font-size: 14px;
    color: #000;
}


/* Header Bar */

/* =========================
   HEADER – DESKTOP
========================= */

.aiode-site-header {
    background: #111116;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.aiode-site-header-inner {
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 0 100px;
}

/* Left group: logo + nav */
.aiode-site-branding--aiode-header-nav--group {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo (text logo in your case) */
.aiode-site-branding a {
    color: #fff;
    text-decoration: none;
}
.aiode-site-branding a h3 {
    color: #fff;
    text-decoration: none;
	font-family: "Aiode Body", Sans-serif;
}

/* Menu – desktop */
.aiode-header-nav ul {
    display: flex;
    margin: 0;
    padding: 20px 0;
}

.aiode-header-nav ul li {
    list-style: none;
    margin-left: 25px;
}

.aiode-header-nav ul li:first-child {
    margin-left: 0;
}

.aiode-header-nav ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

/* underline from center */
.aiode-header-nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform .35s ease;
}

.aiode-header-nav ul li a:hover::after,
.aiode-header-nav ul li a:focus::after {
    transform: translateX(-50%) scaleX(1);
}

.aiode-header-nav ul li a:hover {
    color: #fff;
}

/* Desktop Buttons */
.aiode-global-try-now--aiode-global-login--btn {
    display: inline-flex;
    align-items: center;
}

.aiode-global-try-now--aiode-global-login--btn a {
    /* margin-left: 15px; */
    /* text-decoration: none; */
    /* font-weight: 600; */
    /* border-radius: 40px; */
    /* padding: 10px 28px; */
    /* border: 1px solid #6b15ff; */
}

/* TRY NOW BUTTON (Purple Glow) */
.aiode-branded-btn {
        font-family: "Aiode Label", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background-color: #5703D3;
    color: #ffffff;
    border: 4px solid #7C31FF;
    border-radius: 100px;
    box-shadow: none;
    outline: none;
    min-width: 165px;
    padding: 13px 25px;
    box-shadow: 0px 0px 44px 0px #7C31FF;
}

/* =========================
   HAMBURGER BUTTON
========================= */

.aiode-menu-toggle {
    display: none;
    /* mobile only */
    width: 32px;
    height: 26px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.aiode-menu-line {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
}

.aiode-menu-line+.aiode-menu-line {
    margin-top: 5px;
}

/* X animation when menu open */
.aiode-menu-toggle.is-open .aiode-menu-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.aiode-menu-toggle.is-open .aiode-menu-line:nth-child(2) {
    opacity: 0;
}

.aiode-menu-toggle.is-open .aiode-menu-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   MOBILE SLIDE-IN MENU
========================= */

body.aiode-menu-open {
    overflow: hidden;
}

/* hidden on desktop */
.aiode-mobile-menu {
    display: none;
}

@media (max-width: 767px) {

    body {
        padding-top: 110px;
    }

    .aiode-global-try-now--aiode-global-login--btn .aiode-alternative-btn {
        display: none;
    }

    .aiode-site-header-inner {
        max-width: 100%;
        padding: 0 16px;
    }

    .aiode-site-branding--aiode-header-nav--group {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    /* show hamburger on mobile */
    .aiode-menu-toggle {
        display: block;
    }

    /* hide desktop nav and buttons */
    .aiode-header-nav {
        display: none;
    }

    .aiode-global-try-now--aiode-global-login--btn {
        display: none;
    }

    /* overlay base */
    .aiode-mobile-menu {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
        z-index: 9999;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
    }

    .aiode-mobile-menu-inner {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 80%;
        max-width: 320px;
        background: #111116;
        padding: 24px 20px 32px;
        transform: translateX(-100%);
        transition: transform .35s ease;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* when open */
    .aiode-mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .aiode-mobile-menu.is-open .aiode-mobile-menu-inner {
        transform: translateX(0);
    }

    /* header inside popup */
    .aiode-mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .aiode-mobile-logo a {
        color: #fff;
        font-weight: 600;
        text-decoration: none;
        font-size: 18px;
    }

    .aiode-menu-close {
        width: 26px;
        height: 26px;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .aiode-menu-close span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 999px;
    }

    .aiode-menu-close span:nth-child(1) {
        transform: rotate(45deg) translateY(1px);
    }

    .aiode-menu-close span:nth-child(2) {
        transform: rotate(-45deg) translateY(-1px);
    }

    /* mobile nav menu */
    .aiode-mobile-nav ul {
        list-style: none;
        margin: 24px 0 0;
        padding: 0;
    }

    .aiode-mobile-nav li+li {
        margin-top: 10px;
    }

    .aiode-mobile-nav a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .aiode-mobile-nav a:hover {
        opacity: 0.8;
    }

    /* mobile CTA buttons */
    .aiode-mobile-cta {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .aiode-mobile-cta .aiode-branded-btn,
    .aiode-mobile-cta .aiode-alternative-btn {
        width: 100%;
        text-align: center;
        border-radius: 40px;
        padding: 12px 20px;
        border-width: 1px;
        border-style: solid;
        border-color: #6b15ff;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 0.08em;
    }

    .aiode-mobile-cta .aiode-alternative-btn {
        background: transparent;
    }
}

/* optional tablet tweak */
@media (min-width: 768px) and (max-width: 991px) {
    .aiode-site-header-inner {
        max-width: 100%;
        padding: 0 24px;
    }

    .aiode-header-nav ul li a {
        font-size: 16px;
    }
}


/* Main content spacing */
.site-main {
    padding-top: 0;
    /* Since we have top bar */
}

/* =============================== */
/* HERO / BANNER                   */
/* =============================== */


/* =============================== */
/* MOBILE RESPONSIVE HEADER        */
/* =============================== */

@media (max-width: 767px) {

    .aiode-site-header-inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .aiode-site-branding {
        margin-bottom: 5px;
    }

    .aiode-header-nav ul {
        padding: 10px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .aiode-header-nav ul li {
        margin: 5px 12px;
    }

    .aiode-header-nav ul li a {
        font-size: 14px;
    }

    .aiode-global-try-now--aiode-global-login--btn {
        margin-top: 8px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .aiode-global-try-now--aiode-global-login--btn a {
        margin-left: 8px;
        margin-right: 8px;
        padding: 8px 20px;
        font-size: 12px;
    }
}

/* Hero Container */
/* ----------------------------------------------------------
 start the banner 
 -----------------------------------------------------------*/

#banner {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(180deg, #FF000000 0%, #000000 100%);
}

.banner-content h1 {
    font-size: 90px;
    line-height: 90px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #FFFFFF;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 60px;
}

#yellow-button {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background-color: #F7B000;
    color: #0E0E11;
    border: 5px solid #FFC83E;
    border-radius: 100px;
    box-shadow: none;
    outline: none;
    min-width: 180px;
    padding: 13px 25px;
    box-shadow: 0px 0px 20px 0px #F7B000;
    border-style: solid;
    padding: 15px 55px 15px 55px;
    transition: 0.2s ease-in-out;
}

#yellow-button:hover {
    background-color: #F7B000;
    border: 5px solid #F7B000;
    color: #0E0E11;
    box-shadow: 0px 0px 0px 8px rgba(34, 34, 41, 0.67);
}

#yellow-button:hover {
    background: #ffa600;
}

.banner-content p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 20px;
}


/* Mouse Scroll Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

.scroll-text {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* =========================================== */
/* SECTION 2: EXPERIENCE (IMAGE / VIDEO)       */
/* =========================================== */

#sectow {
    padding-top: 100px;
    overflow: hidden;
    background: #000000;
}

#sectow .sectow-container {
    margin: 0 auto;
    max-width: 1600px;
    /* as you requested */
}

/* Title */
#sectow .sectow-title {
    max-width: 750px;
    margin: 0 auto 100px;
}

#sectow .sectow-title-heading {
    color: #FFFFFF;
    font-size: 70px;
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

#sectow .sectow-title-heading span {
    background: linear-gradient(270deg, #AC37FF, #6721FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Rows (alternate layout) */

#sectow .sectow-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding-top: 110px;
}

#sectow .sectow-row:first-of-type {
    padding-top: 0;
}

/* Text column = 40% */
#sectow .sectow-row-content {
    width: 40%;
    padding: 65px 130px 0 0;
    /* text left, media right by default */
}

#sectow .sectow-row-content h3 {
    color: #FFFFFF;
    font-size: 70px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 12px;
}

#sectow .sectow-row-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: #FFFFFF;
}

/* Media column = 60% */
#sectow .sectow-row-media {
    width: 60%;
    padding: 20px;
}

#sectow .sectow-row-media img,
#sectow .sectow-row-media video {
    width: 100%;
    display: block;
}

/* Video border style (same as your original) */
#sectow .sectow-row-media video {
    border: 7px solid #332B3C;
    border-radius: 15px;
}

/* Alternate rows:
   Even rows = media left, text right
*/
#sectow .sectow-row.sectow-row--reverse {
    flex-direction: row-reverse;
}

#sectow .sectow-row.sectow-row--reverse .sectow-row-content {
    padding: 65px 0 0 130px;
    /* now text on right side */
}

/* Button */
#sectow .sectow-button-wrap {
    margin: 100px auto;
    width: fit-content;
}

#purple-button {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background-color: #5703D3;
    color: #ffffff;
    border: 5px solid #7C31FF;
    border-radius: 100px;
    outline: none;
    min-width: 165px;
    padding: 13px 25px;
    box-shadow: 0px 0px 44px 0px #7C31FF;
    transition: 0.2s ease-in-out;
}

#purple-button:hover {
    background-color: #6F00FF;
    border: 5px solid #6F00FF;
    color: #ffffff;
    box-shadow: 0px 0px 0px 10px rgba(34, 34, 41, 0.67);
}

/* =============================== */
/* FOOTER                          */
/* =============================== */

/* ----------------------------------------------------------
   FOOTER
-----------------------------------------------------------*/
footer {
    overflow: hidden;
}

.aiode-site-footer {
    background: #232329;
    /* dark footer bg */
    color: #ffffff;
    padding: 60px 60px 40px;
}

.aiode-site-footer .container-fluid {
    max-width: 1720px;
    margin: 0 auto;
}

/* Layout: left (logo + menus + copyright) / right (buttons + social) */
.aiode-site-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

/* ----------------- Left side ----------------- */
.aiode-site-footer-left {
    flex: 1 1 50%;
    min-width: 260px;
}

/* Logo / site name – style similar to screenshot */
.aiode-site-branding a {
    font-size: 40px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 0.06em;
    font-family: "Aiode Heading", Sans-serif;
    font-feature-settings: 'salt' on;
}

/* Footer menus */
.aiode-footer-nav {
    margin-top: 40px;
    display: flex;
    gap: 80px;
}

/* Make menus vertical lists */
.aiode-footer-nav-left ul,
.aiode-footer-nav-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aiode-footer-nav-left li,
.aiode-footer-nav-right li {
    margin-bottom: 6px;
}

.aiode-footer-nav-left a,
.aiode-footer-nav-right a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.aiode-footer-nav-left a:hover,
.aiode-footer-nav-right a:hover {
    opacity: 0.8;
}

/* Copyright */
.aiode-copyright-text {
    margin-top: 40px;
}

.aiode-copyright-text p {
    font-size: 18px;
    opacity: 0.8;
    margin: 0;
	letter-spacing: 0;
}

/* ----------------- Right side ----------------- */
.aiode-site-footer-right {
    flex: 0 0 auto;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Buttons (TRY NOW / LOG IN) */
.aiode-global-try-now--aiode-global-login--btn {
    display: inline-flex;
    gap: 20px;
}

.aiode-global-try-now--aiode-global-login--btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* padding: 12px 40px; */
    /* border-radius: 999px; */
    /* font-size: 14px; */
    /* font-weight: 600; */
    /* letter-spacing: 0.16em; */
    /* text-transform: uppercase; */
    /* text-decoration: none; */
}

/* TRY NOW = filled purple with glow */
.aiode-branded-btn {
    background: #7B21FF;
    border: 2px solid #A94BFF;
    color: #ffffff;
    box-shadow: 0 0 28px rgba(123, 33, 255, 0.8);
}

/* LOG IN = outline purple */
.aiode-alternative-btn {
    background: transparent;
    border: 2px solid #7B21FF;
    color: #ffffff;
    box-shadow: none;
}

.aiode-branded-btn:hover,
.aiode-alternative-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(123, 33, 255, 0.9);
}

/* Social icons row (bottom-right) */
.aiode-global-social-media-links {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 240px;
}

/* Circular grey background */
.aiode-global-social-media-links-item {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #D5D6DE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aiode-global-social-media-links-item img {
    max-width: 30px;
    max-height: 30px;
    display: block;
}

/* ----------------- Responsive ----------------- */
@media (max-width: 768px) {
    .aiode-site-footer {
        padding: 40px 20px 30px;
    }

    .aiode-site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .aiode-site-footer-right {
        align-items: flex-start;
    }

    .aiode-global-try-now--aiode-global-login--btn {
        margin-bottom: 30px;
    }

    .aiode-global-social-media-links {
        justify-content: flex-start;
    }
}

/* ========================================= */
/* SECTION 2 RESPONSIVE                      */
/* ========================================= */

/* Basic responsive */
@media (max-width: 1024px) {
    #sectow .sectow-title-heading {
        font-size: 46px;
        line-height: 52px;
    }

    #sectow .sectow-row,
    #sectow .sectow-row.sectow-row--reverse {
        flex-direction: column;
        padding-top: 60px;
    }

    #sectow .sectow-row-content,
    #sectow .sectow-row.sectow-row--reverse .sectow-row-content {
        width: 100%;
        padding: 0 20px 20px;
    }

    #sectow .sectow-row-content h3 {
        font-size: 40px;
        line-height: 44px;
    }

    #sectow .sectow-row-media {
        width: 100%;
        padding: 0 20px 20px;
    }
}

/* ----------------------------------------------------------
 Start the secthree 
 -----------------------------------------------------------*/

#secthree {
    width: 100%;
    background: #0E0E11;
    padding: 80px 10px;
    overflow: hidden;
}

#secthree .secthree-container {
    display: flex;
    max-width: 1340px;
    margin: 0 auto;
}

/* ----------------------------- start the row one1 ----------------------------------- */
#secthree .secthree-container .secthree-row1 {
    width: 50%;
}

#secthree .secthree-container .secthree-row1 .secthree-row1container1 {
    background-image:
        linear-gradient(180deg, #531ec500 0%, #2B116480 100%),
        url(https://aiode.com/wp-content/uploads/2024/09/Block-1.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px 20px 0px 0px;
    padding: 250px 100px 100px 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#secthree .secthree-container .secthree-row1 .secthree-row1container1::before {
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(180deg, #531ec500 0%, #2B116480 100%);
}

#secthree .secthree-container .secthree-row1 .secthree-row1container1 .box h3 {
    font-weight: 700;
    letter-spacing: 0.36px;
    font-size: 70px;
    line-height: 70px;
    color: #FFFFFF;
    margin: 0;
}

#secthree .secthree-container .secthree-row1 .secthree-row1container1 .box p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 0;
}

#secthree .secthree-container .secthree-row1 .secthree-row1container1 .box svg {
    transform: translate3d(0px, 0px, 0px);
    content-visibility: visible;
    width: 60px !important;
    margin-bottom: 12px;
    margin-top: 176px;
}

/* ----------------------------- start the row one2 ----------------------------------- */

#secthree .secthree-container .secthree-row2 {
    width: 50%;
    margin-top: 140px;
}

#secthree .secthree-container .secthree-row2 .secthree-row1container1 {
    background-image: linear-gradient(180deg, #531ec500 0%, #2B116480 100%),
        url(https://aiode.com/wp-content/uploads/2024/09/Block-2.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 20px 0px 0px;
    padding: 250px 100px 100px 100px;
    display: flex;
    flex-direction: column;
    vertical-align: bottom;
    justify-content: flex-end;
}

#secthree .secthree-container .secthree-row2 .secthree-row1container1 .box h3 {
    font-weight: 700;
    letter-spacing: 0.36px;
    font-size: 70px;
    line-height: 70px;
    color: #FFFFFF;
    margin: 0;
}

#secthree .secthree-container .secthree-row2 .secthree-row1container1 .box p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
    line-height: 26px;
    color: #FFFFFF;
}

#secthree .secthree-container .secthree-row2 .secthree-row1container1 .box svg {
    transform: translate3d(0px, 0px, 0px);
    content-visibility: visible;
    width: 60px !important;
    margin-bottom: 12px;
    margin-top: 176px;
}

/* ----------------------------- start the row one3 ----------------------------------- */

#secthree .secthree-container .secthree-row1 {
    width: 50%;
    margin-top: 0px;
}

#secthree .secthree-container .secthree-row1 .secthree-row1container2 {
    background-image: linear-gradient(180deg, #531ec500 0%, #2B116480 100%),
        url(https://aiode.com/wp-content/uploads/2024/09/Block-3.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 0px 0px 20px;
    padding: 250px 100px 100px 100px;
    display: flex;
    flex-direction: column;
    vertical-align: bottom;
    justify-content: flex-end;
}

#secthree .secthree-container .secthree-row1 .secthree-row1container2 .box h3 {
    font-weight: 700;
    letter-spacing: 0.36px;
    font-size: 70px;
    line-height: 70px;
    color: #FFFFFF;
    margin: 0;
}

#secthree .secthree-container .secthree-row1 .secthree-row1container2 .box p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
    line-height: 26px;
    color: #FFFFFF;
}

#secthree .secthree-container .secthree-row1 .secthree-row1container2 .box svg {
    transform: translate3d(0px, 0px, 0px);
    content-visibility: visible;
    width: 60px !important;
    margin-bottom: 12px;
    margin-top: 176px;
}

/* ----------------------------- start the row one4 ----------------------------------- */

#secthree .secthree-container .secthree-row1 {
    width: 50%;
    margin-top: 0px;
}

#secthree .secthree-container .secthree-row2 .secthree-row1container2 {
    background-image: linear-gradient(180deg, #531ec500 0%, #2B116480 100%),
        url(https://aiode.com/wp-content/uploads/2024/09/Block-3.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 0px 0px 20px;
    padding: 250px 100px 100px 100px;
    display: flex;
    flex-direction: column;
    vertical-align: bottom;
    justify-content: flex-end;
}

#secthree .secthree-container .secthree-row2 .secthree-row1container2 .box h3 {
    font-weight: 700;
    letter-spacing: 0.36px;
    font-size: 70px;
    line-height: 70px;
    color: #FFFFFF;
    margin: 0;
	letter-spacing: 0;
}

#secthree .secthree-container .secthree-row2 .secthree-row1container2 .box p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
    line-height: 26px;
    color: #FFFFFF;
}

#secthree .secthree-container .secthree-row2 .secthree-row1container2 .box svg {
    transform: translate3d(0px, 0px, 0px);
    content-visibility: visible;
    width: 60px !important;
    margin-bottom: 12px;
    margin-top: 176px;
}

/* ----------------------------------------------------------
 End the secthree 
 -----------------------------------------------------------*/

/* ----------------------------------------------------------
 Start the section4 
 -----------------------------------------------------------*/

#section4 {
    width: 100%;
    background-color: #0E0E11;
    overflow: hidden;
}

#section4 .section4-container {
    max-width: 1600px;
    margin: 0 auto;
}

#section4 .section4-container .section4-text {
    text-align: center;
    padding: 100px 0px 30px 0px;
}

#section4 .section4-text {
    text-align: center;
}

#section4 .aiode-icon {
    margin: 0 auto 15px auto;
    display: block;
}

#section4 .section4-container .section4-text svg {
    width: 60px !important;
}

#section4 .section4-container .section4-text h2 {
    color: #FFFFFF;
    font-size: 70px;
    font-weight: 700;
    line-height: 70px;
    margin: 0;
}

#section4 .section4-container .section4-text p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
    line-height: 26px;
    color: #FFFFFF;
    width: 600px;
    margin: 15px auto;
}

#section4 .section4-container .section4-text .sectow-button {
    margin: 50px auto;
    width: fit-content;
}

/* ----------------------------------------------------------
 End the section4 
 -----------------------------------------------------------*/

/* ----------------------------------------------------------
 Start the five5 
 -----------------------------------------------------------*/
#five5 {
    width: 100%;
    background: #0E0E11;
    overflow: hidden;
    padding-top: 100px;
}

#five5 .five5-container {
    max-width: 1340px;
    margin: 0 auto;
    background: #0E0E11;
}

#five5 .five5-container .tittle {
    text-align: center;
}

#five5 .five5-container .tittle h2 {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
}

#five5 .five5-container .tittle h2 span {
    background: linear-gradient(270deg, #AC37FF, #6721FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

#five5 .five5-container .tittle p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
    line-height: 26px;
    color: #FFFFFF;
    margin-top: 1px;
}

/* ----------------------------- start the row 1 ----------------------------------- */

#five5 .five5-container .five5-row {
    display: flex;
    gap: 25px;
    margin-top: 100px;
}

#five5 .five5-container .five5-row .five5box-1 {
    width: 50%;
    border-color: #3D3D49;
    border-radius: 20px;
    border: solid 1px #3D3D49;
    padding: 100px;
}

/* Icon: Lottie */
#five5 .five5-container .five5-row .five5box-1 lottie-player {
    width: 60px;
    height: 60px;
    display: block;
}

/* ----------------------------- start the row 2 ----------------------------------- */

#five5 .five5-container .five5-row2 {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

#five5 .five5-container .five5-row2 .five5box-1 {
    width: 50%;
    border-color: #3D3D49;
    border-radius: 20px;
    border: solid 1px #3D3D49;
    padding: 100px;
}

/* Icon: Lottie */
#five5 .five5-container .five5-row2 .five5box-1 lottie-player {
    width: 60px;
    height: 60px;
    display: block;
}

/* ----------------------------- Headings & Text ----------------------------------- */

#five5 .five5-container .five5-row .five5box-1 h3,
#five5 .five5-container .five5-row2 .five5box-1 h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    color: #f7b000;
    margin: 15px 0 0 0;
}

#five5 .five5-container .five5-row .five5box-1 p,
#five5 .five5-container .five5-row2 .five5box-1 p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.36px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 15px 0 0 0;
	letter-spacing: 0;
}

/* ----------------------------- Button ----------------------------------- */

#five5 .sectow-button {
    margin-top: 118px;
    background: #0E0E11;
    text-align: center;
    padding-bottom: 50px;
}

#five5 #yellow-button {
    font-family: "Generation Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background-color: #F7B000;
    color: #0E0E11;
    border: 5px solid #FFC83E;
    border-radius: 100px;
    outline: none;
    min-width: 180px;
    box-shadow: 0px 0px 20px 0px #F7B000;
    padding: 14px 44px;
    text-decoration: none;
    display: inline-block;
	transition: 0.3s ease-in-out;
}

#five5 #yellow-button:hover {
    background-color: #F7B000;
    border: 5px solid #F7B000;
    color: #0E0E11;
    box-shadow: 0px 0px 0px 8px rgba(34, 34, 41, 0.67);
}

/* Optional: basic mobile tweak */
@media (max-width: 768px) {

    #five5 .five5-container .five5-row,
    #five5 .five5-container .five5-row2 {
        flex-direction: column;
        margin-top: 50px;
    }
    #five5 {
    width: 100%;
    background: #0E0E11;
    overflow: hidden;
    padding-top: 30px;
}

    #five5 .five5-container .five5-row .five5box-1,
    #five5 .five5-container .five5-row2 .five5box-1 {
        width: 100%;
        padding: 40px;
    }
}

/* =============================== */
/* SECTION 6 IMAGE                 */
/* =============================== */

#sectionsix {
    width: 100%;
    background: #0E0E11;
    overflow: hidden;
}

#sectionsix .sectionsix-container {
    max-width: 1240px;
    margin: 40px auto;
}

#sectionsix .sectionsix-container img {
    width: 100%;
    margin-top: 60px;
}

/* =============================== */
/* BLOG SECTION                    */
/* =============================== */

.aiode-blog-section {
    background: #0E0E11;
    padding: 80px 0 100px;
    color: #fff;
}

.aiode-blog-section .container {
    max-width: 1340px;
    margin: auto;
}

.aiode-blog-heading {
    text-align: center;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* GRID – last row always centered */
.aiode-blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center; /* THIS centers the last row */
}

.aiode-blog-card {
    width: calc(33.333% - 40px);
}

/* Thumbnail */
.aiode-blog-thumb {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.aiode-blog-thumb img {
    width: 100%;
    display: block;
}

.aiode-blog-thumb--placeholder {
    width: 100%;
    padding-top: 60%;
    background: #1a1024;
}

/* Tags */
.aiode-blog-tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.aiode-blog-tag {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding: 5px 15px 7px 15px;
    margin-top: 10px;
    border-radius: 30px;
    color: #fff;
    border: 1px solid #5703D3;
    background: #5703D3;
    line-height: 18px;
    cursor: pointer;
}

/* Title */
.aiode-blog-title {
    margin-top: 18px;
    font-size: 27px;
    font-weight: 700;
    line-height: 29px;
}

.aiode-blog-title a {
    margin-top: 24px;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.aiode-blog-title a:hover {
    color: #fff;
    text-decoration: underline;
}

/* TABLET */
@media(max-width:1024px) {
    .aiode-blog-heading {
        font-size: 55px;
    }
}

/* MOBILE */
@media(max-width:767px) {

    #five5 .sectow-button {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .aiode-blog-grid {
        grid-template-columns: 1fr;
    }

    .aiode-blog-section{
        padding: 20px 20px;
    }

    .aiode-blog-heading {
        text-align: center;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .aiode-global-social-media-links-item img {
        max-width: 20px;
        max-height: 20px;
    }

    .aiode-global-social-media-links-item { 
        width: 40px; 
        height: 40px;
    }

    footer a.aiode-alternative-btn {
        display: none;
    }

    .aiode-footer-nav-right {
        margin-top: -80px;
    }

    footer .aiode-footer-nav{
        display: flex;
        flex-direction: column;
    }

    .aiode-footer-nav-left a, 
    .aiode-footer-nav-right a{
        font-size: 16px; 
        font-weight: 600; 
        text-transform: uppercase; 
        line-height: 18px; 
        letter-spacing: 1.6px;
    }
}

 

/* =============================== */
/* ZOOM HACKS (YOUR ORIGINAL)     */
/* =============================== */

@media only screen and (max-width: 1650px) and (min-width: 1280px) {
    body {
        zoom: 0.9;
    }
}

/* Resposive */

@media only screen and (max-width: 1280px) and (min-width: 991px) {
    body {
        zoom: 0.75;
    }
	body p {
		zoom: 1.1;
	}
}

@media only screen and (max-width: 991px) and (min-width: 767px) {
    body {
        zoom: 0.5;
    }

    .sectow-container {
        padding: 40px;
    }

    #secthree .secthree-container {
        padding: 40px;
        max-width: 100%;
    }

    #five5 .five5-container .five5-row .five5box-1 {
        padding: 60px;
    }

    #five5 .five5-container {
        max-width: 100%;
        padding: 0px 40px;
    }

    #sectionsix .sectionsix-container {
        max-width: 100%;
    }
}

/* --------------------------------------------------- 
    start the Responsive for <= 767px  
---------------------------------------------------- */

@media only screen and (max-width: 767px) {

    /* ---------------------------------------------------
    start the banner  
    ----------------------------------------------------*/
    #banner {
        height: 100vh;
    }

    .banner-content {
        padding: 0px 10px;
    }

    .banner-content h1 {
        font-size: 40px;
        line-height: 40px;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .banner-content p {
        margin-top: 15px;
        font-size: 18px;
        line-height: 26px;
        font-weight: 500;
        color: #FFFFFF;
        margin-top: 20px;
    }

    /* ---------------------------------------------------
    End the banner  
    ----------------------------------------------------*/

    /* ----------------------------------------------------------
    start the sectow 
    -----------------------------------------------------------*/
    #sectow {
        padding-top: 40px;
    }

    #sectow .sectow-container {
        max-width: 100%;
        padding: 0px 20px;
    }

    #sectow .tittle {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 60px;
        display: flex;
    }

    #sectow .tittle .tittle-heading {
        color: #FFFFFF;
        font-family: "Generation Sans", sans-serif;
        font-size: 44px;
        font-weight: 700;
        line-height: 44px;
        text-align: center;
        width: 100%;

    }

    #purple-button {
        padding: 16px 85px;
        width: 100%;
    }

    /* ----------------------------------------------------------
    End the sectow 
    -----------------------------------------------------------*/
    .sectow-container {
        padding: 40px;
    }

    #secthree .secthree-container {
        padding: 40px;
        max-width: 100%;
    }

    #five5 .five5-container .five5-row .five5box-1 {
        padding: 60px;
    }

    #five5 .five5-container {
        max-width: 100%;
        padding: 0px 40px;
    }

    #sectionsix .sectionsix-container {
        max-width: 100%;
    }

    #sectow .sectow-row {
        padding-top: 50px;
    }

    #sectow .sectow-title {
        margin: 0 auto 30px;
    }

    #sectow .sectow-row-media {
        width: 100%;
        padding: 0px;
        margin-top: 30px;
    }


    #sectow .sectow-row-content {
        width: 100%;
        padding: 0px 0px 0 0;
    }

    #sectow .sectow-row-content h3 {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 8px;
        margin-top: 30px;
    }

    #secthree .secthree-container .secthree-row1 .secthree-row1container1 .box h3 {
        margin: 20px 0px 15px 0;
    }

    #secthree .secthree-container .secthree-row1 .secthree-row1container2 .box h3 {
        margin: 20px 0px 15px 0;
    }

    #secthree .secthree-container .secthree-row2 .secthree-row1container1 .box h3 {
        margin: 20px 0px 15px 0;
    }

    #secthree .secthree-container .secthree-row2 .secthree-row1container2 .box h3 {
        margin: 20px 0px 15px 0;
    }

    #sectow .sectow-row-content p {
        font-size: 20px;
        font-weight: 500;
        line-height: 22px;
        color: #FFFFFF;
    }

    #sectow .sectow-row-media {
        width: 100%;
        padding: 0px;
    }

    #sectow .sectow-row.sectow-row--reverse .sectow-row-content {
        padding: 0px 0 0px 0px;
    }


    /* ----------------------------------------------------------
    Start the secthree 
    -----------------------------------------------------------*/

    #secthree {
        padding: 40px 0px !important;
        width: 100% !important;
    }

    #secthree .secthree-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0px 20px;
    }

    #secthree .secthree-container>div {
        width: 100% !important;
        margin-top: 0 !important;
    }

    #secthree .secthree-row1container1,
    #secthree .secthree-row1container2 {
        padding: 240px 40px 40px 40px !important;
        border-radius: 0px !important;
    }

    #secthree .box h3 {
        font-size: 36px !important;
        line-height: 36px !important;
    }

    #secthree .box p {
        font-size: 16px !important;
        line-height: 22px !important;
    }

    #secthree .box svg {
        width: 38px !important;
        margin-top: 60px !important;
    }

    /* ----------------------------------------------------------
     Start the section4 
     -----------------------------------------------------------*/
    #section4 .section4-container .section4-text {
        text-align: center;
        padding: 100px 20px 30px 20px;
    }

    #section4 .section4-container .section4-text h2 {
        font-size: 44px;
        line-height: 44px;
    }

    #section4 .section4-container .section4-text p {
        font-size: 16px;
        color: #FFFFFF;
        width: 100%;
        margin: 8px auto;
    }

    /* ----------------------------------------------------------
     Start the five5 
     -----------------------------------------------------------*/
    #five5 .five5-container {
        max-width: 100%;
        padding: 0px 20px;
    }

    #five5 .five5-container .five5-row .five5box-1 {
        padding: 40px;
    }

    #five5 .five5-container .five5-row .five5box-1 p,
    #five5 .five5-container .five5-row2 .five5box-1 p {
        font-size: 16px;
        line-height: 22px;
    }

    #sectionsix .sectionsix-container {
        max-width: 100%;
        padding: 0px 20px;
        margin: 0px;
    }
}


.aiode-footer-nav-left ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.aiode-footer-nav-left ul li a:hover {
    color: #fff;
}
/* underline from center */
.aiode-footer-nav-left ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform .35s ease;
}

.aiode-footer-nav-left ul li a:hover::after,
.aiode-footer-nav-left ul li a:focus::after {
    transform: translateX(-50%) scaleX(1);
}

.aiode-footer-nav-left ul li a:hover {
    color: #fff;
}



.aiode-footer-nav-right ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.aiode-footer-nav-right ul li a:hover {
    color: #fff;
}
/* underline from center */
.aiode-footer-nav-right ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform .35s ease;
}

.aiode-footer-nav-right ul li a:hover::after,
.aiode-footer-nav-right ul li a:focus::after {
    transform: translateX(-50%) scaleX(1);
}

.aiode-footer-nav-right ul li a:hover {
    color: #fff;
}







/* Aiode Branded Button */
.header-solid-button {
       font-family: "Aiode Label", Sans-serif;
       font-size: 16px;
       font-style: normal;
       font-weight: 600;
       line-height: 18px;
       letter-spacing: 1.6px;
       text-transform: uppercase;
       background-color: #5703D3;
       color: #ffffff;
       border: 4px solid #7C31FF;
       border-radius:100px;
       /* box-shadow:none; */
       outline:none;
       min-width:165px;
       padding:13px 25px;
       box-shadow: 0px 0px 44px 0px #7C31FF;
       border-style: solid;
       border-width: 3px 3px 3px 3px;
       transition: 0.2s ease-in-out;
}

.header-solid-button:hover {
    background-color: #6F00FF;
    border: 3px solid #6F00FF;
    color: #ffffff;
    /* box-shadow: 0px 0px 0px 8px rgba(34, 34, 41, 0.67); */
}


/* Aiode Alternative Button */
.header-button-alternative {
    font-family: "Aiode Label", Sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background-color: rgba(111, 0, 255, 0.00);
   
    color: #ffffff;
    border: 3px solid #6F00FF;
	  border-radius:100px;
    box-shadow:none;
    outline:none;
     min-width:165px;
    padding:13px 25px;
	transition: 0.2s ease-in-out;
}

.header-button-alternative:hover {
    background-color: #6F00FF;
    backdrop-filter: blur(12.5px);
    border: 3px solid #6F00FF;
    color: #ffffff;
}