/* ============================================
   TECHWAIV - BRAND REDESIGN
   Clean, Professional, Minimal Design
   Red/Black/White Color Palette
   ============================================ */

/* CSS Variables - New Brand Design System */
:root {
    /* Brand Colors - Red/Black/White Only */
    --color-techwaiv-red: #E63946;
    --color-techwaiv-light-red:#FFF3F2;
    --color-red-dark: #D62828;
    --color-red-light: #F1FAEE;

    --color-black: #000000;
    --color-white: #FFFFFF;

    /* Minimal Grays - Only for subtle UI */
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #D4D4D4;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;

    /* Typography - Rounded Sans-Serif */
    --font-heading: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Weights */
    --font-weight-regular: 400;
    --font-weight-medium: 300;
    --font-weight-semibold: 400;
    --font-weight-bold: 300;

    /* Spacing */
    --section-padding: 50px;
    --section-padding-mobile: 50px;
    --container-max: 1200px;
    --container-padding: 32px;

    /* Transitions - Smooth & Intentional */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Shadows - Minimal & Subtle */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Border Radius - Rounded Forms */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 10px;
    --radius-xl: 5px;
    --radius-full: 50px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 16px;
}

h4 {
    font-size: 1.25rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-600);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--section-padding) 0;
}

.section-padding-sm {
    padding: 100px 0;
}

.bg-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.bg-light {
    background: var(--color-gray-50);
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 64px;
}

/* Section Headers */
.section-header {
    margin-bottom: 40px;
    max-width: 720px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.blog-listing {
    display: grid;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}

.blog-card {
    padding: 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--color-white);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.blog-card-horizontal {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 1px;
    align-items: stretch;
}

.blog-card-image {
    min-height: 180px;
    background: #f4f4f4;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.blog-card-tag {
    display: inline-flex;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.1);
    color: var(--color-techwaiv-red);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-card h3 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    margin-bottom: 0;
}

.blog-card p {
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 0;
}

.blog-card-body .btn {
    width: fit-content;
}

@media (max-width: 900px) {
    .blog-card-horizontal {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .blog-card-body {
        padding: 1.75rem;
    }
}

.blog-card p {
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 1.75rem;
}

.blog-summary {
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--color-gray-600);
}

.blog-summary h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Blog Post Styles */
.blog-content {
    background: var(--color-white);
}

.blog-article {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--color-gray-700);
}

.blog-article h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.blog-article h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-black);
}

.blog-article p {
    margin-bottom: 1.5rem;
}

.blog-list {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 0;
}

.blog-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.blog-list li::before {
    content: '•';
    color: var(--color-techwaiv-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.blog-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--color-gray-50);
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.blog-cta p {
    margin-bottom: 1.5rem;
    color: var(--color-gray-600);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-techwaiv-red);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--color-black);
    margin-bottom: 20px;
}

.bg-dark .section-title {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.bg-dark .section-subtitle {
    color: var(--color-gray-300);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-techwaiv-red);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-gray-200);
}

.btn-secondary:hover {
    border-color: var(--color-techwaiv-red);
    color: var(--color-techwaiv-red);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-large {
    padding: 22px 48px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}


/* ============================================
   NAVBAR – FINAL WORKING VERSION
============================================ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: background 0.4s ease, padding 0.3s ease;
}

/* BLACK AFTER SCROLL */
#navbar.scrolled {
    background: rgba(0, 0, 0, 0.85); /* 85% black */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Logo */
.nav-logo img {
    height: 48px;
    transition: height 0.3s ease;
}

#navbar.scrolled .nav-logo img {
    height: 42px;
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Links */
.nav-link {
    color: var(--color-white);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-techwaiv-red);
}
.logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    letter-spacing: -0.02em;
    transition: var(--transition-base);
}

/* CTA */
.nav-cta {
    background: var(--color-techwaiv-red);
    padding: 10px 24px;
    border-radius: 999px;
    color: #fff !important;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #fff;
    color: #000 !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: 0.3s ease;
}

.hamburger::before {
    position: absolute;
    top: -8px;
}

.hamburger::after {
    position: absolute;
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}
/* Ensure text stays white after scroll */
#navbar.scrolled .nav-link,
#navbar.scrolled .logo-text,
#navbar.scrolled .nav-menu li a {
    color: #fff !important;
}

/* Keep CTA styled correctly */
#navbar.scrolled .nav-cta {
    background: var(--color-techwaiv-red);
    color: #fff !important;
}

/* Keep hamburger white */
#navbar.scrolled .hamburger,
#navbar.scrolled .hamburger::before,
#navbar.scrolled .hamburger::after {
    background: #fff !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: var(--color-black);
    color: var(--color-white);
    padding-top: 100px;
    padding-bottom: 0;
    overflow: hidden;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-bottom: 48px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--color-techwaiv-red);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-300);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Stats Section */
