.elementor-102879 .elementor-element.elementor-element-e016761{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-102879 .elementor-element.elementor-element-f2a9e1e > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* -----------------------------------------------
   Aurora Theme Styles
   ----------------------------------------------- */

/* Background: Dark radial backdrop for contrast */
body {
    background: radial-gradient(circle at center, #1C2833, #0B1014); /* Darker shades for deeper contrast */
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-attachment: fixed;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* Keyframes for subtle aurora-like movement */
@keyframes auroraFlow {
    0%   { background-position: 50% 50%; }
    100% { background-position: 55% 45%; }
}

/* Headings: Aurora Gradient */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    background: radial-gradient(circle,
                                #9EF7A5 0%,    /* Soft green */
                                #70f8ff 25%,   /* Aqua */
                                #7D6EB8 50%,   /* Royal Purple */
                                #D6C7F4 75%,   /* Lavender */
                                #FFC9D9 100%); /* Pale Pink */
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: auroraFlow 30s infinite alternate ease-in-out;
}

h1 { font-size: 2.5em; text-shadow: none; }
h2 { font-size: 2em; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
h3 { font-size: 1.75em; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
h4, h5, h6 { font-size: 1.5em; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }

/* Links: Aurora Gradient on Hover */
a {
    text-decoration: underline;
    color: #0000EE;
}

a:visited {
    color: #551A8B;
}

a:hover {
    background: radial-gradient(circle,
                                #9EF7A5 0%,    /* Soft green */
                                #70f8ff 25%,   /* Aqua */
                                #7D6EB8 50%,   /* Royal Purple */
                                #D6C7F4 75%,   /* Lavender */
                                #FFC9D9 100%); /* Pale Pink */
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-decoration: underline;
    animation: auroraFlow 30s infinite alternate ease-in-out;
}

a:focus {
    outline: 2px solid #4DB6AC;
    outline-offset: 2px;
}

/* Buttons: Unchanged */
button {
    background-color: #2980B9;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3498DB;
}

/* Header & Footer: Unchanged */
header, footer {
    background-color: #154360;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Container: Unchanged */
.container {
    padding: 20px;
}

/* -----------------------------------------------
   Aurora Edge Hover Effect (Thin and Sharp)
   ----------------------------------------------- */
.aurora-edge {
    /* Removed color to preserve existing gradient or element color */
    font-size: 1.2em; /* Smaller font size for a more delicate look */
    transition: text-shadow 0.3s ease; /* Smooth transition */
}

.aurora-edge:hover {
    /* Ultra-thin and sharp aurora-like edge glow */
    text-shadow:
        0 0 0.5px  #a2f2a4,  /* Soft green close to text */
        0 0 0.5px  #83f5ed,  /* Aqua */
        0 0 0.5px  #a5a3f7,  /* Lavender-Blue */
        0 0 0.5px  #e8c9fa,  /* Pink-Lilac */
        0 0 0.5px  #ffd2eb;  /* Pale Rose at the outer edge */
}/* End custom CSS */