/* ============================================
   PRISM STUDIO - Main Stylesheet
   Dark Purple & Black Theme with Cartoonish Vibes
   ============================================ */

:root {
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --secondary-color: #06B6D4;
    --bg-dark: #0F0F1E;
    --bg-darker: #08070E;
    --text-light: #E8E8F0;
    --text-muted: #A0A0B0;
    --accent-purple: #A78BFA;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

 */

/* Modern Scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(
        180deg,
        #0F0F1E,
        #16213E
    );

    border-radius: 999px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #8B5CF6,
        #7C3AED
    );

    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;

    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #9F67FF,
        #8B5CF6
    );

    background-clip: padding-box;
}

/* remove ugly arrows/buttons */
::-webkit-scrollbar-button {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #8B5CF6 rgba(255,255,255,0.03);
    background: #0F0F1E;
}

/* ============================================
   NAVIGATION
   ============================================ */

.floating-navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 2000;

    padding: 14px 18px;

    background: rgba(15, 15, 30, 0.55);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 999px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.35),
        0 0 30px rgba(139, 92, 246, 0.08);
}

.floating-nav-links {
    display: flex;
    align-items: center;
    gap: 10px;

    list-style: none;
}

.floating-nav-links a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border-radius: 999px;

    text-decoration: none;

    color: rgba(255,255,255,0.72);

    font-size: 14px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.floating-nav-links a:hover {
    color: white;

    background: rgba(255,255,255,0.06);

    transform: translateY(-2px);
}

.floating-nav-links a.active {
    color: white;

    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.22),
        rgba(139, 92, 246, 0.12)
    );

    border: 1px solid rgba(139, 92, 246, 0.22);

    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.18);
}

@media (max-width: 768px) {
    .floating-navbar {
        padding: 10px 14px;
    }

    .floating-nav-links a {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .floating-navbar {
        padding: 3px 5px;
    }

    .floating-nav-links a {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ============================================
   BUTTONS & INTERACTIVE ELEMENTS
   ============================================ */

.btn {
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.8);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:focus,
.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    animation: glow-pulse 2s ease-in-out infinite;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 40px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-avatar-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
}

.avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), inset 0 0 40px rgba(139, 92, 246, 0.3);
    animation: spin 8s linear infinite, pulse-glow 3s ease-in-out infinite;
}

.avatar {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    animation: float 3s ease-in-out infinite;
}

.avatar-inner {
    animation: none;
}

.avatar-inner img {
    width: 170px;
    height: 170px;
    border-radius: 50%;       /* makes it a circle */
    object-fit: cover;
    display: block;
}

.status-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    margin: 10px 0;
    line-height: 1.2;
}

.hero-sub {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.timezone-card {
    margin: 25px auto 35px;

    width: fit-content;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 14px 22px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(139, 92, 246, 0.18);

    border-radius: 18px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.25),
        0 0 20px rgba(139, 92, 246, 0.08);
}

.timezone-dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow: 0 0 14px #22c55e;

    animation: pulse 2s infinite;
}

.timezone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.timezone-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    font-weight: 700;
}

.timezone-time {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.timezone-region {
    padding-left: 14px;

    border-left: 1px solid rgba(255,255,255,0.08);

    font-size: 13px;
    font-weight: 600;

    color: #a78bfa;
}

.title-word {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease-out 0.1s both;
}

.title-word:nth-child(2) {
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.sub-word {
    display: inline-block;
    background: linear-gradient(135deg, var(--bg-dark), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-cyan), transparent);
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
    animation: float 10s ease-in-out infinite 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-pink), transparent);
    border-radius: 50%;
    top: 50%;
    right: 5%;
    animation: float 12s ease-in-out infinite 2s;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: none;
}

