/* ==========================================================================
   HOUSTON VIDEO EDITING - PREMIUM DESIGN SYSTEM & CUSTOM CSS
   ========================================================================== */
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');
/* CSS Variables & Tokens */
:root {
    /* Color Palette */
    --bg-main: #090b0f;
    --bg-card: #131722;
    --bg-card-hover: #1b2030;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 242, 254, 0.15);
    
     --primary:#68c4dd;
    --dark:#1f2937;
    --text:#5b6472;
    --border:#e8eef2;
    --bg:#f7fbfc;
    
    --navy: #0d1b3e;
    --blue: #2ba9dc;
    --blue-dark: #1f8fc4;
    --blue-light: #eaf6fc;
    --pill-bg: #dff1fa;
    --text-muted: #4b5567;

    --primary-cyan: #68c4dd;
        /* --primary-cyan: #92d6e9; */

    --primary-blue: #92d6e9;
    --primary-gradient: linear-gradient(135deg, #52A8BF 0%, #92d6e9 100%);
    --primary-gradient-hover: linear-gradient(135deg, #4facfe 0%, #52A8BF 100%);
    --dark-gradient: linear-gradient(180deg, #131722 0%, #090b0f 100%);



    --text-primary: #f8fafc;
    --text-secondary: #555;
    --text-muted: #64748b;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.25);
    --shadow-glow-hover: 0 0 35px rgba(0, 242, 254, 0.4);
    
    /* Layout Constants */
    --container-max-width: 1280px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    /* background-color: var(--bg-main); */
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}
p {
    margin-bottom: 10px !important;
}
button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}
ul {
    list-style: none;
}
/* Grid & Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: 5rem 0;
    position: relative;
}
.mgt-space {
    margin: 30px auto 0 auto;
}
.section-dark {
    background-color: var(--bg-main);
}
.section-card {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
/* Glassmorphism Class */
.glass {
       background: var(--primary-gradient);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid #fff;
}
/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-big-num.gradient-text {
    color: var(--white) !important;
    background-color:var(--white) ;
    -webkit-text-fill-color: transparent;

}
.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-cyan);
    margin-bottom: 0.75rem;
    display: block;
}
.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--primary-cyan);

}
.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin-bottom: 3.5rem;
}
.text-center {
    text-align: center;
}
.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}
/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    gap: 0.5rem;
}
.btn-primary {
    background: var(--primary-gradient);
    color: #090b0f;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}
.btn-primary:hover {
    background: var(--primary-gradient-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--primary-cyan);
    color: var(--white);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    transform: translateY(-2px);
}
.subtitle-h3 {
    font-size: 1.5rem;
    color: #000;
}
.btn-link {
    color: var(--primary-cyan);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 2px;
}
.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-cyan);
    transition: var(--transition-fast);
}
.btn-link:hover::after {
    width: 100%;
}
.btn-link svg {
    transition: var(--transition-fast);
}
.btn-link:hover svg {
    transform: translateX(4px);
}
/* Header & Navigation */
.header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}
.header.sticky {
    height: 70px;
    background: rgba(9, 11, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}
.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.high-quality-section .section-desc {
max-width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}
.logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--primary-cyan);
    fill: none;
    stroke-width: 2;
}
.logo-text span {
    color: var(--primary-cyan);
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-top: -2px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-cyan);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.phone-btn {
    border: 1px solid rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.05);
    color: var(--primary-cyan);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}
