.text-gradient {
    background: linear-gradient(90deg, #2563eb 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

html {
    scroll-behavior: smooth;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #10b981 100%);
    border-radius: 3px;
}

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

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .mobile-menu.open {
        max-height: 500px;
    }
}

.hero-slide {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.splide.is-active .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.slide-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide-desc {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.slide-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.splide.is-active .slide-title,
.splide.is-active .slide-desc,
.splide.is-active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.splide__pagination {
    bottom: 30px;
}

.splide__pagination__page {
    background: rgba(255,255,255,0.5);
    width: 12px;
    height: 12px;
    margin: 0 8px;
}

.splide__pagination__page.is-active {
    background: white;
    transform: scale(1.2);
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pulse-effect {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.bounce-in {
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

.globe-icon {
    position: absolute;
    z-index: 4;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Rotating favicon animation */
.rotating-favicon {
    animation: rotate 20s linear infinite; /* Slower rotation for a smooth globe-like effect */
}

.iti {
    width: 100%;
}