:root {
    --primary-font: 'Montserrat', sans-serif; /*for heading or highligting , button for cta*/
    --secondary-font: 'Helvetica Neue', Arial, sans-serif /*for paragraph*/;
    --tertiary-font: 'Open Sans', sans-serif; /* Fixed typo from 'tratiry-font'  for subheading */

    --primary-color: #FFFFFF;
    --secondary-color: #fe5000;
    --background-color: #000000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--primary-font); /* Ensures all elements use the primary font */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font); /* Ensures all elements use the primary font */
}

section, div, span, p, pre {
    font-family: var(--secondary-font); /* Ensures all elements use the primary font */
}

button, a {
    font-family: var(--primary-font); /* Ensures all elements use the primary font */
}

@keyframes glowBlink {
    0% {
        box-shadow: 0 0 5px rgba(255, 69, 0, 0.8);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 69, 0, 1);
        opacity: 0.5;
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 69, 0, 0.8);
        opacity: 1;
    }
}

span.swing.animated {
    font-family: var(--primary-font);
}

#status-dot {
    width: 12px;
    height: 12px;
    background-color: #fe5000; /* Orange-Red */
    border-radius: 50%;
    display: inline-block;
    animation: glowBlink 1.5s infinite ease-in-out;
}

body {
    font-family: var(--primary-font), sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    margin: 0px;
}

.con {
    padding: 16px;
}

.tying {
    color: #0000;
    display: inline;
    background: linear-gradient(-90deg, #fff 5px, #0000 0) 10px 0, linear-gradient(#ffff 0 0) 0 0;
    background-size: calc(var(--n) * 1ch) 200%;
    -webkit-background-clip: padding-box, text;
    background-clip: padding-box, text;
    background-repeat: no-repeat;
    animation: b .7s infinite steps(1), t calc(var(--n) * .15s) steps(var(--n)) forwards;
}

@keyframes t {
    from {
        background-size: 0 200%
    }
}

@keyframes b {
    50% {
        background-position: 0 -100%, 0 0
    }
}

p {
    font-family: var(--secondary-font), sans-serif;
}

.container {
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2em;
    line-height: 1.5;
}

/* Unique section styling */
#container-float-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
}

/* Unique text styling */
#status-text {
    margin-right: 10px;
    font-size: 14px;

    display: flex;
    align-items: center;
    color: #fff;
}

/* Unique dot indicator styling */
#status-dot {
    height: 10px;
    width: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 5px;
}

/* Unique button styling */
#get-in-touch-button {  
    background-color: #3763f4;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}

#get-in-touch-button:hover {
    background-color: #333;
}