.elementor-7 .elementor-element.elementor-element-009a4a1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5523e39 *//* --- Core UI Brand Palette Variable Tokens --- */
:root {
    --navy-base: #051329;
    --navy-text: #082046;
    --orange-base: #FF8C00;
    --orange-hover: #e07b00;
    --slate-light: #F8FAFC;
    --slate-dark: #64748B;
    --slate-text: #334155;
    --text-muted: #94A3B8;
    --border-light: #E2E8F0;
    --border-soft: #F1F5F9;
    --green-base: #10B981;
    --purple-base: #8B5CF6;
    --blue-base: #2563EB;
    
    --font-primary: 'Plus Jakarta Sans', sans-serif;
}

/* --- Base Layout Wrappers Global Norms --- */
.page-wrapper {
    font-family: var(--font-primary);
    color: var(--text-muted);
    background-color: var(--slate-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1152px; /* Equates to max-w-6xl */
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

/* --- Reusable Element Primitives (Buttons/Icons/Colors) --- */
.text-navy { color: var(--navy-text); }
.text-orange { color: var(--orange-base); }
.text-white { color: #ffffff; }
.text-emerald { color: #34D399; }
.text-blue { color: var(--blue-base); }
.text-purple { color: var(--purple-base); }
.text-amber { color: #F59E0B; }

.bg-orange { background-color: var(--orange-base); }
.bg-blue { background-color: var(--blue-base); }
.bg-purple { background-color: var(--purple-base); }
.bg-navy { background-color: var(--navy-text); }
.bg-emerald { background-color: var(--green-base); }

.bg-orange-soft { background-color: rgba(255, 140, 0, 0.1); }
.bg-blue-soft { background-color: rgba(37, 99, 235, 0.1); }
.bg-purple-soft { background-color: rgba(139, 92, 246, 0.1); }
.bg-green-soft { background-color: rgba(16, 185, 129, 0.1); }

.icon-xs { width: 16px; height: 16px; }
.icon-sm { width: 20px; height: 20px; }
.icon-md { width: 24px; height: 24px; }
.icon-xl { width: 288px; height: 288px; }
.icon-fill { fill: currentColor; }
.shrink-0 { flex-shrink: 0; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--orange-base);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
    border: none;
}
.btn-primary:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
}
.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Custom selection styling */
.page-wrapper ::selection {
    background-color: var(--orange-base);
    color: #ffffff;
}

/* --- Section Layout Micro-Primitives --- */
.section-header { margin-bottom: 80px; }
.section-header.text-center { text-center: center; margin-right: auto; margin-left: auto; }
.section-tag { font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; font-size: 12px; display: block; margin-bottom: 12px; }
.section-title { font-size: 36px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 24px; }
.section-lead { font-size: 18px; color: var(--slate-dark); line-height: 1.6; }
.max-w-2xl { max-w: 672px; }
.max-w-4xl { max-w: 896px; }

@media(min-width: 768px) {
    .section-title { font-size: 48px; }
}

/* --- 1. Hero Section Framework --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-base);
    color: #ffffff;
    padding-top: 96px;
    padding-bottom: 96px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.mesh-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px_32px;
}

.radial-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
}
.orange-light { top: 0; right: 0; width: 600px; height: 600px; background-color: var(--orange-base); opacity: 0.1; }
.blue-light { bottom: 0; left: 0; width: 500px; height: 500px; background-color: #2563EB; opacity: 0.1; }

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--orange-base);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}
@media(min-width: 640px) { .hero-title { font-size: 48px; } }
@media(min-width: 1024px) { .hero-title { font-size: 72px; } }

.gradient-text {
    background: linear-gradient(to right, var(--orange-base), #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 18px;
    color: #CBD5E1;
    max-width: 512px;
    line-height: 1.625;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Right Visuals Graphic Layouts */
.hero-visual {
    position: relative;
    width: 100%;
    height: 450px;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}
@media(min-width: 768px) { .hero-visual { height: 580px; } }

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(5, 19, 41, 0.8), transparent, rgba(255, 140, 0, 0.1));
    border-radius: 24px;
    z-index: 10;
    pointer-events: none;
}

.visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.float-card {
    position: absolute;
    width: 208px; /* Equivalent to w-52 */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #F1F5F9;
    z-index: 20;
    transition: transform 0.5s ease;
}
.float-card:hover { transform: translateY(-4px); }
.float-card-flex { display: flex; align-items: center; gap: 12px; }

.card-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-metric-title { font-weight: 800; font-size: 14px; color: var(--navy-text); letter-spacing: -0.025em; margin: 0; }
.card-metric-sub { font-size: 12px; color: var(--slate-dark); margin: 0; }

.card-bottom-left { bottom: -24px; left: -24px; }
.card-top-right { top: 48px; right: -24px; }

/* --- 2. About & Services Layout Parameters --- */
.services-section {
    padding-top: 112px;
    padding-bottom: 112px;
    background-color: #ffffff;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.service-card {
    padding: 32px;
    border-radius: 24px;
    background-color: var(--slate-light);
    border: 1px solid #F1F5F9;
    transition: all 0.3s ease-in-out;
}
.service-card:hover {
    background-color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(148, 163, 184, 0.25);
    transform: translateY(-8px);
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon-box { transform: scale(1.1); }

.service-card-title { font-size: 24px; font-weight: 700; margin-bottom: 12px; tracking-tight: -0.025em; }
.service-card-text { font-size: 14px; color: var(--slate-dark); line-height: 1.6; margin-bottom: 24px; }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--slate-text);
    font-weight: 500;
    margin-bottom: 12px;
}
.feature-list li:last-child { margin-bottom: 0; }

