
/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #F9FAFB;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== GLASSMORPHISM CARD ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.05);
}

/* ===== NAVBAR STYLES ===== */
#navbar {
    background: transparent;
}

#navbar.scrolled {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#navbar.scrolled .flex.items-center.justify-between {
    height: 70px;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* ===== SHIMMER EFFECT ===== */
.shimmer-text {
    background: linear-gradient(
        90deg,
        rgba(212, 175, 55, 1) 0%,
        rgba(232, 200, 74, 1) 25%,
        rgba(212, 175, 55, 1) 50%,
        rgba(232, 200, 74, 1) 75%,
        rgba(212, 175, 55, 1) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* ===== FORM STYLES ===== */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
}

select option {
    background: #0F172A;
    color: #F9FAFB;
}

/* ===== LOADING SCREEN ===== */
#loader.loaded {
    opacity: 0;
    pointer-events: none;
}

/* ===== FLOATING BUTTON ===== */
#floatingBtn.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE MENU ===== */
#mobileMenu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* ===== COUNTER ANIMATION ===== */
.counter {
    display: inline-block;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .glass-card:hover {
        transform: translateY(-2px);
    }
    
    .scroll-animate {
        transform: translateY(25px);
    }
}

@media (max-width: 480px) {
    .glass-card:hover {
        transform: none;
    }
}

/* ===== GLOW PULSE FOR PROCESS DOTS ===== */
@keyframes processPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.2);
    }
}

/* ===== GRADIENT TEXT ANIMATION ===== */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient-text {
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
}

/* ===== LINK HOVER EFFECT ===== */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #10B981);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== STAR RATING ===== */
.fill-gold {
    fill: #D4AF37;
}

/* ===== SMOOTH SECTION TRANSITIONS ===== */
section {
    position: relative;
}

/* ===== PARALLAX-LIKE EFFECT ===== */
@media (min-width: 1024px) {
    .glass-card:hover {
        transform: translateY(-6px) scale(1.01);
    }

/* Hide DeepSite branding */
a[href*="deepsite"],
a[href*="huggingface"],
div[class*="badge"],
div[class*="watermark"],
div[class*="branding"],
div[id*="badge"],
div[id*="branding"],
div[id*="watermark"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Hide bottom-right floating elements */
body > div:last-child {
    display: none !important;
}
}