/* ============================================
   TURK FOR TECHNOLOGY - MODERN PREMIUM DESIGN
   Professional Technology Company Styling
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (Variables)
   ============================================ */
:root {
    /* Primary Colors - Tech Orange Gradient */
    --primary-color: #FF5E14;
    --primary-dark: #E54A00;
    --primary-light: #FF7A3D;
    --primary-gradient: linear-gradient(135deg, #FF5E14 0%, #FF8B4D 100%);
    --primary-gradient-hover: linear-gradient(135deg, #E54A00 0%, #FF5E14 100%);
    
    /* Secondary Colors - Deep Tech Blue */
    --secondary-color: #0A1628;
    --secondary-dark: #050C17;
    --secondary-light: #1A2D4A;
    
    /* Accent Colors */
    --accent-teal: #00D4AA;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    
    /* Neutral Colors */
    --text-primary: #1A1A2E;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --text-light: #A0AEC0;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-dark: #0A1628;
    --bg-dark-secondary: #132238;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(255, 94, 20, 0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typography Scale */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    --font-6xl: 3.75rem;
}

/* ============================================
   2. TYPOGRAPHY - Premium Fonts
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: var(--font-base);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1, .h1 { font-size: clamp(2.5rem, 5vw, var(--font-6xl)); }
h2, .h2 { font-size: clamp(2rem, 4vw, var(--font-5xl)); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, var(--font-4xl)); }
h4, .h4 { font-size: var(--font-2xl); }
h5, .h5 { font-size: var(--font-xl); }
h6, .h6 { font-size: var(--font-lg); }

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

code, .code {
    font-family: 'JetBrains Mono', monospace;
}

/* ============================================
   3. HEADER & NAVIGATION - Modern Premium Design
   ============================================ */

/* Top Header Bar */
.header-area {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
}

.header-area .container {
    max-width: 1400px;
}

.header-area .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo */
.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    max-height: 50px;
    width: auto;
    transition: var(--transition-base);
}

.header__logo:hover img {
    transform: scale(1.03);
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-right-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Info Items - Header Only (not affecting other swipers) */
.header-top-info-wrap {
    overflow: visible;
}

.header-top-info-wrap .header-top-info-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    align-items: center;
}

.header-top-info-wrap .header-info-item {
    flex-shrink: 0;
}

/* Ensure other swipers work normally */
.brand-logo-slider__container .swiper-wrapper {
    /* Reset any conflicting styles */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.info-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DD 100%);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

.info-content {
    line-height: 1.3;
}

.info-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.info-title a {
    color: var(--text-primary);
    transition: var(--transition-base);
}

.info-title a:hover {
    color: var(--primary-color);
}

.info-sub-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Social Icons in Header */
.header-social-networks {
    margin-left: auto;
    padding-left: 20px;
    border-left: 1px solid var(--bg-tertiary);
    flex-shrink: 0;
    order: 999;
}

.header-social-networks .inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social-networks .social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: var(--transition-base);
}

.header-social-networks .social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

.header-social-networks .social-link:hover i {
    color: white !important;
}

/* Navigation Bar - Bottom */
.header-bottom-wrap {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0D1E36 100%) !important;
    position: relative;
    overflow: hidden;
}

.header-bottom-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 94, 20, 0.5), transparent);
}

.header-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation Menu */
.navigation-menu {
    flex-grow: 1;
}

.navigation-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation-menu ul li {
    position: relative;
}

.navigation-menu ul li a {
    display: block;
    padding: 18px 22px !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-base);
    position: relative;
}

.navigation-menu ul li a::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 22px;
    right: 22px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition-base);
    border-radius: 2px;
}

.navigation-menu ul li a:hover,
.navigation-menu ul li.active a {
    color: white;
}

.navigation-menu ul li a:hover::before,
.navigation-menu ul li.active a::before {
    transform: scaleX(1);
}

body.tt-site .navigation-menu ul li a:hover::before,
body.tt-site .navigation-menu ul li.active a::before {
    box-shadow: 0 0 14px rgba(255, 94, 20, 0.55), 0 2px 8px rgba(255, 94, 20, 0.25);
}

body.tt-site .navigation-menu ul li a:hover,
body.tt-site .navigation-menu ul li.active a {
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.28);
}

/* Active state indicator */
.navigation-menu ul li.active a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--primary-color);
}

/* Header Sticky State */
.header-area.header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Hide search form */
.header-search-form {
    display: none !important;
}

/* Large screen header enhancements */
@media (min-width: 1200px) {
    .header-area .header {
        padding: 18px 0;
    }
    
    .header__logo img {
        max-height: 55px;
    }
    
    .info-icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
    
    .info-title {
        font-size: 0.95rem;
    }
    
    .header-social-networks .social-link {
        width: 42px;
        height: 42px;
    }
}

/* Extra large screens */
@media (min-width: 1400px) {
    .header-top-info-wrap .header-top-info-inner {
        gap: 30px;
    }
    
    .navigation-menu ul li a {
        padding: 18px 28px !important;
    }
}

/* Mobile Menu Enhancement */
.mobile-menu {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
    box-shadow: var(--shadow-2xl);
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.mobile-menu a {
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-base) !important;
}

.mobile-menu a:hover {
    background: var(--primary-gradient) !important;
    padding-left: 20px !important;
}

/* Mobile drawer & hamburger — see §27 Mobile navigation (end of file) */

/* ============================================
   4. HERO SECTION - Stunning Visual Impact
   ============================================ */
.appointment-hero-wrapper {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.appointment-hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 22, 40, 0.92) 0%, 
        rgba(10, 22, 40, 0.85) 50%,
        rgba(255, 94, 20, 0.3) 100%);
    z-index: 1;
}

.appointment-hero-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 94, 20, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.appointment-hero-wrapper .container {
    position: relative;
    z-index: 2;
}

.appointment-hero-text h6 {
    font-size: var(--font-sm);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.appointment-hero-text h6::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.appointment-hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.appointment-hero-text .text-line {
    position: relative;
    color: var(--primary-color) !important;
}

.appointment-hero-text .text-line::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-gradient);
    opacity: 0.3;
    z-index: -1;
}

/* Hero Form - Glass Card */
.business-solution-form-wrap {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.business-solution-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.contact-title h5 {
    font-weight: 700;
    font-size: var(--font-2xl);
    color: var(--text-primary);
}

.contact-title .text {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

/* Form Inputs */
.contact-form__two input,
.contact-form__two select,
.contact-form__two textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: var(--font-base);
    font-family: inherit;
    border: 2px solid var(--bg-tertiary);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: var(--transition-base);
}

.contact-form__two input:focus,
.contact-form__two select:focus,
.contact-form__two textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.1);
}

.contact-form__two input::placeholder,
.contact-form__two textarea::placeholder {
    color: var(--text-muted);
}

/* ============================================
   5. BUTTONS - Modern & Interactive
   ============================================ */
.ht-btn,
.btn-primary,
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: inherit;
    font-size: var(--font-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ht-btn::before,
.btn-primary::before,
button[type="submit"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient-hover);
    opacity: 0;
    transition: var(--transition-base);
}

.ht-btn:hover,
.btn-primary:hover,
button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.ht-btn:hover::before,
.btn-primary:hover::before,
button[type="submit"]:hover::before {
    opacity: 1;
}

.ht-btn span,
.btn-primary span,
button[type="submit"] span {
    position: relative;
    z-index: 1;
}

