/* ============================================
   HAZEM GALAL - Pixel-perfect PShift replica
   Primary: #eb1751 | Font: Almarai
   ============================================ */

/* ---- Reset & Root ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #eb1751;
    --primary-dark: #c2184d;
    --primary-light: #fce4ec;
    --bg: #f2f5f7;
    --bg-white: #ffffff;
    --text-dark: #231f20;
    --text-gray: #4b4f58;
    --text-light: #888888;
    --radius: 8px;
    --radius-pill: 50px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 16px 48px rgba(235, 23, 81, 0.18);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Almarai', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-dark);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Perfectly equal left/right padding */
}

/* ============ TOPBAR / NAV ============ */
.topbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.topbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo img {
    height: 44px;
    width: 44px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 23, 81, 0.35);
}

.nav-cta::after {
    display: none !important;
}

.mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-dark);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.5s;
}

.btn:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-white {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
    background: var(--bg);
    padding: 110px 0 70px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Glowing orb blurs matching PShift */
.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(235, 23, 81, 0.08) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    pointer-events: none;
}

.hero-bg-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235, 23, 81, 0.06) 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 64px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(235, 23, 81, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(235, 23, 81, 0);
    }
}

.hero-title {
    font-size: clamp(1.7rem, 5vw, 2.7rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.highlight {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.en-text {
    direction: ltr;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 28px;
    line-height: 1.8;
    direction: ltr;
}

/* Check filter list */
.hero-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-gray);
}

.check-icon {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    stroke-width: 2.5;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-huge {
    padding: 16px 38px;
    font-size: 1.05rem;
}

.arrow-icon {
    margin-right: 4px;
}

/* Hero visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 520px;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.10));
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* Wave separator */
.hero-wave {
    width: 100%;
    line-height: 0;
}

/* ============ INTRO (بخبرة سنوات) ============ */
.intro {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(235, 23, 81, 0.04);
    pointer-events: none;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.intro-content h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.4;
}

.intro-content h2 .highlight {
    color: var(--primary);
}

.intro-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 28px;
}

.intro-content .btn {
    margin-top: 8px;
}

/* Geometric abstract shape (right side) */
.abstract-shape {
    position: relative;
    height: 280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.shape-1 {
    width: 240px;
    height: 240px;
    opacity: 0.15;
    animation: spin 18s linear infinite;
}

.shape-2 {
    width: 160px;
    height: 160px;
    opacity: 0.25;
    animation: spin 12s linear infinite reverse;
}

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

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

.shape-text {
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.giant-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.shape-text span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 700;
    margin-top: 8px;
}

/* Utility: btn-outline-dark */
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--text-dark);
    font-family: var(--font);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

.mt-4 {
    margin-top: 16px;
}

/* ============ SERVICES SECTION (in index.html - card style) ============ */
.services-section {
    padding: 80px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.services-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(235, 23, 81, 0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 12px auto 0;
}

/* PShift two-column services layout */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 24px;
    border: 1px solid #eee;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(30px);
}

.service-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.service-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(235, 23, 81, 0.1);
    transform: translateY(-3px);
}

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.8;
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.service-item p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.services-visual-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-visual-side img {
    width: 100%;
    max-width: 460px;
    animation: heroFloat 7s ease-in-out infinite reverse;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============ EXPERTISE SECTION ============ */
.expertise {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(235, 23, 81, 0.1), transparent);
}

.expertise-intro {
    text-align: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.expertise-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 20px auto 48px;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 500;
}

.expertise-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.expertise-icon-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 24px 16px 36px;
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    width: 125px;
    min-height: 135px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.expertise-icon-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.expertise-icon-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 16px 36px rgba(235, 23, 81, 0.14);
    transform: translateY(-8px) scale(1.05) !important;
    background: #fff;
    z-index: 10;
}

.expertise-icon-item .icon {
    font-size: 2.2rem;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.expertise-icon-item:hover .icon {
    transform: scale(1.15) rotate(6deg);
}

/* Floating Hand/Tap Indicator */
.tap-indicator {
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 1.2rem;
    opacity: 0;
    transform: translate(-10px, 10px) scale(0.6);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 5;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid #f1f5f9;
}

.expertise-icon-item:hover .tap-indicator {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    animation: handTap 0.6s infinite alternate ease-in-out;
}

@keyframes handTap {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-5px) scale(0.95);
    }
}

/* 10-Questions Evaluation Badge */
.quiz-badge {
    position: absolute;
    bottom: 8px;
    font-size: 0.65rem;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 800;
    opacity: 0.85;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(235, 23, 81, 0.1);
}

.expertise-icon-item:hover .quiz-badge {
    background: var(--primary);
    color: #fff;
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(235, 23, 81, 0.25);
}

.expertise-cta {
    text-align: center;
    margin-top: 32px;
}

/* ============ CASE STUDIES (Home) ============ */
.cases {
    padding: 80px 0;
    background: var(--bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.case-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    display: block;
    color: inherit;
}

.case-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.case-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 16px;
}

