/* ===== DESIGN SYSTEM - COLOR VARIABLES ===== */
:root {
    /* Primary Brand Colors - More Vibrant */
    --yellow-primary: #FDCD06;
    --blue-primary: #0a0e27;
    --primary-bg: #0a0e27;
    --section-bg: #0a0e27;
    --white: #FFFFFF;

    /* Yellow Variations */
    --yellow-900: #FDCD06;
    --yellow-800: #FFEA00;
    --yellow-700: #FFF176;
    --yellow-600: #FFF59D;

    /* Blue Variations */
    --blue-900: #0a0e27;
    --blue-800: #0a0e27;
    --blue-700: #283593;
    --blue-600: #3949AB;
    --blue-neon: #448AFF;
    /* New Neon Blue */

    /* Neutral Grays */
    --gray-900: #0A0A0A;
    --gray-800: #1A1A1A;
    --gray-700: #4A4A4A;
    --gray-600: #6B7280;
    --gray-500: #9CA3AF;
    --gray-400: #D1D5DB;
    --gray-300: #E5E7EB;
    --gray-200: #F3F4F6;
    --gray-100: #F9FAFB;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: 12px;
    --neon-glow: 0 0 10px rgba(68, 138, 255, 0.5);

    /* Functional Colors */
    --color-error: #EF4444;
    --color-success: #10B981;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: visible;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    z-index: 1000;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    width: 80%;
    max-width: 1200px;
    padding: 0.6rem 1rem;
    top: 16px;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--gray-900);
    position: relative;
    padding-right: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.navbar.scrolled .logo {
    margin-left: 40px;
}

.logo::after {
    content: '.';
    color: var(--yellow-900);
}

.logo.logo-image-link {
    padding-right: 0;
    display: inline-flex;
    align-items: center;
}

.logo.logo-image-link::after {
    content: none;
}

.logo-mark {
    display: block;
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    padding: 0.4rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
}

.nav-links a:hover {
    color: var(--gray-900);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.dropdown-arrow {
    font-size: 0.6rem;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.nav-links a:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0.5rem 0;
    min-width: 160px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    list-style: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 0;
    background: transparent;
}

.dropdown-menu a:hover {
    color: var(--gray-900);
    background: var(--gray-100);
    box-shadow: none;
    padding-left: 1.5rem;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    rotate: 45deg;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-actions {
    margin-right: 40px;
}

.login-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0 0.5rem;
}

.login-link:hover {
    color: var(--gray-900);
}

.contact-btn {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
    transform: translateY(-2px);
}

/* Glass Panel Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.signup-btn {
    background: var(--blue-900);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 2, 41, 0.2);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.signup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.signup-btn:hover::before {
    left: 100%;
}

.signup-btn:hover {
    background: var(--blue-800);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 2, 41, 0.3), var(--neon-glow);
}

/* Adjust layout for floating nav */
.navbar .container {
    width: 100%;
    padding: 0;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 14, 39, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 850px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-modal {
    color: var(--gray-500);
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--gray-900);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

/* Calendar Styling */
.calendar-section {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 16px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.month-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray-600);
    padding: 5px 10px;
    border-radius: 5px;
}

.month-btn:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

#currentMonthYear {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    color: var(--gray-700);
}

.calendar-day:hover:not(.disabled) {
    background-color: var(--gray-200);
    color: var(--gray-900);
}

.calendar-day.selected {
    background-color: var(--blue-900);
    color: var(--white);
    font-weight: 600;
}

.calendar-day.disabled {
    color: var(--gray-400);
    cursor: not-allowed;
}

.calendar-day.today {
    border: 1px solid var(--blue-900);
    color: var(--blue-900);
}

/* Time Slots Styling */
.timeslots-section {
    padding: 1rem 0;
    transition: opacity 0.3s ease;
}

.timeslots-section.inactive {
    opacity: 0.5;
    pointer-events: none;
}

.timeslots-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.selected-date-display {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.time-btn {
    padding: 0.8rem;
    border: 1px solid var(--gray-300);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s;
}

.time-btn:hover {
    border-color: var(--blue-900);
    color: var(--blue-900);
}

.time-btn.selected {
    background: var(--yellow-900);
    border-color: var(--yellow-900);
    color: var(--gray-900);
    font-weight: 700;
}

.confirm-booking-btn {
    width: 100%;
    padding: 1rem;
    background: var(--blue-900);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.confirm-booking-btn:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
}

.confirm-booking-btn:not(:disabled):hover {
    background: var(--blue-800);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 2, 41, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 700px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background-color: #f8fafc;
    padding: 180px 0 120px;
    min-height: 850px;
    overflow: hidden;
    position: relative;
    /* Creative Professional Grid Background - Enhanced */
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--primary-bg) 15%, var(--primary-bg) 30%, #ffffff 85%, #FFFFFF 92%, #FFFFFF 100%);
    position: relative;
}

#hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content */
    overflow: hidden;
    opacity: 0.6;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
    z-index: 1;
}

