/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5; /* Light gray background */
}
.hero-video-container {
    position: relative;
    width: 100%;
    /* height: 75vh;  Moved to Tailwind classes in HTML (h-screen md:h-[75vh]) */
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.nav-link {
    position: relative;
    transition: color 0.3s;
}
.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #3993ff; /* Primary Color */
    bottom: -4px;
    left: 0;
}
.solution-card:hover .solution-icon {
    transform: scale(1.1);
}
.solution-card:hover {
     border-color: #3993ff; /* Primary Color */
}
.logo-carousel img {
    max-height: 80px;
}
.btn-primary {
    background-color: #3993ff;
    color: white;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #257eeb; /* Darker shade of primary color */
}
.filter-btn.active {
    background-color: #3993ff;
    color: white;
}
.gallery-thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.gallery-thumbnail.active {
    border-color: #3993ff;
}