.case-bg-1 {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}

.case-bg-2 {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.case-bg-3 {
    background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 100%);
}

.case-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.case-body {
    padding: 24px;
}

.case-body h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.5;
}

.case-body p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 14px;
    line-height: 1.7;
}

.case-link {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* PShift Note */
.pshift-note {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 28px 32px;
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    box-shadow: var(--shadow);
}

.pshift-note strong {
    color: var(--text-dark);
    font-weight: 800;
}

.pshift-note .note-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

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

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: calc(50% - 12px);
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.testimonial-linkedin {
    background: #1c1c1e;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.testimonial-linkedin img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #444;
}

.testimonial-name-li {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.testimonial-title-li {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 8px;
}

.testimonial-text-li {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.6;
}

.testimonial-bottom {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-dark);
}

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

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============ ABOUT / EXPERTS SECTION (Homepage) ============ */
.about-home {
    padding: 80px 0;
    background: #1c1c1e;
    color: white;
}

.about-home-flex {
    display: flex;
    align-items: center;
    gap: 64px;
}

.about-home-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-home-img img {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.about-home-text {
    flex: 1;
}

.about-home-text h2 {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-home-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 14px;
}

.about-home-text p.text-bold {
    color: white;
    font-weight: 700;
}

/* ============ PINK CTA BAND ============ */
.cta-band {
    background: var(--primary);
    padding: 72px 24px;
    text-align: center;
    color: white;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-band p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.8;
}

.cta-band p+p {
    margin-bottom: 32px;
}

/* ============ FOOTER ============ */
.footer {
    background: white;
    padding: 56px 0 32px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-logo img {
    height: 44px;
    width: 44px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer-col ul li::before {
    content: '•';
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    fill: none;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eee;
    padding-top: 24px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============ ABOUT PAGE ============ */
.about-section {
    padding: 100px 0 80px;
    background: var(--bg-white);
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}

.about-visual {
    flex: 1;
    text-align: center;
}

.about-visual img {
    max-width: 380px;
    width: 100%;
    border-radius: var(--radius);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

/* ============ PAGE HERO (Subpages) ============ */
.page-hero {
    background: white;
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
}

.page-hero p {
    color: var(--text-gray);
    margin-top: 12px;
    font-size: 1rem;
}

/* ============ CASES PAGE ============ */
.cases-page {
    padding: 80px 0;
    background: var(--bg);
}

.case-full-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 280px;
    transition: var(--transition);
}

.case-full-card:hover {
    box-shadow: 0 24px 60px rgba(235, 23, 81, 0.12);
    transform: translateY(-4px);
}

.case-full-card:nth-child(even) {
    direction: ltr;
}

.case-full-card:nth-child(even) .case-full-text {
    direction: rtl;
}

.case-full-img {
    overflow: hidden;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-full-img svg {
    width: 100%;
    height: 100%;
}

.case-full-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-tag-pill {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.case-full-text h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.case-full-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-stat {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.case-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.case-stat-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 700;
}

/* ============ CONTACT PAGE ============ */
.contact-section {
    padding: 100px 0 80px;
    background: var(--bg-white);
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-inner p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--bg);
    border: 1px solid #eee;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
    width: 100%;
}

.contact-method:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(-4px);
}

.contact-method svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    fill: none;
}

/* ============ SCROLL SECTION HEADINGS ============ */
.section-heading {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-underline {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 48px;
    border-radius: 2px;
}

/* ============ SCROLL REVEAL ============ */
.reveal,
.fade-up,
.blog-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.visible,
.fade-up.visible,
.blog-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Fade-up for hero (instant after page load) */
.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-up.delay-1 {
    animation-delay: 0.15s;
}

.fade-up.delay-2 {
    animation-delay: 0.30s;
}

.fade-up.delay-3 {
    animation-delay: 0.45s;
}

.fade-up.delay-4 {
    animation-delay: 0.60s;
}

/* ============ SCROLL TO TOP ============ */
#scroll-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 500;
    box-shadow: 0 4px 16px rgba(235, 23, 81, 0.35);
}

#scroll-top.show {
    opacity: 1;
    pointer-events: all;
}

#scroll-top:hover {
    transform: translateY(-3px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-home-flex {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        right: 0;
        width: 280px;
        height: calc(100vh - 68px);
        background: white;
        padding: 32px 24px;
        gap: 24px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-top: 1px solid #eee;
    }

    .nav-overlay.open {
        display: block;
    }

    .hero {
        padding: 90px 0 48px;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column-reverse;
        gap: 36px;
    }

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

    .hero-filters {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual img {
        max-width: 280px;
    }

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

    .intro-visual {
        display: none;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-visual-side {
        display: none;
    }

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

    .testimonial-card {
        min-width: 100%;
    }

    .about-inner {
        flex-direction: column;
    }

    .about-visual img {
        max-width: 280px;
    }

    .about-home-flex {
        flex-direction: column-reverse;
    }

    .about-home-img img {
        max-width: 260px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .expertise-icons {
        gap: 12px;
    }

    .expertise-icon-item {
        width: 105px;
        min-height: 120px;
        font-size: 0.75rem;
        padding: 20px 10px 28px;
        gap: 8px;
    }
    
    .expertise-icon-item .icon {
        font-size: 1.8rem;
    }
    
    .quiz-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .tap-indicator {
        width: 26px;
        height: 26px;
        font-size: 1rem;
        top: -8px;
        right: -8px;
    }

    .case-full-card {
        grid-template-columns: 1fr;
    }

    .case-full-card:nth-child(even) {
        direction: rtl;
    }

    .case-full-img {
        height: 200px;
    }

    /* ---- Contact Page Mobile ---- */
    .contact-section {
        padding: 90px 0 48px;
    }

    .contact-inner {
        max-width: 100%;
        padding: 0;
    }

    .contact-inner h2 {
        font-size: 1.5rem;
    }

    .contact-inner p {
        font-size: 0.9rem;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .contact-methods {
        gap: 12px;
        margin-bottom: 28px;
    }

    .contact-method {
        padding: 14px 16px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .contact-method svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 14px 24px;
    }

    /* ---- CTA Band Mobile ---- */
    .cta-band {
        padding: 48px 16px;
    }

    .cta-band h2 {
        font-size: 1.3rem;
    }

    .cta-band p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-huge {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    /* ---- Contact Page Small Phones ---- */
    .contact-section {
        padding: 80px 0 36px;
    }

    .contact-inner h2 {
        font-size: 1.3rem;
    }

    .contact-inner p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .contact-method {
        padding: 12px 14px;
        font-size: 0.82rem;
    }

    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero p {
        font-size: 0.85rem;
        padding: 0 8px;
    }
}

.spinner {
    animation: rotate 2s linear infinite;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Additional Responsive Classes added for Contact layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.info-box {
    background: white;
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    box-sizing: border-box;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(235, 23, 81, 0.15);
}

.info-box-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}

.info-box h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    width: 100%;
}

@media (max-width: 991px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .info-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0 auto;
    }

    .info-box {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .info-box {
        padding: 28px 20px;
    }

    .info-box h3 {
        font-size: 1.05rem;
    }

    .info-box p {
        font-size: 0.85rem;
    }
}

/* ============ GOOGLE TRANSLATE LANG SWITCHER ============ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    margin-right: 15px;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-gray);
    cursor: pointer;
    font-family: var(--font-en);
    padding: 2px 6px;
    transition: 0.2s;
}

.lang-btn:hover {
    color: var(--primary);
}

.lang-btn.active {
    color: var(--primary);
    background: rgba(235, 23, 81, 0.1);
    border-radius: 4px;
}

/* Hide Google Translate Bar & Logo globally */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-te-gadget-simple img,
#goog-gt-tt,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

body {
    top: 0px !important;
}
/* ---- Navbar Mobile CTA Fixes ---- */
@media (max-width: 768px) {
    .desktop-cta-item {
        display: none !important;
    }
    .desktop-cta-item:first-child {
        display: inline-block !important;
    }
    .desktop-cta-item:first-child .nav-cta {
        padding: 8px 12px;
        font-size: 0.8rem;
        margin-left: 5px !important;
        white-space: nowrap;
    }
    .mobile-only-cta {
        display: block !important;
    }
    /* Hide the duplicate Hire Me from the mobile menu since it's now in the header */
    .mobile-only-cta:nth-child(6) {
        display: none !important;
    }
    .nav-logo img {
        height: 38px;
        width: 38px;
    }
}
@media (min-width: 769px) {
    .desktop-cta-item {
        display: inline-block;
    }
    .mobile-only-cta {
        display: none !important;
    }
}

/* ---- Hero Profile Image Fix ---- */
.hero-visual img.profile-hero {
    max-width: 380px;
    width: 100%;
    border-radius: 30px 100px 30px 100px;
    box-shadow: 0 30px 60px rgba(235, 23, 81, 0.2);
    border: 4px solid #fff;
    object-fit: cover;
    animation: floating 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-visual img.profile-hero {
        max-width: 250px;
        margin: 0 auto;
        border-radius: 20px 60px 20px 60px;
    }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Footer Social Links */
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    background: #1e293b;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-icon.snapchat:hover { background: #FFFC00; color: #000; box-shadow: 0 5px 15px rgba(255, 252, 0, 0.4); }
.social-icon.tiktok:hover { background: #000000; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); }
.social-icon.whatsapp:hover { background: #25D366; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }
.social-icon.x:hover { background: #14171A; box-shadow: 0 5px 15px rgba(20, 23, 26, 0.4); }
.social-icon.reddit:hover { background: #FF4500; box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4); }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); box-shadow: 0 5px 15px rgba(214, 36, 159, 0.4); }
.social-icon.facebook:hover { background: #1877F2; box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4); }


/* Hard Responsive Reset */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    p, h1, h2, h3, h4, h5, h6, span, div, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}