@keyframes gridShift {
    0% {
        background-position: center, 0 0, 0 0;
    }

    50% {
        background-position: center, -20px -10px, 20px 10px;
    }

    100% {
        background-position: center, 0 0, 0 0;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 420px 1fr 420px;
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
}

/* Floating Decorations */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 205, 6, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    z-index: 0;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-reverse {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left - Device Mockup */
.hero-left {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.1s;
    margin-left: -130px;
    justify-self: start;
}

.device-placeholder {
    position: relative;
    perspective: 1000px;
    animation: float 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: transform;
    z-index: 2;
}

/* Right - Team Interface */
.hero-right {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.6s;
    justify-self: end;
    margin-right: -100px;
}

/* Restored simple float */
.floating-card-reverse {
    /* animation: float-reverse 9s cubic-bezier(0.45, 0, 0.55, 1) infinite; */
    transform-origin: center;
    /* will-change: transform; */
    z-index: 2;
}

.device-image {
    width: 420px;
    height: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 30px;
    position: relative;
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: rotateY(15deg) rotateX(5deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px;
    background: #2d2d2d;
}

.device-image:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.4);
}

.device-screen {
    background: #1a1a1a;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen-header {
    height: 30px;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.screen-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.screen-header .dot.red {
    background: #ff5f56;
}

/* VS Code Theme for Device */
.vscode-theme {
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.window-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.window-title {
    color: #9cb5d6;
    font-size: 11px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Consolas', monospace;
    opacity: 0.8;
}

.vscode-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.vscode-sidebar {
    width: 40px;
    background: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    gap: 15px;
}

.sidebar-item {
    width: 24px;
    height: 24px;
    background: #555;
    border-radius: 4px;
    opacity: 0.6;
}

.sidebar-item.active {
    opacity: 1;
    border-left: 2px solid #fff;
    background: #f5f5f5;
}

.sidebar-item.bottom {
    margin-top: auto;
    margin-bottom: 10px;
}

.vscode-explorer {
    width: 140px;
    background: #252526;
    padding: 10px;
    color: #ccc;
    font-size: 11px;
    font-family: 'Segoe UI', sans-serif;
}

.explorer-header {
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
    opacity: 0.6;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    cursor: pointer;
    opacity: 0.8;
}

.file-item:hover {
    background: #2a2d2e;
}

.file-item.active {
    background: #37373d;
    opacity: 1;
}

.file-icon {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.file-icon.js {
    background: #f7df1e;
}

.file-icon.css {
    background: #563d7c;
}

.file-icon.ts {
    background: #3178c6;
}

.file-icon.json {
    background: #cbcb41;
}

.vscode-editor {
    flex: 1;
    background: #1e1e1e;
    padding: 15px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 10px;
    line-height: 1.5;
    color: #d4d4d4;
    overflow: hidden;
    position: relative;
}

.code-line {
    display: flex;
    gap: 10px;
}

.line-num {
    color: #858585;
    text-align: right;
    width: 15px;
    flex-shrink: 0;
}

.kwd {
    color: #569cd6;
}

/* keyword */
.str {
    color: #ce9178;
}

/* string */
.func {
    color: #dcdcaa;
}

/* function */
.comp {
    color: #4ec9b0;
}

/* component */

.cursor-line {
    width: 2px;
    height: 12px;
    background: #fff;
    margin-left: 30px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0) translateZ(20px);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) translateZ(20px);
    }
    100% {
        transform: scale(1) translateZ(20px);
        opacity: 1;
    }
}

.profile-card {
    position: absolute;
    bottom: -40px;
    right: -50px;
    background: #ffffff;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    min-width: 140px;
    border: none;
    transform: translateZ(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s both;
}

.profile-card:hover {
    transform: translateZ(30px) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.profile-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    border-radius: 50%;
}

.profile-details h4 {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.05rem;
}

.profile-details p {
    font-size: 0.65rem;
    color: var(--gray-600);
    font-weight: 500;
}

.incident-btn {
    background: var(--color-error);
    color: var(--white);
    border: none;
    padding: 0.4rem 0.7rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

/* Success Profile Card Overrides */
.profile-avatar.success-icon {
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.mono-text {
    font-family: 'Consolas', monospace;
    font-size: 0.65rem !important;
    background: #f3f4f6;
    padding: 1px 4px;
    border-radius: 3px;
    margin-top: 1px;
}

.incident-btn.success {
    background: #10b981;
}

.incident-btn.success:hover {
    background: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.incident-btn.success::before {
    display: none;
}

/* Updated Tagline Glow Animation */
.animated-tagline {
    position: relative;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.step {
    position: relative;
    font-weight: 700;
    color: var(--gray-400);
    /* Inactive state */
    transition: all 0.5s ease;
}

/* Smoother Cycle Animation */
.step-design {
    animation: cycle-yellow 4s infinite;
}

.step-develop {
    animation: cycle-yellow 4s infinite;
}

.step-deploy {
    animation: cycle-yellow 4s infinite;
}

@keyframes cycle-red {

    0%,
    15% {
        color: #ef4444;
        text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
        transform: scale(1.1);
        filter: blur(0px);
    }

    30%,
    100% {
        color: var(--gray-300);
        text-shadow: none;
        transform: scale(1);
        filter: blur(0.5px);
    }
}

@keyframes cycle-yellow {

    0%,
    30% {
        color: var(--gray-300);
        text-shadow: none;
        transform: scale(1);
        filter: blur(0.5px);
    }

    45%,
    60% {
        color: #f59e0b;
        text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
        transform: scale(1.1);
        filter: blur(0px);
    }

    75%,
    100% {
        color: var(--gray-300);
        text-shadow: none;
        transform: scale(1);
        filter: blur(0.5px);
    }
}

@keyframes cycle-green {

    0%,
    75% {
        color: var(--gray-300);
        text-shadow: none;
        transform: scale(1);
        filter: blur(0.5px);
    }

    90%,
    100% {
        color: #10b981;
        text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
        transform: scale(1.1);
        filter: blur(0px);
    }
}

/* Ensure spacing creates room for the dot animation */
.animated-tagline span {
    padding: 0 8px;
}

/* Center Content Text Staggered Entrance */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
}

.hero-center>* {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-center .hero-tagline {
    animation-delay: 0.2s;
}

.hero-center h1 {
    animation-delay: 0.3s;
}

.hero-center p {
    animation-delay: 0.4s;
}

.hero-center .hero-cta {
    animation-delay: 0.5s;
}

/* Enhanced Hero Text */
.hero-center h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -1.2px;
    padding-bottom: 0.2rem;
    width: 100%;
    white-space: normal;
}

.hero-center h1 br {
    display: block;
}

/* Gradient Text for "Digital Future" */
.hero-center h1 span.gradient-text {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-600) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-center p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
    line-height: 1.6;
    max-width: 700px;
    font-weight: 500;
}

.hero-cta {
    background: var(--blue-900);
    color: var(--white);
    border: 2px solid var(--blue-900);
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: buttonShine 4s infinite;
}

@keyframes buttonShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    20% {
        transform: translateX(100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
}

/* Secondary Hero Button */
.hero-cta-secondary {
    background: transparent;
    color: var(--blue-900);
    border: 2px solid var(--blue-900);
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.hero-cta-secondary:hover {
    background: var(--blue-900);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
}

/* Strategy Call Modal Specific Styles */
.strategy-call-modal {
    max-width: 700px;
}

.strategy-call-form {
    width: 100%;
}

.strategy-call-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.strategy-call-form .form-group {
    width: 100%;
}

.strategy-call-form input,
.strategy-call-form select,
.strategy-call-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    transition: all 0.3s ease;
}

.strategy-call-form input:focus,
.strategy-call-form select:focus,
.strategy-call-form textarea:focus {
    outline: none;
    border-color: var(--blue-900);
    box-shadow: 0 0 0 3px rgba(10, 14, 39, 0.1);
}

.strategy-call-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230a0e27' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.strategy-call-form textarea {
    resize: vertical;
    min-height: 100px;
}

.strategy-call-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.strategy-call-form .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.strategy-call-form .form-checkbox label {
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.5;
}

.btn-submit-strategy {
    width: 100%;
    background: var(--blue-900);
    color: var(--white);
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 2, 41, 0.2);
}

.btn-submit-strategy:hover {
    background: var(--blue-800);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 2, 41, 0.3);
}

.btn-submit-strategy:active {
    transform: translateY(0);
}

.strategy-call-form .form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Task Cards on Right */
.task-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.8rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.task-card:hover {
    background: #f9fafb;
    border-color: #0f2e60;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.task-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-icon svg {
    width: 16px;
    height: 16px;
}

.task-icon.code {
    background: #eff6ff;
    color: #3b82f6;
}

.task-icon.design {
    background: #f3f4f6;
    color: #111827;
}

.task-icon.deploy {
    background: #eff6ff;
    color: #3b82f6;
}

.task-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.task-status.in-progress {
    background: #eff6ff;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.task-status.review {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #9ca3af;
}

.task-status.done {
    background: #111827;
    color: #ffffff;
    border: 1px solid #111827;
}

.task-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
}

.task-id {
    font-size: 0.65rem;
    color: #9ca3af;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.task-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111827;
}

.member-avatar.small {
    width: 24px;
    height: 24px;
    font-size: 10px;
}

.hero-tagline .separator {
    color: var(--gray-300);
}

.hero-center h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-center p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: var(--yellow-900);
    color: var(--gray-900);
    border: 2px solid var(--yellow-900);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--yellow-800);
}

.hero-cta:hover::after {
    opacity: 1;
}

/* Right - Team Interface */
.hero-right {
    position: relative;
    animation: float-reverse 7s ease-in-out infinite;
}

.team-interface {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    height: 420px;
    width: 340px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .team-interface {
        transform: none;
        height: auto;
        width: 100%;
        max-width: 450px;
    }

    .team-interface:hover {
        transform: none;
    }

    .hero-right {
        display: none;
        /* Hide complex UI on smaller screens or stack it */
    }

    .hero-content {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 2rem;
    }

    .hero-left {
        display: none;
        /* Simplify hero on mobile */
    }

    .hero-center {
        max-width: 100%;
    }
}

.team-interface:hover {
    /* No hover transform - keeping it static */
}

.team-sidebar {
    background: #f8f9fa;
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}


.sidebar-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.icon-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #6b7280;
    position: relative;
    border: 1px solid #e5e7eb;
}

.icon-item svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.icon-item:hover {
    background: #eff6ff;
    color: #3b82f6;
    transform: translateY(-2px);
    border-color: #3b82f6;
}

