/* ------------------------------
   General Styles
------------------------------ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo', sans-serif;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

#home {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

#home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#home .container {
    position: relative;
    z-index: 2;
}

.card h5 {
    font-size: 1.25rem;
}

.card-text {
    font-size: 0.95rem;
}

footer {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* ------------------------------
   Navbar Styles
------------------------------ */
#navbar {
    background: transparent;
    transition: background 0.3s, padding 0.3s, color 0.3s;
    padding: 1rem 0;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0;
}

#navbar .nav-link {
    color: white;
    transition: color 0.3s;
}

#navbar.scrolled .nav-link {
    color: #333;
}

#navbar .navbar-toggler-icon {
    filter: invert(1);
    transition: filter 0.3s;
}

#navbar.scrolled .navbar-toggler-icon {
    filter: invert(0);
}

/* ------------------------------
   Responsive
------------------------------ */
@media (max-width: 992px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    #home {
        min-height: 70vh;
    }
}

/* ------------------------------
   Card Fade-Up Scroll Effect
------------------------------ */
.card.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.card.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* ------------------------------
   Client Cards
------------------------------ */
.client-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.client-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* ------------------------------
   Specialty Box Hover
------------------------------ */
.specialty-box {
    transition: all 0.3s ease;
}

.specialty-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ------------------------------
   CTA Section
------------------------------ */
.cta-section {
    background: #0d1b2a;
}

.cta-section .btn {
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ------------------------------
   Footer
------------------------------ */
.footer-section {
    background: #0b1320 !important;
}


.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}