.phone-btn:hover {
    background: var(--primary-gradient);
    color: #090b0f;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}
.mobile-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}
/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 680px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--primary-cyan);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-desc {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 4rem;
}
/* Stats Row inside Hero/Bottom */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    flex-shrink: 0;
}
.stat-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--white);
}
/* Partners Logo Banner */
.partners {
    background: #0b0d12;
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}
.partners-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.partners-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem 1.5rem;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    opacity: 0.35;
    transition: var(--transition-fast);
}
.partner-logo:hover {
    opacity: 0.8;
}
.partner-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-card {
    border-radius: 20px;
    overflow: hidden;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgba(21, 25, 34, 0) 0%, rgba(9, 11, 15, 0.8) 100%); */
    z-index: 1;
}
.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    z-index: 0;
    /* opacity: 0.25; */
}
#services .service-card-bg {
opacity: 0.5;
}
#faq .glass {
    background: var(--bg-card);
}
.service-card-top, .service-card-bottom {
    position: relative;
    z-index: 2;
}
.service-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}
.service-icon-box svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}
.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}
.service-desc {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
/* Card Hover States */
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 242, 254, 0.05);
}
.service-card:hover .service-card-bg {
    opacity: 0.28;
    transform: scale(1.08);
}
.service-card:hover .service-icon-box {
    background: var(--primary-gradient);
    color: #090b0f;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}
.service-card:hover .service-title {
    color: var(--white);
}
.portfolio-slider-wrapper .service-card {
    opacity: 0 !important;
}
/* Why Choose Us & Advantage Section */
.advantage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.advantage-content .section-title {
    margin-bottom: 2rem;
}
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.feature-check {
    color: var(--primary-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}
.feature-check svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}
.feature-text {
    font-size: 0.9375rem;
    color: var(--white);
}
.feature-text strong {
    color: var(--primary-cyan);
    font-weight: 600;
}
/* Team Video Mockup */
.team-media-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    aspect-ratio: 16 / 9;
}
.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.team-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 11, 15, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}
.play-button-outer {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090b0f;
    box-shadow: var(--shadow-glow);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}