/* --- 3. Process Pipeline Section Structures --- */
.process-section {
    padding-top: 112px;
    padding-bottom: 112px;
    background-color: var(--slate-light);
    border-top: 1px solid var(--border-light);
}

.process-timeline-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media(min-width: 768px) { .process-timeline-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.timeline-line {
    display: none;
    position: absolute;
    top: 68px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: linear-gradient(to right, var(--border-light), rgba(255, 140, 0, 0.3), var(--border-light));
    z-index: 0;
}
@media(min-width: 768px) { .timeline-line { display: block; } }

.process-card {
    position: relative;
    z-index: 10;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #F1F5F9;
    text-align: center;
    transition: all 0.3s ease;
}
.process-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05); }

.process-number {
    width: 56px;
    height: 56px;
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}
.process-card:hover .process-number { background-color: var(--orange-base)!important; }

.process-card-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.process-card-text { font-size: 12px; color: var(--slate-dark); line-height: 1.625; margin: 0; }

/* --- 4. Marquee Brand Strip Architecture --- */
.carousel-section {
    padding-top: 56px;
    padding-bottom: 56px;
    background-color: #ffffff;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}

.carousel-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.marquee-track-container {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
}

.marquee-scroller {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 32px;
    padding-left: 32px;
    animation: scrollAnimation 30s linear infinite;
}
.marquee-track-container:hover .marquee-scroller { animation-play-state: paused; }

.marquee-content-block {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-shrink: 0;
}

.brand-item { font-size: 32px; font-weight: 900; color: #CBD5E1; }
.font-tight { letter-spacing: -0.05em; }
.font-tighter { letter-spacing: -0.075em; }
.font-wide { letter-spacing: 0.05em; }
.font-widest { letter-spacing: 0.15em; }
.slate-span { color: #94A3B8; }

.fog-mask {
    position: absolute;
    vertical-align: middle;
    top: 0;
    bottom: 0;
    width: 144px; /* w-36 equivalent */
    pointer-events: none;
    z-index: 10;
}
.left-mask { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.right-mask { right: 0; background: linear-gradient(to left, #ffffff, transparent); }

/* --- 5. Project Dynamic Portfolio Sections --- */
.projects-section {
    padding-top: 112px;
    padding-bottom: 112px;
    background-color: var(--navy-base);
    color: #ffffff;
}
.projects-section .section-lead { color: #94A3B8; }

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media(min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media(min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.project-card {
    border-radius: 24px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.project-card:hover { border-color: rgba(255, 140, 0, 0.3); }

.project-img-wrapper {
    height: 208px; /* h-52 equivalent */
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.project-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover .project-img { transform: scale(1.05); }

.project-card-shading {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy-base), rgba(5, 19, 41, 0.4), transparent);
    z-index: 10;
    pointer-events: none;
}

.project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.project-card-heading {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 20;
    padding-right: 24px;
    padding-left: 24px;
    margin-bottom: 16px;
    color: #ffffff;
    transition: color 0.2s ease;
}
.project-card:hover .project-card-heading { color: var(--orange-base); }

.project-card-body {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card-excerpt {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-stat {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.025em;
}

/* --- 6. Client Feedback/Reviews Layout Framework --- */
.reviews-section {
    padding-top: 112px;
    padding-bottom: 112px;
    background-color: var(--slate-light);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media(min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media(min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.review-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid #F1F5F9;
    display: flex;
    flex-col: column;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}
.review-card:hover { box-shadow: 0 25px 50px -12px rgba(148, 163, 184, 0.25); }

.stars-flex { display: flex; gap: 4px; margin-bottom: 20px; }
.review-text { font-size: 14px; color: var(--slate-text); line-height: 1.625; italic: italic; font-style: italic; margin: 0; }

.review-user-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #F1F5F9;
    padding-top: 24px;
    margin-top: 24px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #E2E8F0;
    color: var(--navy-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.bg-blue-avatar { background-color: rgba(37, 99, 235, 0.1); }
.bg-red-avatar { background-color: rgba(220, 38, 38, 0.1); }

.user-name { font-size: 14px; font-weight: 700; margin: 0; }
.user-meta { font-size: 11px; color: var(--text-muted); font-weight: 500; margin: 0; }

/* --- 7. FAQ Struct Accumulations --- */
.faq-section {
    padding-top: 112px;
    padding-bottom: 112px;
    background-color: #ffffff;
    border-top:/* End custom CSS */