<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Custom Styles */
.logo {
    width: 50px;
    height: auto;
}

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.bg-gradient {
    background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
}

.navbar-brand img {
    max-width: 50px;
    transition: transform 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.icon i {
    transition: transform 0.3s, color 0.3s;
}

.icon i:hover {
    transform: rotate(20deg);
    color: #00aaff;
}

.btn-primary, .btn-secondary {
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s;
}

.btn-primary:hover, .btn-secondary:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.animated {
    visibility: hidden;
}


.animated.fadeIn, .animated.fadeInUp, .animated.fadeInDown, .animated.fadeInLeft, .animated.fadeInRight {
    animation: fadeInAnimation 0.5s forwards;
}

.animated.fadeIn { animation-delay: 0s; }
.animated.fadeInUp { animation-delay: 0.1s; }
.animated.fadeInDown { animation-delay: 0.1s; }
.animated.fadeInLeft { animation-delay: 0.2s; }
.animated.fadeInRight { animation-delay: 0.2s; }

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); visibility: visible; }
}

/* Footer Styles */
footer {
    background: #343a40;
    color: #f8f9fa;
}

footer p {
    margin: 0;
}

.social-icons a {
    color: #f8f9fa;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #00aaff;
}
</pre></body></html>