.play-button-outer svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-left: 4px;
}
.team-media-label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.team-media-wrapper:hover .team-image {
    transform: scale(1.03);
}
.team-media-wrapper:hover .play-button-outer {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-hover);
}
.team-media-wrapper:hover .team-media-overlay {
    background: rgba(9, 11, 15, 0.3);
}
/* Advantage Stats Grid */
.advantage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.adv-stat-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.adv-stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.02) 0%, rgba(79, 172, 254, 0) 100%);
}
.adv-stat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.adv-stat-icon {
    color: var(--white);
}
.adv-stat-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}
.adv-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}
.adv-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
} 
.services-grid.serve-service-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
}
/* Process Timeline Section */
.process-timeline {
    position: relative;
    margin-top: 4rem;
}
.process-line {
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-color) 0px, var(--border-color) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}
.process-step {
    text-align: center;
}
.process-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition-normal);
}
.process-step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #090b0f;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 242, 254, 0.3);
}
.process-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}
.process-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
}
.process-step-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 0 0.5rem;
}
/* Process Step Hover */
.process-step:hover .process-icon-wrapper {
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
/* Featured Work / Portfolio Section */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.portfolio-header .section-desc {
    margin-bottom: 0;
}
.portfolio-tabs {
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.375rem;
    border-radius: 50px;
    flex-wrap: wrap;
}
.portfolio-tab {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}
.portfolio-tab:hover {
    color: var(--text-primary);
}
.portfolio-tab.active {
    background: var(--primary-gradient);
    color: #090b0f;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}
.portfolio-slider-wrapper {
    position: relative;
    overflow: hidden;
}
.portfolio-slider {
    display: flex;
    gap: 2rem;
    transition: transform var(--transition-slow);
}
.portfolio-slide {
    min-width: calc((100% - 6rem) / 4);
    max-width: calc((100% - 6rem) / 4);
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/5;
}
.portfolio-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.high-quality-section .section-subtitle,.high-quality-section .section-title,.high-quality-section .section-desc {
    text-align: center;
}

.portfolio-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(9, 11, 15, 0.95) 0%, rgba(9, 11, 15, 0.4) 60%, rgba(9, 11, 15, 0) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(10px);
    transition: var(--transition-normal);
}
.portfolio-slide-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}
.portfolio-slide-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.portfolio-slide-play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
}
.portfolio-slide-play svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-left: 2px;
}
.portfolio-slide:hover .portfolio-slide-img {
    transform: scale(1.05);
}
.portfolio-slide:hover .portfolio-slide-overlay {
    transform: translateY(0);
}
.portfolio-slide:hover .portfolio-slide-play {
    opacity: 1;
    transform: scale(1);
    background: var(--primary-gradient);
    border-color: transparent;
    color: #090b0f;
    box-shadow: var(--shadow-glow);
}
/* Slider Controls */
.slider-ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--primary-gradient);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}
.slider-ctrl-btn:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    background: rgba(0, 242, 254, 0.03);
}
.slider-controls {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0;
}
.slider-controls-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
/* Testimonials Section */
.testimonials-slider-container {
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform var(--transition-slow);
}
.testimonial-card {
    min-width: calc((100% - 2rem) / 2);
    max-width: calc((100% - 2rem) / 2);
    flex-shrink: 0;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
}
.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: var(--primary-cyan);
    font-size: 6rem;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.stars-row {
    color: #f1c40f;
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}
.stars-row svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.testimonial-text {
    font-size: 1.0625rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 242, 254, 0.2);
}
.author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}
.author-title {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
/* FAQ Accordion Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.faq-item {
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}
.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition-fast);
}
.faq-toggle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}
.faq-toggle-icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
    transition: transform var(--transition-normal);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow) cubic-bezier(0, 1, 0, 1);
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.6;
}
.faq-answer-inner {
    padding: 0 2rem 1.5rem;
}
/* Active FAQ state */
.faq-item.active {
    border-color: rgba(0, 242, 254, 0.25);
    background: rgba(19, 23, 34, 0.9);
}
#testimonial .glass {
     background: rgba(19, 23, 34, 0.9);
}
.faq-item.active .faq-question {
    color: var(--primary-cyan);
}
.faq-item.active .faq-toggle-icon {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #090b0f;
    box-shadow: var(--shadow-glow);
}
.faq-item.active .faq-toggle-icon svg {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    max-height: 500px; /* high enough value for content */
    transition: max-height var(--transition-slow) cubic-bezier(1, 0, 1, 0);
}
/* Footer & Bottom CTA Banner */
.footer-cta {
    position: relative;
    border-radius: 30px;
    padding: 5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: -4rem;
    z-index: 10;
}
.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, rgba(0, 242, 254, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 0% 0%, rgba(79, 172, 254, 0.08) 0%, transparent 40%);
}
.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}
.cta-left {
    max-width: 600px;
}
.cta-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}
.cta-desc {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.cta-trust-items {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}
.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.cta-trust-icon {
    color: var(--primary-cyan);
}
.cta-trust-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}
/* Main Footer Area */
.footer-main {
    background-color: #06070a;
    border-top: 1px solid var(--border-color);
    padding: 10rem 0 3rem; /* Extra top padding to account for overlapping CTA */
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}
.footer-col-about .logo {
    margin-bottom: 1.5rem;
}
.footer-about-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    position: relative;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}
.footer-links a:hover {
    color: var(--primary-cyan);
    transform: translateX(4px);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}