.icon-item.active {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.icon-item.active::after {
    content: '';
    position: absolute;
    left: -10px;
    width: 3px;
    height: 20px;
    background: #3b82f6;
    border-radius: 0 2px 2px 0;
}

.team-panel {
    flex: 1;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.team-panel h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.3px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #eff6ff;
    border-radius: 12px;
    border: 1px solid #3b82f6;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    padding: 4px;
    background: #f3f4f6;
    border-radius: 8px;
}

.team-tabs .tab {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.team-tabs .tab svg {
    opacity: 0.6;
}

.team-tabs .tab:hover {
    background: #e5e7eb;
    color: #111827;
}

.team-tabs .tab.active {
    color: #ffffff;
    background: #3b82f6;
    font-weight: 700;
}

.team-tabs .tab.active svg {
    opacity: 1;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: auto;
    overflow-y: auto;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: transform 0.2s ease;
}

.member-item:hover {
    transform: translateX(3px);
}

.member-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--yellow-900) 0%, var(--yellow-800) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.member-device {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    flex: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.activate-section {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.metric-group {
    display: flex;
    gap: 1.2rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #3b82f6;
    font-family: 'Courier New', monospace;
}

.metric-label {
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activate-section h4::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #bbf7d0;
}

/* ===== COMPANIES SECTION ===== */
.companies {
    background: var(--white);
    padding: 80px 0 0;
    position: relative;
    z-index: 2;
}

.companies-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gray-700);
    margin-bottom: 0rem;
    margin-top: 0;
    letter-spacing: -0.3px;
}

.companies-text strong {
    font-weight: 700;
    color: var(--gray-900);
}

.companies-bar {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    transform: translateY(50%);
    overflow: hidden;
}

.companies-carousel {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 20s linear infinite;
    width: max-content;
}

.companies-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.company-logo {
    width: 140px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ===== FEATURES SECTION ===== */
.features {
    background: #0a0e27;
    padding: 150px 0 100px;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(253, 205, 6, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.features-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.features-badge {
    display: inline-block;
    background: transparent;
    color: var(--gray-600);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4rem;
    letter-spacing: -0.3px;
}

.features-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    height: 500px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

/* Buzzing Neon Center Dot - Creative Hover Interaction */
.neon-center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #FFD43B;
    border-radius: 50%;
    z-index: 0;
    box-shadow:
        0 0 10px #FFD43B,
        0 0 20px #FFD43B,
        0 0 40px #FFD43B,
        0 0 80px #FFD43B;
    animation: neonBuzz 0.1s infinite alternate, neonPulse 2s infinite ease-in-out;
    pointer-events: none;
    transition: all 0.5s ease;
}

/* Make dot react when grid is hovered */
.features-grid:hover .neon-center-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    box-shadow:
        0 0 20px #FFD43B,
        0 0 40px #FFD43B,
        0 0 80px #FFD43B,
        0 0 120px #FFD43B;
    animation: neonBuzz 0.05s infinite alternate, neonPulse 1s infinite ease-in-out;
    /* Faster buzz */
}

@keyframes neonBuzz {
    0% {
        transform: translate(-51%, -49%) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translate(-49%, -51%) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px #FFD43B, 0 0 20px #FFD43B;
    }

    50% {
        box-shadow: 0 0 20px #FFD43B, 0 0 40px #FFD43B, 0 0 60px #FFD43B;
    }

    100% {
        box-shadow: 0 0 10px #FFD43B, 0 0 20px #FFD43B;
    }
}

/* Feature Cards Creative Animation */
.feature-card {
    position: relative;
    flex: 1;
    min-width: 0;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s ease, border 0.5s ease, opacity 0.8s ease, box-shadow 0.5s ease;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Creative Entrance: 3D Tilt Start */
    opacity: 0;
    transform: translateY(60px) rotateX(10deg) scale(0.9);
    transform-origin: center bottom;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
}

/* Staggered features entrance with bouncy feel */
.feature-card.animate-in {
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card.animate-in:nth-child(2) {
    transition-delay: 0.15s;
}

.feature-card.animate-in:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card.animate-in:nth-child(4) {
    transition-delay: 0.45s;
}

.feature-card.animate-in:nth-child(5) {
    transition-delay: 0.6s;
}

.feature-card:hover,
.feature-card.active {
    flex: 3.5;
    border-color: rgba(253, 205, 6, 0.6);
    box-shadow: 0 30px 60px rgba(253, 205, 6, 0.15), 0 0 0 1px rgba(253, 205, 6, 0.1);
    /* Subtle 3D lift on hover */
    transform: translateY(-8px) scale(1.02) !important;
}

/* Shimmer overlay for Cards */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 2;
}

.feature-card:hover::after {
    left: 200%;
    transition: left 1.5s ease-in-out;
}

.card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card:hover .card-bg,
.feature-card.active .card-bg {
    opacity: 0.95;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    /* Moved to right */
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    transition: all 0.5s ease;
}

.feature-card:hover .card-number,
.feature-card.active .card-number {
    color: rgba(253, 205, 6, 0.15);
    transform: scale(1.1);
}

.icon-badge {
    width: 60px;
    height: 60px;
    background: rgba(253, 205, 6, 0.1);
    border: 1px solid rgba(253, 205, 6, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-900);
    margin-bottom: auto;
    /* Push to top */
    transition: all 0.5s ease;
}

.icon-badge svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.feature-card:hover .icon-badge,
.feature-card.active .icon-badge {
    background: var(--yellow-900);
    color: #000;
    border-color: var(--yellow-900);
    transform: scale(1.1);
}

.text-content {
    opacity: 0.7;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
    width: 100%;
    overflow: hidden;
}

.feature-card:hover .text-content,
.feature-card.active .text-content {
    opacity: 1;
    transform: translateY(0);
}

.text-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    /* Keep title on one line if desired, or let wrap */
}

.text-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.feature-card:hover .text-content p,
.feature-card.active .text-content p {
    max-height: 100px;
    /* Adjust as needed */
    opacity: 1;
    margin-top: 0.5rem;
    transition-delay: 0.1s;
}

@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
        height: auto;
    }

    .feature-card {
        min-height: 180px;
    }

    .feature-card:hover,
    .feature-card.active {
        flex: 1;
        /* Disable flex expansion on mobile or make it vertical */
        min-height: 250px;
    }

    .text-content p {
        max-height: 100px;
        opacity: 1;
    }
}

/* ===== PROCESS SECTION ===== */
.process {
    background: var(--white);
    padding: 100px 0;
}

.process .process-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.process-tab {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 2px solid var(--gray-300);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-tab.active {
    background: var(--yellow-900);
    color: var(--gray-900);
    border-color: var(--yellow-900);
    box-shadow: 0 4px 12px rgba(253, 205, 6, 0.3);
}

.process-tab:hover {
    transform: translateY(-2px);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: all 0.3s ease;
    flex-direction: column;
}

.features .process-step:hover {
    transform: translateX(8px);
}

.features .step-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-icon svg {
    transition: all 0.3s ease;
    stroke: var(--gray-700);
    width: 24px;
    height: 24px;
}

.step-icon::before {
    display: none;
}

.features .process-step:hover .step-icon {
    background: var(--yellow-900);
    border-color: var(--yellow-900);
    box-shadow: 0 6px 20px rgba(253, 205, 6, 0.35);
}

.features .process-step:hover .step-icon svg {
    stroke: var(--blue-900);
    transform: scale(1.1);
}

.features .step-content {
    width: 100%;
}

.features .step-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-900);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.features .step-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.process-image {
    position: relative;
    perspective: 1500px;
    height: 450px;
}

.card-deck {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deck-card {
    position: absolute;
    width: 320px;
    height: 400px;
    background: linear-gradient(145deg, var(--white) 0%, #f8fafc 100%);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;

    /* Initial state for Entrance (Hidden to side) */
    opacity: 0;
    transform: translateX(100%) rotate(10deg) scale(0.9);
    z-index: 1;
    /* Default low z-index */
}

/* Entrance Class Triggered by JS */
.deck-card.entering {
    opacity: 1;
    transform: translateX(0) rotate(0) scale(1);
    z-index: 4;
    /* Bring to front for entrance */
}

/* Entrance Delays */
.deck-card.entering.deck-card-1 {
    transition-delay: 0s;
}

.deck-card.entering.deck-card-2 {
    transition-delay: 0.2s;
}

.deck-card.entering.deck-card-3 {
    transition-delay: 0.4s;
}

.deck-card.entering.deck-card-4 {
    transition-delay: 0.6s;
}

/* Cycling Animation Triggered after Entrance */
.card-deck.cycling .deck-card {
    /* Re-apply animation with slower duration (24s) for smoother effect */
    animation: cardCycle 24s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.deck-card lottie-player {
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.deck-card:hover lottie-player {
    transform: scale(1.1) rotate(5deg);
}

/* ... existing code ... */
/* Cycle Delays (Only apply when cycling) - Adjusted for 24s total */
.card-deck.cycling .deck-card-1 {
    animation-delay: 0s;
    z-index: 4;
}

.card-deck.cycling .deck-card-2 {
    animation-delay: 6s;
    z-index: 3;
}

.card-deck.cycling .deck-card-3 {
    animation-delay: 12s;
    z-index: 2;
}

.card-deck.cycling .deck-card-4 {
    animation-delay: 18s;
    z-index: 1;
}

@keyframes cardCycle {

    0%,
    20% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
        z-index: 4;
        filter: blur(0px);
    }

    25%,
    45% {
        opacity: 0.9;
        transform: translateX(50px) scale(0.95) rotate(3deg);
        z-index: 3;
        filter: blur(1px);
    }

    50%,
    70% {
        opacity: 0.7;
        transform: translateX(90px) scale(0.9) rotate(6deg);
        z-index: 2;
        filter: blur(2px);
    }

    75%,
    95% {
        opacity: 0;
        transform: translateX(120px) scale(0.85) rotate(10deg);
        z-index: 1;
        filter: blur(4px);
    }

    100% {
        opacity: 0;
        transform: translateX(-100px) scale(1.1);
        /* Start from left */
        z-index: 5;
        /* Jump to front hidden */
        filter: blur(0px);
    }
}

/* Remove old specific transforms */
.deck-card.card-animate,
.deck-card-1.card-animate,
.deck-card-2.card-animate,
.deck-card-3.card-animate,
.deck-card-4.card-animate {
    transform: none;
    transition-delay: 0s;
}

/* Manual hover logic replaced by animation, but keep for pause */
.card-deck:hover .deck-card {
    animation-play-state: paused;
}

.process-visual {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.process-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 205, 6, 0.2) 0%, transparent 70%);
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(to bottom, var(--white) 0%, var(--white) 25%, #0a0e27 25%, #0a0e27 100%);
    padding: 80px 0 180px;
    position: relative;
    z-index: 2;
    border-radius: 0 0 0 0;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75%;
    background: #0a0e27;
    border-radius: 40px 40px 0 0;
    z-index: -1;
}

.stats-floating {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 2.5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.stats-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
}

.stats-boxes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--yellow-900) 0%, var(--yellow-800) 100%);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(253, 205, 6, 0.25);
    width: 100%;
}

