/* CSS Variables */
/* CSS Variables */
:root {
    --logo-orange: #e08a2a;
    --logo-orange-dark: #c26e14;
    --logo-orange-gradient: linear-gradient(135deg, #f0a545 0%, #c26e14 100%);
    --primary-navy: #0a0e2e;
    --navy-dark: #0f1a3a;
    --gold-primary: #f4c430;
    --gold-dark: #e6b800;
    --gold-gradient: linear-gradient(135deg, #f4c430 0%, #e6b800 100%);
    --purple-accent: #7c3aed;
    --gradient-main: linear-gradient(135deg, #0a0e2e 0%, #1a1f4a 50%, #2a2f6a 100%);
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
    --border-radius: 20px;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ==========================================================================
   ULTRA-SMOOTH CUSTOM CURSOR
   ========================================================================== */
/* Hide default cursor */
/* Restore for inputs */
input, textarea, select, button { cursor: auto !important; }
/* ULTRA-SMOOTH CURSOR */
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    background: var(--gray-100);
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Preloader */
/* ==========================================================================
   PRELOADER — updated to use the real logo mark instead of text.
   Replace the existing .preloader / .preloader-content / .logo-animation /
   .alp / .loading-bar / .loading-progress rules and keyframes in styles.css
   with this block.
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}
.preloader.loaded {
    opacity: 0;
    pointer-events: none;
}
.preloader-content {
    text-align: center;
}
.logo-animation {
    margin-bottom: 2.5rem;
}
.preloader-logo {
    display: block;
    width: clamp(120px, 24vw, 180px);
    height: auto;
    margin: 0 auto;
    /* Single reveal: fade/scale in + one 360° rotation, ~1s, runs once. */
    opacity: 0;
    animation: logoReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    /*
     * FALLBACK ONLY: if the logo file is the same dark/navy mark used in the
     * header (which relies on the light .logo-plate background to read),
     * it will be nearly invisible on this navy preloader background.
     * Uncomment the line below to force it to render in the gold tone
     * instead — remove it once a light/gold-toned preloader logo asset
     * exists, since a filter recolor is a stopgap, not a real substitute
     * for using the correct asset.
     */
    /* filter: brightness(0) saturate(100%) invert(1) sepia(1) saturate(6) hue-rotate(2deg) brightness(1.1); */
}
@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.6) rotate(0deg);
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}
.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.loading-progress {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    /* Single fill, capped at ~1.1s total (0.1s delay + 1s fill) — matches
       the logo reveal timing rather than looping indefinitely. */
    animation: loadingProgress 1s ease-out 0.1s forwards;
}
@keyframes loadingProgress {
    0%   { width: 0%; }
    100% { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .preloader-logo {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .loading-progress {
        animation: none;
        width: 100%;
    }
}
/* ==========================================================================
   IMPORTANT: paste this whole block into styles.css (replacing your
   existing header/nav/mobile-menu rules), OR add
   <link rel="stylesheet" href="header.css"> in index.html's <head> after
   styles.css. index.html currently only links styles.css, so a separate
   header.css file sitting unlinked is why nothing was applying.
   ========================================================================== */
/* Header Base */
/* Header Base */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 46, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(224, 138, 42, 0.25);
}
.header.scrolled {
    background: rgba(10, 14, 46, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.65rem 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo plate — warm ivory to match the logo's own background */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-plate {
    display: flex;
    align-items: center;
    background: #fdf8ef;
    padding: 0.5rem 1.2rem;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid var(--logo-orange);
    transition: var(--transition-fast);
    text-decoration: none;
}
.logo-plate:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--logo-orange-dark);
}
.logo-img {
    display: block;
    height: 46px;
    width: auto;
}
/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-item {
    position: relative;
}
.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: var(--white);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--logo-orange-gradient);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}
.dropdown-toggle:hover i,
.dropdown-toggle.active i {
    transform: rotate(180deg);
}
/* ===== Desktop Dropdown Menus ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 650px;
    max-width: 800px;
    background: rgba(10, 14, 46, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(224, 138, 42, 0.25);
    border-radius: var(--border-radius);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: var(--shadow-xl);
    pointer-events: none;
}
@media (min-width: 769px) {
    .nav-item.has-dropdown:hover .dropdown-menu,
    .nav-item.has-dropdown.hover-active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
}
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.dropdown-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    position: relative;
}
/* .dropdown-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--logo-orange-gradient);
} */
.dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}
.dropdown-link:hover {
    color: var(--logo-orange);
    padding-left: 1rem;
}
.dropdown-link:hover::before {
    /* content: ''; */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* width: 6px;
    height: 6px; */
    background: var(--logo-orange);
    border-radius: 50%;
}
.dropdown-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dropdown-content {
    display: flex;
    gap: 1.5rem;
}
.about-card {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.about-card:hover {
    background: rgba(224, 138, 42, 0.1);
    transform: translateY(-5px);
}
.about-card img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.about-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.about-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
/* ===== Practice Areas mega-menu — forced true 4 columns ===== */
.dropdown-menu-wide {
    min-width: 920px;
    max-width: 1080px;
    padding: 2.25rem 2.5rem;
}
.dropdown-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.dropdown-grid-4 .dropdown-column h4 {
    font-size: 0.92rem;
    line-height: 1.3;
    min-height: 2.4em;
}
.dropdown-grid-4 .dropdown-link {
    font-size: 0.85rem;
    padding: 0.4rem 0;
}
/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.phone-link {
    width: 48px;
    height: 48px;
    background: rgba(224, 138, 42, 0.18);
    border: 1px solid rgba(224, 138, 42, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-orange);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.phone-link:hover {
    background: var(--logo-orange);
    color: var(--navy-dark);
    transform: scale(1.1);
}
.consult-btn {
    background: var(--logo-orange-gradient);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(224, 138, 42, 0.35);
}
.consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 138, 42, 0.5);
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: rgba(224, 138, 42, 0.18);
    border: 1px solid rgba(224, 138, 42, 0.35);
    padding: 0.75rem;
    border-radius: 12px;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}