.footer-contact-icon {
    color: var(--primary-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-legal-links {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-legal-links a:hover {
    color: var(--text-primary);
}
/* ==========================================================================
   RESPONSIVE STYLES (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .portfolio-slide {
        min-width: calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
    }
}
@media (max-width: 991px) {
    html {
        font-size: 15px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    /* Hero */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    /* Advantage */
    .advantage {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-media-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Process */
    .process-line {
        display: none;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 1.5rem;
    }
    
    /* Portfolio */
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .portfolio-slide {
        min-width: calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    /* Footer */
    .footer-cta {
        padding: 4rem 3rem;
    }
    
    .cta-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    /* Navigation Menu Toggle */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(9, 11, 15, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 4rem 3rem;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    /* When active, change toggle icon to X */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-actions .phone-btn {
        display: none; /* Let mobile menu or other actions handle contact details */
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Partners */
    .partners-slider {
        justify-content: center;
        gap: 2rem;
    }
    
    .partner-logo {
        height: 28px;
    }
}
@media (max-width: 576px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-slide {
        min-width: 100%;
        max-width: 100%;
    }
    
    .cta-trust-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-main {
        padding-top: 12rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}


/* Scroll Animation */
.animate-section {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    will-change: opacity, transform;
}

.animate-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional Variations */
.fade-left {
    transform: translateX(-80px);
}

.fade-right {
    transform: translateX(80px);
}

.zoom-in {
    transform: scale(.9);
}

.fade-left.show,
.fade-right.show,
.zoom-in.show {
    transform: none;
}

.location-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:3rem 5rem;
    margin-top:4rem;
}

.location-item{
    display:flex;
    gap:1.5rem;
    align-items:flex-start;
}
#location-section .section-desc {
    color:#fff;

}

.location-icon{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:50%;
    background: var(--primary-cyan);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.location-icon svg{
    width:34px;
    height:34px;
    stroke-width:2;
}

.location-item h3{
    margin-bottom:.75rem;
    font-size:1.7rem;
    font-weight:700;
}

.location-item p{
    color: var(--primary-cyan);
    line-height:1.9;
}

@media(max-width:768px){

.location-grid{
    grid-template-columns:1fr;
    gap:2rem;
}

.location-item{
    gap:1rem;
}

.location-icon{
    width:60px;
    height:60px;
    min-width:60px;
}

.location-icon svg{
    width:28px;
    height:28px;
}

}

/* ==========================================================================
   HOUSTON VIDEO EDITING - ABOUT PAGE STYLING (FIGMA-QUALITY MODERN UI)
   ========================================================================== */
/* 1. Page Global Ambient Glow Layout */
.about-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}
.about-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--primary-cyan);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.3125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}
.about-section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #000;
}
/* Ambient Backlighting */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}
.glow-1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-cyan);
}
.glow-2 {
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-blue);
}
.glow-3 {
    top: 30%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: #a855f7; /* Purple glow */
}
/* 2. Hero Section */
.about-hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
}
.hero-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}
.hero-left-content {
    max-width: 680px;
}
.about-hero-title {
    font-family: var(--font-heading);
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}
.about-hero-subheading {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}
.about-hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hero-right-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.studio-frame {
    padding: 1rem;
    border-radius: 24px;
    position: relative;
    width: 100%;
    max-width: 520px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}
