/*
================================================================================
  MAIN WEBSITE STYLESHEET
================================================================================

  PAGES:        Home, About, Contact, Services, Work, Pricing, Project Gallery
  
  SECTIONS:     - Navigation & Header
                - Hero Section  
                - About Section with Stats
                - Services Grid
                - Testimonials & FAQ
                - Footer & Contact Forms
                - Common Components (Buttons, Cards, Modals)

/* ============================================================================
   ROOT VARIABLES & RESET
   ============================================================================ */
:root {
    /* Colors */
    --primary: #10b981;
    --secondary: #22c55e;
    --dark: #070a08;
    --light: #ffffff;

    /* Gray Scale */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94b3a4;
    --gray-500: #6b8a7b;
    --gray-600: #24362d;
    --gray-700: #1a2620;
    --gray-800: #0d1511;
    --gray-900: #070a08;

    /* Gradients */
    --gradient-primary: var(--primary);
    --gradient-dark: linear-gradient(135deg, #070a08 0%, #0d1511 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md:
        0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg:
        0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl:
        0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Fonts */
    --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display:
        "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-200);
    background: var(--gray-900);
    overflow-x: hidden;
}

/* ============================================================================
   CUSTOM CURSOR
   ============================================================================ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    opacity: 0.5;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(7, 10, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(36, 54, 45, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 800;
}

.logo-text {
    color: var(--light);
}

.logo img {
    max-height: 45px;
    height: 45px;
    width: auto;
    object-fit: contain;
}

.navbar .logo img {
    max-height: 45px;
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-brand .logo img {
    max-height: 65px;
    height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-btn {
    background: var(--secondary);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Elements */
.mobile-cta,
.mobile-auth {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

/* User Profile Dropdown Styles */
.user-profile-dropdown {
    position: relative;
    margin-left: 1rem;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    transition: background 0.2s ease;
}

.user-avatar-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
    transition: all 0.2s ease;
}

.user-avatar-btn:hover .avatar-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.avatar-caret {
    color: #e0e0e0;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.user-avatar-btn.active .avatar-caret {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 240px;
    background: #0d1511;
    border-radius: 12px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.dropdown-header {
    padding: 1rem 1.25rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f1f5f9;
}

.user-email {
    font-size: 0.8rem;
    color: #94b3a4;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

.dropdown-item i {
    width: 18px;
    font-size: 0.95rem;
    color: #6b8a7b;
    transition: color 0.15s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
}

.dropdown-item:hover i {
    color: #22c55e;
}

.dropdown-item.logout-item {
    color: #f87171;
}

.dropdown-item.logout-item:hover {
    background: rgba(248, 113, 113, 0.1);
}

.dropdown-item.logout-item i {
    color: #f87171;
}

/* Login Button Styling */
.login-btn {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    margin-left: 0.75rem;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
}

.auth-btn {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.auth-btn:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a2620 0%, #0d1511 50%, #070a08 100%)
        fixed;
}

.hero-bg-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a2620 0%, #0d1511 50%, #070a08 100%)
        fixed;
}

#why-us {
    position: relative;
    overflow: hidden;
}

#why-us .container {
    position: relative;
    z-index: 2;
}

.about,
.services,
.portfolio,
.pricing-hero,
.pricing-plans,
.contact {
    position: relative;
    overflow: hidden;
}

.about .container,
.services .container,
.portfolio .container,
.pricing-hero .container,
.pricing-plans .container,
.contact .container {
    position: relative;
    z-index: 2;
}

.testimonials,
.leave-review,
.careers-filters-section,
.careers-benefits-section {
    position: relative;
    overflow: hidden;
}