.hero-stats-section {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--color-techwaiv-red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--color-techwaiv-red);
    font-weight: var(--font-weight-bold);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--font-weight-medium);
}

/* Old stats styles - keeping for backwards compatibility */
.hero-stats {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

/* ============================================
   SERVICES
   ============================================ */

   .services-preview{
    background: var(--color-gray-100);

   }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--color-gray-100);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gray-200);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--color-red-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 1.75rem;
    color: var(--color-techwaiv-red);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--color-black);
}

.service-card p {
    color: var(--color-gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-techwaiv-red);
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 12px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.service-features li::before {
    content: '✓';
    color: var(--color-techwaiv-red);
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.faq-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--color-gray-100);
    transition: var(--transition-base);
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gray-200);
}

.faq-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--color-black);
    line-height: 1.3;
}

.faq-card p {
    color: var(--color-gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   CASE STUDY SECTION
   ============================================ */

.service-case-study {
    margin-top: 64px;
}

.case-card {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-50) 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 2px solid var(--color-gray-100);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-techwaiv-red), var(--color-red-dark));
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-techwaiv-red);
}

.case-card-content .section-tag {
    color: var(--color-techwaiv-red);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    margin-bottom: 16px;
    display: block;
}

.case-card-content h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: var(--color-black);
    line-height: 1.2;
}

.case-card-content p {
    color: var(--color-gray-600);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.case-card-content p:last-of-type {
    margin-bottom: 32px;
}

.project-item {
    margin-top: 24px;
}

.project-item h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--color-black);
    line-height: 1.3;
}

.project-item p {
    color: var(--color-gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-item p:last-child {
    margin-bottom: 24px;
}

/* ============================================
   INDUSTRIES
   ============================================ */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    
}

.industry-item i {
    font-size: 2.5rem;
    color: var(--color-techwaiv-red);
}

.industry-item span {
    font-size: 1.0625rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-300);
}
/* ============================================
   PORTFOLIO – CLEAN BENTO GRID
============================================ */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
    gap: 24px;
}

/* Bento Sizes */
.portfolio-card.large {
    grid-column: span 4;
    grid-row: span 2;
     border-radius: var(--radius-lg);
}

.portfolio-card.medium {
    grid-column: span 2;
    grid-row: span 1;
     border-radius: var(--radius-xl);
}

.portfolio-card.small {
    grid-column: span 2;
    grid-row: span 1;
     border-radius: var(--radius-xl);
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Image fills entire card */
.portfolio-image {
    position: absolute;
    inset: 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s ease;
}

/* Ensure large portfolio images fully fit the card container */
.portfolio-card.large .portfolio-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}


/* Subtle zoom */
.portfolio-card:hover img {
    transform: scale(1.05);
}

/* Clean dark overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

/* Title */
.portfolio-overlay h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .portfolio-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   TEAM – PREMIUM SCROLL REVEAL VERSION
============================================ */

.team-preview {
    background: var(--color-techwaiv-light-red);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

/* Card */
.team-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    
    
     /* Initial animation state */
    opacity: 0;
    transform: translateY(60px);
}


/* Alternate directions */
.team-card.left {
    transform: translateX(-80px);
}

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

/* Visible State */
.team-card.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}


/* Hover image effect */
.team-card:hover .team-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
/* Info */
.team-info {
    padding: 28px 32px 36px;
}

.team-info h3 {
    font-size: 1.35rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    margin-bottom: 6px;
}

.team-role {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--color-techwaiv-red);
    font-weight: var(--font-weight-medium);
    margin-bottom: 14px;
}

.team-info p {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS – ADVANCED SLIDER
============================================ */

.testimonial-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-gray-100);
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

.testimonial-track {
    display: flex;
    gap: 40px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 420px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid var(--color-gray-100);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card {
    flex: 0 0 450px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--color-gray-100);
     transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 32px;
}



/* Buttons */
.slider-btn {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--color-techwaiv-red);
    color: white;
    border-color: var(--color-techwaiv-red);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.stars {
    color: var(--color-techwaiv-red);
    margin-bottom: 24px;
    font-size: 1.125rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-black);
}

.testimonial-author span {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--color-black);
    padding: 80px 0;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: 24px;
    color: var(--color-white);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--color-gray-300);
    max-width: 640px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-black);
    color: var(--color-gray-300);
    padding: 72px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: block;
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-techwaiv-red);
    transform: translateY(-4px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    font-size: 1.0625rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-techwaiv-red);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.0625rem;
}

.footer-contact i {
    color: var(--color-techwaiv-red);
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    padding: 140px 0 80px;
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
}