.stat-item:hover .stat-box {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(253, 205, 6, 0.35);
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--blue-900);
    margin: 0;
    line-height: 1;
    text-align: center;
    letter-spacing: -1px;
    min-width: 120px;
    display: inline-block;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* ===== WORLD MAP STYLES ===== */
.world-map-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 450px;
    margin: 0 auto 50px;
    background-color: transparent;
    overflow: visible;
}

.map-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dot pattern - Darker Gray */
    background-image: radial-gradient(#94a3b8 1.5px, transparent 1.5px);
    background-size: 7px 7px;
    /* Mask */
    -webkit-mask-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
    mask-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    opacity: 0.7;
}

.map-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards 1.2s;
    filter: drop-shadow(0 0 3px var(--yellow-900));
}

.map-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pin-inner {
    width: 14px;
    height: 14px;
    background-color: var(--white);
    border: 3px solid var(--yellow-900);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(253, 205, 6, 0.8);
    z-index: 2;
    position: relative;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--yellow-900);
    border-radius: 50%;
    opacity: 0;
    animation: pulsePin 2s infinite;
}

.pin-label {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-900);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pin-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--blue-900);
}

.map-pin:hover .pin-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Specific Pin Delays */
.map-pin.pin-usa {
    animation: dropPin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s;
}

.map-pin.pin-brazil {
    animation: dropPin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s;
}

.map-pin.pin-uk {
    animation: dropPin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.6s;
}

.map-pin.pin-india {
    animation: dropPin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.8s;
}

.map-pin.pin-australia {
    animation: dropPin 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.0s;
}

@keyframes dropPin {
    0% {
        opacity: 0;
        transform: translate(-50%, -150px) scale(0);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulsePin {
    0% {
        width: 14px;
        height: 14px;
        opacity: 0.8;
        border-width: 2px;
    }

    100% {
        width: 50px;
        height: 50px;
        opacity: 0;
        border-width: 0px;
    }
}

/* ===== SERVICES GRID SECTION ===== */
.services-grid {
    background: #0a0e27;
    padding: 0px 0 100px;
    margin-top: -0px;
    border-radius: 0;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.services-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 205, 6, 0.05) 0%, rgba(10, 14, 39, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(253, 205, 6, 0.2);
    border-color: rgba(253, 205, 6, 0.3);
}

.service-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(30, 58, 138, 0.6) 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: all 0.4s ease;
    transform: scale(1.1);
}

.service-card:hover .service-image img {
    opacity: 0.5;
    transform: scale(1.15);
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 14, 39, 0.7) 100%);
    z-index: 1;
}

.service-content {
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.service-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow-900);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: auto;
}

.service-btn svg {
    transition: transform 0.3s ease;
}

.service-btn:hover {
    gap: 0.8rem;
    color: var(--yellow-800);
}

.service-btn:hover svg {
    transform: translateX(4px);
}

/* ===== TEAM SECTION ===== */
.cards-3d {
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--primary-bg) 100%);
    padding: 30px 0 100px;
    border-radius: 0 0 40px 40px;
    position: relative;
    overflow: hidden;
}

.cards-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ahmed (12).png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.cards-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/68012d37d3bf1010f979996d_trame pistache.svg');
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.team-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.team-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.5px;
}

.team-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Company page team grid with multiple rows */
.company-page .cards-container {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1400px;
}

/* First 3 large cards span 4 columns each = 3 cards per row */
.company-page .card-3d:nth-child(1),
.company-page .card-3d:nth-child(2),
.company-page .card-3d:nth-child(3) {
    grid-column: span 4;
}

/* Small cards span 3 columns each = 4 cards per row */
.company-page .card-3d.card-small {
    grid-column: span 3;
}

.card-3d {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-3d.card-small {
    transform: scale(0.95);
}

.card-3d.card-small .card-visual {
    height: 380px;
}

.card-3d.card-small .card-text h3 {
    font-size: 18px;
}

.card-3d.card-small .card-text p {
    font-size: 13px;
}

.card-3d:nth-child(2) {
    transform: translateY(-30px);
}

.card-3d:nth-child(1),
.card-3d:nth-child(3) {
    transform: translateY(15px);
}

.card-visual {
    width: 100%;
    height: 450px;
    background: linear-gradient(180deg, #0a0e27 0%, #4169E1 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    overflow: hidden;
}

.card-person-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('team person.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.card-3d:hover .card-person-image {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.company-page .card-person-image {
    filter: grayscale(0%);
}

.company-page .card-3d.card-small .card-person-image {
    background-size: contain;
}

.card-gradient-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.7) 30%, transparent 100%);
    z-index: 2;
}

.card-text {
    position: relative;
    z-index: 3;
}

.card-visual h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.card-visual p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0 0 1rem 0;
}

.card-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #FCD306;
    border-radius: 8px;
    color: #FCD306;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background: #FCD306;
    color: #0a0e27;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
    overflow: hidden;
    border-radius: 40px 40px 40px 40px;
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(5, 10, 68, 0.08), transparent 60%);
    pointer-events: none;
}

.portfolio .container {
    max-width: 1600px;
    position: relative;
    z-index: 1;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.portfolio-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    font-weight: 500;
    letter-spacing: -0.2px;
}

.portfolio-wrapper {
    position: relative;
    padding: 0;
}

.portfolio-nav {
    position: absolute;
    bottom: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    color: var(--gray-700);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.portfolio-nav:hover {
    background: var(--yellow-900);
    border-color: var(--yellow-900);
    color: var(--blue-900);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.35);
}

.portfolio-nav-left {
    right: 80px;
}

.portfolio-nav-right {
    right: 15px;
}

.portfolio-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 70px;
    padding-top: 20px;
    padding-left: 150px;
}

.portfolio-carousel::-webkit-scrollbar {
    display: none;
}

.portfolio-carousel:active {
    cursor: grabbing;
}

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.portfolio-item.reveal {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: opacity, transform;
}

.portfolio-item.reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item.reveal:nth-child(1).active { transition-delay: 0.05s; }
.portfolio-item.reveal:nth-child(2).active { transition-delay: 0.1s; }
.portfolio-item.reveal:nth-child(3).active { transition-delay: 0.15s; }
.portfolio-item.reveal:nth-child(4).active { transition-delay: 0.2s; }
.portfolio-item.reveal:nth-child(5).active { transition-delay: 0.25s; }
.portfolio-item.reveal:nth-child(6).active { transition-delay: 0.3s; }

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover::before {
    opacity: 0;
}

.portfolio-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(5, 10, 68, 0) 0%, rgba(5, 10, 68, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--blue-900);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.portfolio-text {
    flex: 1;
}