.testimonials .container,
.leave-review .container,
.careers-container {
    position: relative;
    z-index: 2;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(36, 54, 45, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 54, 45, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    background: var(--primary);
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    background: var(--secondary);
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    background: var(--primary);
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(213, 165, 56, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #22c55e;
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease both;
}

.title-line:nth-child(1) {
    animation-delay: 0.4s;
}
.title-line:nth-child(2) {
    animation-delay: 0.6s;
}
.title-line:nth-child(3) {
    animation-delay: 0.8s;
}

.gradient-text {
    background: linear-gradient(135deg, #22c55e 0%, #86efac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.careers-gradient-text {
    background: linear-gradient(135deg, #22c55e 0%, #86efac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: slideInUp 0.8s ease 1s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease 1.2s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
    box-shadow: var(--shadow-lg);
}

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

.btn-ghost {
    background: transparent;
    color: var(--gray-300);
    border: 2px solid var(--gray-600);
}

.btn-ghost:hover {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInUp 0.8s ease 1.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease 0.6s both;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.code-window {
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.window-header {
    background: var(--gray-800);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f57;
}
.control.yellow {
    background: #00ff88;
}
.control.green {
    background: #28ca42;
}

.window-title {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.code-content {
    padding: 2rem;
    font-family: "Monaco", "Menlo", monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-line {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.keyword {
    color: #ff79c6;
}
.variable {
    color: #8be9fd;
}
.function {
    color: #50fa7b;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.element {
    position: absolute;
    width: 65px;
    height: 65px;
    background: var(--light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
    z-index: 5;
}

.element-1 {
    top: -25px;
    right: -25px;
    color: #61dafb;
    animation-delay: 0s;
}

.element-2 {
    bottom: -20px;
    left: -25px;
    color: #68a063;
    animation-delay: 1s;
}

.element-3 {
    bottom: 40%;
    right: -30px;
    color: #f7df1e;
    animation-delay: 2s;
}

.element-4 {
    top: 30%;
    left: -35px;
    color: #21759b;
    background: #fff;
    animation-delay: 3s;
}

.element-5 {
    top: 45%;
    right: 35%;
    color: #ff2d20;
    animation-delay: 2.5s;
}

/* ============================================================================
   COMMON SECTION STYLES
   ============================================================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(213, 165, 56, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #22c55e;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */
.about {
    padding: 8rem 0;
    background: var(--gray-800);
}

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

.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content .section-description {
    text-align: left;
    margin: 0 0 2rem 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-content p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.stats-card {
    background: var(--gray-700);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-600);
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    background: var(--gray-800);
}

.stat-box .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */
.services {
    padding: 8rem 0;
    background: var(--gray-900);
}

.services-section {
    margin-bottom: 30px !important;
}

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

.service-card {
    background: var(--gray-800);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--gray-700);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: #22c55e;
}

.service-card p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-400);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 600;
}

.card-footer {
    margin-top: auto;
}

.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* ============================================================================
   PORTFOLIO SECTION
   ============================================================================ */
.portfolio {
    padding: 8rem 0;
    background: var(--gray-800);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-600);
    background: var(--gray-700);
    color: var(--gray-300);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 24px;
    overflow: hidden;
    background: var(--gray-700);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.portfolio-item .project-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: background 0.3s ease;
}

.tech-cafe-img {
    background: url("../images/image.jpeg") center center / cover no-repeat;
}

.fluent-image {
    background: url("../images/fluent.jpeg") center center / cover no-repeat;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.project-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.project-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
}

.project-link {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: scale(1.1);
}

/* ============================================================================
   TEAM SECTION
   ============================================================================ */
.team {
    padding: 8rem 0;
    background: var(--gray-900);
}

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

.team-member {
    display: flex;
    justify-content: center;
}

.member-card {
    background: var(--gray-800);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--gray-700);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.avatar {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 3rem;
    margin: 0 auto;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--light);
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #22c55e;
}

.member-info p {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */
.pricing-hero {
    margin-top: 50px;
    padding: 4rem 0;
    background: var(--gray-900);
    text-align: center;
}

.pricing-plans {
    padding: 4rem 0 8rem;
    background: var(--gray-800);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-card {
    background: var(--gray-700);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--gray-600);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.pricing-card.featured .plan-header h3 {
    color: var(--light);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: var(--gray-400);
}

.plan-header p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.pricing-card.featured .plan-header p {
    color: rgba(255, 255, 255, 0.8);
}

.plan-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-300);
}

.pricing-card.featured .plan-features li {
    color: var(--light);
}

.plan-features i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.pricing-faq {
    padding: 8rem 0;
    background: var(--gray-900);
}

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

.faq-item {
    background: var(--gray-800);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-700);
}

.faq-item h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */
.contact {
    padding: 8rem 0;
    background: var(--gray-800);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-badge {
    margin-bottom: 1rem;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-info .section-description {
    text-align: left;
    margin: 0 0 2.5rem 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
}

.method-info h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #22c55e;
}

.method-info p {
    color: var(--gray-400);
}

.contact-form-container {
    background: var(--gray-700);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--gray-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--gray-600);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--gray-800);
    color: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(213, 165, 56, 0.2);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    background: var(--gray-900);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-brand p {
    color: var(--gray-400);
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.footer-brand .social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand .social-links a:hover {
    background: var(--primary);
    color: var(--light);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light);
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--light);
}

.footer-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    color: var(--gray-400);
    text-decoration: none;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================================================
   NOTIFICATION DROPDOWN
   ============================================================================ */
.notification-dropdown {
    position: relative;
    margin-right: 1.5rem;
}

.notification-btn {
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.notification-btn:hover {
    color: var(--secondary);
}

.notification-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.notification-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-list {
    max-height: 350px;
    overflow-y: auto;
}

.notification-item {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-700);
    color: var(--light);
    text-decoration: none;
    transition: background 0.3s ease;
}

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

.notification-item:hover {
    background: var(--gray-700);
}

.notification-item .notification-content p {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.notification-item .notification-content small {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.notification-menu .dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-700);
    font-weight: 600;
    color: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mark-all-read {
    font-size: 0.8rem;
    color: var(--secondary);
    text-decoration: none;
}

.mark-all-read:hover {
    text-decoration: underline;
}

/* ============================================================================
   FLOATING ACTION BUTTONS
   ============================================================================ */
.chat-support {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 2000;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-support:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.review-support {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.review-support:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.7);
}

/* ============================================================================
   ANIMATIONS & KEYFRAMES
   ============================================================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

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

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

/* ============================================================================
   PROJECT DETAIL PAGES
   ============================================================================ */

/* Project Hero */
.project-hero {
    padding: 8rem 0 4rem;
    background: var(--gray-900);
}

.project-breadcrumb {
    margin-bottom: 2rem;
    color: var(--gray-400);
}

.project-breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}

.project-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.project-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--light);
}

.project-subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.meta-label {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.meta-value {
    color: var(--secondary);
    font-weight: 600;
}

/* Project Overview */
.project-overview {
    padding: 8rem 0;
    background: var(--gray-800);
}

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

.overview-content h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.overview-content h3 {
    color: var(--light);
    margin: 2rem 0 1rem;
}

.overview-content p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-showcase {
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.showcase-header {
    background: var(--gray-800);
    padding: 1rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.showcase-content {
    padding: 2rem;
}

/* E-commerce Mockup */
.ecommerce-mockup {
    width: 100%;
    height: 350px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.mockup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.logo-area {
    font-weight: 700;
    color: var(--primary);
}

.nav-area {
    display: flex;
    gap: 1rem;
}

.nav-area span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.mockup-hero {
    padding: 2rem;
    text-align: center;
    background: var(--primary);
    color: var(--light);
}

.mockup-hero h3 {
    margin-bottom: 0.5rem;
}

.mockup-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.product-card {
    height: 60px;
    background: var(--gray-200);
    border-radius: 4px;
}

/* Project Features */
.project-features {
    padding: 8rem 0;
    background: var(--gray-900);
}

.features-grid,
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--gray-800);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--gray-700);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--light);
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.feature-card h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* Horizontal Outcome List for Otelogia & PDFtool */
.horizontal-outcomes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.horizontal-outcomes li {
    font-size: 1.1rem;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.horizontal-outcomes li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .horizontal-outcomes {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 3rem;
    }
}

/* Tech Stack */
.tech-stack {
    padding: 8rem 0;
    background: var(--gray-800);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

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

@media (max-width: 600px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--gray-800);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--gray-700);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tech-category {
    background: var(--gray-700);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-600);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 250px;
}

.tech-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.tech-category * {
    position: relative;
    z-index: 2;
}

.tech-laravel {
    background: url("../images/laravel.jpg") center center / cover no-repeat;
}

.tech-auth {
    background: url("../images/auth.jpg") center center / cover no-repeat;
}

.tech-db {
    background: url("../images/database.jpeg") center center / cover no-repeat;
}

.tech-payments {
    background: url("../images/stripe.jpg") center center / cover no-repeat;
}

.tech-video {
    background: url("../images/zoom.jpg") center center / cover no-repeat;
}

.tech-realtime {
    background: url("../images/features.jpg") center center / cover no-repeat;
}

.tech-category h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-item {
    background: var(--gray-800);
    color: var(--gray-300);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--gray-600);
}

