.hero-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.carousel-dot.active {
    background-color: #0ea5e9;
}
.industry-card:hover .industry-img {
    transform: scale(1.05);
}
.news-card:hover .news-img {
    transform: scale(1.05);
}
.btn-primary {
    background-color: #0ea5e9;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #0284c7;
}
.link-arrow:hover .arrow-icon {
    transform: translateX(4px);
}
.arrow-icon {
    transition: transform 0.3s ease;
}
html {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