.studio-frame:hover {
    transform: translateY(-5px) rotate(1deg);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: var(--shadow-glow);
}
.studio-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
}
.glass-overlay-label {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(9, 11, 15, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}
.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}
.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}
.scroll-indicator:hover .scroll-text {
    color: var(--primary-cyan);
}
.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollScroll 1.5s infinite;
}
@keyframes scrollScroll {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}
/* 3. Section 2: Our Journey */
.journey-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}
.journey-visual {
    position: relative;
}
.visual-badge-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}
.journey-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}
.floating-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    padding: 2.25rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 5;
    transition: var(--transition-normal);
}
.floating-badge:hover {
    transform: scale(1.05);
}
.badge-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}
.badge-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.3;
    display: block;
}
.journey-content {
    max-width: 580px;
}
.journey-paragraph {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.journey-paragraph.highlight {
    font-size: 1.25rem;
    color: var(--primary-cyan);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.today-marker {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border-left: 4px solid var(--primary-cyan);
}
.marker-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-cyan);
    border-radius: 50%;
    margin-top: 5px;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
}
.today-marker p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}
.today-marker strong {
    color: var(--text-primary);
    font-weight: 600;
}
/* 4. Section 3: Where It All Started (Alternating layout) */
.alternating-journey {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}
.alt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.alt-row.reverse {
    direction: rtl;
}
.alt-row.reverse .alt-content-col,
.alt-row.reverse .alt-media-col {
    direction: ltr; /* Reset text direction for internal items */
}
.alt-content-col h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}
.alt-content-col p {
    color: var(--text-secondary);
    line-height: 1.7;
}
.milestone-badge-glow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-cyan);
    margin-bottom: 0.75rem;
    display: inline-block;
}
.alt-media-col .media-container {
    position: relative;
    border-radius: 24px;
    padding: 0.75rem;
    box-shadow: var(--shadow-md);
}
.alt-media-col .media-container img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}
.floating-card {
    position: absolute;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    z-index: 5;
    transition: var(--transition-normal);
}
.floating-card:hover {
    transform: scale(1.05) translateY(-2px);
    border-color: rgba(0, 242, 254, 0.2);
}
.floating-card.top-right {
    top: -1.5rem;
    right: -1.5rem;
}
.floating-card.top-left {
    top: -1.5rem;
    left: -1.5rem;
}
.fc-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.fc-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.15rem;
}
.fc-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}
/* 5. Section 4: Why We Do What We Do */
.mission-section {
    position: relative;
    background-color:var(--white);
    padding: 8rem 0;
    overflow: hidden;
}
.motion-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 0),
        radial-gradient(rgba(79, 172, 254, 0.02) 2px, transparent 0);
    background-size: 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px;
    opacity: 0.8;
}
.mission-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 5;
}
.mission-media {
    display: flex;
    justify-content: center;
}
.mission-frame {
    padding: 0.75rem;
    border-radius: 24px;
    width: 100%;
}
.mission-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
}
.mission-text-content {
    max-width: 620px;
}
.mission-desc-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.mission-badge {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border-left: 4px solid var(--primary-blue);
}
.mb-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.mission-badge p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}
/* 6. Section 5: Statistics */
/* .stats-section-bg {
    background-image: radial-gradient(circle at 50% 50%, rgba(19, 23, 34, 0.85) 0%, rgba(9, 11, 15, 0.95) 100%);
} */
.stats-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-premium-card {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.stat-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}
.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}
.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}
.stat-icon-wrapper svg {
    width: 22px;
    height: 22px;
}
.stat-big-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}
.stat-premium-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    font-weight: 600;
}
.stat-premium-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}
/* Hover States for Stat Cards */
.stat-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.stat-premium-card.glow-cyan:hover {
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.1);
}
.stat-premium-card.glow-cyan:hover .stat-icon-wrapper {
    background: var(--primary-gradient);
    color: #090b0f;
    border-color: transparent;
}
.stat-premium-card.glow-blue:hover {
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.1);
}
.stat-premium-card.glow-blue:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #090b0f;
    border-color: transparent;
}
.stat-premium-card.glow-purple:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.1);
}
.stat-premium-card.glow-purple:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #ffffff;
    border-color: transparent;
}
.stat-premium-card.glow-orange:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.1);
}
.stat-premium-card.glow-orange:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, #f97316 0%, #eab308 100%);
    color: #ffffff;
    border-color: transparent;
}
/* 7. Section 6: Meet Our Creative Team (3x2 Grid) */
.team-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.team-card {
    border-radius: 24px;
    padding: 2.5rem 2.25rem;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}