/* Project Results */
.project-results {
    padding: 8rem 0;
    background: var(--gray-900);
}

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

.result-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-800);
    border-radius: 16px;
    border: 1px solid var(--gray-700);
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--gray-400);
    font-size: 1rem;
}

/* Project CTA */
.project-cta {
    padding: 8rem 0;
    background: var(--gray-800);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Challenge Section */
.challenge-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-section .column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-section-container {
    margin-top: 40px;
    grid-column: 1 / -1;
}

.challenge-section-container h1 {
    color: var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.challenge-item {
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.challenge-item h4 {
    color: white;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.challenge-item p {
    color: var(--gray-400);
    margin-bottom: 5px;
    line-height: 1.4;
}

.challenge-item p b {
    color: var(--secondary);
}

.conclusion-p {
    padding: 20px;
    color: var(--gray-400);
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Collapsible Content */
.collapsible-content {
    max-height: 5em;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        opacity 0.4s ease;
    opacity: 1;
}

.collapsible-content.expanded {
    max-height: 1000px;
}

/* Toggle Buttons */
.toggle-btn,
.role-toggle-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #10b981 0%, #d5a538 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.toggle-btn:hover,
.role-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
}

.toggle-btn:focus,
.role-toggle-btn:focus {
    outline: none;
}

/* Roles Section */
.roles-section {
    padding: 4rem 0;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.role-box {
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.role-box:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}

.role-box h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.role-box .role-desc {
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.role-box ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.role-box ul li {
    color: var(--gray-200);
    margin-bottom: 0.4rem;
}

.sub {
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
    color: var(--secondary);
    font-size: 1rem;
}

.role-collapsible {
    max-height: 190px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.role-collapsible.expanded {
    max-height: 700px;
}

/* Video Mockup Fix */
.ecommerce-mockup {
    height: auto !important;
    width: 100%;
}

.mockup-video {
    height: auto !important;
    width: 100%;
    object-fit: contain;
}

/* Outcome Section */
.section-subtitle {
    padding: 20px;
    font-size: 1.1rem;
    color: #a0a4b0;
}

.outcome-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.outcome-list {
    display: flex;
    flex-direction: column;
    height: 200px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-list li {
    width: 60%;
    font-size: 1rem;
    margin: 15px 0;
    position: relative;
    padding-left: 30px;
    color: white;
}

.outcome-list li i {
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

.challenges-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ============================================================================
   CAREER PAGES - HERO & MAIN SECTIONS
   ============================================================================ */

/* Career Container */
.careers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

/* Career Hero Section */
.careers-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.careers-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a2620 0%, #0d1511 50%, #070a08 100%)
        fixed;
    z-index: 1;
}

.careers-hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(36, 54, 45, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 54, 45, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.careers-hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.careers-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--light);
}

.careers-line {
    display: block;
    animation: careerSlideInUp 0.8s ease both;
}

.careers-line:nth-child(1) {
    animation-delay: 0.4s;
}
.careers-line:nth-child(2) {
    animation-delay: 0.6s;
}

.careers-gradient-text {
    background: linear-gradient(135deg, #22c55e 0%, #f6e27f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-description {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--gray-400);
    font-weight: 300;
    animation: careerSlideInUp 0.8s ease 0.8s both;
}

/* Career Stats */
.careers-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: careerSlideInUp 0.8s ease 1s both;
}

.careers-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 140px;
    transition: all 0.3s ease;
}

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

.careers-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.careers-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================================
   CAREER PAGES - FILTERS & JOBS
   ============================================================================ */

/* Job Filters Section */
.careers-filters-section {
    background: var(--gray-800);
    padding: 6rem 0;
    min-height: 50vh;
}

.careers-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.careers-filter-btn {
    background: var(--gray-700);
    color: var(--gray-300);
    border: 2px solid var(--gray-600);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.careers-filter-btn:hover {
    background: var(--gray-600);
    border-color: var(--gray-500);
    color: var(--light);
    transform: translateY(-2px);
}

.careers-filter-btn.active {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

/* Jobs Slider */
.careers-slider-wrapper {
    position: relative;
    padding: 1rem 4rem;
    max-width: 100%;
}

.careers-jobs-container {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0;
}

.careers-jobs-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

/* Job Cards */
.careers-job-card {
    background: var(--gray-700);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-600);
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 350px;
    will-change: transform;
}

.careers-job-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.careers-job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(34, 197, 94, 0.3);
    z-index: 10;
}

.careers-job-card:hover::before {
    opacity: 1;
}

.careers-job-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.careers-job-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    background: rgba(34, 197, 94, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.careers-job-title h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1.3;
}

.careers-job-title p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 500;
}

.careers-job-snippet {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--gray-400);
}

.careers-job-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.careers-job-meta li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-400);
    padding: 0.5rem;
    background: var(--gray-800);
    border-radius: 8px;
    border: 1px solid var(--gray-600);
}

.careers-job-meta li i {
    color: var(--secondary);
    font-size: 0.85rem;
    min-width: 16px;
}

.careers-job-footer {
    text-align: right;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-600);
}

.careers-job-link {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.careers-job-link i {
    transition: transform 0.3s ease;
}

.careers-job-link:hover {
    color: #f6e27f;
}

.careers-job-link:hover i {
    transform: translateX(5px);
}

/* Navigation Buttons */
.careers-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    color: var(--dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.careers-nav-btn:hover:not(:disabled) {
    background: #f6e27f;
    transform: translateY(-50%) scale(1.1);
}

.careers-nav-btn:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.careers-nav-prev {
    left: 0;
}

.careers-nav-next {
    right: 0;
}

/* Pagination Dots */
.careers-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.careers-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.careers-pagination-dot:hover {
    background: var(--gray-500);
    transform: scale(1.2);
}

.careers-pagination-dot.active {
    background: var(--secondary);
    width: 30px;
    border-radius: 6px;
}

/* No Jobs Message */
.careers-no-jobs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    color: var(--gray-400);
    background: var(--gray-700);
    border-radius: 20px;
    border: 2px dashed var(--gray-600);
}

.careers-no-jobs i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: rgba(34, 197, 94, 0.3);
}

.careers-no-jobs h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.careers-no-jobs p {
    font-size: 1.1rem;
    color: var(--gray-400);
}

/* ============================================================================
   CAREER PAGES - BENEFITS SECTION
   ============================================================================ */
.careers-benefits-section {
    padding: 0 2rem 4remx;
    background: var(--gray-900);
}

.careers-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-section-header {
    margin-bottom: 0px !important;
}

.pricing-container {
    margin-bottom: 0px !important;
}

.careers-section-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.careers-section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--light);
    letter-spacing: -0.02em;
}