.portfolio-item h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-900);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.portfolio-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tech-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.portfolio-item:hover .tech-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.portfolio-btn {
    background: var(--blue-900);
    color: var(--white);
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.portfolio-btn:hover {
    background: var(--blue-800);
}

.portfolio-btn svg {
    transition: transform 0.3s ease;
}

.portfolio-btn:hover svg {
    transform: translateX(4px);
}

/* ===== DEVELOPMENT PROCESS SECTION ===== */
.development-process {
    background: #0a0e27;
    padding: 120px 0 150px;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.development-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(253, 205, 6, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(253, 205, 6, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.development-process .process-main-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.process-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-path {
    position: absolute;
    left: 50%;
    top: 0;
    width: 400px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.development-process .process-step {
    position: relative;
    margin-bottom: 140px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.development-process .process-step.active {
    opacity: 1;
    transform: translateY(0);
}

.development-process .process-step.dimmed {
    opacity: 0.35;
}

.step-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.process-step-left .step-content {
    justify-content: flex-start;
    padding-left: 80px;
}

.process-step-right .step-content {
    justify-content: flex-end;
    padding-left: 180px;
}

.step-number-bg {
    position: absolute;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.process-step-left .step-number-bg {
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.process-step-right .step-number-bg {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.development-process .step-card {
    background: rgba(0, 15, 40, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.development-process .process-step.active .step-card {
    opacity: 1;
    transform: translateY(0);
}

.development-process .card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.development-process .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(253, 205, 6, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FDCD06;
}

.development-process .card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.development-process .card-description {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.development-process .card-description li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    counter-increment: step-counter;
}

.development-process .card-description li::before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.development-process .step-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--yellow-primary) 0%, #FFD700 100%);
    color: var(--blue-900);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(253, 205, 6, 0.2);
}

.development-process .step-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.development-process .step-cta-btn:hover::before {
    left: 100%;
}

.development-process .step-cta-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(253, 205, 6, 0.35);
    background: linear-gradient(135deg, #FFD700 0%, var(--yellow-primary) 100%);
}

.development-process .step-cta-btn:active {
    transform: translateX(3px) scale(0.98);
}

.development-process .step-illustration {
    flex-shrink: 0;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s,
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.development-process .process-step.active .step-illustration {
    opacity: 1;
    transform: scale(1);
}

.development-process .step-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .process-path {
        display: none;
    }

    .process-timeline {
        padding: 0 20px;
    }

    .step-content {
        flex-direction: column !important;
        gap: 30px;
    }

    .process-step-right .step-content {
        flex-direction: column !important;
    }

    .step-card {
        max-width: 100%;
        padding: 28px 24px;
    }

    .development-process .step-cta-btn {
        font-size: 0.85rem;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }

    .step-illustration {
        width: 250px;
        height: 250px;
        order: -1;
    }

    .step-number-bg {
        font-size: 7rem;
        opacity: 0.5;
    }

    .process-step-left .step-number-bg,
    .process-step-right .step-number-bg {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description li {
        font-size: 0.9rem;
    }

    .process-main-title {
        font-size: 2.2rem;
    }

    .process-header {
        margin-bottom: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-step,
    .step-illustration,
    .step-info {
        transition: none;
    }

    .process-step {
        opacity: 1;
        transform: none;
    }

    .step-illustration,
    .step-info {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 968px) {
    .process .process-main-title,
    .development-process .process-main-title {
        font-size: 2.2rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: #0a0e27;
    padding: 100px 0;
    margin-bottom: 3rem;
    border-radius: 40px 40px 40px 40px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ahmed (12).png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.testimonials-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.4) 0%, rgba(30, 58, 138, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(253, 205, 6, 0.2);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow-900) 0%, var(--yellow-800) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(253, 205, 6, 0.3);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
}

.testimonial-card span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--blue-900);
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 40px 40px 0 0;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--yellow-900);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--yellow-900);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 280px 1fr 350px;
        gap: 2.5rem;
    }

    .hero-center h1 {
        font-size: 2.4rem;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-left,
    .hero-right {
        display: none;
    }

    .hero-center h1 {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        height: 400px;
    }

    /* Legacy grid styles removed */
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 0.7rem;
    }

    .contact-btn,
    .signup-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-center h1 {
        font-size: 1.85rem;
    }

    .hero-center p {
        font-size: 1rem;
    }

    .hero-cta,
    .hero-cta-secondary {
        padding: 0.75rem 1.6rem;
        font-size: 0.95rem;
    }

    /* Hero buttons responsive */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-cta,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Strategy Call Modal responsive */
    .strategy-call-modal {
        padding: 1.5rem;
        max-width: 95%;
    }

    .strategy-call-form .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Legacy grid styles removed */

    .services-container,
    .cards-container,
    .portfolio-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: auto;
        min-height: 380px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .contact-btn,
    .signup-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-center h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-cta,
    .hero-cta-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        min-height: 160px;
    }

    /* Modal adjustments for very small screens */
    .strategy-call-modal {
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .btn-submit-strategy {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Enhanced 3D tilt for cards on scroll if needed */
.card-3d-scroll {
    opacity: 0;
    transform: perspective(1000px) rotateX(20deg) translateY(50px);
    transition: all 0.8s ease-out;
}

.card-3d-scroll.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-teal: #0f1585;
    --dark-bg: #FFFFFF;
    --dark-card: #F8FAFC;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --green-bg: #0a0d5f;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;


/* ===== CONTACT PAGE STYLES ===== */
.contact-page-section {
    padding: 100px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
}

.contact-page-header h2 {
    font-family: ''Plus Jakarta Sans'', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.contact-page-header h3 {
    font-family: ''Plus Jakarta Sans'', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gray-900);
}

.highlight-teal {
    color: var(--blue-900);
    background: linear-gradient(135deg, var(--yellow-900), var(--blue-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-page-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    background: var(--gray-100);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-section {
    padding-right: 40px;
    border-right: 2px solid var(--gray-300);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--gray-900);
    font-size: 14px;
    font-family: ''Manrope'', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--yellow-900);
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-500);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-note {
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
    margin-top: -2px;
}

.contact-form .form-row + .form-row {
    margin-top: -5px;
}

.contact-form select,
.contact-form textarea,
.contact-form > input {
    width: 100%;
}

.contact-form select:invalid {
    color: var(--gray-500);
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--yellow-900);
}

.form-checkbox label {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.recaptcha-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    border: 2px solid var(--gray-300);
}

.recaptcha-placeholder input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--yellow-900);
}

.recaptcha-placeholder label {
    color: var(--gray-700);
    font-size: 14px;
    cursor: pointer;
    flex: 1;
}

.recaptcha-icon {
    font-size: 20px;
}

.btn-submit {
    background: var(--yellow-900);
    color: var(--blue-900);
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-family: ''Plus Jakarta Sans'', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--yellow-800);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.4);
}

.contact-faq-section {
    padding-left: 40px;
}

.contact-faq-section h4 {
    font-family: ''Plus Jakarta Sans'', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.faq-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.faq-description {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--yellow-900);
    background: var(--gray-100);
    transform: translateX(5px);
}

.faq-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.arrow-right {
    color: var(--yellow-900);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item:hover .arrow-right {
    transform: translateX(5px);
}

.contact-info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: var(--blue-900);
    padding: 40px 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(5, 10, 68, 0.3);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 214, 0, 0.2);
    border-radius: 10px;
    color: var(--yellow-900);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--yellow-900);
}

.contact-details h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow-900);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-details p {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

.contact-map {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
    height: 400px;
}

.contact-bottom-cta {
    text-align: center;
    padding: 50px 0 30px;
}

.contact-bottom-cta h3 {
    font-family: ''Plus Jakarta Sans'', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 35px;
    line-height: 1.3;
}

.bottom-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-secondary {
    background: var(--yellow-900);
    color: var(--blue-900);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: ''Plus Jakarta Sans'', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--yellow-800);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-900);
    padding: 14px 32px;
    border-radius: 12px;
    font-family: ''Plus Jakarta Sans'', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--gray-900);
    color: var(--white);
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    .contact-form-section {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid var(--gray-300);
        padding-bottom: 40px;
    }

    .contact-faq-section {
        padding-left: 0;
    }

    .contact-info-bar {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-page-header h2,
    .contact-page-header h3 {
        font-size: 2.25rem;
    }

    .contact-bottom-cta h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 80px 0 60px;
    }

    .contact-page-grid {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .bottom-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .bottom-cta-buttons button {
        width: 100%;
    }

    .contact-page-header h2,
    .contact-page-header h3 {
        font-size: 1.75rem;
    }

    .contact-bottom-cta h3 {
        font-size: 1.5rem;
    }

    .contact-info-bar {
        padding: 30px 25px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* ========================================
   CAREER PAGE STYLES
   ======================================== */

/* Career Hero Section */
.career-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--primary-bg) 15%, var(--primary-bg) 30%, #ffffff 85%, #FFFFFF 92%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(5, 10, 68, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.career-hero .container {
    position: relative;
    z-index: 1;
}

.career-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -1px;
}

