:root {
    --gold: #d4af37;
    --gold-light: #f7e7ce;
    --gold-dark: #b8860b;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #020617;
    color: #94a3b8;
}

.font-brand {
    font-family: 'Cinzel', serif;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
}

.glass-header {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.section-divider {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

.service-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

#mobile-menu {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top;
}

.mobile-menu-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.mobile-menu-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Common Form Styles */
.input-style {
    background: #0f172a;
    border: 1px solid #1e293b;
    color: white;
    padding: 1rem;
    width: 100%;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.input-style:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Custom File Input Styling */
.file-input-wrapper {
    position: relative;
    width: 100%;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0f172a;
    border: 1px dashed #1e293b;
    color: #94a3b8;
    padding: 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.file-input-wrapper:hover .file-input-label {
    border-color: var(--gold);
    color: white;
}

.file-input-wrapper input[type="file"]:focus + .file-input-label {
    border-color: var(--gold);
    border-style: solid;
}

.file-input-label i {
    font-size: 1.25rem;
    color: var(--gold);
}

.file-name-display {
    display: none;
    margin-top: 12px;
    text-align: left;
    position: relative;
    z-index: 5;
}

.file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.file-item {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-remove {
    cursor: pointer;
    font-size: 0.8rem;
    color: #ef4444;
    transition: color 0.3s;
}

.file-remove:hover {
    color: #b91c1c;
}

/* Career Page Specific */
.job-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.4s;
    cursor: pointer;
}

.feature-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.icon-box {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Filter Active State */
.filter-btn {
    position: relative;
    transition: all 0.3s ease;
}

.filter-btn-active {
    color: var(--gold) !important;
}

.filter-btn-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Modal Styles */
#projectModal {
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.modal-content {
    background: #050a18;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Project Article Hover */
.project-article {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-article:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

@keyframes marquee2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0%); }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
}

.animate-marquee2 {
    animation: marquee2 40s linear infinite;
}

.group:hover .animate-marquee,
.group:hover .animate-marquee2 {
    animation-play-state: paused;
}
