/* Custom Scrollbar and Animations */
html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}
body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300; /* লেখাগুলোকে একদম স্লিম ও থিন দেখাবে */
    line-height: 1.5;
}


h3 {
    font-weight: 300 !important; /* বোল্ড ভাব দূর করে স্লিম লুক আনবে */
}
h5 {
    font-weight: 200 !important; /* বোল্ড ভাব দূর করে স্লিম লুক আনবে */
}

::-webkit-scrollbar-thumb {
    background: #262626;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #404040;
}

/* Card Smooth Grid Animation (Hover & Active/Click Supported) */
.card-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content > div {
    overflow: hidden;
}

.interactive-card:hover .card-content,
.interactive-card.active .card-content {
    grid-template-rows: 1fr;
}

/* Arrow Rotation Animation */
.arrow-icon {
    transition: transform 0.35s ease;
}

.interactive-card:hover .arrow-icon,
.interactive-card.active .arrow-icon {
    transform: rotate(180deg);
}

/* Navbar Active Link Colors */
.nav-link.active-link {
    color: #000000 !important;
}
.nav-link {
    color: #a3a3a3;
    transition: color 0.3s ease;
}

#structural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* To keep it behind the website content */
    pointer-events: none;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

/* Pause animation on mouse hover */
.marquee-container:hover .animate-marquee,
.animate-marquee:hover {
    animation-play-state: paused;
}