@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container, .container-fluid {
    overflow-x: hidden; /* Ensure containers don't overflow horizontally */
}

body {
    font-family: lato;

}


.navbar {
    background: linear-gradient(90deg, #74b8ec, #0252b3);
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
}

.logo {
    height: 35px;
    width: 100px;
}

.logo1 {
    height: 40px;
    width: 70px;
}

h1 {
    font-weight: 400;
}

h2 {
    font-size: 30px;
    font-weight: 400;
}

.hero_image {
    /* mix-blend-mode:multiply; */
    transform: scaleX(-1);
}

.box{
    background-image: url(https://www.shutterstock.com/image-photo/night-beautiful-abstract-blurred-office-600nw-2405412243.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.gradient-box {
    border-radius: 10px;
    height: 150px;
    padding-top:20px;
    color: white;
    font-size: 1.5em;
    font-family: Arial, sans-serif;
    transition: background 0.5s ease;
}

.gradient-box:hover {
    background: linear-gradient(45deg, #5765e2, #c2e9fb);
    font-weight: 500;
}

input{
    outline: none;
}

@media (min-width: 300px) and (max-width: 600px) {
    h1 {
        font-size: 35px;
        margin-top: 5px;
    }

    .row{
        margin-top: -40px;
    }
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure the popup is on top of all content */
}

.popup.hidden {
    display: none; /* Hide the popup when not needed */
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    position: relative;
}

.popup-icon,
.popup-icon1 {
    margin-bottom: 10px;
}

.popup-icon svg,
.popup-icon1 svg {
    fill: none;
    stroke-width: 2;
}

.popup-icon svg {
    stroke: green;
}

.popup-icon1 svg {
    stroke: red;
}

.popup-icon svg path,
.popup-icon1 svg path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
}

@keyframes tick {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes cross {
    to {
        stroke-dashoffset: 0;
    }
}

.popup-icon svg path {
    animation: tick 0.5s ease-out forwards;
}

.popup-icon1 svg path {
    animation: cross 0.5s ease-out forwards;
}

#popupClose {
    background: green;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
}

#popupClose1 {
    background: red;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
}


/* Loader Background and Positioning */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001; /* Ensure the loader is on top of all content */
    /* Apply blur effect to the background */
    display: none; /* Hidden by default */
}

/* Loader Spinner Styling */
.loading-spinner {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

/* Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@keyframes blink {
    0% { border-color: red; }
    50% { border-color: transparent; }
    100% { border-color: red; }
}

.blink {
    animation: blink 1s infinite;
    border: 2px solid red;
}