.careers-section-description {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.careers-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.careers-benefit-card {
    background: var(--gray-800);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-700);
    position: relative;
    overflow: hidden;
}

.careers-benefit-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(34, 197, 94, 0.1) 0%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.careers-benefit-card:hover::before {
    width: 300px;
    height: 300px;
}

.careers-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(34, 197, 94, 0.4);
}

.careers-benefit-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.careers-benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.careers-benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================================================
   JOB DETAIL & APPLICATION PAGES
   ============================================================================ */

/* Job Detail Hero */
.career-detail-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #070a08 0%, #0d1511 50%, #1a2620 100%);
    margin-top: 80px;
    overflow: hidden;
}

.career-detail-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(36, 54, 45, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 54, 45, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

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

.career-detail-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.career-detail-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: var(--secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(34, 197, 94, 0.3);
    text-transform: capitalize;
}

.career-detail-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.career-detail-meta {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.career-detail-meta i {
    color: var(--secondary);
}

.career-detail-apply-btn,
.career-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.career-detail-apply-btn:hover,
.career-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: #f6e27f;
}

/* Job Detail Content */
.career-detail-content {
    padding: 6rem 2rem;
    max-width: 900px;
}

.career-section {
    background: var(--gray-800);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-700);
}

.career-section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.career-text {
    color: var(--gray-300);
    line-height: 1.8;
    font-size: 1rem;
}

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