.career-hero .highlight-text {
    color: var(--yellow-900);
    position: relative;
    display: inline-block;
}

.career-hero .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 214, 0, 0.3);
    z-index: -1;
}

.career-hero p {
    font-family: 'Manrope', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.career-hero .btn-secondary {
    background: var(--blue-900);
    color: var(--white);
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(5, 10, 68, 0.2);
}

.career-hero .btn-secondary:hover {
    background: var(--blue-800);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5, 10, 68, 0.3);
}

/* Application Section */
.application-section {
    padding: 100px 0;
    background: var(--blue-900);
}

.application-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    text-align: center;
}

.application-section .highlight-text {
    color: var(--yellow-900);
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.application-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

/* Application Form */
.application-form {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--gray-900);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow-900);
    box-shadow: 0 0 0 4px rgba(255, 214, 0, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url(\"data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E\");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

/* File Upload Styling */
.file-upload {
    position: relative;
}

.file-upload input[type=\"file\"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.05) 0%, rgba(5, 10, 68, 0.03) 100%);
    border: 2px dashed var(--yellow-900);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.file-upload-label:hover {
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.1) 0%, rgba(5, 10, 68, 0.05) 100%);
    border-color: var(--blue-900);
    transform: translateY(-2px);
}

.file-icon {
    font-size: 48px;
    margin-bottom: 12px;
    filter: grayscale(1);
    opacity: 0.3;
}

.file-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.file-hint {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--gray-600);
}

/* Checkbox Styling */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input[type=\"checkbox\"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--yellow-900);
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    line-height: 1.5;
}

/* reCAPTCHA Container */
.recaptcha-container {
    margin-bottom: 30px;
}

.recaptcha-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    margin-bottom: 24px;
}

.recaptcha-placeholder input[type=\"checkbox\"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.recaptcha-placeholder label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    flex: 1;
}

.recaptcha-icon {
    font-size: 18px;
    color: var(--gray-500);
}

/* Submit Button */
.btn-submit {
    background: var(--yellow-900);
    color: var(--gray-900);
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 24px rgba(255, 214, 0, 0.3);
}

.btn-submit:hover {
    background: var(--yellow-800);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 214, 0, 0.4);
}

/* Application Tips Sidebar */
.application-tips {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.application-tips h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.faq-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.faq-description {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tips-list,
.faq-list {
    list-style: none;
}

.tips-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
}

.tips-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--yellow-900);
    border-radius: 50%;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--gray-100);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-item:hover {
    background: var(--yellow-900);
    color: var(--gray-900);
    transform: translateX(4px);
}

.arrow-right {
    font-size: 18px;
    color: var(--gray-600);
}

.faq-item:hover .arrow-right {
    color: var(--gray-900);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--primary-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 20px 40px;
    border-radius: 24px;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.3;
}

.cta-buttons,
.bottom-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta .btn-secondary,
.contact-bottom-cta .btn-secondary {
    background: var(--yellow-900);
    color: var(--gray-900);
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.3);
}

.cta .btn-secondary:hover,
.contact-bottom-cta .btn-secondary:hover {
    background: var(--yellow-800);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 48px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue-900);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .application-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .application-tips {
        position: static;
    }
    
    .career-hero h1 {
        font-size: 48px;
    }
    
    .cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .career-hero {
        padding: 140px 0 60px;
    }
    
    .career-hero h1 {
        font-size: 36px;
    }
    
    .career-hero p {
        font-size: 16px;
    }
    
    .application-section {
        padding: 60px 0;
    }
    
    .application-section h2 {
        font-size: 32px;
    }
    
    .application-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta-buttons,
    .bottom-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta .btn-secondary,
    .btn-outline-white {
        width: 100%;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Hero Section - Redesigned */
.blog-hero {
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--primary-bg) 15%, var(--primary-bg) 30%, #ffffff 85%, #FFFFFF 92%, #FFFFFF 100%);
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-hero p {
    font-family: 'Manrope', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Blog Search Container */
.blog-search-container {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Search Bar */
.search-bar {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.search-bar input {
    width: 100%;
    padding: 18px 60px 18px 56px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0A0A0A;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.search-bar input::placeholder {
    color: #6B6B6B;
}

.search-bar input:focus {
    outline: none;
    border-color: #FDCD06;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(253, 205, 6, 0.2);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #050A44;
    pointer-events: none;
}

.search-bar input:focus ~ .search-icon {
    color: #0A1155;
}

.clear-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6B6B6B;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.clear-search:hover {
    color: #050A44;
    transform: translateY(-50%) scale(1.2);
}

/* Keyword Buttons */
.keyword-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.keyword-btn {
    padding: 12px 24px;
    border: 2px solid #0a0e27;
    border-radius: 12px;
    background: #0a0e27;
    backdrop-filter: blur(20px);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.keyword-btn:hover {
    background: #141b3d;
    border-color: #1a2447;
    transform: translateY(-2px);
}

.keyword-btn.active {
    background: linear-gradient(135deg, #FDCD06 0%, #FFEA00 100%);
    border-color: #FDCD06;
    color: #050A44;
    box-shadow: 0 8px 24px rgba(253, 205, 6, 0.4);
    transform: scale(1.05);
}

/* Blog Grid Section */
.blog-grid-section {
    background: #F9FAFB;
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* No Results Message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(5, 10, 68, 0.08);
}

.no-results h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 16px;
}

.no-results p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: #6B6B6B;
    margin-bottom: 24px;
}

.no-results button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg) 100%);
    color: #FDCD06;
    border: none;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.no-results button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 10, 68, 0.3);
}

/* Blog Card - Redesigned */
.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(5, 10, 68, 0.08),
                0 2px 8px rgba(5, 10, 68, 0.04);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 214, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(5, 10, 68, 0.15),
                0 8px 24px rgba(255, 214, 0, 0.15);
    border-color: rgba(255, 214, 0, 0.3);
}

/* Blog Image Container - Redesigned */
.blog-image {
    position: relative;
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #E8EAFF 0%, #D4D7F5 100%);
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 10, 68, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1) saturate(1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.05) saturate(1.1);
}

/* Blog Badge - Redesigned */
.blog-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 10px 20px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    z-index: 3;
    backdrop-filter: blur(20px);
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-card:hover .blog-badge {
    transform: scale(1.08) translateY(-2px);
}

.blog-badge.latest {
    background: linear-gradient(135deg, #FDCD06 0%, #FFEA00 100%);
    color: #050A44;
    box-shadow: 0 4px 20px rgba(253, 205, 6, 0.4);
}

.blog-badge.guest {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg) 100%);
    color: #FDCD06;
    border: 2px solid rgba(253, 205, 6, 0.5);
    box-shadow: 0 4px 20px rgba(10, 14, 39, 0.4);
}

/* Blog Content - Redesigned */
.blog-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.blog-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: #0A0A0A;
    line-height: 1.4;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: #050A44;
    transform: translateX(4px);
}

.blog-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #5A5A5A;
    line-height: 1.8;
    margin-bottom: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

/* Blog Meta - Redesigned */
.blog-meta {
    margin-top: auto;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 214, 0, 0.15);
    position: relative;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
}

.blog-card:hover .author-info {
    transform: translateX(4px);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FDCD06;
    background: linear-gradient(135deg, #E8EAFF 0%, #D4D7F5 100%);
    box-shadow: 0 4px 12px rgba(253, 205, 6, 0.3);
    transition: all 0.3s ease;
}

.blog-card:hover .author-avatar {
    border-color: #050A44;
    transform: scale(1.1);
}

.author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 3px;
}

.blog-date {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6B6B6B;
}

/* Pagination - Redesigned */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
}

.pagination button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 16px;
    border: 2px solid rgba(255, 214, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(5, 10, 68, 0.05);
}

.pagination .page-num {
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.pagination button:hover {
    border-color: #FDCD06;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFED99 100%);
    color: #050A44;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(253, 205, 6, 0.3);
}

.pagination button.active {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg) 100%);
    color: #FDCD06;
    border-color: var(--primary-bg);
    box-shadow: 0 8px 24px rgba(10, 14, 39, 0.3);
    transform: scale(1.1);
}

