.elementor-136 .elementor-element.elementor-element-a4e52a3{--display:flex;--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-136 .elementor-element.elementor-element-8a6e683{--display:flex;--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-136 .elementor-element.elementor-element-193d7b1{--display:flex;--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d886306 *//* --- CINEMATIC SERVICE HERO --- */
.service-hero {
    background-color: #0a0c10;
    min-height: 100vh;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0; /* Let flexbox handle vertical centering */
}

/* --- THE DEPTH LAYER --- */
.hero-visual-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Deep vignette for that premium "Cosmic" feel */
    background: radial-gradient(circle at 50% 50%, rgba(10, 12, 16, 0) 0%, #0a0c10 85%);
}

.spotlight {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.1; /* Very subtle to keep it sophisticated */
    pointer-events: none;
}

.spotlight-1 {
    top: -10%;
    right: 5%;
    width: 45vw;
    height: 45vw;
    background: #3b82f6;
    animation: slowDrift 20s ease-in-out infinite alternate;
}

.spotlight-2 {
    bottom: -15%;
    left: 10%;
    width: 35vw;
    height: 35vw;
    background: #1d4ed8;
    animation: slowDrift 25s ease-in-out infinite alternate-reverse;
}

/* --- THE GRID (NOW ULTRA-SUBTLE) --- */
.animated-mesh {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px; /* Larger grid looks more premium */
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* --- CONTAINER & CONTENT --- */
.hero-container {
    max-width: 1400px; /* Wider for that elite agency feel */
    margin: 0 auto;
    padding: 0 8%;
    position: relative;
    z-index: 10;
}

.hero-main-title {
    font-size: clamp(3rem, 7.5vw, 5.8rem);
    line-height: 1.05; /* More breathing room than 0.9 */
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 10%, #93c5fd 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-lead {
    max-width: 580px;
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 45px;
    font-weight: 400;
}

/* --- STATS & ACTIONS --- */
.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: monospace;
}

.stat-label {
    color: #3b82f6;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 25px;
}

.cta-primary, .cta-secondary {
    padding: 18px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #3b82f6;
    color: #fff;
}

.cta-secondary {
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.cta-primary:hover { background: #2563eb; transform: translateY(-3px); }
.cta-secondary:hover { background: rgba(255,255,255,0.05); border-color: #3b82f6; }

/* --- ANIMATIONS --- */
@keyframes slowDrift {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(3%, 3%) scale(1.05); }
}

/* Responsive Fix */
@media (max-width: 1024px) {
    .hero-main-title { font-size: 3.5rem; }
    .hero-stats { flex-direction: column; gap: 25px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d5e05f4 *//* --- UPDATED FULL WIDTH GRID --- */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    background-color: #0a0c10;
    
    /* Full Width Logic */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    /* Vertical and Horizontal Padding */
    padding: 100px 8%; 
    box-sizing: border-box;
}

/* --- THE CARDS (Unchanged) --- */
.framework-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border-radius: 4px;
}

.framework-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #3b82f6;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- HEADER / META (Unchanged) --- */
.framework-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.phase-number {
    font-family: monospace;
    font-size: 0.85rem;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    font-weight: 700;
}

.phase-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #64748b;
    font-weight: 800;
}

/* --- TYPOGRAPHY (Unchanged) --- */
.framework-h3 {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.framework-p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* --- THE LIST (Unchanged) --- */
.framework-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.framework-list li {
    color: #f1f5f9;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.framework-list li::before {
    content: "";
    width: 10px;
    height: 1px;
    background: #3b82f6;
    margin-right: 15px;
}

/* --- THE CTA BUTTON (Unchanged) --- */
.framework-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.framework-cta:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.framework-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .framework-grid {
        grid-template-columns: 1fr;
        /* Reset margins for mobile to prevent overflow issues */
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        padding: 60px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-24d303e *//* --- TESTIMONIALS SECTION --- */
.testimonials-marquee {
    background-color: #0a0c10;
    padding: 120px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.marquee-header {
    text-align: center;
    margin-bottom: 80px;
}

/* --- THE MARQUEE ENGINE --- */
.marquee-container {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    animation: scrollMarquee 40s linear infinite;
    width: max-content;
}

/* Pause on Hover */
.marquee-track:hover {
    animation-play-state: paused;
}

/* --- THE CARDS --- */
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 45px;
    width: 400px;
    flex-shrink: 0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 4rem;
    color: #3b82f6;
    font-family: serif;
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.5;
}

.testimonial-text {
    color: #f1f5f9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.client-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.client-role {
    color: #3b82f6;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- ANIMATION --- */
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* Tablet & Mobile Adjustments */
@media (max-width: 768px) {
    .testimonial-card { width: 320px; padding: 30px; }
    .testimonial-text { font-size: 1rem; }
    .marquee-track { animation-duration: 25s; }
}/* End custom CSS */