.team-card-inner {
    position: relative;
    z-index: 2;
}
.avatar-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
}
.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
}
.team-mini-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-card);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}
.team-mini-icon svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
}
.editor-color { background-color: #00f2fe; }
.animation-color { background-color: #4facfe; }
.director-color { background-color: #a855f7; }
.voiceover-color { background-color: #22c55e; }
.design-color { background-color: #ec4899; }
.tech-color { background-color: #f97316; }
.team-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}
.team-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.hover-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    opacity: 0.5;
    transform: translateY(5px);
    transition: var(--transition-normal);
}
.hover-tags .tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    color: var(--white);
}
/* Hover States for Team Card */
.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 242, 254, 0.03);
}
.team-card:hover .team-avatar {
    border-color: var(--primary-cyan);
    transform: scale(1.05);
}
.team-card:hover .team-mini-icon {
    transform: scale(1.1);
}
/* .team-card:hover h3 {
    color: var(--primary-cyan);
} */
.team-card:hover .hover-tags {
    opacity: 1;
    transform: translateY(0);
}
/* 8. Section 7: Core Values (3x2 Grid) */
.values-bg {
    background-color: #0b0d12;
}
.values-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.value-card {
    border-radius: 24px;
    padding: 3rem 2.25rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}
.value-gradient-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    transition: var(--transition-normal);
}
.value-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}
.value-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.value-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
/* Hover glow gradient bar colors */
.glow-target-cyan { background: var(--primary-cyan); }
.glow-target-blue { background: var(--primary-blue); }
.glow-target-purple { background: linear-gradient(90deg, #a855f7, #ec4899); }
.glow-target-green { background: #22c55e; }
.glow-target-orange { background: #f97316; }
.glow-target-magenta { background: #ec4899; }
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.value-card:hover .value-gradient-bar {
    width: 100%;
}
.value-card:hover .value-icon-box {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.2);
}
/* 9. Section 8: Company Timeline (Horizontal Premium) */
.timeline-overflow-fix {
    overflow-x: hidden;
}
.horizontal-timeline-wrapper {
    position: relative;
    margin: 6rem auto 2rem;
    width: 100%;
    padding: 0 4rem;
}
.timeline-line-track {
    position: absolute;
    top: 25px; /* Alignment with circle centers */
    left: 8rem;
    right: 8rem;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 1;
}
.timeline-line-progress {
    width: 100%; /* Fully completed */
    height: 100%;
    background: var(--primary-gradient);
    box-shadow: var(--shadow-glow);
}
.timeline-nodes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    position: relative;
    z-index: 2;
}
.timeline-node-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.timeline-node-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-main);
    border: 4px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    margin-bottom: 2rem;
}
.timeline-node-dot.active {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
}
.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
}
.timeline-node-dot:hover {
    transform: scale(1.15);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow-hover);
}
.timeline-node-card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    width: 90%;
    transition: var(--transition-normal);
}
.timeline-node-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}
.timeline-node-card:hover h4 {
    color: var(--primary-cyan);;
}
.timeline-node-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.timeline-node-item:hover .timeline-node-card {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.2);
    background: rgba(19, 23, 34, 0.85);
}
/* 10. Section 9: Commitment */
.commitment-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}
.commitment-left {
    max-width: 680px;
}
.commitment-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.check-icon-wrapper {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}
.check-icon-wrapper svg {
    width: 12px;
    height: 12px;
}
.checklist-item span {
    font-size: 0.875rem;
    color: var(--white);
    line-height: 1.5;
}
.commitment-right {
    display: flex;
    justify-content: center;
}
.commitment-frame {
    padding: 0.75rem;
    border-radius: 24px;
    width: 100%;
}
.commitment-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
}
/* 11. Section 10: FAQ Section */
.about-faq-container {
    max-width: 820px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* 12. Section 11: Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}
.final-cta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.final-cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(9, 11, 15, 0.92) 0%, rgba(9, 11, 15, 0.98) 100%);
    z-index: 2;
}
.final-cta-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}
.final-cta-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.final-cta-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3.5rem;
}
.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.glow-cyan-border:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-split, .journey-split, .alt-row, .mission-split, .commitment-split {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .alt-row.reverse {
        direction: ltr;
    }
    .stats-row-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid-3x2, .values-grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-nodes {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .timeline-line-track {
        display: none; /* Hide horizontal timeline line on tablet/mobile */
    }
    .timeline-node-dot {
        margin-bottom: 1rem;
    }
}
@media (max-width: 680px) {
    .stats-row-grid, .team-grid-3x2, .values-grid-3x2, .timeline-nodes, .commitment-checklist-grid {
        grid-template-columns: 1fr;
    }
    .about-hero-title {
        font-size: 3rem;
    }
    .final-cta-headline {
        font-size: 2.5rem;
    }
}



.devices-section{
    padding:90px 0;
    background:linear-gradient(180deg,#ffffff,#f7fbfc);
}

.devices-section .container{
    width:min(1200px,92%);
    margin:auto;
}






.devices-section .devices-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.devices-section .device-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px 28px;
    text-align:center;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.devices-section .device-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:var(--primary);
    transform:scaleX(0);
    transition:.35s;
}

.devices-section .device-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.devices-section .device-card:hover::before{
    transform:scaleX(1);
}

.devices-section .device-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    background:rgba(104,196,221,.12);
    color:var(--primary);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}