.career-list li {
    color: var(--gray-300);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-700);
}

.career-list li:last-child {
    border-bottom: none;
}

.career-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.career-apply-box {
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-xl);
}

.career-apply-box h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1.5rem;
}

/* Application Form */
.career-apply-hero {
    background: linear-gradient(135deg, #070a08 0%, #0d1511 50%, #1a2620 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.career-apply-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(36, 54, 45, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 54, 45, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.career-apply-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.apply-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 1rem;
}

.apply-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
}

.career-apply-wrapper {
    padding: 4rem 2rem 8rem;
    max-width: 800px;
}

.career-apply-form {
    background: var(--gray-800);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--gray-700);
    box-shadow: var(--shadow-xl);
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    color: var(--gray-300);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="file"],
.input-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--gray-700);
    border: 2px solid var(--gray-600);
    border-radius: 12px;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input[type="text"]:focus,
.input-group input[type="email"]:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
    background: var(--gray-900);
}

.input-group input[type="file"] {
    padding: 0.75rem;
    cursor: pointer;
}

.input-group input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.input-group input[type="file"]::file-selector-button:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Date Input Calendar Icon Styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(70%) sepia(50%) saturate(400%) hue-rotate(5deg)
        brightness(95%) contrast(85%);
    opacity: 1;
    transition: all 0.3s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: invert(70%) sepia(60%) saturate(500%) hue-rotate(5deg)
        brightness(100%) contrast(90%);
    transform: scale(1.1);
}

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