.page-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-techwaiv-red);
    margin-bottom: 16px;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-300);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FORMS
   ============================================ */

.contact-form {
    max-width: 720px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-techwaiv-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --container-padding: 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 56px;
        --container-padding: 16px;
    }

    /* Nav */
    .nav-toggle {
        display: block;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 88px 28px 28px;
        gap: 20px;
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--color-black);
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 8px;
        margin-left: 16px;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 14px;
        gap: 12px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-suffix {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

    /* Grids */
    .services-grid,
    .team-grid,
    .portfolio-grid,
    .benefits-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Service cards */
    .service-card {
        padding: 28px;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 88vw;
        padding: 28px;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        gap: 20px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Page headers */
    .page-header {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    /* Mission/benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    /* Story */
    .story-stats-card {
        padding: 1.5rem;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   PAGE-SPECIFIC STYLES - Add to style.css
   ============================================ */

/* Scroll-Aware Navbar Enhancement */
.navbar {
    height: 68px;
    mix-blend-mode: difference;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    mix-blend-mode: normal;
}

.navbar.scrolled .nav-logo svg text {
    fill: #0a0a0a;
}

.navbar.scrolled .nav-link {
    color: #0a0a0a;
}

/* TechWaiv SVG Logo Styles */
.nav-logo svg {
    height: 40px;
    width: auto;
    display: block;
}

/* Page Header Styles (for About, Contact) */
.page-header {
    min-height: auto;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 72px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-tag {
    display: inline-block;
    color: #ff0000;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 60px;
}

.page-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: #ff0000;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-weight: 700;
    max-width: 800px;
}

.page-title span {
    color: #ff0000;
    position: relative;
    display: inline-block;
}

.page-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 0, 0, 0.3);
    z-index: -1;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    line-height: 1.8;
}

/* Service Hero (for Management Systems, SEO) */
.service-hero {
    min-height: auto;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    padding: 120px 0 72px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sh-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff0000;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.sh-content h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.sh-content>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.sh-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.btn-white {
    background: #ffffff;
    color: #ff0000;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Dashboard Preview (Management Systems) */
.dashboard-preview {
    background: #141414;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.dp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dp-search {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    margin-right: 1rem;
}

.dp-actions {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.dp-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 400px;
}

.dp-sidebar {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dp-menu-item {
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dp-menu-item:hover,
.dp-menu-item.active {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.dp-main {
    padding: 1.5rem;
}

.dp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dp-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dps-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.dps-value {
    display: block;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.dp-chart {
    height: 200px;
    background: linear-gradient(to top, rgba(255, 0, 0, 0.2), transparent);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.dp-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff0000' fill-opacity='0.3' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
}

/* SEO Graph Animation */
.seo-graph {
    background: #141414;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.seo-graph::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
}

.sg-line {
    height: 200px;
    position: relative;
    margin-bottom: 2rem;
}

.sg-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.sg-points {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.sg-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #1f1f1f;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, 50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

.sg-point.active {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: none;
    width: 24px;
    height: 24px;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, 50%) scale(1);
    }

    50% {
        transform: translate(-50%, 50%) scale(1.2);
    }
}

.sg-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Service Cards Grid */
.st-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.st-card {
    background: #f5f5f5;
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.st-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.st-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.st-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #ff0000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-card:hover .st-icon {
    background: #ff0000;
    color: #ffffff;
    transform: rotateY(360deg);
}

.st-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.st-card>p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.st-features {
    list-style: none;
}

.st-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.st-features li::before {
    content: '✓';
    color: #ff0000;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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.03'%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");
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Results Timeline (SEO) */
.results-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.results-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #ff0000, rgba(255, 0, 0, 0.3));
}

.rt-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.rt-month {
    width: 60px;
    height: 60px;
    background: #141414;
    border: 3px solid #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.rt-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service CTA Section */
.service-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-cta h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.services-overview {
    background: var(--color-gray-100);
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.service-intro p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-gray-600);
    margin-bottom: 16px;
}

.service-intro p:last-child {
    margin-bottom: 0;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.ci-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.ci-item:hover {
    border-color: #ff0000;
    transform: translateX(10px);
}

.ci-item i {
    font-size: 1.5rem;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.ci-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.5rem;
}

.ci-item a,
.ci-item p {
    color: #0a0a0a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ci-item a:hover {
    color: #ff0000;
}

.ci-hours {
    padding: 2rem;
    background: #0a0a0a;
    border-radius: 16px;
    color: #ffffff;
}

.ci-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.ci-hours p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f5f5f5;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #0a0a0a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #ff0000;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    color: #ff0000;
}

.faq-question i {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ff0000;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Map Section */
.map-section {
    height: 400px;
    background: #0a0a0a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 0, 0, 0.03) 35px, rgba(255, 0, 0, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.02) 35px, rgba(255, 255, 255, 0.02) 70px);
}

.map-placeholder {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.map-placeholder i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
    display: block;
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    color: rgba(255, 255, 255, 0.6);
}

/* About Page Specific - Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-highlights {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.highlight-item:hover {
    border-color: #ff0000;
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #888;
}

.story-stats-card {
    background: #0a0a0a;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.story-stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.ssc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ssc-item:last-child {
    border-bottom: none;
}

.ssc-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.ssc-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ============================================
   Mission & Vision Section – Refined
============================================ */

.mission-vision {
    
    background: radial-gradient(circle at top left, #111 0%, #0a0a0a 60%);
   display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

/* subtle ambient glow */
.mission-vision::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08), transparent 70%);
    pointer-events: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

/* Card */
.mv-card-large {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Soft top glow line */
.mv-card-large::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, transparent, var(--color-techwaiv-red), transparent);
    transition: width 0.4s ease;
}

.mv-card-large:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.mv-card-large:hover::after {
    width: 100%;
}

/* Icon */
.mv-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 0, 0, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--color-techwaiv-red);
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.mv-card-large:hover .mv-icon {
    background: rgba(255, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Heading */
.mv-card-large h3 {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Text */
.mv-card-large p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 3rem 2rem;
    background: #f5f5f5;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 0, 0, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #ff0000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-icon {
    background: #ff0000;
    color: #ffffff;
    transform: rotateY(360deg);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Team Section */
.team-full{
    background: var(--color-gray-100);
}
.team-detailed {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.team-member-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-member-large.reverse {
    direction: rtl;
}

.team-member-large.reverse>* {
    direction: ltr;
}

.tml-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

.tml-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tml-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member-large:hover .tml-image::after {
    opacity: 1;
}

.team-member-large:hover .tml-image img {
    transform: scale(1.05);
}

.tml-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tml-role {
    display: block;
    color: #ff0000;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.tml-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tml-social a {
    width: 45px;
    height: 45px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tml-social a:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
    transform: translateY(-3px);
}

.tml-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Global Section */
.global {
    padding: 8rem 0;
    background: #0a0a0a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.global::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
}

.global-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.global-content h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.global-content>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.global-flags {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.flag {
    font-size: 3rem;
    filter: grayscale(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.flag:hover {
    filter: grayscale(0%);
    transform: scale(1.2);
}

.flag-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {

    .story-grid,
    .mv-grid,
    .team-member-large,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-member-large.reverse {
        direction: ltr;
    }

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

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

    .dp-body {
        grid-template-columns: 1fr;
    }

    .dp-sidebar {
        display: none;
    }

    .results-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .results-timeline::before {
        display: none;
    }

    .rt-item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .rt-month {
        margin: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {

    .values-grid,
    .why-grid,
    .benefits-grid,
    .st-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .tml-image {
        height: 400px;
    }

    .sh-cta,
    .page-header .sh-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .service-cta h2,
    .page-title,
    .section-title {
        font-size: 2rem;
    }

    .global-flags {
        gap: 1.5rem;
    }
}

/* Mobile Menu - Solid Dark Background (Works on all page colors) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #0a0a0a !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 70px 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Main nav links - WHITE text on dark */
    .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu .nav-link {
        color: #ffffff !important;
        font-size: 1.25rem;
        font-weight: 600;
        padding: 1.25rem 0;
        display: block;
        width: 100%;
    }

    .nav-menu .nav-link:hover {
        color: #ff0000 !important;
    }

    /* Dropdown menu - DARKER background */
    .nav-dropdown {
        position: relative;
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #141414 !important;
        border-radius: 12px;
        padding: 0.5rem;
        margin: 0.5rem 0 1rem;
        display: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        color: #ffffff !important;
        padding: 1rem;
        display: block;
        border-radius: 8px;
        font-size: 1rem;
        background: #111111;
    }

    .dropdown-menu a:hover {
        background: #ff0000 !important;
        color: #ffffff !important;
    }

    /* Active link indicator */
    .nav-menu .nav-link.active {
        color: #ff0000 !important;
    }

    /* Dropdown arrow - WHITE */
    .nav-dropdown>.nav-link i {
        color: #ffffff;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active>.nav-link i {
        transform: rotate(180deg);
    }
}

/* Video Background - Fix z-index */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Ensure hero content is above video */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Mobile Menu - HIGHEST z-index */
@media (max-width: 768px) {
    .nav-menu {
        z-index: 9999 !important;
        /* Higher than everything */
    }

    .nav-toggle {
        z-index: 10000 !important;
        /* Highest */
    }
}