.mobile-menu-btn:hover {
    background: rgba(224, 138, 42, 0.3);
    transform: scale(1.05);
}
.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--logo-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0e2e 0%, #1a1f4a 100%);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(224, 138, 42, 0.25);
    background: rgba(10, 14, 46, 0.95);
    position: sticky;
    top: 0;
    z-index: 10;
}
.mobile-menu-header .logo-plate {
    padding: 0.4rem 0.85rem;
    border-radius: 10px;
}
.mobile-menu-header .logo-img {
    height: 32px;
}
.mobile-close-btn {
    background: rgba(224, 138, 42, 0.18);
    border: 1px solid rgba(224, 138, 42, 0.35);
    color: var(--logo-orange);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-close-btn:hover {
    background: var(--logo-orange);
    color: var(--navy-dark);
    transform: rotate(90deg) scale(1.1);
}
.mobile-nav {
    padding: 1.5rem 0;
}
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}
.dropdown-menu-simple {
    min-width: 220px;
    max-width: 240px;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.dropdown-menu-simple .dropdown-link {
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
}
.dropdown-menu-simple .dropdown-link:hover {
    padding-left: 0.9rem;
    background: rgba(224, 138, 42, 0.08);
}
.dropdown-menu-simple .dropdown-link:hover::before {
    display: none;
}
.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }
.mobile-nav-item:nth-child(6) { animation-delay: 0.6s; }
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.mobile-nav-link,
.mobile-dropdown-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}
.mobile-nav-link:hover,
.mobile-dropdown-link:hover {
    color: var(--logo-orange);
    background: rgba(224, 138, 42, 0.1);
    padding-left: 2.5rem;
}
.dropdown-trigger {
    font-weight: 600;
    cursor: pointer;
}
.dropdown-icon {
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}
.dropdown-mobile.active .dropdown-icon {
    transform: rotate(90deg);
    color: var(--logo-orange);
}
/* Mobile Dropdown Sub-lists */
.mobile-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid rgba(224, 138, 42, 0.3);
}
.mobile-dropdown-list.active {
    max-height: 900px;
    padding: 1rem 0 1rem 2.5rem;
}
.mobile-dropdown-link {
    padding: 1rem 2rem 1rem 3.5rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    position: relative;
    animation: slideInLeftSubmenu 0.3s ease forwards;
    opacity: 0;
    transform: translateX(-10px);
}
.mobile-dropdown-list.active .mobile-dropdown-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-dropdown-list.active .mobile-dropdown-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-dropdown-list.active .mobile-dropdown-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-dropdown-list.active .mobile-dropdown-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-dropdown-list.active .mobile-dropdown-link:nth-child(5) { animation-delay: 0.3s; }
@keyframes slideInLeftSubmenu {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.mobile-dropdown-link::before {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: rgba(224, 138, 42, 0.5);
    border-radius: 50%;
}
.mobile-dropdown-link:last-child {
    border-bottom: none;
}
.mobile-dropdown-group-label {
    padding: 0.9rem 2rem 0.4rem 3.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--logo-orange);
    opacity: 0.9;
}
.mobile-dropdown-group-label:first-child {
    padding-top: 0.5rem;
}
.mobile-menu-footer {
    padding: 2rem;
    border-top: 1px solid rgba(224, 138, 42, 0.25);
    background: rgba(10, 14, 46, 0.95);
    margin-top: auto;
}
.mobile-phone-btn {
    display: block;
    padding: 1rem 1.5rem;
    background: rgba(224, 138, 42, 0.12);
    color: var(--logo-orange);
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid rgba(224, 138, 42, 0.35);
    transition: all 0.3s ease;
}
.mobile-phone-btn:hover {
    background: var(--logo-orange);
    color: var(--navy-dark);
    transform: translateY(-2px);
}
.mobile-cta-btn {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: var(--logo-orange-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(224, 138, 42, 0.4);
}
.mobile-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(224, 138, 42, 0.55);
}
/* ===== MOBILE — hide desktop elements ===== */
@media (max-width: 768px) {
    .main-nav,
    .header-actions {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex !important;
    }
    .dropdown-menu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    .dropdown-trigger {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
}
@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem 16px;
    }
    .logo-plate {
        padding: 0.4rem 0.8rem;
        border-radius: 10px;
    }
    .logo-img {
        height: 34px;
    }
}
/* ===== Responsive dropdown widths ===== */
@media (max-width: 1300px) {
    .dropdown-menu-wide {
        min-width: 800px;
        max-width: 920px;
    }
}
@media (max-width: 1100px) {
    .dropdown-menu-wide {
        min-width: 640px;
        max-width: 760px;
    }
    .dropdown-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 2rem;
    }
}
@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 550px;
        max-width: 700px;
    }
}
@media (max-width: 992px) {
    .dropdown-menu {
        min-width: 500px;
        max-width: 600px;
    }
    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    margin: 50px 0 0 0;
    min-height: 88vh;
    display: flex;
    align-items: center;
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg,
            rgba(10, 14, 46, 0.95) 0%,
            rgba(10, 14, 46, 0.85) 28%,
            rgba(10, 14, 46, 0.45) 52%,
            rgba(10, 14, 46, 0.15) 72%,
            rgba(10, 14, 46, 0.05) 100%),
        linear-gradient(0deg,
            rgba(10, 14, 46, 0.55) 0%,
            rgba(10, 14, 46, 0) 30%);
}
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.hero-content {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 80px 0;
}
.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 600;
    margin: 0;
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    max-width: 480px;
    margin: 0;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0.25rem 0 0 0;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}