.pagination .page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design - Blog Page */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .blog-hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 140px 0 80px;
    }
    
    .blog-hero h1 {
        font-size: 36px;
    }
    
    .blog-hero p {
        font-size: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-grid-section {
        padding: 60px 0;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 24px;
    }
    
    .blog-content h3 {
        font-size: 20px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .pagination button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .pagination .page-num {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 28px;
    }
    
    .blog-hero p {
        font-size: 15px;
    }
    
    .blog-badge {
        font-size: 10px;
        padding: 6px 12px;
        top: 16px;
        left: 16px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
    
    .blog-content p {
        font-size: 14px;
    }
}

/* ============================================
   COMPANY PAGE STYLES - REDESIGNED
   ============================================ */

/* Company Hero Section - Prominent Blue to White Gradient */
.company-hero {
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--primary-bg) 15%, var(--primary-bg) 30%, #ffffff 85%, #FFFFFF 92%, #FFFFFF 100%);
    padding: 200px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.company-hero-content {
    position: relative;
    z-index: 1;
}

.company-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 68px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.company-hero p {
    font-family: 'Manrope', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.company-hero .btn-secondary {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    box-shadow: 0 10px 36px rgba(255, 214, 0, 0.45);
}

.company-hero .btn-secondary:hover {
    box-shadow: 0 14px 52px rgba(255, 214, 0, 0.65);
}

/* Stats Section - Direct Text Numbers (Company Page Only) */
.company-stats {
    background: #ffffff;
    padding: 0 0 100px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.company-stats .stats-floating {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 120px;
    margin-bottom: 80px;
}

.company-stats .stat-box {
    text-align: center;
    transition: all 0.5s ease;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.company-stats .stat-box:hover {
    transform: translateY(-8px) scale(1.05);
}

.company-stats .stat-box:nth-child(1) {
    animation: floatBox 6s ease-in-out infinite;
}

.company-stats .stat-box:nth-child(2) {
    animation: floatBox 6s ease-in-out infinite 0.5s;
}

.company-stats .stat-box:nth-child(3) {
    animation: floatBox 6s ease-in-out infinite 1s;
}

.company-stats .stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #050A44;
    margin-bottom: 16px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(5, 10, 68, 0.15);
}

.company-stats .stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #6B6B6B;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Animated Logo Carousel */
.clients-carousel {
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.carousel-row {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 80px;
    animation: scrollLeft 30s linear infinite;
}

.carousel-row.reverse .carousel-track {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.carousel-track img {
    height: 48px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.carousel-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.2);
}

/* Explore Agency Section - Light Theme, Text Left */
.explore-agency {
    padding: 120px 0 180px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
}

.explore-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.explore-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #0A0A0A;
    line-height: 1.2;
    margin-bottom: 28px;
}

.explore-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 1.9;
    margin-bottom: 36px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg) 100%);
    color: #FDCD06;
    border: none;
    border-radius: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 32px rgba(10, 14, 39, 0.25);
}

.btn-explore:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(5, 10, 68, 0.35);
}

.icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 214, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-explore:hover .icon-circle {
    background: #FDCD06;
    color: #050A44;
    transform: translateX(4px);
}

/* New Profile Card Design with Solid Yellow */
.profile-card-new {
    position: relative;
    border-radius: 32px;
    overflow: visible;
    transition: all 0.5s ease;
}

.yellow-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FDCD06;
    border-radius: 32px;
    z-index: 0;
}

.profile-card-new:hover {
    transform: translateY(-12px);
}

.profile-photo-new {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    position: relative;
    z-index: 1;
    box-shadow: 0 24px 80px rgba(5, 10, 68, 0.18);
}

.profile-badge {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    background: linear-gradient(135deg, rgba(5, 10, 68, 0.98) 0%, rgba(10, 17, 85, 0.95) 100%);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 28px 32px;
    border: 2px solid rgba(255, 214, 0, 0.4);
    z-index: 2;
    box-shadow: 0 16px 48px rgba(5, 10, 68, 0.3);
}

.profile-quote {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.6;
}

.profile-badge h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #FDCD06;
    margin-bottom: 6px;
}

.profile-designation {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}

/* Rely on Experts Section - Dark Theme with Animated Yellow Icons */
.rely-experts {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg) 50%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.rely-experts::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.rely-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.rely-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.rely-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 36px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #FDCD06;
    color: #FDCD06;
    border-radius: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #FDCD06;
    color: #050A44;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(253, 205, 6, 0.4);
}

.rely-cards {
    display: grid;
    gap: 20px;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 1px 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 214, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    gap: 12px;
    align-items: center;
}

.info-card:hover {
    transform: translateX(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 214, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.icon-wrapper {
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.yellow-icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 16px rgba(255, 214, 0, 0.5));
}

.info-card:hover .yellow-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(255, 214, 0, 0.8));
}

.card-content {
    flex: 1;
}

.info-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #FDCD06;
    margin: 0 0 1px 0;
}

.info-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    margin: 0;
}

/* Brochure Section - White Theme */
.brochure-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    position: relative;
}

.brochure-content {
    display: grid;
    grid-template-columns: 1fr 0.25fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brochure-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #0A0A0A;
    line-height: 1.2;
    margin-bottom: 36px;
}

.btn-download {
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg) 100%);
    color: #FDCD06;
    border: none;
    border-radius: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 32px rgba(10, 14, 39, 0.25);
}

.btn-download:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 48px rgba(5, 10, 68, 0.35);
}

.brochure-mockup {
    display: flex;
    gap: 10px;
    position: relative;
    max-width: 300px;
    width: 100%;
}

.brochure-1,
.brochure-2 {
    flex: 1;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(5, 10, 68, 0.1);
    transition: all 0.5s ease;
    background: linear-gradient(135deg, #E8EAFF 0%, #D4D7F5 100%);
    aspect-ratio: 0.7;
    object-fit: cover;
}

.brochure-2 {
    transform: translateY(-20px) translateX(-155px) rotate(5deg);
}

.brochure-1:hover,
.brochure-2:hover {
    transform: translateY(-12px) rotate(-2deg);
    box-shadow: 0 28px 80px rgba(5, 10, 68, 0.25);
}

.brochure-2:hover {
    transform: translateY(-25px) translateX(-15px) rotate(8deg);
}

/* Team Section - Dark Theme */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg) 50%, var(--primary-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.team-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 214, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 214, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.team-badge {
    position: relative;
    margin-bottom: 24px;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    object-fit: cover;
    background: linear-gradient(135deg, #E8EAFF 0%, #D4D7F5 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.badge-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FDCD06 0%, #FFEA00 100%);
    color: #050A44;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.5);
}

.team-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.team-role {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FDCD06;
    margin-bottom: 14px;
}

.team-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Partners Section - Light Theme */
.partners-section {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.partners-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #0A0A0A;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.partners-logos img {
    height: 50px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.15);
}

/* Responsive Design - Company Page */
@media (max-width: 1200px) {
    .explore-content,
    .rely-content,
    .brochure-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-floating {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .company-hero {
        padding: 160px 0 100px;
    }
    
    .company-hero h1 {
        font-size: 42px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-floating {
        gap: 24px;
    }
    
    .explore-text h2,
    .rely-text h2,
    .brochure-text h2 {
        font-size: 36px;
    }
    
    .team-section h2 {
        font-size: 42px;
    }
    
    .carousel-track {
        gap: 40px;
    }
}

/* ===== PORTFOLIO PAGE STYLES ===== */

/* Portfolio-specific enhancements */
body {
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--primary-bg) 100%);
    color: #fff;
}

.portfolio-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start !important;
    justify-content: center;
    padding: 60px 20px 60px !important;
    overflow: hidden;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--primary-bg) 15%, var(--primary-bg) 30%, #ffffff 85%, #FFFFFF 92%, #FFFFFF 100%);
}

#portfolio-hero-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    pointer-events: none;
}

.portfolio-hero-content > * {
    pointer-events: auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(253, 205, 6, 0.15);
    border: 2px solid rgba(253, 205, 6, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--yellow-900);
    margin-bottom: 30px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.portfolio-hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
}

.portfolio-hero-stats {
    display: none;
}

.portfolio-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 10px;
}

.portfolio-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar dark theme for portfolio - matches site theme */
.portfolio-page .navbar {
    background: rgba(5, 10, 68, 0.9);
    backdrop-filter: blur(20px);
}

.portfolio-page .logo {
    color: var(--white);
}

.portfolio-page .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.portfolio-page .nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll reveal elements */
html.js .project-card,
html.js .portfolio-process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

html.js .visible-element {
    opacity: 1;
    transform: translateY(0);
}

.visible-element {
    opacity: 1;
    transform: translateY(0);
}

