/* Google Font - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', Arial, sans-serif;
}

/* Hero Background */
.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* Swiper Carousel Styles */
.work-prev,
.work-next {
    color: yellow;
}

.work-prev::after,
.work-next::after {
    font-size: 22px;
    font-weight: bold;
}

.work-pagination .swiper-pagination-bullet {
    background: #fdba74;
    opacity: 1;
}

.work-pagination .swiper-pagination-bullet-active {
    background: #f97316;
}

/* Scroll Indicator Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

/* Gradient Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
    transform: translateY(-2px);
}

/* Service Card Enhancements */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover .card-image {
    transform: scale(1.1);
}

.card-image {
    transition: transform 0.5s ease;
}

/* Wave Divider */
.wave-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Stats Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: countUp 0.6s ease forwards;
}

/* Trust Badge Hover */
.trust-badge {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section Background */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Previous Work Card Hover */
.work-card {
    transition: transform 0.4s ease;
}

.work-card:hover {
    transform: scale(1.02);
}

.work-card:hover img {
    transform: scale(1.1);
}

/* Navbar Glass Effect Enhancement */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 9999 !important;
}

/* Ensure dropdown menu appears above all content */
nav#navbar {
    position: sticky;
    z-index: 9999 !important;
}

nav#navbar .group ul {
    z-index: 9999 !important;
}

/* Fix for dropdown visibility */
nav#navbar li.group:hover > ul {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Image Overlay Gradient */
.image-overlay-gradient {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(217, 119, 6, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Topbar smooth transition */
#topbar {
    transition: opacity 0.3s ease, height 0.3s ease;
}

/* Navbar smooth shadow transition */
#navbar {
    transition: box-shadow 0.3s ease;
}
