:root {
    --primary-color: #3498db; /* Blue */
    --secondary-color: #2ecc71; /* Green */
    --text-color: #f5f5f8; /* Dark Gray */
    --background-color: #f5f5f5; /* Light Gray */
}
body{
    font-family: Montserrat, sans-serif;
    color: var(--text-color) !important;
}
.text-color-1{
    color: var(--text-color) !important;
}


.background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    z-index: -1;
    transform: translateZ(0);
    transition: transform 0.1s ease-out;
    perspective: 1000px;
}
.background video {
    cursor: auto;
    width: 100%;
    height: 100vh;
    border-radius: 0px;
    display: block;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0);
    object-position: 50% 50%;
    overflow-clip-margin: content-box;
    overflow: clip;
}
.gradient-anim{
    background: linear-gradient(200deg, #ae75f1, #4b63ff 50%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: gradientAnimation 5s linear infinite;
}
@keyframes gradientAnimation{
    0%{background-position:0 25%}
    50%{background-position:100% 45%}
    to{background-position:0 50%}
}
.home-hero-head{
    letter-spacing: -.03em;
    margin-top: 20px;
    font-weight: 600;
    font-size: 4.5em;
    line-height: .88;
    /*padding-right: 20px;*/
    padding-top: 50px;
    text-transform: uppercase;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .home-hero-head {
        text-align: center !important;
        font-size: 3em; /* Smaller font size for tablets */
        margin-top: 170px; /* Adjust margin for smaller screens */
        padding-top: 0px; /* Adjust padding */
    }
}
.second-section{
    box-shadow: 0 -5px 15px 0 rgba(0, 0, 0, 0.7);
}

/* Glassmorphism effect */
.custom-glassmorphism {
    background: rgba(255, 255, 255, 0.1); /* Light semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect behind the card */
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px; /* Rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Slight border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    
}

.card-body {
    color: #fff; /* Text color */
    display: flex;
    align-items: center;
}
/* Blinking dot */
.blinking-dot {
    width: 7px;
    height: 7px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-right: 10px;
    animation: blink 1s infinite;
}

/* Blinking animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.site-log{

    height: 40px;
    width: auto;
}
