/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e1e2f;
    color: #ffffff;
}

header {
    background-color: #0d0d1a;
    padding: 10px 20px;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 3rem;
}

.logo{
    height: 3rem;
    width: 3rem;
}

.headertext {
    font-size: 2rem;
    font-weight: bold;
    color: #ffcc00;
    margin-top: -3rem;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: url('https://source.unsplash.com/1600x900/?technology,hosting') no-repeat center/cover;
    color: #ffffff;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.links{
    display: flex;
    justify-content: center;
}
.btnlinks {
    display: inline-block;
    padding: 10px 20px;
    margin: 1rem;
    background-color: #ffcc00;
    color: #0d0d1a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btnlinks:hover {
    background-color: #e6b800;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.banner{
    width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #0d0d1a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    background-color: #e6b800;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.prices {
    padding: 50px 20px;
    text-align: center;
}

.prices h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #ffcc00;
}

.price-card {
    display: inline-block;
    width: 13rem;
    margin: 10px;
    padding: 20px;
    background-color: #2e2e3f;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.price-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffcc00;
}

.price-card p {
    margin: 10px 0;
    font-size: 1em;
}

.tm {
    padding: 50px 20px;
    text-align: center;
}

.tmh1 {
    color: #ffcc00;
    text-align: center;
    font-size: xx-large;
}

.tm div {
    display: inline-block;
    width: 200px;
    margin: 10px;
    padding: 20px;
    background-color: #2e2e3f;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tm div:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.tm div img{
    width: 200px;
}

.tm div h3{
    color: #ffcc00;
    text-align: center;
}

.tm div p{
    color: aqua;
    text-align: center;
}


.large-content {
    padding: 50px 20px;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.8;
}

.large-content p {
    margin-bottom: 20px;
}

footer {
    background-color: #0d0d1a;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 82px;
}

.foo {
text-align: center;
}

footer a{
    color: #ffcc00;
    text-decoration: none;
    margin: 0 5px;
}
/* Keyframe Animation for the Logo */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Full Page Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e2f; /* Dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader img {
    width: 100px; /* Adjust size of logo */
    height: auto;
    animation: fadeBounce 2s infinite;
}

@keyframes fadeBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Hide Loader After Page Load */
body.loaded .loader-wrapper {
    display: none;
}
/* Snowfall Effect */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Ensures it doesn't interfere with user interactions */
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff; /* White color for snowflakes */
    user-select: none;
    pointer-events: none;
    font-size: 1em;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}