.apply-submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.apply-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: #f6e27f;
}

.apply-submit-btn:active {
    transform: translateY(0);
}

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

/* ============================================================================
   RESPONSIVE DESIGN - TABLET (992px)
   ============================================================================ */
@media (max-width: 1050px) {
    .nav-actions {
        gap: 0.5rem;
    }

    .auth-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Navigation - Mobile Menu */
    .nav-menu {
        flex-direction: column;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        position: fixed;
        top: 115px;
        left: 0;
        width: 100%;
        background: var(--gray-900);
        backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.35s ease;
        pointer-events: none;
        gap: 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 0;
    }

    .nav-menu.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-link::after {
        display: none;
    }

    .mobile-auth .auth-btn {
        display: inline-block;
        width: 90%;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hide desktop actions, show mobile */
    .nav-actions {
        display: none;
    }

    .mobile-cta {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(36, 54, 45, 0.2);
        text-align: center;
    }

    .nav-cta {
        display: none;
    }

    .mobile-cta .cta-btn {
        display: inline-block;
        width: 90%;
    }

    .mobile-auth {
        display: block;
        text-align: center;
        margin-top: 0.75rem;
    }

    .mobile-auth .auth-btn {
        width: 90%;
        margin: 0 auto;
    }

    .mobile-auth form {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    /* Hero & Sections */
    .hero-container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

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

    .why-choose-grid,
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Project Grids */
    .overview-grid,
    .challenge-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    /* Career Pages */
    .careers-title {
        font-size: 2.8rem;
    }

    .careers-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .careers-slider-wrapper {
        padding: 1rem 3rem;
    }

    .careers-job-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 300px;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - MOBILE (768px)
   ============================================================================ */
@media (max-width: 768px) {
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        justify-content: space-between;
    }

    /* Sections */
    .services-grid,
    .portfolio-grid,
    .team-grid,
    .why-choose-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    /* Project Outcome List Fix */
    .outcome-list {
        height: auto;
        flex-wrap: nowrap;
    }

    .outcome-list li {
        width: 100%;
    }

    /* Roles Grid Fix */
    .roles-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        text-align: center;
        align-items: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .footer-brand .logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-brand img {
        display: block;
        margin: 0 auto;
    }

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

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .link-group ul {
        padding: 0;
    }

    .link-group a {
        display: inline-block;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Career Pages */
    .careers-hero-section {
        min-height: 60vh;
        margin-top: 70px;
    }

    .careers-title {
        font-size: 2.2rem;
    }

    .careers-description {
        font-size: 1rem;
    }

    .careers-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .careers-stat {
        min-width: 100%;
    }

    .careers-slider-wrapper {
        padding: 1rem 2.5rem;
    }

    .careers-job-card {
        flex: 0 0 100%;
        min-width: 280px;
    }

    .careers-job-meta {
        grid-template-columns: 1fr;
    }

    .careers-benefits-grid {
        grid-template-columns: 1fr;
    }

    .careers-section-title {
        font-size: 2rem;
    }

    .careers-filter-buttons {
        gap: 0.5rem;
    }

    .careers-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .careers-benefits-section {
        padding: 4rem 1rem;
    }

    .careers-filters-section {
        padding: 4rem 0;
    }

    .careers-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Career Detail Pages */
    .career-detail-hero {
        min-height: 40vh;
        margin-top: 70px;
    }

    .career-detail-title {
        font-size: 2rem;
    }

    .career-detail-container {
        padding: 3rem 1.5rem;
    }

    .career-detail-content {
        padding: 4rem 1rem;
    }

    .career-section {
        padding: 2rem;
    }

    .career-section-title {
        font-size: 1.5rem;
    }

    .career-apply-hero {
        padding: 4rem 1.5rem 3rem;
        margin-top: 70px;
    }

    .apply-title {
        font-size: 2rem;
    }

    .career-apply-wrapper {
        padding: 3rem 1rem 6rem;
    }

    .career-apply-form {
        padding: 2rem;
    }

    .career-apply-box {
        padding: 2rem;
    }

    .career-apply-box h2 {
        font-size: 1.5rem;
    }

    /* Project Pages */
    .overview-grid,
    .challenge-section {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .challenges-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 2rem;
    }

    .challenge-item:nth-child(3) {
        grid-column: 1 / span 2;
        justify-self: center;
        max-width: 60%;
        text-align: center;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - SMALL MOBILE (480px)
   ============================================================================ */
@media (max-width: 480px) {
    .container,
    .careers-container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

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

    .nav-menu {
        top: 70px;
        padding: 1.5rem 1rem;
    }

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

    .section-title,
    .careers-title {
        font-size: 2rem;
    }

    .hero-stats,
    .careers-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* Career Pages */
    .careers-hero-container,
    .career-detail-container {
        padding: 3rem 1rem;
    }

    .careers-title,
    .career-detail-title {
        font-size: 1.8rem;
    }

    .careers-job-card,
    .career-detail-content {
        padding: 1.5rem;
    }

    .careers-benefit-card,
    .career-apply-box {
        padding: 2rem;
    }

    .careers-slider-wrapper {
        padding: 1rem 2rem;
    }

    .career-detail-meta {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .career-detail-apply-btn,
    .career-apply-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .career-section {
        padding: 1.5rem;
    }

    .career-apply-form {
        padding: 1.5rem;
    }

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

    .input-group input[type="file"]::file-selector-button {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
}

/* ============================================================================
   UTILITY CLASSES & HIDE ON MOBILE
   ============================================================================ */
@media (max-width: 768px) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ============================================================================
   AUTHENTICATION PAGES 
   ============================================================================ */

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    margin-top: 120px;
}

.auth-card {
    background: #222841;
    color: #c6cad6;
    padding: 35px;
    width: 450px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.auth-card h2 {
    text-align: center;
    color: #22c55e;
    margin-bottom: 20px;
}

.auth-card input {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px;
    border-radius: 10px;
    border: 1px solid #7482a6;
    background: #0e0f11;
    color: #fff;
}

.auth-btn {
    width: 100%;
    background: #22c55e;
    padding: 12px;
    border-radius: 10px;
    color: #222;
    font-weight: bold;
    border: none;
}

.auth-btn:hover {
    background: #b8932c;
}

.small-link {
    margin-top: 15px;
    text-align: center;
}
.small-link a {
    color: #22c55e;
}

/* ============================================================================ 
   CAREER MODAL (Styled for Dark Theme)
   ============================================================================ */
.career-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
}

.career-modal.active {
    display: flex;
    align-items: flex-start;
    padding-top: 110px;
    padding-bottom: 50px;
}

.career-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 8, 0.8); /* dark semi-transparent */
    backdrop-filter: blur(6px);
}

.career-modal-content {
    position: relative;
    background: var(--gray-800);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
    color: var(--gray-100);
    margin: 0 auto;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
}

/* Custom Modal Scrollbar */
.career-modal-content::-webkit-scrollbar {
    width: 6px;
}
.career-modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.career-modal-content::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 10px;
}
.career-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.career-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 0.6s ease-out;
}

@keyframes iconPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.career-modal-icon i {
    font-size: 2.5rem;
    color: var(--light);
}

.career-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary);
}