@keyframes tt-btn-shine {
    0% {
        transform: translateX(-150%) skewX(-16deg);
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    100% {
        transform: translateX(260%) skewX(-16deg);
        opacity: 0;
    }
}

body.tt-site .ht-btn::after,
body.tt-site .btn-primary::after,
body.tt-site button[type="submit"]::after {
    content: '';
    position: absolute;
    top: -45%;
    left: 0;
    width: 42%;
    height: 230%;
    background: linear-gradient(103deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 80%);
    transform: translateX(-180%) skewX(-16deg);
    z-index: 1;
    pointer-events: none;
}

body.tt-site .ht-btn:hover::after,
body.tt-site .btn-primary:hover::after,
body.tt-site button[type="submit"]:hover::after {
    animation: tt-btn-shine 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.tt-site .ht-btn span,
body.tt-site .btn-primary span,
body.tt-site button[type="submit"] span {
    z-index: 2;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.btn-text:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.btn-text .button-icon {
    transition: var(--transition-base);
}

.btn-text:hover .button-icon {
    transform: translateX(4px);
}

/* ============================================
   6. CARDS - Glass Morphism & Hover Effects
   ============================================ */
.card,
.ht-box-images,
.feature-box {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--bg-tertiary);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.card::before,
.ht-box-images::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.card:hover,
.ht-box-images:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card:hover::before,
.ht-box-images:hover::before {
    transform: scaleX(1);
}

.card-body {
    padding: 30px;
}

/* Service Cards */
.ht-box-images.style-06 {
    background: white;
    padding: 0;
}

.ht-box-images.style-06 .image-box-wrap {
    padding: 35px;
}

.ht-box-images.style-06 .box-image {
    margin-bottom: 25px;
}

.ht-box-images.style-06 .heading {
    font-size: var(--font-xl);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.ht-box-images.style-06 .text {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    line-height: 1.7;
}

.box-images-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-sm);
    transition: var(--transition-base);
}

.box-images-arrow:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* style-06: theme positions .box-images-arrow absolutely with text-align:center, but global
   .box-images-arrow sets display:inline-flex without justify-content — flex items hug the left edge
   (“Learn More” in the corner). Use normal flow + flex centering. */
.ht-box-images.style-06 .image-box-wrap .content .box-images-arrow {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
    line-height: inherit !important;
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 1.35rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
    z-index: 2;
}

.ht-box-images.style-06 .image-box-wrap .content .box-images-arrow::before {
    transform: translateY(101%);
    border-radius: 6px;
}

.ht-box-images.style-06:hover .image-box-wrap .content .box-images-arrow::before {
    transform: translateY(0);
}

/* ============================================
   7. SECTIONS - Modern Layout & Spacing
   ============================================ */
.section-space--ptb_100 {
    padding: 100px 0;
}

.section-space--ptb_120 {
    padding: 120px 0;
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-sub-title {
    font-size: var(--font-sm);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-sub-title::before,
.section-sub-title::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.section-title-wrap .heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
}

.text-color-primary {
    color: var(--primary-color) !important;
}

/* About Section */
.cybersecurity-about-box {
    padding: 60px 0;
}

.modern-number-01 .mark-text {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-right: 15px;
}

.modern-number-01 .heading {
    font-size: var(--font-2xl);
    color: var(--text-primary);
}

.cybersecurity-about-text .text {
    font-size: var(--font-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* ============================================
   8. BREADCRUMB - Modern Header
   ============================================ */
.breadcrumb-area {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 100%, rgba(255, 94, 20, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
}

.breadcrumb-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.breadcrumb-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 1;
}

.breadcrumb-title span {
    color: var(--primary-color);
}

/* ============================================
   9. STATISTICS / FUN FACTS - Animated Counters
   ============================================ */
.fun-fact-wrapper {
    background: var(--primary-gradient) !important;
    position: relative;
    overflow: hidden;
}

.fun-fact-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fun-fact--two {
    text-align: center;
    padding: 30px 20px;
}

.fun-fact__count {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
}

.fun-fact__text {
    font-size: var(--font-base);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   10. BRAND LOGO SLIDER
   ============================================ */
.brand-logo-slider-area {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.brand-logo__image {
    padding: 20px 30px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bg-tertiary);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.brand-logo__image img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-base);
}

.brand-logo:hover .brand-logo__image {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.brand-logo:hover .brand-logo__image img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   11. TEAM SECTION - Modern Cards
   ============================================ */
.team-member-wrapper {
    background: var(--bg-secondary);
}

.ht-team-member {
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--bg-tertiary);
    transition: var(--transition-base);
    margin-bottom: 30px;
}

.ht-team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.team-image {
    margin-bottom: 20px;
}

.team-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-tertiary);
    transition: var(--transition-base);
}

.ht-team-member:hover .team-image img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.team-info .name {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.team-info .position {
    font-size: var(--font-sm);
    color: var(--primary-color);
    font-weight: 500;
}

/* ============================================
   12. TABS - Modern Tab Design
   ============================================ */
.ht-tab-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
}

.ht-tab-menu .nav-link {
    padding: 15px 30px;
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ht-tab-menu .nav-link:hover {
    color: var(--primary-color);
    background: white;
}

.ht-tab-menu .nav-link.active {
    color: white;
    background: var(--primary-gradient);
    box-shadow: var(--shadow-md);
}

.tab-content-inner {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

/* Check List */
.check-list .list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: var(--font-base);
}

.check-list .list-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

/* ============================================
   13. CONTACT SECTION
   ============================================ */
.contact-us-area {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
}

.contact-form-wrap {
    background: white;
    padding: 50px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--bg-tertiary);
}

.contact-info-three {
    background: var(--secondary-color);
    padding: 50px;
    border-radius: var(--radius-2xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-three::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.2) 0%, transparent 70%);
}

.contact-info-three .heading {
    color: var(--text-light);
    font-size: var(--font-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-info-three .call-us {
    font-size: var(--font-3xl);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-three .call-us a {
    color: var(--primary-color);
    transition: var(--transition-base);
}

.contact-info-three .call-us a:hover {
    color: var(--primary-light);
}

.contact-info-three .text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-text-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    padding: 15px 25px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.location-text-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

/* ============================================
   14. FOOTER - Modern Dark Design
   ============================================ */
.footer-area-wrapper {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-dark) 100%) !important;
    position: relative;
    overflow: hidden;
}

.footer-area-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.footer-area-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.1) 0%, transparent 70%);
}

.footer-widget__logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-widget__title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-widget__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget__list li {
    margin-bottom: 12px;
}

.footer-widget__list a,
.hover-style-link {
    color: var(--text-light);
    font-size: var(--font-sm);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-widget__list a:hover,
.hover-style-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.copyright-text {
    color: var(--text-light);
    font-size: var(--font-sm);
}

.copyright-text a {
    color: var(--text-light);
    transition: var(--transition-base);
}

.copyright-text a:hover {
    color: var(--primary-color);
}

/* Social Icons */
.ht-social-networks li {
    display: inline-block;
    margin-left: 10px;
}

.ht-social-networks .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white !important;
    transition: var(--transition-base);
}

.ht-social-networks .social-link i {
    color: white !important;
}

.ht-social-networks .social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Header Social Icons */
.header-social-networks .social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    margin-left: 8px;
    transition: var(--transition-base);
}

.header-social-networks .social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
}

.header-social-networks .social-link:hover i {
    color: white !important;
}

/* ============================================
   15. SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    color: white;
}

/* ============================================
   16. PRELOADER - Modern Animation
   ============================================ */
