/* --- 0. Font Import & Base --- */
body {
    font-family: 'Outfit', sans-serif !important;
}

/* --- 1. Base Glassmorphism Utilities --- */
.glass-card {
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.50);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

.form-input-glass {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 12px 16px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.form-input-glass:focus {
    background: rgba(255, 255, 255, 0.8);
    border-color: #26d7bd;
    outline: none;
    box-shadow: 0 0 0 4px rgba(38, 215, 189, 0.1);
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* --- 2. Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

/* --- 3. Section Specific Styling --- */
.engagement-card {
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    padding: 2.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s ease;
}

.engagement-card:hover {
    background: rgba(255, 255, 255, 0.50);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

.engagement-card .engagement-header h3 {
    background: linear-gradient(90deg, #26d7bd, #c72a83);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.engagement-card .engagement-header p,
.engagement-card .engagement-body p,
.engagement-card .engagement-body ul {
    color: #475569;
}

.engagement-card .engagement-body h4,
.engagement-card .engagement-body .text-2xl.font-bold {
    color: #1e293b;
}

.engagement-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 2rem 0;
}

.engagement-button {
    display: block;
    width: 100%;
    text-align: center;
    background: #1e293b;
    padding: 0.8rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.engagement-button:hover {
    background: #0f172a;
    color: white;
    transform: translateY(-2px);
}

.team-section-bg {
    background-image: url('../statics/team-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.team-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-8px);
}

/* --- 4. Slideshow Styling --- */
#experienceSlideshowContainer {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    background: #000;
}

.carousel-indicators [data-bs-target] {
    background-color: #26d7bd;
    opacity: 0.7;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #c72a83;
    opacity: 1;
}

/* --- 5. Utilities & Timeline --- */
.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-shadow-lg {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.wrap {
    overflow: hidden;
}

.right-timeline,
.left-timeline {
    margin-bottom: 2rem;
}

/* --- 6. Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* --- 7. Chart Animations (NEW) --- */
.line-anim {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.point-anim {
    opacity: 0;
}

.start-animation .line-anim {
    animation-name: drawLine;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

.start-animation .point-anim {
    animation-name: fadeInPoint;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    animation-duration: 0.4s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInPoint {
    to {
        opacity: 1;
    }
}
