/* Custom CSS for animations and effects */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(90deg, #7cafe1, #3b82f6, #1f37c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.scroll-down {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

h1.section-hero {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-date {
    margin-bottom: 20px;
}

.subsection {
    margin-bottom: 15px;
}

.subsection h2 {
    font-weight: bold;
    font-size: 1.05em;
}

.subsection ul {
    list-style-type: disclosure-closed;
    padding: 5px 40px 0;
    margin-bottom: 10px;
}

/* Client Section */
.client-link {
    height: 200px;
}


/*** Privacy Policy ***/
body .priv-container {
    line-height: 1.6;
    margin: 0 auto;
    padding: 20px;
}

.priv-container h1,
.priv-container h2 {
    
}

.priv-container {
    margin: 0 auto;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}