.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}
.btn-primary {
    background: var(--gold-gradient);
    color: var(--navy-dark);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
}
.btn-outline {
    background: rgba(10, 14, 46, 0.25);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}
.hero-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin: 0.5rem 0 0 0;
    padding: 0;
}
.hero-tags li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding-left: 1rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.hero-tags li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-primary);
    transform: translateY(-50%);
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: 80vh;
    }
    .hero-content {
        max-width: 100%;
        padding: 60px 0;
    }
    .hero-scrim {
        background:
            linear-gradient(180deg,
                rgba(10, 14, 46, 0.9) 0%,
                rgba(10, 14, 46, 0.75) 45%,
                rgba(10, 14, 46, 0.4) 70%,
                rgba(10, 14, 46, 0.15) 100%);
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
        margin: 30px 0;
    }
    .container {
        padding: 0 16px;
    }
    .hero-content {
        padding: 50px 0;
        gap: 1rem;
    }
    .hero-bg-image {
        object-position: 65% center;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
}
/* Tickr Section */
.practice-ticker {
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(244, 196, 48, 0.15);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin: 0;
}
.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.85rem 1.75rem 0.85rem 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}
.ticker-track-wrap {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}
.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: tickerScroll 34s linear infinite;
}
.ticker-track:hover {
    animation-play-state: paused;
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.ticker-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.85rem 1.5rem;
    white-space: nowrap;
}
.ticker-divider {
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }
    .ticker-track-wrap {
        overflow-x: auto;
    }
}
@media (max-width: 640px) {
    .ticker-label {
        padding: 0.7rem 1rem;
        font-size: 0.7rem;
        clip-path: none;
    }
    .ticker-item {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
}
/* Feature Practice Area */
.fpa-section {
    background: var(--navy-dark);
    padding: 100px 0;
}
.fpa-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
.fpa-intro {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.section-badge {
    display: inline-flex;
    background: rgba(244, 196, 48, 0.12);
    color: var(--gold-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(244, 196, 48, 0.3);
}
.fpa-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin: 0;
}
.fpa-intro-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
    max-width: 380px;
}
.fpa-rows {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
    row-gap: 2.75rem;
}
.fpa-row {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    text-decoration: none;
}
.fpa-row-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}
.fpa-row-icon svg {
    width: 26px;
    height: 26px;
}
.fpa-row:hover .fpa-row-icon {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--navy-dark);
    transform: translateY(-3px);
}
.fpa-row-text {
    display: flex;
    flex-direction: column;
}
.fpa-row-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.fpa-row:hover .fpa-row-title {
    color: var(--gold-primary);
}
.fpa-row-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}
.fpa-row-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 0.35rem;
}
.fpa-row-icon-alt {
    background: rgba(244, 196, 48, 0.1);
    border-color: rgba(244, 196, 48, 0.35);
    color: var(--gold-primary);
}
@media (max-width: 1024px) {
    .fpa-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .fpa-intro {
        position: static;
        align-items: center;
        text-align: center;
    }
    .fpa-intro-text {
        max-width: 520px;
    }
}
@media (max-width: 768px) {
    .fpa-rows {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }
}
@media (max-width: 480px) {
    .fpa-section {
        padding: 70px 0;
    }
    .fpa-heading {
        font-size: 1.9rem;
    }
    .fpa-row-icon {
        width: 48px;
        height: 48px;
    }
    .fpa-row-icon svg {
        width: 22px;
        height: 22px;
    }
}
/* About Section */
.about-section {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.about-watermark {
    position: absolute;
    top: -60px;
    left: -60px;
    font-size: 320px;
    color: var(--navy-dark);
    opacity: 0.025;
    transform: rotate(8deg);
    pointer-events: none;
    line-height: 1;
}
.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 3.5rem;
}
.about-media {
    position: relative;
}
.about-media-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    z-index: 1;
}
.about-media::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 22px;
    right: -22px;
    bottom: -22px;
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    z-index: 0;
}
.about-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.about-media-overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 14, 46, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 196, 48, 0.25);
    border-radius: 14px;
    padding: 1.1rem 1.4rem;
}
.about-overlay-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.about-overlay-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
.about-seal {
    position: absolute;
    top: -18px;
    left: -18px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    padding: 0.9rem 1.25rem;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}