.preloader-area-wrap {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.spinner {
    display: flex;
    gap: 8px;
}

.bounce1, .bounce2, .bounce3 {
    width: 18px;
    height: 18px;
    background: var(--primary-gradient);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.bounce1 {
    animation-delay: -0.32s;
}

.bounce2 {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* ============================================
   17. TIMELINE - Products Page
   ============================================ */
.ht-timeline.style-01 {
    position: relative;
}

.ht-timeline .line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
}

.ht-timeline .item {
    margin-bottom: 60px;
}

.ht-timeline .dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ht-timeline .middle-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.timeline-feature,
.timeline-info {
    padding: 30px;
}

.timeline-info .content-wrap {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-tertiary);
}

/* ============================================
   18. SERVICES PAGE - Cards Grid
   ============================================ */
.feature-icon-wrapper {
    background: var(--bg-secondary) !important;
}

.feature-icon-wrapper .card {
    height: 100%;
    border: 1px solid var(--bg-tertiary);
    transition: var(--transition-base);
}

.feature-icon-wrapper .card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-wrapper .card-body {
    padding: 35px 30px;
}

.feature-icon-wrapper .card h5 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.feature-icon-wrapper .card p {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    line-height: 1.8;
}

/* ============================================
   19. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* WOW.js animation enhancements */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

.move-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* ============================================
   20. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .header-bottom-wrap {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .section-space--ptb_100 {
        padding: 70px 0;
    }
    
    .section-space--ptb_120 {
        padding: 80px 0;
    }
    
    .appointment-hero-wrapper {
        min-height: auto;
        padding: 100px 0;
    }
    
    .business-solution-form-wrap {
        margin-top: 50px;
        padding: 30px;
    }
    
    .contact-info-three {
        margin-top: 40px;
    }
    
    .ht-timeline .line {
        left: 20px;
    }
    
    .ht-timeline .dots {
        left: 20px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-area {
        padding: 60px 0 40px;
    }
    
    .breadcrumb-title {
        font-size: 2rem;
    }
    
    .section-title-wrap .heading {
        font-size: 1.8rem;
    }
    
    .contact-form-wrap,
    .contact-info-three {
        padding: 30px 20px;
    }
    
    .fun-fact--two {
        padding: 20px 15px;
    }
    
    .fun-fact__count {
        font-size: 2.5rem;
    }
    
    .ht-tab-menu {
        justify-content: center;
    }
    
    .ht-tab-menu .nav-link {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .appointment-hero-text h1 {
        font-size: 2rem;
    }
    
    .modern-number-01 .mark-text {
        font-size: 3rem;
    }
    
    .ht-team-member {
        padding: 20px;
    }
}

/* ============================================
   21. UTILITY CLASSES
   ============================================ */
.bg-primary-gradient {
    background: var(--primary-gradient);
}

.bg-dark-gradient {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.text-primary-color {
    color: var(--primary-color);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-2xl {
    border-radius: var(--radius-2xl);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.transition-all {
    transition: var(--transition-base);
}

/* Glass Effect Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Scale */
.hover-scale {
    transition: var(--transition-base);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Hover Lift */
.hover-lift {
    transition: var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   22. ENHANCED MOBILE RESPONSIVE FIXES
   ============================================ */

/* Mobile drawer & nav toggle: §27 Mobile navigation */

@media (max-width: 1199px) {
    .header__navigation {
        display: none !important;
    }
    
    /* Hide info items on tablet */
    .header-top-info-wrap {
        display: none !important;
    }
    
    .header-social-networks {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
}

/* Tablet Responsive (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .appointment-hero-wrapper {
        min-height: auto;
        padding: 100px 0 80px;
    }
    
    .appointment-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .business-solution-form-wrap {
        margin-top: 50px;
        padding: 35px;
    }
    
    .section-space--ptb_100 {
        padding: 80px 0;
    }
    
    .section-space--ptb_120 {
        padding: 100px 0;
    }
}

/* Mobile Responsive (max-width: 767px) */
@media (max-width: 767px) {
    /* Header Fixes */
    .header-area {
        padding: 0;
    }
    
    .header-area .header {
        padding: 12px 0;
    }
    
    .header-right-inner {
        display: none !important;
    }
    
    .header-social-networks {
        display: none !important;
    }
    
    .header__logo img {
        max-height: 40px;
        width: auto;
    }
    
    .header-bottom-wrap {
        display: none !important;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    /* Hero Section Mobile */
    .appointment-hero-wrapper {
        min-height: auto !important;
        padding: 80px 0 60px !important;
    }
    
    .appointment-hero-text {
        text-align: center;
    }
    
    .appointment-hero-text h6 {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        justify-content: center;
    }
    
    .appointment-hero-text h6::before {
        display: none;
    }
    
    .appointment-hero-text h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .appointment-hero-text p {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
    }
    
    .hero-button {
        justify-content: center;
    }
    
    .hero-button .ht-btn {
        padding: 14px 24px !important;
        font-size: 0.85rem !important;
    }
    
    /* Form on Mobile */
    .business-solution-form-wrap {
        margin-top: 40px;
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .contact-title h5 {
        font-size: 1.25rem;
    }
    
    .contact-form__two input,
    .contact-form__two select,
    .contact-form__two textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    /* Section Spacing Mobile */
    .section-space--ptb_100 {
        padding: 60px 0;
    }
    
    .section-space--ptb_120 {
        padding: 70px 0;
    }
    
    .section-space--mb_60 {
        margin-bottom: 40px;
    }
    
    /* Section Titles Mobile */
    .section-title-wrap .heading {
        font-size: 1.5rem !important;
    }
    
    .section-sub-title {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .section-sub-title::before,
    .section-sub-title::after {
        width: 20px;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb-area {
        padding: 60px 0 50px;
    }
    
    .breadcrumb-title {
        font-size: 1.75rem !important;
    }
    
    /* About Section Mobile */
    .modern-number-01 {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .modern-number-01 .mark-text {
        font-size: 3.5rem;
    }
    
    .modern-number-01 .heading {
        font-size: 1.25rem;
    }
    
    .cybersecurity-about-text .text {
        font-size: 1rem;
        text-align: center;
    }
    
    .cybersecurity-about-text .button-text {
        text-align: center;
    }
    
    /* Cards Mobile */
    .ht-box-images.style-06 .image-box-wrap {
        padding: 25px 20px;
    }
    
    .ht-box-images.style-06 .heading {
        font-size: 1.1rem;
    }
    
    .card-body {
        padding: 20px;
    }
    
    /* Statistics Mobile */
    .fun-fact-wrapper {
        padding: 40px 0 20px !important;
    }
    
    .fun-fact--two {
        padding: 20px 10px;
    }
    
    .fun-fact__count {
        font-size: 2.5rem !important;
    }
    
    .fun-fact__text {
        font-size: 0.85rem;
    }
    
    /* Team Cards Mobile */
    .ht-team-member {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .team-image img {
        width: 100px;
        height: 100px;
    }
    
    .team-info .name {
        font-size: 1rem;
    }
    
    .team-info .position {
        font-size: 0.85rem;
    }
    
    /* Tabs Mobile */
    .ht-tab-menu {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }
    
    .ht-tab-menu .nav-link {
        padding: 12px 20px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }
    
    .tab-content-inner {
        padding: 25px 20px;
    }
    
    /* Contact Section Mobile */
    .contact-form-wrap {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .contact-info-three {
        padding: 30px 20px;
    }
    
    .contact-info-three .call-us {
        font-size: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-area {
        padding: 50px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 35px;
        text-align: center;
    }
    
    .footer-widget__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-widget__list {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-copyright-area {
        text-align: center;
    }
    
    .footer-copyright-area .col-md-6 {
        margin-bottom: 15px;
    }
    
    /* Buttons Mobile */
    .ht-btn {
        padding: 14px 24px !important;
        font-size: 0.85rem !important;
    }
    
    /* CTA Section Mobile */
    .cta-section h2 {
        font-size: 1.5rem !important;
    }
    
    .cta-section p {
        font-size: 0.95rem !important;
    }
    
    /* Products Page Mobile */
    .product-card {
        border-radius: 16px;
    }
    
    .product-card .p-lg-5 {
        padding: 25px 20px !important;
    }
    
    /* Why Choose Us Mobile */
    .why-choose-us-section .d-flex {
        margin-bottom: 20px;
    }
    
    /* Process Steps Mobile */
    .process-section .text-center.p-4 {
        padding: 20px 15px !important;
    }
    
    /* Values Section Mobile */
    .values-section .text-center.p-4 {
        padding: 20px 15px !important;
        margin-bottom: 15px;
    }
    
    /* Brand Logo Mobile */
    .brand-logo__image {
        padding: 15px 20px;
        min-height: 80px;
    }
    
    .brand-logo__image img {
        max-height: 40px;
    }
    
    /* Map Section Mobile */
    .map-section {
        height: 300px;
    }
    
    /* Goal Items Mobile */
    .goal-items .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px !important;
    }
    
    .goal-items img {
        margin: 0 auto;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .appointment-hero-text h1 {
        font-size: 1.5rem !important;
    }
    
    .appointment-hero-text p {
        font-size: 0.9rem !important;
    }
    
    .hero-button {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .hero-button .ht-btn {
        width: 100%;
    }
    
    .section-title-wrap .heading {
        font-size: 1.35rem !important;
    }
    
    .breadcrumb-title {
        font-size: 1.5rem !important;
    }
    
    .modern-number-01 .mark-text {
        font-size: 3rem;
    }
    
    .fun-fact__count {
        font-size: 2rem !important;
    }
    
    .contact-info-three .call-us {
        font-size: 1.25rem;
    }
    
    .ht-tab-menu .nav-link {
        font-size: 0.75rem;
        padding: 10px 15px;
    }
    
    .cta-section h2 {
        font-size: 1.25rem !important;
    }
    
    .product-card h3 {
        font-size: 1.25rem;
    }
}

/* Landscape Mobile Fix */
@media (max-width: 767px) and (orientation: landscape) {
    .appointment-hero-wrapper {
        min-height: auto !important;
        padding: 60px 0 40px !important;
    }
    
    .appointment-hero-text h1 {
        font-size: 1.5rem !important;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .mobile-menu {
        -webkit-overflow-scrolling: touch;
    }
    
    .appointment-hero-wrapper {
        min-height: -webkit-fill-available;
    }
}

/* Hide horizontal scroll */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Container padding on mobile */
@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ============================================
   SAFETY RULES - Ensure content displays
   ============================================ */

/* WOW.js Fix - Make elements visible even before animation triggers */
/* WOW.js sets visibility:hidden via JS, we override it */
.wow {
    visibility: visible !important;
}

/* Keep animations working for animated elements */
.wow.animated {
    animation-fill-mode: both;
}

/* Ensure main wrappers are visible */
#main-wrapper,
.site-wrapper-reveal {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Ensure all content sections display properly */
.feature-large-images-wrapper,
.cybersecurity-about-box,
.services-preview-section,
.brand-logo-slider-area,
.fun-fact-wrapper,
.why-choose-us-section,
.cta-section {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Ensure swipers work properly */
.swiper-container {
    overflow: hidden;
}

.brand-logo-slider__container .swiper-wrapper {
    display: flex;
    transition-property: transform;
}

/* Team section visibility */
.ht-team-member,
.team-image,
.team-info {
    display: block;
    visibility: visible;
}

/* Ensure grid items show */
.grid-item,
.col-lg-6,
.col-md-6 {
    visibility: visible;
}

/* ============================================
   23. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--bg-primary);
}

.testimonial-card {
    background: white;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--radius-xl);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.testimonial-stars {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #F59E0B;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-tertiary);
}

.author-name {
    font-weight: 700;
    font-size: var(--font-base);
    color: var(--text-primary);
    margin-bottom: 3px;
}

.author-role {
    font-size: var(--font-sm);
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* ============================================
   TEXT COLOR FIXES - Minimal overrides
   ============================================ */

/* Section titles should be dark */
.section-title-wrap .heading,
.section-title .heading {
    color: var(--text-primary);
}

/* Sub-titles in orange */
.section-sub-title,
h6.section-sub-title {
    color: var(--primary-color);
}

/* Primary accent color */
.text-color-primary,
span.text-color-primary {
    color: var(--primary-color);
}

/* Mark text (big numbers) */
.mark-text {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

/* Team info */
.team-info .name {
    color: var(--text-primary);
}

.team-info .position {
    color: var(--primary-color);
}

/* ============================================
   24. PREMIUM SERVICES & HOME SHOWCASE — motion + depth
   ============================================ */

@keyframes tt-gradient-drift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes tt-mesh-shift {
    0%, 100% { opacity: 0.45; transform: scale(1) translate(0, 0); }
    33% { opacity: 0.55; transform: scale(1.05) translate(2%, -1%); }
    66% { opacity: 0.5; transform: scale(1.02) translate(-1%, 2%); }
}

@keyframes tt-icon-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes tt-shine-sweep {
    0% { transform: translateX(-120%) skewX(-12deg); opacity: 0; }
    15% { opacity: 0.35; }
    40% { transform: translateX(120%) skewX(-12deg); opacity: 0; }
    100% { opacity: 0; }
}

@keyframes tt-pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.45); }
    70% { box-shadow: 0 0 0 16px rgba(255, 94, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0); }
}

@keyframes tt-cta-glow {
    0%, 100% { box-shadow: 0 12px 32px rgba(255, 94, 20, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06) inset; }
    50% { box-shadow: 0 16px 42px rgba(255, 94, 20, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset; }
}

/* ---- Services page: ambient canvas ---- */
.tt-services-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 42%, #f1f5f9 100%);
}

.tt-services-showcase::before {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: -30% -20% auto -20%;
    height: 70%;
    background:
        radial-gradient(ellipse 40% 50% at 15% 20%, rgba(255, 94, 20, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 35% 45% at 85% 10%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 55%);
    animation: tt-mesh-shift 18s ease-in-out infinite;
}

.tt-services-showcase::after {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: 0;
    background-image: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: tt-gradient-drift 12s ease infinite;
    opacity: 0.25;
}

.tt-services-showcase .container {
    position: relative;
    z-index: 1;
}

/* Section intro flair */
@keyframes tt-subtitle-glow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 94, 20, 0)); }
    50% { filter: drop-shadow(0 4px 14px rgba(255, 94, 20, 0.35)); }
}

.tt-svc-section-intro .section-sub-title {
    animation: tt-subtitle-glow 5s ease-in-out infinite;
}

.tt-svc-section-intro .heading span.text-color-primary {
    background: var(--primary-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: tt-gradient-drift 6s ease infinite;
}

.tt-svc-lede {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

/* ---- Premium service cards ---- */
.card.tt-svc-card {
    border-radius: var(--radius-2xl) !important;
    border: 1px solid rgba(10, 22, 40, 0.06) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
    isolation: isolate;
}

.card.tt-svc-card::before {
    height: 3px !important;
    background: var(--primary-gradient) !important;
    background-size: 200% 100%;
    animation: tt-gradient-drift 8s ease infinite;
    opacity: 0.85;
}

.tt-svc-card__glow {
    position: absolute;
    width: 160px;
    height: 160px;
    top: -50px;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.22) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tt-svc-card__shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

.tt-svc-card__shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    animation: tt-shine-sweep 5.5s ease-in-out infinite;
}

.card.tt-svc-card:hover {
    transform: translateY(-14px) scale(1.015) !important;
    border-color: rgba(255, 94, 20, 0.18) !important;
    box-shadow:
        0 32px 64px -20px rgba(10, 22, 40, 0.18),
        0 0 0 1px rgba(255, 94, 20, 0.1),
        0 0 48px rgba(255, 94, 20, 0.12) !important;
}

.card.tt-svc-card:hover .tt-svc-card__glow {
    opacity: 1;
    transform: scale(1.15);
}

.card.tt-svc-card .card-body {
    z-index: 3;
}

.tt-svc-icon-wrap {
    flex-shrink: 0;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.tt-svc-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.35), rgba(59, 130, 246, 0.15));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.35s ease;
}

.card.tt-svc-card:hover .tt-svc-icon-wrap {
    animation: none !important;
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 10px 28px rgba(255, 94, 20, 0.2);
}

.card.tt-svc-card:hover .tt-svc-icon-wrap::after {
    opacity: 1;
}

.tt-services-showcase .row > div:nth-child(3n+1) .tt-svc-icon-wrap {
    animation: tt-icon-bob 5s ease-in-out infinite;
}

.tt-services-showcase .row > div:nth-child(3n+2) .tt-svc-icon-wrap {
    animation: tt-icon-bob 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.tt-services-showcase .row > div:nth-child(3n) .tt-svc-icon-wrap {
    animation: tt-icon-bob 5s ease-in-out infinite;
    animation-delay: 1s;
}

.tt-svc-list li {
    position: relative;
    padding-left: 2px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, color 0.25s ease;
}

.tt-svc-list li + li {
    margin-top: 2px;
}

.card.tt-svc-card:hover .tt-svc-list li {
    opacity: 1;
}

.card.tt-svc-card:hover .tt-svc-list li:nth-child(1) { transform: translateX(6px); transition-delay: 0.03s; }
.card.tt-svc-card:hover .tt-svc-list li:nth-child(2) { transform: translateX(6px); transition-delay: 0.06s; }
.card.tt-svc-card:hover .tt-svc-list li:nth-child(3) { transform: translateX(6px); transition-delay: 0.09s; }
.card.tt-svc-card:hover .tt-svc-list li:nth-child(4) { transform: translateX(6px); transition-delay: 0.12s; }
.card.tt-svc-card:hover .tt-svc-list li:nth-child(5) { transform: translateX(6px); transition-delay: 0.15s; }

.card.tt-svc-card:hover .tt-svc-list li i {
    animation: tt-pulse-ring 2s ease-out 1;
}

/* Services page CTA */
.tt-services-cta .ht-btn {
    animation: tt-cta-glow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.tt-services-cta .ht-btn:hover {
    transform: translateY(-2px) scale(1.03);
    animation: none;
}

/* ---- Process timeline ---- */
.process-section.tt-process-premium {
    position: relative;
    overflow: hidden;
}

.process-section.tt-process-premium .tt-process-row::before {
    content: '';
    position: absolute;
    left: 11%;
    right: 11%;
    top: 44px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 94, 20, 0.2), rgba(255, 94, 20, 0.45), rgba(255, 94, 20, 0.2), transparent);
    pointer-events: none;
    opacity: 0;
    border-radius: 4px;
}

@media (min-width: 992px) {
    .process-section.tt-process-premium .tt-process-row::before {
        opacity: 1;
    }
}

.tt-process-node {
    position: relative;
    padding: 1rem 0.75rem;
    border-radius: var(--radius-xl);
    transition: background 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.tt-process-node:hover {
    transform: translateY(-6px);
    background: rgba(255, 94, 20, 0.04);
}

.tt-process-node__orb {
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    box-shadow: 0 14px 40px rgba(255, 94, 20, 0.35), 0 0 0 6px rgba(255, 255, 255, 0.95), 0 0 0 8px rgba(255, 94, 20, 0.12);
    position: relative;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    animation: tt-gradient-drift 10s ease infinite;
}

.tt-process-node__orb::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 94, 20, 0.25);
    animation: tt-pulse-ring 3s ease-out infinite;
}

.tt-process-node:hover .tt-process-node__orb {
    transform: scale(1.06) rotate(4deg);
    box-shadow: 0 20px 52px rgba(255, 94, 20, 0.45), 0 0 0 6px white, 0 0 0 10px rgba(255, 94, 20, 0.15);
}

.tt-process-node__orb span {
    color: white;
    font-size: 1.55rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ---- Home: cinematic hero ---- */
.appointment-hero-wrapper.tt-home-hero-cinematic {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #0a1628;
}

/* Pure CSS animated backdrop (no photo) */
.tt-home-hero-gradients {
    pointer-events: none;
    position: absolute;
    inset: -22%;
    z-index: 0;
    background:
        radial-gradient(ellipse 100% 85% at 8% 12%, rgba(255, 94, 20, 0.52) 0%, transparent 52%),
        radial-gradient(ellipse 90% 75% at 94% 6%, rgba(59, 130, 246, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at 78% 92%, rgba(0, 212, 170, 0.16) 0%, transparent 54%),
        radial-gradient(circle at 42% 48%, rgba(255, 94, 20, 0.1) 0%, transparent 45%),
        linear-gradient(168deg, #040a12 0%, #0c1f3d 35%, #0a2348 65%, #050c18 100%);
    transform-origin: 44% 38%;
    will-change: transform;
    animation: tt-hero-grad-morph 36s ease-in-out infinite alternate;
}

.tt-home-hero-hex {
    pointer-events: none;
    position: absolute;
    inset: -45%;
    width: 190%;
    height: 190%;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-opacity='0.085' stroke-width='1'%3E%3Cpath d='M14 0v13L0 24.5 14 36v13h14V36l14-11.5L14 13V0z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 52px 91px;
    opacity: 0.55;
    animation: tt-hero-hex-slow-drift 100s linear infinite;
}

@keyframes tt-hero-grad-morph {
    0% {
        transform: scale(1) translate(0, 0) rotate(0deg);
    }
    35% {
        transform: scale(1.12) translate(-3%, 2%) rotate(-0.35deg);
    }
    100% {
        transform: scale(1.22) translate(3%, -2.5%) rotate(0.5deg);
    }
}

@keyframes tt-hero-hex-slow-drift {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    100% {
        transform: rotate(360deg) translate(-2%, -1%);
    }
}

/* Subtle moving grid + nodes (HUD feel) */
.tt-home-hero-tech {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 18% 28%, rgba(255, 94, 20, 0.12) 0, transparent 42%),
        radial-gradient(circle at 82% 62%, rgba(59, 130, 246, 0.1) 0, transparent 45%);
    background-size:
        52px 52px,
        52px 52px,
        100% 100%,
        100% 100%;
    animation: tt-hero-tech-drift 70s linear infinite;
}

/* Soft scan / light sweep */
.tt-home-hero-scan {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.tt-home-hero-scan::before {
    content: '';
    position: absolute;
    left: -30%;
    width: 55%;
    top: -20%;
    bottom: -20%;
    background: linear-gradient(
        102deg,
        transparent 35%,
        rgba(255, 255, 255, 0.06) 48%,
        rgba(255, 94, 20, 0.09) 52%,
        transparent 65%
    );
    transform: rotate(11deg) translateX(-30%);
    animation: tt-hero-scan-sweep 18s ease-in-out infinite;
    opacity: 0.75;
}

.tt-home-hero-scan::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 22%;
    top: -25%;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.07), transparent);
    animation: tt-hero-vscan 14s ease-in-out infinite;
    opacity: 0.55;
}

@keyframes tt-hero-tech-drift {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 52px 52px, -52px -52px, 8% 6%, -6% -4%;
    }
}

@keyframes tt-hero-scan-sweep {
    0%, 100% {
        transform: rotate(11deg) translateX(-35%);
        opacity: 0.35;
    }
    45% {
        opacity: 0.85;
    }
    55% {
        transform: rotate(11deg) translateX(85%);
        opacity: 0.75;
    }
}

@keyframes tt-hero-vscan {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.2;
    }
    50% {
        transform: translateY(420%);
        opacity: 0.55;
    }
}

.appointment-hero-wrapper.tt-home-hero-cinematic::before,
.appointment-hero-wrapper.tt-home-hero-cinematic::after {
    z-index: 2;
}

.appointment-hero-wrapper.tt-home-hero-cinematic::before {
    background: linear-gradient(
        128deg,
        rgba(10, 22, 40, 0.86) 0%,
        rgba(10, 22, 40, 0.52) 46%,
        rgba(255, 94, 20, 0.26) 100%
    );
}

.appointment-hero-wrapper.tt-home-hero-cinematic::after {
    background:
        radial-gradient(ellipse 55% 50% at 16% 58%, rgba(255, 94, 20, 0.2) 0%, transparent 52%),
        radial-gradient(ellipse 48% 44% at 88% 22%, rgba(59, 130, 246, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 52% 100%, rgba(0, 212, 170, 0.07) 0%, transparent 42%);
}


.tt-home-hero-mesh {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 94, 20, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(10, 22, 40, 0.55) 0%, transparent 50%),
        linear-gradient(120deg, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.35) 45%, transparent 85%);
    animation: tt-mesh-shift 20s ease-in-out infinite;
}

.appointment-hero-wrapper.tt-home-hero-cinematic .container {
    position: relative;
    z-index: 4;
}

@media (max-width: 767px) {
    .tt-home-hero-gradients {
        inset: -12%;
        animation-duration: 44s;
    }

    .tt-home-hero-hex {
        opacity: 0.35;
        animation-duration: 130s;
    }

    .tt-home-hero-tech {
        opacity: 0.26;
        animation-duration: 95s;
    }

    .tt-home-hero-scan::before {
        animation-duration: 22s;
    }

    .tt-home-hero-scan::after {
        animation-duration: 18s;
    }
}

.tt-hero-value-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.tt-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, border-color 0.35s ease;
    animation: tt-hero-pill-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.tt-pill:nth-child(1) { animation-delay: 0.15s; }
.tt-pill:nth-child(2) { animation-delay: 0.28s; }
.tt-pill:nth-child(3) { animation-delay: 0.41s; }
.tt-pill:nth-child(4) { animation-delay: 0.54s; }

@keyframes tt-hero-pill-enter {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tt-pill:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 94, 20, 0.35);
    border-color: rgba(255, 255, 255, 0.45);
}

.tt-pill i {
    opacity: 0.9;
    font-size: 0.85rem;
}

.appointment-hero-text h1 span.text-line {
    background: linear-gradient(90deg, #fff 0%, #ffd4bf 45%, #fff 90%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: tt-gradient-drift 7s ease infinite;
}

/* ---- Home services grid ---- */
.services-preview-section.tt-home-services-showcase {
    position: relative;
    overflow: hidden;
}

.services-preview-section.tt-home-services-showcase::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.ht-box-images.style-06.tt-home-svc-card {
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(10, 22, 40, 0.06);
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.06);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.ht-box-images.style-06.tt-home-svc-card::before {
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 94, 20, 0.08) 0%, transparent 38%);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0.9;
}

.ht-box-images.style-06.tt-home-svc-card:hover::before {
    transform: scaleY(1);
}

.ht-box-images.style-06.tt-home-svc-card:hover {
    transform: translateY(-12px) !important;
    border-color: rgba(255, 94, 20, 0.15);
    box-shadow:
        0 28px 56px -16px rgba(10, 22, 40, 0.16),
        0 0 0 1px rgba(255, 94, 20, 0.08),
        0 0 48px rgba(255, 94, 20, 0.08);
}

.tt-home-svc-card .box-image .default-image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tt-home-svc-card:hover .box-image .default-image {
    transform: scale(1.08);
}

.tt-home-svc-card:hover .box-images-arrow .fa-arrow-right {
    animation: tt-arrow-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes tt-arrow-pop {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

.tt-svc-thumb-icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 94, 20, 0.2) 0%, rgba(255, 94, 20, 0.06) 100%);
    box-shadow: 0 8px 24px rgba(255, 94, 20, 0.15);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.tt-home-svc-card:hover .tt-svc-thumb-icon {
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 14px 36px rgba(255, 94, 20, 0.28);
}

/* ---- Breadcrumb pulse (services page) ---- */
.breadcrumb-area.tt-breadcrumb-luxe .breadcrumb_box h2 {
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.breadcrumb-area.tt-breadcrumb-luxe .breadcrumb-title span {
    background: linear-gradient(90deg, #fff, #ffd4bf, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: tt-gradient-drift 8s ease infinite;
}

@media (prefers-reduced-motion: reduce) {
    .tt-services-showcase::before,
    .tt-services-showcase::after,
    .tt-svc-card__shine::after,
    .tt-svc-section-intro .section-sub-title,
    .tt-svc-section-intro .heading span.text-color-primary,
    .tt-process-node__orb,
    .tt-process-node__orb::before,
    .tt-home-hero-mesh,
    .tt-home-hero-gradients,
    .tt-home-hero-hex,
    .tt-home-hero-tech,
    .tt-home-hero-scan::before,
    .tt-home-hero-scan::after,
    .tt-pill,
    .appointment-hero-text h1 span.text-line,
    .breadcrumb-area.tt-breadcrumb-luxe .breadcrumb-title span,
    .tt-services-cta .ht-btn {
        animation: none !important;
    }

    .tt-services-showcase::after {
        opacity: 0.08;
    }

    .tt-services-showcase .row > div:nth-child(n) .tt-svc-icon-wrap {
        animation: none !important;
    }

    .card.tt-svc-card:hover {
        transform: translateY(-6px) !important;
    }

    .tt-home-hero-scan::before,
    .tt-home-hero-scan::after {
        opacity: 0.25 !important;
        transform: none !important;
    }

    .tt-home-hero-gradients {
        animation: none !important;
        transform: none !important;
    }

    .tt-home-hero-hex {
        animation: none !important;
        transform: rotate(22deg);
        opacity: 0.3;
    }
}

/* ============================================
   25. ENTERPRISE GLOBAL — site-wide polish
   ============================================ */

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body.tt-site ::selection {
    background: rgba(255, 94, 20, 0.28);
    color: var(--secondary-color);
}

.tt-skip-link {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 100001;
    padding: 12px 20px;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transform: translateY(-180%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.tt-skip-link:focus {
    transform: translateY(0);
    outline: 3px solid #FF8B4D;
    outline-offset: 3px;
}

#main-content {
    outline: none;
}

/* Scroll progress */
.tt-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 100000;
    pointer-events: none;
    background: rgba(10, 22, 40, 0.12);
}

.tt-scroll-progress__bar {
    height: 100%;
    width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #E54A00 0%, #FF5E14 35%, #FF8B4D 70%, #FFB38A 100%);
    background-size: 200% 100%;
    animation: tt-scroll-hue 8s linear infinite;
    box-shadow: 0 0 20px rgba(255, 94, 20, 0.45);
}

@keyframes tt-scroll-hue {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Sticky header refinement */
.header-area {
    transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

.header-area.tt-header--scrolled {
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
}

.header-area.tt-header--scrolled .header {
    padding-top: 10px;
    padding-bottom: 10px;
}

body.tt-site .header-area.tt-header--scrolled > .container:first-of-type {
    background: rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    backdrop-filter: saturate(180%) blur(22px);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 4px 28px rgba(10, 22, 40, 0.06);
}

body.tt-site .header-area.tt-header--scrolled .header-bottom-wrap[style] {
    background-color: transparent !important;
    background-image:
        linear-gradient(135deg, rgba(229, 74, 0, 0.92) 0%, rgba(13, 30, 54, 0.92) 100%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.tt-site .section-title-wrap.tt-svc-section-intro .heading {
    position: relative;
    display: inline-block;
}

body.tt-site .section-title-wrap.tt-svc-section-intro.text-center .heading::after {
    content: '';
    display: block;
    width: min(200px, 48vw);
    height: 3px;
    margin: 16px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 94, 20, 0.95) 50%, transparent 100%);
    box-shadow: 0 0 22px rgba(255, 94, 20, 0.35);
}

body.tt-site .section-title-wrap.tt-svc-section-intro:not(.text-center) .heading::after {
    content: '';
    display: block;
    width: 76px;
    height: 3px;
    margin-top: 14px;
    border-radius: 3px;
    background: linear-gradient(90deg, #FF5E14 0%, rgba(255, 94, 20, 0.2) 100%);
    box-shadow: 0 0 18px rgba(255, 94, 20, 0.4);
}

/* Breadcrumb accent — all pages */
.breadcrumb-area .breadcrumb-title span {
    background: linear-gradient(135deg, #fff4ed 0%, #FF8B4D 38%, #FF5E14 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: tt-gradient-drift 10s ease infinite;
}

.breadcrumb-area .breadcrumb_box h2.breadcrumb-title {
    letter-spacing: -0.03em;
}

.breadcrumb-area.tt-breadcrumb-luxe .breadcrumb-title {
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

/* Products showcase */
.products-section.tt-product-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #f8fafc 0%, #eef2f7 48%, #f1f5f9 100%);
}

.products-section.tt-product-showcase::before {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: -25% -25% auto -25%;
    height: 65%;
    background:
        radial-gradient(ellipse 42% 48% at 12% 22%, rgba(255, 94, 20, 0.07) 0%, transparent 56%),
        radial-gradient(ellipse 38% 44% at 88% 18%, rgba(0, 212, 170, 0.06) 0%, transparent 52%);
    animation: tt-mesh-shift 22s ease-in-out infinite;
}

.products-section.tt-product-showcase .container {
    position: relative;
    z-index: 1;
}

.tt-enterprise-product {
    position: relative;
    border-radius: var(--radius-2xl) !important;
    overflow: hidden !important;
    border: 1px solid rgba(10, 22, 40, 0.07) !important;
    box-shadow: 0 12px 48px rgba(10, 22, 40, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.tt-enterprise-product::after {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    opacity: 0.5;
    z-index: 4;
}

.tt-enterprise-product:hover {
    transform: translateY(-10px) scale(1.008);
    border-color: rgba(255, 94, 20, 0.14) !important;
    box-shadow:
        0 32px 72px -28px rgba(10, 22, 40, 0.22),
        0 0 0 1px rgba(255, 94, 20, 0.1),
        0 0 56px rgba(255, 94, 20, 0.08);
}

.tt-enterprise-product > .row,
.tt-enterprise-product .col-lg-5,
.tt-enterprise-product .col-lg-7 {
    position: relative;
    z-index: 6;
}

/* Stats strip */
.fun-fact-wrapper.tt-stats-premium .row > div > .fun-fact--two {
    margin: 8px 10px;
    padding: 34px 22px 38px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.fun-fact-wrapper.tt-stats-premium .row > div:hover > .fun-fact--two {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.fun-fact-wrapper.tt-stats-premium .fun-fact__count {
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.25);
}

/* Client logo wall */
.brand-logo-slider-area.tt-logo-wall {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.brand-logo-slider-area.tt-logo-wall .brand-logo__image img {
    filter: grayscale(100%);
    opacity: 0.72;
    transition: filter 0.45s ease, opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo-slider-area.tt-logo-wall .swiper-slide:hover .brand-logo__image img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.feature-large-images-wrapper.tt-clients-enterprise {
    padding-bottom: 0 !important;
}

/* Home CTA cinematic */
.cta-section.tt-enterprise-cta {
    position: relative;
    overflow: hidden;
}

.cta-section.tt-enterprise-cta::before {
    content: '';
    position: absolute;
    inset: -40% -20%;
    background: radial-gradient(ellipse 45% 55% at 70% 40%, rgba(255, 94, 20, 0.28) 0%, transparent 55%);
    animation: tt-mesh-shift 16s ease-in-out infinite;
    pointer-events: none;
}

.cta-section.tt-enterprise-cta .container {
    position: relative;
    z-index: 1;
}

.cta-section.tt-enterprise-cta .ht-btn {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.cta-section.tt-enterprise-cta .ht-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

/* Why choose — icon cells */
.why-choose-us-section.tt-why-premium .flex-shrink-0 > div {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.why-choose-us-section.tt-why-premium .col-sm-6:hover .flex-shrink-0 > div {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 28px rgba(255, 94, 20, 0.35);
}

/* Contact page */
.contact-us-area.tt-contact-enterprise {
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 52%, var(--bg-primary) 100%);
}

.contact-us-area.tt-contact-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 94, 20, 0.35), transparent);
}

.tt-contact-panel {
    padding: 38px 34px 42px;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(10, 22, 40, 0.08);
    box-shadow: 0 28px 56px -24px rgba(10, 22, 40, 0.15), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: box-shadow 0.45s ease, border-color 0.35s ease;
}

.tt-contact-panel:focus-within {
    border-color: rgba(255, 94, 20, 0.25);
    box-shadow: 0 32px 60px -22px rgba(10, 22, 40, 0.18), 0 0 0 3px rgba(255, 94, 20, 0.12);
}

.tt-contact-aside {
    padding: 38px 34px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(160deg, var(--secondary-color) 0%, #0d1f3a 42%, var(--secondary-dark) 100%);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 56px -22px rgba(0, 0, 0, 0.45);
}

.tt-contact-aside .text {
    color: rgba(255, 255, 255, 0.76);
}

.tt-contact-aside .heading,
.tt-contact-aside .call-us a {
    color: #fff;
}

.tt-contact-aside .call-us a:hover {
    color: #FF8B4D;
}

/* Team */
.team-member-wrapper.tt-team-enterprise {
    position: relative;
}

.team-member-wrapper.tt-team-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 50vw);
    height: min(420px, 50vw);
    background: radial-gradient(circle, rgba(255, 94, 20, 0.06) 0%, transparent 68%);
    pointer-events: none;
}

.team-member-wrapper.tt-team-enterprise .ht-team-member {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.team-member-wrapper.tt-team-enterprise .ht-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 52px -20px rgba(10, 22, 40, 0.2);
}

.team-member-wrapper.tt-team-enterprise .team-image img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-member-wrapper.tt-team-enterprise .ht-team-member:hover .team-image img {
    transform: scale(1.06);
}

/* Footer top glow */
.footer-area-wrapper.tt-enterprise-footer {
    position: relative;
}

.footer-area-wrapper.tt-enterprise-footer::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 94, 20, 0.4) 22%, #FF5E14 50%, rgba(255, 94, 20, 0.4) 78%, transparent 100%);
    background-size: 200% 100%;
    animation: tt-gradient-drift 10s ease infinite;
}

.tt-contact-panel .contact-inner input:not([type="checkbox"]),
.tt-contact-panel .contact-inner textarea,
.tt-contact-panel .contact-inner select {
    border-radius: 12px !important;
    border: 1px solid rgba(10, 22, 40, 0.1) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.tt-contact-panel .contact-inner input:focus,
.tt-contact-panel .contact-inner textarea:focus,
.tt-contact-panel .contact-inner select:focus {
    border-color: rgba(255, 94, 20, 0.45) !important;
    box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.12) !important;
}

.trivexaerp-showcase.tt-trivexa-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    opacity: 0.65;
}

.trivexaerp-showcase.tt-trivexa-pro .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   26. GLOBAL TECH BACKGROUND ANIMATION (decorative)
   ============================================ */

@keyframes tt-tech-grid-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-60px, -60px); }
}

@keyframes tt-tech-circuit-shift {
    0% { background-position: 0 0; }
    100% { background-position: -240px -180px; }
}

@keyframes tt-tech-pulse-wave {
    0%, 100% { opacity: 0.55; transform: rotate(25deg) translateY(-8%); }
    50% { opacity: 0.85; transform: rotate(25deg) translateY(12%); }
}

/* Stack: decorative layer stays under header / main / footer */
body.tt-site .tt-tech-bg-animation {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    isolation: isolate;
}

body.tt-site > .header-area,
body.tt-site > main#main-content,
body.tt-site > .footer-area-wrapper {
    position: relative;
    z-index: 2;
}

body.tt-site .tt-scroll-progress {
    z-index: 100000;
}

.tt-tech-bg-animation__grid {
    position: absolute;
    inset: -40%;
    width: 180%;
    height: 180%;
    background-image:
        linear-gradient(rgba(255, 94, 20, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 22, 40, 0.06) 1px, transparent 1px),
        radial-gradient(rgba(255, 94, 20, 0.06) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px, 16px 16px;
    background-position: 0 0, 0 0, 12px 12px;
    animation: tt-tech-grid-drift 80s linear infinite;
    opacity: 0.7;
}

.tt-tech-bg-animation__circuit {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' fill='none'%3E%3Cg stroke='%23FF5E14' stroke-opacity='0.11' stroke-width='1'%3E%3Cpath d='M0 52h92l16 16 52-52M52 160V72l36-36'/%3E%3Ccircle cx='108' cy='36' r='3' fill='%23FF5E14' fill-opacity='0.16' stroke='none'/%3E%3Ccircle cx='36' cy='108' r='2.5' fill='%230A1628' fill-opacity='0.15' stroke='%23FF5E14' stroke-opacity='0.14'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 220px 220px;
    animation: tt-tech-circuit-shift 95s linear infinite;
    opacity: 0.9;
}

.tt-tech-bg-animation__pulse {
    position: absolute;
    inset: -30% -50%;
    width: 200%;
    height: 220%;
    background: linear-gradient(
        118deg,
        transparent 42%,
        rgba(255, 94, 20, 0.04) 48%,
        rgba(255, 139, 77, 0.06) 50%,
        rgba(255, 94, 20, 0.04) 52%,
        transparent 58%
    );
    animation: tt-tech-pulse-wave 18s ease-in-out infinite;
    opacity: 0.75;
}

/* --- Extra tech depth: hex mesh + soft light orbs --- */
@keyframes tt-tech-hex-drift {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.05); }
}

@keyframes tt-tech-orbs-float {
    0%, 100% {
        opacity: 0.65;
        transform: translate(0, 0) scale(1);
    }
    33% {
        opacity: 0.9;
        transform: translate(3%, -2%) scale(1.04);
    }
    66% {
        opacity: 0.75;
        transform: translate(-2%, 3%) scale(0.98);
    }
}

.tt-tech-bg-animation__hex {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill='none' stroke='%230A1628' stroke-opacity='0.07' stroke-width='1'%3E%3Cpath d='M14 0v13L0 24.5 14 36v13h14V36l14-11.5L14 13V0z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 56px 98px;
    animation: tt-tech-hex-drift 140s linear infinite;
    opacity: 0.55;
    pointer-events: none;
}

.tt-tech-bg-animation__orbs {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 220px 180px at 12% 18%, rgba(255, 94, 20, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 260px 200px at 88% 22%, rgba(59, 130, 246, 0.11) 0%, transparent 58%),
        radial-gradient(ellipse 200px 160px at 72% 78%, rgba(0, 212, 170, 0.09) 0%, transparent 52%),
        radial-gradient(ellipse 180px 140px at 28% 72%, rgba(255, 94, 20, 0.08) 0%, transparent 50%);
    animation: tt-tech-orbs-float 22s ease-in-out infinite;
    pointer-events: none;
}

@media (max-width: 767px) {
    .tt-tech-bg-animation__grid {
        animation-duration: 110s;
    }

    .tt-tech-bg-animation__circuit {
        animation-duration: 120s;
        opacity: 0.65;
    }

    .tt-tech-bg-animation__hex {
        animation-duration: 90s;
        opacity: 0.45;
    }

    .tt-tech-bg-animation__orbs {
        animation-duration: 28s;
        opacity: 0.72;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tt-tech-bg-animation__grid,
    .tt-tech-bg-animation__circuit,
    .tt-tech-bg-animation__pulse,
    .tt-tech-bg-animation__hex,
    .tt-tech-bg-animation__orbs {
        animation: none !important;
    }

    .tt-tech-bg-animation__grid {
        transform: translate(-20px, -20px);
    }

    .tt-tech-bg-animation__hex {
        transform: none;
        opacity: 0.42;
    }

    .tt-tech-bg-animation__orbs {
        transform: none;
        opacity: 0.6;
    }

    body.tt-site .ht-btn::after,
    body.tt-site .btn-primary::after,
    body.tt-site button[type="submit"]::after {
        display: none !important;
    }

    .tt-scroll-progress__bar {
        animation: none !important;
        background: #FF5E14;
    }

    .breadcrumb-area .breadcrumb-title span,
    .breadcrumb-area.tt-breadcrumb-luxe .breadcrumb-title span {
        animation: none !important;
    }

    .products-section.tt-product-showcase::before,
    .cta-section.tt-enterprise-cta::before,
    .footer-area-wrapper.tt-enterprise-footer::before {
        animation: none !important;
    }

    body.tt-site .tt-mobile-nav-trigger,
    body.tt-site .tt-mobile-nav-trigger .tt-mobile-nav-trigger__bar,
    body.tt-site .tt-mobile-drawer,
    body.tt-site .tt-menu-backdrop {
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   27. MOBILE NAVIGATION — modern drawer & toggle
   ============================================ */

body.tt-site .tt-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999998;
    background: rgba(5, 10, 20, 0.55);
    -webkit-backdrop-filter: blur(10px) saturate(125%);
    backdrop-filter: blur(10px) saturate(125%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
    pointer-events: none;
}

body.tt-site .tt-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.tt-site .tt-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    width: min(20.5rem, 88vw);
    z-index: 9999999;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(185deg, #0B1A30 0%, #070F1A 52%, #040810 100%);
    border-right: 1px solid rgba(255, 94, 20, 0.24);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.055) inset,
        16px 0 56px rgba(0, 0, 0, 0.5),
        6px 0 40px rgba(255, 94, 20, 0.07);
    transform: translate3d(-104%, 0, 0);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body.tt-site .tt-mobile-drawer.active {
    transform: translate3d(0, 0, 0);
}

body.tt-site .tt-mobile-drawer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FF5E14 38%, rgba(59, 130, 246, 0.85) 62%, transparent 100%);
    opacity: 0.88;
    pointer-events: none;
    z-index: 3;
}

body.tt-site .tt-mobile-drawer .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 1.1rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 2;
}

body.tt-site .tt-mobile-drawer .mobile-logo {
    max-width: 118px;
    height: auto;
    filter: none;
    opacity: 0.98;
}

body.tt-site .tt-mobile-drawer .mobile-menu-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    border-radius: 13px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #0A1628;
    background: linear-gradient(145deg, #FF9A5C 0%, #FF5E14 48%, #E54A00 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.38) inset,
        0 5px 20px rgba(255, 94, 20, 0.48);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.tt-site .tt-mobile-drawer .mobile-menu-close:hover {
    transform: scale(1.06);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.45) inset,
        0 8px 28px rgba(255, 94, 20, 0.55);
}

body.tt-site .tt-mobile-drawer .mobile-menu-close:focus-visible {
    outline: 2px solid #FF8B4D;
    outline-offset: 3px;
}

body.tt-site .tt-mobile-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0 1rem;
    flex: 1 1 auto;
}

body.tt-site .tt-mobile-drawer ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.tt-site .tt-mobile-drawer ul li a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 1.25rem;
    color: rgba(255, 255, 255, 0.93);
    text-decoration: none;
    font-size: 0.97rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.22s ease, color 0.22s ease, padding-left 0.22s ease;
    position: relative;
}

body.tt-site .tt-mobile-drawer ul li a::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF5E14;
    opacity: 0;
    box-shadow: 0 0 12px rgba(255, 94, 20, 0.55);
    transition: opacity 0.22s ease;
}

body.tt-site .tt-mobile-drawer ul li a:hover {
    background: linear-gradient(90deg, rgba(255, 94, 20, 0.2) 0%, transparent 72%);
    color: #ffffff;
    padding-left: 1.45rem;
}

body.tt-site .tt-mobile-drawer ul li a:hover::after {
    opacity: 1;
}

body.tt-site .tt-mobile-drawer ul li a i {
    color: #FF5E14;
    width: 1.25rem;
    text-align: center;
    font-size: 1rem;
}

body.tt-site .tt-mobile-drawer .mobile-menu-footer {
    padding: 1.15rem 1.25rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
}

body.tt-site .tt-mobile-drawer .mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

body.tt-site .tt-mobile-drawer .mobile-menu-contact a:hover {
    color: #FF9A62;
}

body.tt-site .tt-mobile-drawer .mobile-menu-contact i {
    color: #FF5E14;
    width: 1.05rem;
    text-align: center;
}

body.tt-site .tt-mobile-drawer .mobile-menu-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

body.tt-site .tt-mobile-drawer .mobile-menu-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.tt-site .tt-mobile-drawer .mobile-menu-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 94, 20, 0.18);
    border-color: rgba(255, 94, 20, 0.35);
}

body.tt-site .tt-mobile-drawer .mobile-menu-social a i {
    margin: 0;
    color: inherit;
}

@media (max-width: 1199px) {
    body.tt-site button.mobile-navigation-icon.tt-mobile-nav-trigger {
        width: 48px;
        height: 48px;
        border: none;
        padding: 0;
        margin: 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        z-index: 1000;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: linear-gradient(145deg, #FF9A5C 0%, #FF5E14 42%, #E85A12 100%);
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.3) inset,
            0 2px 5px rgba(10, 22, 40, 0.12) inset,
            0 6px 24px rgba(255, 94, 20, 0.44),
            0 0 18px rgba(255, 94, 20, 0.2);
        transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease;
    }

    body.tt-site button.mobile-navigation-icon.tt-mobile-nav-trigger:hover {
        transform: scale(1.06) translateY(-1px);
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.38) inset,
            0 2px 6px rgba(10, 22, 40, 0.1) inset,
            0 10px 32px rgba(255, 94, 20, 0.52),
            0 0 28px rgba(255, 94, 20, 0.35);
    }

    body.tt-site button.mobile-navigation-icon.tt-mobile-nav-trigger:focus-visible {
        outline: 2px solid #FF5E14;
        outline-offset: 3px;
    }

    body.tt-site button.mobile-navigation-icon.tt-mobile-nav-trigger:active {
        transform: scale(0.97);
    }

    body.tt-site .tt-mobile-nav-trigger__bars {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    body.tt-site .tt-mobile-nav-trigger__bar {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 2px;
        background: #0A1628;
        transition:
            transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.25s ease;
        transform-origin: center;
    }

    body.tt-site .tt-mobile-nav-trigger.is-active .tt-mobile-nav-trigger__bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.tt-site .tt-mobile-nav-trigger.is-active .tt-mobile-nav-trigger__bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    body.tt-site .tt-mobile-nav-trigger.is-active .tt-mobile-nav-trigger__bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 767px) {
    body.tt-site button.mobile-navigation-icon.tt-mobile-nav-trigger {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    body.tt-site .tt-mobile-nav-trigger__bar {
        width: 18px;
    }
}