.service-card[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.service-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    animation: bounce 0.6s ease-in-out;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   FEATURED WORK SECTION
   ============================================ */

.featured-work {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
}

.project-card[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.project-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
    transform: translateY(-10px);
}

/* PROJECT VIDEO */

.project-video {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.project-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.project-card:hover video {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.35);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay span {
    padding: 12px 24px;

    border-radius: 999px;

    background: rgba(139, 92, 246, 0.9);

    color: white;
    font-weight: 700;
}

/* VIDEO MODAL */

.video-modal {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.85);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;

    transition: 0.3s ease;

    z-index: 99999;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;

    width: 1200px;
    height: 700px;

    max-width: 92vw;
    max-height: 88vh;

    border-radius: 22px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal video {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 22px;

    background: #000;
}

.close-video {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #8B5CF6;

    color: white;

    font-size: 24px;
    cursor: pointer;
}

.project-info {
    padding: 15px;
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.project-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.stat-item {
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
}

.stat-item[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: countUp 2s ease-out;
}

.stat-label {
    color: var(--text-muted);
    font-size: 16px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.page-header {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 60px;
    text-align: center;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.page-header h1 {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: slideInUp 0.8s ease-out;
}

.page-header p {
    font-size: 18px;
    color: var(--text-muted);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.about-content {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left {
    transform: translateX(-30px);
    opacity: 0;
}

.about-left[data-scroll] {
    animation: slideInLeft 0.8s ease-out forwards;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(139, 92, 246, 0.3);
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.about-right {
    transform: translateX(30px);
    opacity: 0;
}

.about-right[data-scroll] {
    animation: slideInRight 0.8s ease-out forwards;
}

.about-right h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-right p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.skill-item {
    background: rgba(139, 92, 246, 0.08);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.skill-name {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.skill-bar {
    height: 6px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-cyan));
    border-radius: 10px;
    animation: expandWidth 1.5s ease-out forwards;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */

.expertise {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.expertise-card[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.expertise-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.expertise-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 10px;
}

.expertise-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.expertise-card p {
    color: var(--text-muted);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.portfolio-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 15px;
    overflow: hidden;
}

.portfolio-item[data-scroll] .portfolio-image {
    animation: scaleIn 0.8s ease-out forwards;
}

.image-placeholder-portfolio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.view-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.portfolio-info {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 25px;
}

.portfolio-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--primary-color);
    color: white;
}

.pricing-section {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(20, 20, 45, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 20px;
    padding: 50px 40px;   /* this ensures top breathing room */
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.pricing-card .price .amount {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 20px;
}

.pricing-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.pricing-card.featured {
    background: rgba(25, 25, 55, 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
}

/* Payment Methods - redesigned */
.payment-methods {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    text-align: center;
}

.payment-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.payment-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 28px 40px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.payment-card:hover {
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.2);
}

.payment-icon {
    margin: auto;
    font-size: 36px;
    line-height: 1;
}

.payment-note {
    margin-top: auto;
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-top: -60px;
    margin-bottom: 60px;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.plan-header h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    margin: 30px 0;
    font-size: 48px;
    font-weight: 900;
}

.currency {
    font-size: 24px;
    color: var(--accent-purple);
}

.amount {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 16px;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 30px 0;
}

.features-list li {
    color: var(--text-muted);
    padding: 12px 0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.features-list li:hover {
    color: var(--primary-color);
}

.features-list li.unavailable {
    opacity: 0.5;
}

/* ============================================
   ADD-ONS SECTION
   ============================================ */

.addons-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.addon-card {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.addon-card[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.addon-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.addon-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.addon-price {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.addon-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.faq-item:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
}

.faq-question {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-content {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form {
    transform: translateX(-30px);
    opacity: 0;
}

.contact-form[data-scroll] {
    animation: slideInLeft 0.8s ease-out forwards;
}

.contact-form h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    padding: 12px 18px;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(139, 92, 246, 0.15);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.contact-info {
    transform: translateX(30px);
    opacity: 0;
}

.contact-info[data-scroll] {
    animation: slideInRight 0.8s ease-out forwards;
}

.info-section {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.info-section:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
}

.info-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.info-section p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.status-indicator {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   SERVICES CTA SECTION
   ============================================ */

.services-cta {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(30px);
    opacity: 0;
}

.services-cta[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.services-cta h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.cta-item {
    text-align: center;
    transform: scale(0.95);
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.cta-item:nth-child(2) {
    animation-delay: 0.1s;
}

.cta-item:nth-child(3) {
    animation-delay: 0.2s;
}

.cta-item:nth-child(4) {
    animation-delay: 0.3s;
}

.cta-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.cta-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* CONTACT BUTTONS */

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-width: 280px;
    padding: 18px 30px;

    border-radius: 18px;

    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    background: linear-gradient(135deg, #8B5CF6, #7C3AED);

    box-shadow:
        0 10px 30px rgba(139, 92, 246, 0.35),
        inset 0 1px 1px rgba(255,255,255,0.1);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.contact-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(139, 92, 246, 0.5),
        inset 0 1px 1px rgba(255,255,255,0.15);

    background: linear-gradient(135deg, #9B6DFF, #8246FF);
}

.contact-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-btn span {
    display: flex;
    align-items: center;
    line-height: 1;
}

.live-counter {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    background: rgba(15, 15, 30, 0.75);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        0 0 20px rgba(139, 92, 246, 0.12);

    font-family: inherit;
}

.counter-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;

    background: #8B5CF6;

    box-shadow: 0 0 12px #8B5CF6;

    animation: pulse-counter 2s infinite;
}

#view-count {
    color: white;
    font-size: 15px;
    font-weight: 700;
}

.counter-text {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

@keyframes pulse-counter {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.15);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(8, 7, 14, 0.8);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-links a:hover {
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), inset 0 0 40px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 60px rgba(139, 92, 246, 0.8), inset 0 0 50px rgba(139, 92, 246, 0.5);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   WHO I AM PAGE STYLES
   ============================================ */

.bio-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.bio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bio-left {
    transform: translateX(-30px);
    opacity: 0;
}

.bio-left[data-scroll] {
    animation: slideInLeft 0.8s ease-out forwards;
}

.bio-avatar {
    position: relative;
    margin-bottom: 40px;
}

.avatar-display {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    animation: float 3s ease-in-out infinite;
    margin: 0 auto;
}

.bio-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.info-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 16px;
}

.info-text p {
    color: var(--text-muted);
    font-size: 14px;
}

.bio-right {
    transform: translateX(30px);
    opacity: 0;
}

.bio-right[data-scroll] {
    animation: slideInRight 0.8s ease-out forwards;
}

.bio-right h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-right p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.specialties-section {
    margin-top: 40px;
}

.specialties-section h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.specialty-item {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.specialty-item[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.specialty-item:nth-child(1)[data-scroll] {
    animation-delay: 0s;
}

.specialty-item:nth-child(2)[data-scroll] {
    animation-delay: 0.2s;
}

.specialty-item:nth-child(3)[data-scroll] {
    animation-delay: 0.4s;
}

.specialty-item:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.specialty-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.specialty-icon {
    font-size: 32px;
}

.specialty-header h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin: 0;
}

.specialty-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

.cta-section-mini {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* ============================================
   SKILLS SHOWCASE SECTION
   ============================================ */

.skills-showcase {
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.skill-category {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.skill-category[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.skill-category:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.skill-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    color: var(--text-muted);
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.skill-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.skill-list li:hover {
    color: var(--accent-purple);
    transform: translateX(10px);
}

/* ============================================
   EXPERIENCE TIMELINE
   ============================================ */

.experience-timeline {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-cyan), var(--accent-pink));
}

.timeline-item {
    margin-bottom: 50px;
    transform: translateY(30px);
    opacity: 0;
}

.timeline-item[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--bg-darker);
    border-radius: 50%;
    top: 0;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.timeline-content {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

.timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

/* ============================================
   WHY CHOOSE ME SECTION
   ============================================ */

.why-choose {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.3s ease;
}

.reason-card[data-scroll] {
    animation: slideInUp 0.8s ease-out forwards;
}

.reason-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.reason-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.reason-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.reason-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .services-grid,
    .featured-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-container,
    .contact-container,
    .bio-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 10px;
        font-size: 12px;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero {
        padding: 80px 20px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header {
        padding: 60px 20px;
    }

    .services,
    .featured-work,
    .about-content,
    .expertise,
    .portfolio-section,
    .pricing-section,
    .addons-section,
    .faq-section,
    .contact-content,
    .services-cta,
    .bio-section,
    .skills-showcase,
    .experience-timeline,
    .why-choose {
        padding: 60px 20px;
    }

    .services-grid,
    .featured-grid,
    .portfolio-grid,
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .about-container,
    .contact-container,
    .bio-container,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 300px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 0;
        transform: translateX(-50%);
    }

    .cta-section-mini {
        flex-direction: column;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .footer {
        padding: 30px 20px;
    }
}