.device-card h3{
    font-size:22px;
    color:var(--dark);
    margin-bottom:15px;
    line-height:1.4;
}

.device-card p{
    color:var(--text);
    line-height:1.8;
    font-size:15px;
}

/* .section-btn{
    margin-top:55px;
    text-align:center;
}

.btn-primary{
    display:inline-block;
    padding:16px 42px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:.3s;
} */

.btn-primary:hover{
    background:#4bb5d1;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(104,196,221,.35);
}

/* Tablet */
@media(max-width:992px){

    .devices-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media(max-width:576px){

    .devices-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:34px;
    }

    .device-card{
        padding:30px 22px;
    }

}




.Support-Every-section.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 64px;
  }

  /* Header */
 .Support-Every-section .eyebrow {
    text-align: center;
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
  }
 .Support-Every-section .eyebrow::before,
 .Support-Every-section .eyebrow::after {
    content: "";
    height: 1px;
    width: 40px;
    background: var(--blue);
    opacity: 0.5;
  }



 

  /* Feature pills */
 .Support-Every-section .feature-pills {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 36px;
  }
 .Support-Every-section .pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(20, 40, 80, 0.04);
  }
 .Support-Every-section .pill-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
  }
.Support-Every-section .pill-icon svg { width: 18px; height: 18px; }
  .Support-Every-section .pill-text { font-size: 13px; line-height: 1.3; }
 .Support-Every-section .pill-text strong { display: block; font-size: 14px; }

  /* Table */
 .Support-Every-section .table-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(20, 40, 80, 0.08);
    border: 1px solid var(--border);
  }

 .Support-Every-section table {
    width: 100%;
    border-collapse: collapse;
  }

 .Support-Every-section thead th {
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    color: var(--white);
    text-align: left;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
  }

 .Support-Every-section tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    vertical-align: middle;
  }
 .Support-Every-section tbody tr:last-child td { border-bottom: none; }
 .Support-Every-section tbody tr:hover { background: #f9fcfe; }

 .Support-Every-section .device-cell {
    display: flex;
    align-items: center;
    gap: 12px;
  }
 .Support-Every-section .device-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-dark);
    flex: 0 0 auto;
  }
 .Support-Every-section .device-icon svg { width: 20px; height: 20px; }
 .Support-Every-section .device-name { font-weight: 700; font-size: 14.5px; color: var(--text-muted); }

 .Support-Every-section .formats { color: var(--navy); }
 .Support-Every-section .res-pill {
    display: inline-block;
    background: var(--pill-bg);
    color: var(--blue-dark);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .Support-Every-section .framerate { color: var(--navy); white-space: nowrap; }

  /* CTA */
 .Support-Every-section .cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .Support-Every-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    color: var(--white);
    font-weight: 700;
    font-size: 17px;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(43, 169, 220, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
    cursor: pointer;
  }
 .Support-Every-section .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(43, 169, 220, 0.42);
  }
 .Support-Every-section .cta-btn svg { width: 20px; height: 20px; }

  /* Responsive */
  @media (max-width: 900px) {
  .Support-Every-section .feature-pills { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 640px) {
   .Support-Every-section .feature-pills { grid-template-columns: repeat(2, 1fr); }

    /* Card-style table on mobile */
   .Support-Every-section thead { display: none; }
   .Support-Every-section table, tbody, tr, td { display: block; width: 100%; }
   .Support-Every-section .table-card { background: transparent; box-shadow: none; border: none; }
   .Support-Every-section tbody tr {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 14px;
      padding: 8px 0;
      box-shadow: 0 4px 12px rgba(20, 40, 80, 0.05);
    }
   .Support-Every-section tbody td {
      border-bottom: none;
      padding: 8px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }
   .Support-Every-section tbody td::before {
      content: attr(data-label);
      font-weight: 700;
      color: var(--text-muted);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
   .Support-Every-section .device-cell { justify-content: flex-start; }
  .Support-Every-section td[data-label="Device Type"]::before { display: none; }
   .Support-Every-section td[data-label="Device Type"] { justify-content: flex-start; }
   .Support-Every-section .formats, .framerate { text-align: right; }
  }

  @media (max-width: 420px) {
    .Support-Every-section .feature-pills { grid-template-columns: 1fr 1fr; }
   .Support-Every-section.wrapper { padding: 32px 14px 48px; }
  }


  .multi-device-section{
    padding:100px 0;
    background:#f8fbfc;
}

.multi-device-section .container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}



.multi-device-section .section-heading h2{
    font-size:48px;
    font-weight:800;
    color:#202020;
    margin-bottom:15px;
    line-height:1.2;
}

.multi-device-section .section-heading h2 span{
    color:#68c4dd;
}

.multi-device-section .section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
}

