.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-a19e63a:#3B006B;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Space Grotesk";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:transparent;background-image:linear-gradient(180deg, #2A0072 0%, #000000 100%);--e-preloader-animation:flash;--e-preloader-animation-duration:4000ms;--e-preloader-delay:0ms;--e-preloader-width:35%;--e-preloader-max-width:100%;}.elementor-kit-5 e-page-transition{background-color:#0D0630;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}.elementor-kit-5{--e-page-transition-entrance-animation:e-page-transition-slide-out-up;--e-preloader-width:43%;--e-preloader-max-width:44%;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}.elementor-kit-5{--e-page-transition-entrance-animation:e-page-transition-slide-out-up;--e-preloader-width:100%;--e-preloader-max-width:89%;}}
/* Start custom CSS */body {
    background-image: url('your-image-url');
}


/* Button styling */
.custom-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: orange;
    border: 2px solid orange;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    width: 180px;
    height: 50px;
    white-space: nowrap;
}

.custom-btn:hover {
    background-color: white;
    color: orange;
}

.custom-btn::after {
    content: "Change starts here";
}

.custom-btn:hover::after {
    content: "Registration dropping soon!";
}

/* Desktop view - Button beside menu */
.custom-btn-container {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Adjust spacing beside menu */
}

/* Mobile & Tablet - Button below dropdown menu */
@media (max-width: 1024px) {
    .custom-btn-container {
        display: block;
        text-align: center;
        margin-top: 10px; /* Adjust spacing under dropdown */
    }
}/* End custom CSS */