body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

header {
    background-color: #242424;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 100px; /* Adjust height as needed */
    width: auto; /* This will adjust width automatically based on the height to maintain aspect ratio */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

nav {
    background-color: #444;
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ff9900;
}

section {
    padding: 40px;
    text-align: center;
    color: white;
}

footer {
    background-color: #333;
    color: #0e0101;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.policy {   
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Drop shadow */
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}

.floating-image {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.gif {
    max-width: 200px; /* Adjust the max-width as needed */
    animation: breathe 3s ease-in-out infinite; /* Adjust animation duration and timing function as needed */
}

@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.contact{
    color: rgb(24, 190, 170);
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #89d0ea;
    color: #050000;
    font-style: bold;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #dcd021;
}