.multi-device-section .tabs-wrapper{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:30px;
}

.multi-device-section .tabs-nav{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.multi-device-section .tab-btn{
    border:none;
    background:#fff;
    padding:22px 25px;
    text-align:left;
    cursor:pointer;
    border-radius:16px;
    font-size:18px;
    font-weight:700;
    color:#222;
    transition:.3s;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    border-left:5px solid transparent;
}

.multi-device-section .tab-btn:hover{
    border-left-color:#68c4dd;
}

.multi-device-section .tab-btn.active{
    background:#68c4dd;
    color:#fff;
}

.multi-device-section .tab-content-area{
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.multi-device-section .tab-content{
    display:none;
    align-items:center;
    gap:50px;
}

.multi-device-section .tab-content.active{
    display:flex;
}

.multi-device-section .content-text{
    flex:1;
}

.multi-device-section .content-text h3{
    font-size:36px;
    margin-bottom:25px;
    color:#202020;
    position:relative;
}

.multi-device-section .content-text h3::after{
    content:"";
    width:70px;
    height:4px;
    background:#68c4dd;
    display:block;
    margin-top:15px;
    border-radius:10px;
}

.multi-device-section .content-text p{
    color:#555;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.multi-device-section .content-image{
    width:40%;
}

.multi-device-section .content-image img{
    width:100%;
    border-radius:16px;
    display:block;
}

@media(max-width:991px){

.multi-device-section .tabs-wrapper{
    grid-template-columns:1fr;
}

.multi-device-section .tabs-nav{
    flex-direction:row;
    overflow:auto;
}

.multi-device-section .tab-btn{
    min-width:220px;
}

.multi-device-section .tab-content.active{
    flex-direction:column;
}

.multi-device-section .content-image{
    width:100%;
}

.multi-device-section .section-heading h2{
    font-size:36px;
}

}


.metric-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:90px;
    padding:10px 18px;
    border-radius:12px;
    background:#68c4dd;
    color:#fff;
    font-size:22px;
    font-weight:700;
    line-height:1;
}

.table-card table th:first-child,
.table-card table td:first-child{
    width:18%;
    text-align:center;
}

.table-card table th:nth-child(2),
.table-card table td:nth-child(2){
    width:47%;
}

.table-card table th:nth-child(3),
.table-card table td:nth-child(3){
    width:35%;
}