/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Child theme for Hello Elementor.
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Custom Portfolio Grid Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
.portfolio-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.portfolio-item-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.portfolio-item:hover img {
    transform: scale(1.1);
}
.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    text-align: center;
}
.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}
.portfolio-item-overlay h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* ── CSS Design Variables ──────────────────── */
:root {
    --fp-primary: #2563EB;
    --fp-primary-light: #60A5FA;
    --fp-accent: #FACC15;
    --fp-accent-hover: #FDE047;
    --fp-text: #1F2937;
    --fp-text-secondary: #4B5563;
    --fp-card-bg: #F9FAFB;
    --fp-dark: #111827;
    --fp-success: #22C55E;
    --fp-radius: 0.2rem;
    --font-geist: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── Typography & Global Elements ──────────── */
body {
    font-family: var(--font-geist);
    color: var(--fp-text);
    background-color: #ffffff;
}

.fp-container {
    width: 100%;
    max-width: 1376px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Buttons ────────────────────────────────── */
.ghost-btn {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid #475569;
    color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.ghost-btn:hover {
    background: rgba(51, 65, 85, 0.8);
    border-color: #64748b;
}

/* ── Single Portfolio template classes ──────── */
.fp-single-project-article {
    display: block;
}

.fp-project-hero {
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    position: relative;
}

.fp-project-hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    width: 100%;
}

.fp-project-hero-content {
    color: #ffffff;
}

.fp-project-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fp-accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.fp-client {
    color: #e2e8f0;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.fp-project-content-wrap {
    padding: 3rem 2rem;
}

.fp-project-entry-content {
    max-width: 800px;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--fp-text-secondary);
}

/* ── Archive Portfolio template classes ─────── */
.fp-archive-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--fp-text);
    margin-top: 0;
    margin-bottom: 3rem;
}

/* ── Custom Blog Card Styles ───────────────── */
.blog-card-link {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.blog-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05) !important;
}
.blog-card-link:hover .blog-card-img {
    transform: scale(1.05);
}
.blog-card-link:hover .blog-card-title {
    color: #2563eb !important;
}

/* ── Custom Careers Card & Form Styles ──────── */
.career-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}
.fp-apply-form input:focus,
.fp-apply-form select:focus,
.fp-apply-form textarea:focus,
.fp-contact-form input:focus,
.fp-contact-form textarea:focus {
    outline: none !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2) !important;
}

/* ── Client Logo Marquee scroll animation ────── */
.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite !important;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