.career-modal-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--gray-300);
}

.career-modal-actions {
    display: flex;
    gap: 12px;
}

.career-modal-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.career-modal-btn-primary {
    background: var(--primary);
    color: var(--light);
    box-shadow: var(--shadow-md);
}

.career-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.career-modal-btn-secondary {
    background: var(--gray-700);
    color: var(--gray-200);
}

.career-modal-btn-secondary:hover {
    background: var(--gray-600);
}

@media (max-width: 768px) {
    .career-modal-content {
        padding: 30px 20px;
    }

    .career-modal-actions {
        flex-direction: column;
    }
}

/* COMPLETE ADMIN DASHBOARD AND PROJECT PAGES */

@media (max-width: 768px) {
    #why-us .team-cta {
        text-align: center;
    }
}

/* ============================================================================
   PROFILE EDIT PAGE STYLES (SHARED)
   ============================================================================ */
.profile-redesign-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 100px; /* Account for fixed navbar */
}

.user-profile-form {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar: Profile Picture */
.user-profile-picture-section {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 1rem;
    padding: 2rem;
    position: sticky;
    top: 120px;
    text-align: center;
}

.user-profile-picture-section h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--light);
    margin: 0 0 1.5rem 0;
}

.user-avatar-display {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.user-avatar-display img,
.user-avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-700);
}