/* Section separators */
.section-separator {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.separator-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(68, 138, 255, 0.4), transparent);
    opacity: 0.4;
}

.separator-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow-900);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(253, 205, 6, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Contact button override */
.portfolio-page .contact-btn {
    background: var(--yellow-900);
    color: var(--gray-900);
    border: none;
    font-weight: 700;
}

.portfolio-page .contact-btn:hover {
    background: var(--yellow-800);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 205, 6, 0.4);
}

/* Portfolio projects section */
.featured-projects {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--gray-900);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.featured-projects .section-title {
    color: var(--gray-900);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
}

.featured-projects .section-description,
.featured-projects .section-subtitle {
    color: var(--gray-600);
}

.projects-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.projects-grid {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 50px 0;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.projects-grid::-webkit-scrollbar {
    display: none;
}

.projects-grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FDCD06;
    border: none;
    color: #000229;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(253, 205, 6, 0.4);
    outline: none;
}

.carousel-arrow:hover {
    background: var(--primary-bg);
    color: #FDCD06;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 32px rgba(253, 205, 6, 0.6);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.project-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(5, 10, 68, 0.1);
    transform: none;
    opacity: 0.5;
    display: flex;
    flex-direction: column;
}

.project-card.center-card {
    transform: none !important;
    opacity: 1 !important;
    z-index: 10;
    box-shadow: 0 24px 64px rgba(5, 10, 68, 0.15);
    border-color: var(--gray-400);
    border-width: 2px;
}

.project-card:not(.center-card):hover {
    opacity: 0.75;
}

.project-card.center-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 32px 80px rgba(5, 10, 68, 0.2);
}

.project-3d-frame {
    position: relative;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    overflow: hidden;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.project-card.center-card .project-3d-frame {
    height: 180px;
    min-height: 180px;
    max-height: 180px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card.center-card:hover .project-image {
    transform: scale(1.05);
}

.project-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: rgba(253, 205, 6, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #000229;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 4px 12px rgba(253, 205, 6, 0.3);
}

.project-content {
    padding: 20px;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.3;
    flex-shrink: 0;
}

.project-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 12px;
    font-family: 'Manrope', sans-serif;
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.tech-tag {
    padding: 4px 10px;
    background: rgba(5, 10, 68, 0.05);
    border: 1px solid rgba(5, 10, 68, 0.1);
    border-radius: 12px;
    font-size: 0.7rem;
    color: var(--gray-700);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow-900);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.project-link:hover {
    gap: 12px;
}

/* Portfolio process section */
.portfolio-process {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

#process-3d-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.portfolio-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.portfolio-process-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.portfolio-process-step:hover {
    background: linear-gradient(135deg, rgba(253, 205, 6, 0.08) 0%, rgba(253, 205, 6, 0.04) 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(253, 205, 6, 0.3);
}

.portfolio-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 2, 41, 0.06);
    border: 2px solid rgba(0, 2, 41, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000229;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.portfolio-process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.portfolio-process-step p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-family: 'Manrope', sans-serif;
}

/* Portfolio tech stack section */
.portfolio-tech-stack {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg) 50%, var(--primary-bg) 100%);
}

#tech-3d-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    height: 800px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.portfolio-tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-tech-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.portfolio-tech-category:hover {
    background: linear-gradient(135deg, rgba(253, 205, 6, 0.12) 0%, rgba(253, 205, 6, 0.04) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(253, 205, 6, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(253, 205, 6, 0.4);
}

.portfolio-tech-icon {
    margin-bottom: 20px;
    color: #FDCD06;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(253, 205, 6, 0.15) 0%, rgba(253, 205, 6, 0.05) 100%);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.portfolio-tech-category:hover .portfolio-tech-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(253, 205, 6, 0.25) 0%, rgba(253, 205, 6, 0.1) 100%);
}

.portfolio-tech-category h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.portfolio-tech-category p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Manrope', sans-serif;
}

/* Responsive design */
@media (max-width: 768px) {
    .portfolio-hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-process-steps,
    .portfolio-tech-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    #portfolio-hero-3d,
    #process-3d-container,
    #tech-3d-container {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    #portfolio-hero-3d,
    #process-3d-container,
    #tech-3d-container {
        display: none !important;
    }
}

/* Light theme overrides for portfolio page */
body.portfolio-page {
    background: linear-gradient(to bottom, #ffffff 0%, #f7f9ff 100%);
    color: var(--gray-900);
}

body.portfolio-page #matrix-canvas {
    opacity: 0.035;
    mix-blend-mode: multiply;
}

body.portfolio-page .portfolio-hero {
    background: radial-gradient(ellipse at top, rgba(68, 138, 255, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(255, 214, 0, 0.06) 0%, transparent 50%);
}

body.portfolio-page #portfolio-hero-3d {
    opacity: 0.22;
    mix-blend-mode: multiply;
}

body.portfolio-page #tech-3d-container,
body.portfolio-page #process-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
}

body.portfolio-page .navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
}

body.portfolio-page .logo {
    color: var(--gray-900);
}

body.portfolio-page .nav-links a {
    color: var(--gray-700);
}

body.portfolio-page .nav-links a:hover {
    color: var(--gray-900);
    background: var(--white);
}

body.portfolio-page .hero-badge {
    background: rgba(5, 10, 68, 0.05);
    border-color: rgba(5, 10, 68, 0.1);
    color: var(--blue-900);
}

body.portfolio-page .portfolio-hero-title {
    background: linear-gradient(to bottom, var(--blue-900), var(--blue-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.portfolio-page .portfolio-hero-description {
    color: var(--gray-600);
}

body.portfolio-page .portfolio-stat-number {
    color: var(--gray-900);
}

body.portfolio-page .portfolio-stat-label {
    color: var(--gray-600);
}

body.portfolio-page .section-title {
    color: var(--gray-900);
    background: none;
    -webkit-text-fill-color: initial;
}

body.portfolio-page .section-description {
    color: var(--gray-600);
}

body.portfolio-page .separator-line {
    background: linear-gradient(to bottom, transparent, rgba(5, 10, 68, 0.15), transparent);
}

body.portfolio-page .separator-dot {
    background: var(--blue-900);
    box-shadow: 0 0 20px rgba(5, 10, 68, 0.3);
}

body.portfolio-page .project-card {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(5, 10, 68, 0.08);
    box-shadow: 0 4px 20px rgba(5, 10, 68, 0.08);
}

body.portfolio-page .project-card:hover {
    border-color: rgba(5, 10, 68, 0.15);
    box-shadow: 0 20px 60px rgba(5, 10, 68, 0.15);
}

body.portfolio-page .project-category {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(5, 10, 68, 0.12);
    color: var(--blue-900);
}

body.portfolio-page .project-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
}

body.portfolio-page .project-content h3 {
    color: var(--gray-900);
}

body.portfolio-page .project-content p {
    color: var(--gray-600);
}

body.portfolio-page .tech-tag {
    background: rgba(5, 10, 68, 0.04);
    border-color: rgba(5, 10, 68, 0.08);
    color: var(--gray-700);
}

body.portfolio-page .project-link {
    color: var(--blue-900);
}

body.portfolio-page .portfolio-process-step {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(5, 10, 68, 0.08);
    backdrop-filter: blur(18px);
}

body.portfolio-page .portfolio-process-step:hover {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 40px rgba(5, 10, 68, 0.1);
}

body.portfolio-page .portfolio-step-number {
    background: rgba(5, 10, 68, 0.06);
    border-color: rgba(5, 10, 68, 0.12);
    color: var(--blue-900);
}

body.portfolio-page .portfolio-process-step h3 {
    color: var(--gray-900);
}

body.portfolio-page .portfolio-process-step p {
    color: var(--gray-600);
}

body.portfolio-page .portfolio-tech-category {
    background: rgba(255, 255, 255, 0.44);
    border-color: rgba(5, 10, 68, 0.08);
    backdrop-filter: blur(18px);
}

body.portfolio-page .portfolio-tech-category:hover {
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 12px 30px rgba(5, 10, 68, 0.1);
}

body.portfolio-page .portfolio-tech-category h4 {
    color: var(--gray-900);
}

body.portfolio-page .portfolio-tech-category p {
    color: var(--gray-600);
}

body.portfolio-page .contact-btn {
    background: var(--blue-900);
    color: var(--white);
}

body.portfolio-page .contact-btn:hover {
    background: var(--blue-800);
    box-shadow: 0 12px 30px rgba(5, 10, 68, 0.25);
}
