@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --brand-blue: #182462;
    --brand-dark: #0f1a40;
}

* { font-family: 'Roboto', sans-serif; font-size: 16px; }
body { overflow-x: hidden; font-family: 'Roboto', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif; letter-spacing: -0.02em; line-height: 1.1; font-weight: 700; }
.nav-item { font-weight: 500; position: relative; padding: .25rem 0; }
.nav-link { 
    color: #374151; 
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-link:hover { 
    color: #182462; 
}
.nav-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #182462; transition: width .3s ease; }
.nav-item:hover::after { width: 100%; }
.nav-item.active::after { width: 100%; }
.nav-shadow { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.mobile-menu { 
    transform: translateX(100%) !important; 
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}
.mobile-menu.active { 
    transform: translateX(0) !important;
    opacity: 1;
    pointer-events: auto;
}
.text-shadow { text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.btn-solid {
    background: linear-gradient(135deg, #182462, #0f1a40);
    color: white;
    box-shadow: 0 2px 10px rgba(24, 36, 98, 0.3);
}
.btn-solid:hover {
    background: linear-gradient(135deg, #0f1a40, #182462);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(24, 36, 98, 0.4);
}
.btn-outline {
    border: 2px solid white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #182462;
    transform: translateY(-2px);
}
.btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: #182462;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.btn-light:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
#navbar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
}
.chip {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}
.animate-slideInUp {
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}
.delay-100 {
    animation-delay: 0.1s;
}
.delay-200 {
    animation-delay: 0.2s;
}
.delay-300 {
    animation-delay: 0.3s;
}
.delay-400 {
    animation-delay: 0.4s;
}
.from-brand-blue {
    --tw-gradient-from: #182462;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-brand-blue {
    --tw-gradient-via: #182462;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to);
}
.to-brand-blue {
    --tw-gradient-to: #182462;
}
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(15, 26, 64, 0.85) 0%,
        rgba(24, 36, 98, 0.75) 50%,
        rgba(15, 26, 64, 0.9) 100%
    );
}
.bg-brand-dark-60 {
    background-color: rgba(15, 26, 64, 0.6);
}
.bg-brand-blue {
    background-color: #182462;
}
.text-brand-blue {
    color: #182462;
}
.border-brand-blue {
    border-color: #182462;
}
.from-brand-dark {
    --tw-gradient-from: #0f1a40;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-brand-blue {
    --tw-gradient-to: #182462;
}
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-brand-blue\/95 {
    --tw-gradient-from: rgba(24, 36, 98, 0.95);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-brand-blue\/75 {
    --tw-gradient-via: rgba(24, 36, 98, 0.75);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to);
}
.to-brand-blue\/50 {
    --tw-gradient-to: rgba(24, 36, 98, 0.5);
}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.focus\:ring-brand-blue:focus {
    --tw-ring-color: #182462;
}
.hover\:bg-brand-blue:hover {
    background-color: #182462;
}
.hover\:text-brand-blue:hover {
    color: #182462;
}
.hover\:border-brand-blue:hover {
    border-color: #182462;
}
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #182462;
}
.contact-card-icon {
    width: 56px;
    height: 56px;
    background: #182462;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}
.contact-card:hover .contact-card-icon {
    background: #0f1a40;
    transform: scale(1.1);
}
.hero-main {
    min-height: 85vh;
}
@media (min-width: 768px) {
    .hero-main {
        min-height: 90vh;
    }
}
.hero-section {
    min-height: 40vh;
}
.project-card {
    min-width: 320px;
}
.service-box {
    background: linear-gradient(135deg, #182462 0%, #2a3a7a 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(24, 36, 98, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(24, 36, 98, 0.3);
}
.service-box-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.project-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.project-card:hover img {
    transform: scale(1.1);
}
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.project-card:hover .project-overlay {
    transform: translateY(0);
}
.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.project-card:hover .project-info {
    transform: translateY(0);
}
.form-messages {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-weight: 500;
    display: none;
}
.form-messages.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    display: block;
}
.form-messages.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    display: block;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    ring: 2px;
    ring-color: #182462;
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(24, 36, 98, 0.1);
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
    background-color: #fef2f2;
}
.contact-form input:valid:not(:placeholder-shown),
.contact-form textarea:valid:not(:placeholder-shown) {
    border-color: #16a34a;
    background-color: #f0fdf4;
}
.contact-form-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.map-container {
    position: relative;
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}
.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e5e7eb;
    z-index: 1;
}
.map-container iframe {
    position: relative;
    z-index: 2;
}
.location-info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}
.location-info-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #182462;
}
.contact-button {
    background: linear-gradient(135deg, #182462 0%, #2a3a7a 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 36, 98, 0.3);
    background: linear-gradient(135deg, #0f1a40 0%, #182462 100%);
}
.contact-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.contact-hero {
    padding-bottom: 4rem;
}
.contact-info-section {
    padding: 4rem 0;
}
.contact-form-section {
    padding: 4rem 0;
}
.map-section {
    padding: 4rem 0;
}
.form-input-enhanced {
    appearance: none;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #111827;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.form-input-enhanced:focus {
    outline: none;
    border-color: #182462;
    box-shadow: 0 0 0 3px rgba(24, 36, 98, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}
.form-input-enhanced:hover {
    border-color: #9ca3af;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.form-input-enhanced::placeholder {
    color: #9ca3af;
    font-weight: 400;
}
.form-label-enhanced {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    letter-spacing: 0.025em;
}
.form-textarea-enhanced {
    min-height: 140px;
    resize: vertical;
    font-family: inherit;
}
.form-select-enhanced {
    background-image: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http:
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25em 1.25em;
    padding-right: 2.75rem;
    cursor: pointer;
}
.form-checkbox-enhanced {
    width: 1.125rem;
    height: 1.125rem;
    color: #182462;
    background-color: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}
.form-checkbox-enhanced:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 36, 98, 0.1);
}
.form-checkbox-enhanced:checked {
    background-color: #182462;
    border-color: #182462;
}
.job-application-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}
@media (max-width: 768px) {
    .mobile-padding {
        padding: 1rem;
    }
    .contact-hero,
    .contact-info-section,
    .contact-form-section,
    .map-section {
        padding: 3rem 0;
    }
    .contact-form-section {
        padding: 2rem 0;
    }
    .job-application-form {
        padding: 2rem;
    }
}
.job-hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.job-hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}
.job-hero-description {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.job-section-spacing {
    padding: 5rem 0;
}
.job-section-spacing-sm {
    padding: 4rem 0;
}
@media (max-width: 768px) {
    .job-section-spacing {
        padding: 3rem 0;
    }
    .job-section-spacing-sm {
        padding: 2.5rem 0;
    }
}
.bg-gradient-to-b.from-brand-dark.to-brand-blue {
    background: linear-gradient(to bottom, #0f1a40, #182462) !important;
}
.job-hero-badge,
.feature-card,
.job-application-form,
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(24, 36, 98, 0.3);
}
.form-input-enhanced:focus,
.form-textarea-enhanced:focus,
.form-select-enhanced:focus {
    transform: translateY(-1px);
}
.form-input-enhanced,
.form-textarea-enhanced,
.form-select-enhanced,
.form-checkbox-enhanced {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.job-application-form h2 {
    margin-bottom: 1.5rem;
}
.feature-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.bg-gradient-to-r.from-brand-dark.to-brand-blue {
    background: linear-gradient(to right, #0f1a40, #182462) !important;
}
.bg-gradient-to-br.from-brand-dark.to-brand-blue {
    background: linear-gradient(to bottom right, #0f1a40, #182462) !important;
}
.btn {
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn:hover::before {
    left: 100%;
}
.section-spacing {
    padding: 5rem 0;
}
.section-spacing-lg {
    padding: 8rem 0;
}
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
}
.image-hover-zoom {
    transition: transform 0.5s ease;
}
.image-hover-zoom:hover {
    transform: scale(1.1);
}
html {
    scroll-behavior: smooth;
}
.card-hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.reveal-up:nth-child(1) { transition-delay: 0s; }
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }
.reveal-up:nth-child(5) { transition-delay: 0.4s; }
.reveal-up:nth-child(6) { transition-delay: 0.5s; }
.elfsight-app-b019cdf4-edcd-401b-a317-fea326c15c26 {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }
    .section-spacing-lg {
        padding: 4rem 0;
    }
    .hero-text-mobile {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .gallery-item img {
        height: 200px;
    }
}