.about-seal i {
    color: var(--gold-dark);
    font-size: 1.1rem;
}
.about-seal span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--navy-dark);
    max-width: 110px;
    line-height: 1.25;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.section-badge-light {
    display: inline-flex;
    background: var(--gray-100);
    color: var(--navy-dark);
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--gray-200);
}
.about-heading {
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.32;
    margin: 0;
    padding-bottom: 1.25rem;
}
.about-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: var(--gold-gradient);
}
.hero-gradient-dark {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--purple-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-text {
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.8;
    margin: 0;
}
.about-contact-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2.75rem;
    border-top: 1px solid var(--gray-200);
}
.about-contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: 14px;
    transition: var(--transition);
}
.about-contact-card:hover {
    background: var(--gray-100);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.about-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-dark);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.about-contact-card:hover .about-contact-icon {
    background: var(--gold-gradient);
    color: var(--navy-dark);
    transform: scale(1.08) rotate(-6deg);
}
.about-contact-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.2rem;
}
.about-contact-value {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
}
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-media {
        margin-top: 1rem;
    }
    .about-image {
        height: 340px;
    }
    .about-contact-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .about-heading,
    .about-content {
        text-align: left;
    }
}
@media (max-width: 480px) {
    .about-section {
        padding: 70px 0;
    }
    .about-media::before {
        top: 14px;
        left: 14px;
        right: -14px;
        bottom: -14px;
    }
    .about-seal {
        top: -14px;
        left: -14px;
        padding: 0.7rem 0.9rem;
    }
    .about-seal span {
        max-width: 90px;
        font-size: 0.72rem;
    }
    .about-media-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
/* pre footer */
.pre-footer-cta {
    background: var(--gray-100);
    padding: 40px 0;
}
.pfc-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.pfc-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.pfc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--navy-dark);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pfc-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0;
}
.pfc-actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}
.pfc-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--transition-fast);
}
.pfc-phone-link:hover {
    color: var(--gold-dark);
}
@media (max-width: 768px) {
    .pfc-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .pfc-actions {
        width: 100%;
        justify-content: space-between;
    }
}
@media (max-width: 480px) {
    .pre-footer-cta {
        padding: 30px 0;
    }
    .pfc-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .pfc-actions .btn {
        justify-content: center;
    }
}
/* Footer */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-brand .logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--gold-primary);
    transform: translateY(-3px) rotate(10deg);
}
.footer-column h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 1rem;
}
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-column ul li a:hover {
    color: var(--gold-primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}
.footer-brand-subtitle {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: -0.5rem 0 1rem 0;
    opacity: 1;
}
.footer-column ul li i {
    color: var(--gold-primary);
    width: 16px;
    margin-right: 0.5rem;
    font-size: 0.85rem;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.footer-disclaimer {
    max-width: 760px;
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}
.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .large-card {
        grid-row: span 1;
    }
}
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .hero-visual {
        display: none;
    }
}
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        justify-content: center;
    }
    .modern-stats {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .services-section,
    .about-section,
    .why-choose-section,
    .contact-section {
        padding: 80px 0;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .form-floating {
        padding: 2rem;
    }
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}
/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}
@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
.page-banner {
    position: relative;
    background: var(--navy-dark);
    padding: 170px 0 60px;
    overflow: hidden;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.page-banner-watermark {
    position: absolute;
    top: 50%;
    right: -0.35em;
    transform: translateY(-42%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(7rem, 16vw, 13rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.045);
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.page-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.page-banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}
.page-banner-eyebrow-line {
    width: 28px;
    height: 2px;
    background: var(--gold-primary);
    flex-shrink: 0;
}
.page-banner-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.01em;
    margin: 0 0 2rem;
}
.page-banner-heading-accent {
    display: inline-block;
    margin-top: 0.15em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.page-banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--transition-fast);
}
.page-banner-breadcrumb a:hover {
    color: var(--gold-primary);
}
.page-banner-breadcrumb span:last-child {
    color: var(--white);
}
.page-banner-breadcrumb-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-primary);
    flex-shrink: 0;
}