/* ========================================
   Development Careers - Global Styles
   ======================================== */

html { scroll-behavior: smooth; }

/* --- Backgrounds --- */
.hero-gradient {
    background: linear-gradient(135deg, #0a1628 0%, #162d54 50%, #1e3a5f 100%);
}

.grid-overlay {
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.construction-pattern {
    background-color: #e8e6e3;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(102, 204, 51, 0.05) 10px, rgba(102, 204, 51, 0.05) 20px),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
}

.light-concrete {
    background-color: #ddd9d5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-blend-mode: soft-light;
}

.dark-section {
    background: linear-gradient(180deg, #0a1628 0%, #0f1f38 100%);
}

/* --- Typography --- */
.text-gradient {
    background: linear-gradient(135deg, #66cc33, #8ed65c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.1em;
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

/* --- Navigation --- */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #66cc33;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* --- Cards & Interactions --- */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-4px);
}

/* --- Animations --- */
.line-reveal {
    animation: lineReveal 1s ease-out forwards;
}

@keyframes lineReveal {
    from { width: 0; }
    to { width: 100%; }
}

.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 { animation-delay: 0.1s; opacity: 0; }
.stagger-2 { animation-delay: 0.2s; opacity: 0; }
.stagger-3 { animation-delay: 0.3s; opacity: 0; }
.stagger-4 { animation-delay: 0.4s; opacity: 0; }
.stagger-5 { animation-delay: 0.5s; opacity: 0; }

/* --- Decorative --- */
.diagonal-line {
    position: relative;
}

.diagonal-line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    width: 40px;
    height: 2px;
    background: #66cc33;
    transform: rotate(-45deg);
}
