/*
Theme Name: USG Bilişim Theme
Description: A custom WordPress theme for USG Bilişim with Tailwind CSS.
Author: Antigravity
Version: 1.0
*/

/* Custom gradient and starry background for hero */
.hero-bg {
    background: radial-gradient(circle at top right, #1e3a8a 0%, #030712 60%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(https://lh3.googleusercontent.com/aida-public/AB6AXuDw5F_EN90GhXOakunQLY4N8kOlQZtJty-14-WG8bO1INYDmF45rTwxvS1Pw0ZMhKJEhqkM3wuC3KLK3p2UUqrE3ZqjCnT3oDCGMEAT1GKKQ5K1TGqAJ2pXh3QLKGZN-HzeMy8VSZ6NtHz6vR7IoQhc6wP2Rs4zqQ9rEMnHVzXjf_QP6bB7ro6wfP__ADPNuAeya2PMpnk_qhLjsLMLmLv5WmZyzifNR2UXbQkN86_sJGYPnioMpM93Td_4rKNrnw0GqHlPHUIwinAz);
    opacity: 0.3;
    pointer-events: none;
}

.service-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.marquee-item .stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.2);
}

.marquee-item .stat-card .text-gray-500 {
    color: #64748b;
}



.glow-effect {
    box-shadow: 0 0 40px -10px #3b82f6;
}

.mobile-gtranslate-notranslate .gtranslate_wrapper {
    color: white !important;
}

.mobile-gtranslate-notranslate select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 0.5rem !important;
    width: 100% !important;
    padding: 0.75rem !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #030712;
    color: #f9fafb;
}

/* GTranslate Custom Styles */
.gtranslate_wrapper {
    display: flex !important;
    align-items: center !important;
}

#gt_float_wrapper {
    display: none !important;
    /* Hide floating widget if any */
}

.gt_selector {
    background-color: transparent !important;
    color: #9ca3af !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    padding: 2px 8px !important;
    cursor: pointer !important;
    outline: none !important;
    appearance: none !important;
}

.gt_selector:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

/* Hide GTranslate branding if visible */
.gt_container a {
    display: none !important;
}

.language-switcher-container {
    display: flex;
    align-items: center;
}

/* Infinite Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    width: 200px;
    /* Adjust according to card size */
    margin: 0 1rem;
}