.user-avatar-placeholder {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
}

.user-file-input-wrapper {
    margin-bottom: 1rem;
}

.user-file-input-wrapper input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed var(--gray-600);
    border-radius: 0.5rem;
    background: var(--gray-900);
    color: var(--gray-400);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.user-file-input-wrapper input[type="file"]:hover {
    border-color: var(--secondary);
    background: var(--gray-700);
}

/* Main Content: Form Sections */
.user-form-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.user-form-section {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 1rem;
    padding: 2rem;
}

.user-form-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-form-section h2 i {
    color: var(--secondary);
}

.user-form-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.user-form-group {
    display: flex;
    flex-direction: column;
}

.user-form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.user-form-group input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-700);
    border-radius: 0.5rem;
    background: var(--gray-900);
    color: var(--light);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.user-form-group input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.user-form-group input:disabled {
    background-color: var(--gray-800);
    color: var(--gray-500);
    cursor: not-allowed;
}

.user-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-700);
}

@media (max-width: 1024px) {
    .user-profile-form {
        grid-template-columns: 1fr;
    }

    .user-profile-picture-section {
        position: static;
    }
}

@media (max-width: 640px) {
    .user-form-grid-layout {
        grid-template-columns: 1fr;
    }

    .user-form-actions {
        flex-direction: column-reverse;
    }
}

/* ============================================================================
   IMAGE PREVIEW & LIGHTBOX STYLES
   ============================================================================ */
.file-preview-thumb {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid var(--gray-600);
    transition: transform 0.2s;
    background: var(--gray-900);
}

.file-preview-thumb:hover {
    transform: scale(1.1);
    border-color: var(--secondary);
}

/* Lightbox Modal */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 8, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.image-lightbox.active {
    display: flex;
}

.image-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.image-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* ============================================================================
   ABOUT PAGE CARD HOVER EFFECTS
   ============================================================================ */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.5) !important;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}
