:root {
    --primary: #3b82f6;
    /* Corporate Blue (Blue-500) */
    --primary-dark: #2563eb;
    /* Darker Blue (Blue-600) */
    --secondary: #06b6d4;
    /* Professional Cyan (Cyan-500) */
    --dark-bg: #0f172a;
    /* Slate 900 - Kept for professional dark theme */
    --darker-bg: #020617;
    /* Slate 950 */
    --card-bg: rgba(30, 41, 59, 0.7);
    /* Slate 800 */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-glow: rgba(59, 130, 246, 0.4);
    /* Blue Glow */
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}


.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1faf53;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between logo and text */
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 35px;
    /* Slightly smaller to fit with text */
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

/* Hero Image Code Window */
.code-window {
    background: #1e293b;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

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

.window-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.window-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ef4444;
}

.yellow {
    background: #f59e0b;
}

.green {
    background: #10b981;
}

.window-body pre {
    font-family: 'Consolas', monospace;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.keyword {
    color: #818cf8;
}

.string {
    color: #34d399;
}

.property {
    color: #60a5fa;
}

.function {
    color: #fbbf24;
}

.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.card-1 {
    top: -30px;
    right: -30px;
}

.card-2 {
    bottom: -30px;
    left: -30px;
    animation-delay: 3s;
}

@keyframes float {

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

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

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.grid {
    display: grid;
    gap: 30px;
}

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    background: var(--card-bg);
    padding: 5px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-color);
}

.pricing-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-tab.active {
    background: var(--primary);
    color: white;
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.card.pricing-card .btn {
    margin-top: auto;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-header .price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.pricing-header .duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}


.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.pricing-features li i {
    color: var(--secondary);
}

.btn.full-width {
    width: 100%;
}

.pricing-category-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    /* font-style: italic; */
    line-height: 1.4;
}

.card.pricing-card {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
}

/* Process */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: -60px;
    width: 2px;
    background: var(--border-color);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--darker-bg);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    padding-top: 10px;
}

.process-step p {
    color: var(--text-muted);
}

/* About / Team */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.benefits-list li i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-member {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--primary);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.team-member .btn {
    margin-top: 15px;
}


.member-avatar {
    width: 60px;
    height: 60px;
    background: var(--darker-bg);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 2px solid var(--border-color);
}

/* =============================================
   PROFILE PAGE — PREMIUM DESIGN SYSTEM
   ============================================= */

/* Animated Background */
.profile-page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--darker-bg);
    overflow: hidden;
    pointer-events: none;
}

.profile-page-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 65%);
    animation: bgBreath 10s ease-in-out infinite alternate;
}

.profile-page-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 65%);
    animation: bgBreath 13s ease-in-out infinite alternate-reverse;
}

@keyframes bgBreath {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.15) translate(30px, -20px);
    }
}

/* Layout */
.profile-hero {
    padding: 140px 0 120px;
    position: relative;
    min-height: 100vh;
}

.profile-container {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 70px;
    align-items: start;
}

/* SIDEBAR */
.profile-sidebar {
    position: sticky;
    top: 110px;
}

.profile-card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    padding: 50px 36px 40px;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 40px 80px -20px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200%;
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

.profile-card:hover {
    transform: translateY(-8px) scale(1.01);
}

/* Avatar */
.profile-image-wrapper {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto 28px;
}

.avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0deg,
            var(--secondary) 120deg,
            transparent 200deg,
            var(--primary) 360deg);
    animation: spinRing 6s linear infinite;
    z-index: 0;
}

.avatar-ring-inner {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--darker-bg);
    z-index: 1;
}

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

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

.profile-card img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.06);
}

.availability-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid var(--darker-bg);
    z-index: 3;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.availability-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.4);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Profile Name Block */
.profile-card h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.profile-badge-role {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    padding: 5px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.profile-card .location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Sidebar Stats */
.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.profile-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 16px 10px;
    transition: background 0.3s;
}

.profile-stat:hover {
    background: rgba(59, 130, 246, 0.08);
}

.profile-stat .stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    letter-spacing: -1px;
    background: linear-gradient(135deg, white, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.profile-stat .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

/* Social Links */
.social-profile-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-profile-links a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-profile-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
}

/* =============================================
   MAIN CONTENT AREA
   ============================================= */
.profile-content-wrap {
    animation: slideIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--primary);
    display: block;
}

.profile-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 30px;
}

.profile-bio {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 55px;
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.025);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--primary);
}

/* Experience Cards */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.exp-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    padding: 30px 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.exp-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.04));
    opacity: 0;
    transition: opacity 0.3s;
}

.exp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.exp-card:hover::after {
    opacity: 1;
}

.exp-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 1;
}

.exp-card h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.exp-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

/* Skills Section */
.skills-section {
    margin-bottom: 55px;
}

.skills-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.skills-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.skills-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    animation: tagPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes tagPop {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.skill-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 50px;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid transparent;
}

.back-link:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(-5px);
}

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

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

/* Responsive */
@media (max-width: 1100px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .profile-sidebar {
        position: static;
        max-width: 480px;
        margin: 0 auto;
    }

    .profile-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .profile-hero {
        padding: 120px 0 80px;
    }

    .profile-card {
        padding: 40px 24px 36px;
    }

    .profile-content h2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .profile-bio {
        font-size: 1rem;
        padding: 22px 20px;
    }

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

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

    .profile-stats {
        grid-template-columns: 1fr 1fr;
    }
}



/* Testimonials */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    padding-top: 50px;
}

.quote-icon {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    color: #cbd5e1;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary);
    border: 1px solid var(--border-color);
}

.author-info h4 {
    font-size: 1rem;
    color: white;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA */
.cta {
    background: linear-gradient(to right, #1e293b, #0f172a);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: #64748b;
    font-size: 0.9rem;
}

/* Technologies */
/* Technologies Slider */
.technologies {
    background: rgba(15, 23, 42, 0.3);
    overflow: hidden;
    /* Hide overflow */
    padding: 60px 0;
}

.tech-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.tech-slider::before,
.tech-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tech-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-bg), transparent);
}

.tech-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-bg), transparent);
}

.tech-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding-left: 20px;
}

.tech-track:hover {
    animation-play-state: paused;
}

.tech-category {
    text-align: center;
    padding: 30px;
    width: 300px;
    /* Fixed width for smooth sliding */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
        /* Move by half the width + half the gap */
    }
}

.tech-category h3 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: var(--primary);
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.tech-item:hover i {
    color: white;
}

.tech-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing Details Section (Inclusions/Exclusions) */
.pricing-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.pricing-detail-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
}

.pricing-detail-box h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-detail-box.included h4 {
    color: var(--secondary);
}

.pricing-detail-box.excluded h4 {
    color: var(--accent);
}

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

.detail-list li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
}

.detail-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

@media (max-width: 768px) {
    .pricing-details-container {
        grid-template-columns: 1fr;
    }
}

/* Responsive Styles Update */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

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

    .mobile-menu-btn {
        display: block;
    }

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

    .process-timeline::before {
        left: 20px;
    }
}