/*
Theme Name: Shahzeb Speaks Theme
Theme URI: https://shahzebspeaks.com
Author: Shahzeb Speaks
Author URI: https://shahzebspeaks.com
Description: Custom theme converted from HTML for Shahzeb Speaks portfolio.
Version: 1.0
*/

/* 
 * SHAHZEB SPEAKS - Premium Portfolio Design System
 * Theme: Modern Dark, Glassmorphism, Realistic Accents
 */

:root {
    --bg-dark: #050507;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --primary: #ffffff;
    /* High contrast white for primary actions */
    --accent-blue: #00d2ff;
    --accent-pink: #FF0055;
    --accent-gold: #FFD700;
    --text-main: #ffffff;
    --text-muted: #8892b0;
    --gradient-main: linear-gradient(135deg, #FF0055 0%, #00d2ff 100%);
    --gradient-text: linear-gradient(90deg, #FF0055 0%, #FFD700 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px;
    /* Fix for fixed header overlap */
    background-image: radial-gradient(circle at 15% 50%, rgba(0, 210, 255, 0.03) 0%, transparent 25%), radial-gradient(circle at 85% 30%, rgba(255, 0, 85, 0.03) 0%, transparent 25%);
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1.hero-title {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(to right, #FF0080, #7928CA);
    /* Vercel-like pink/purple */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Components */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: black;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo span {
    color: #FF0055;
    /* Changed to match accent */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
}

/* Hero Section */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Badge */

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    color: #4cd964;
    /* Success Green */
    margin-bottom: 2rem;
    font-weight: 500;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #4cd964;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 0 rgba(76, 217, 100, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 217, 100, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(76, 217, 100, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 217, 100, 0);
    }
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

/* Hero Stats */

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Visual */

.hero-visual-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.accent-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    background: #FFD700;
    /* Gold/Yellow from reference */
    border-radius: 50%;
    z-index: 0;
    opacity: 0.9;
}

.img-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    /* Ensuring full circle clipping */
    z-index: 1;
    position: relative;
    overflow: hidden;
    /* Important for clipping the image */
    /* Remove old styles */
    background: transparent;
    border: none;
    box-shadow: none;
    animation: none;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    /* B&W effect from reference */
    transition: filter 0.5s;
}

.img-placeholder:hover img {
    filter: grayscale(0%);
}

/* Floating Badges */

.float-badge {
    position: absolute;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatBadge 6s ease-in-out infinite;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 110, 255, 0.2);
    color: #006Eff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-title {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-left {
    top: 20%;
    left: -20px;
}

.badge-right {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Keep existing styles for sections below */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card i {
    font-size: 2.5rem;
    color: white;
    /* Changed to white for cleaner look */
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--glass-border);
    transition: var(--transition);
}

.social-btn:hover {
    background: white;
    color: black;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    h1.hero-title {
        font-size: 3rem;
    }
    .hero-btns {
        justify-content: center;
        margin-bottom: 3rem;
    }
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    .hero-image {
        order: -1;
        /* Image on top for mobile */
        margin-top: 2rem;
    }
    .hero-visual-wrapper {
        width: 320px;
        height: 320px;
    }
    .accent-circle {
        width: 280px;
        height: 280px;
    }
    .img-placeholder {
        width: 270px;
        height: 270px;
    }
    .float-badge {
        padding: 8px 15px;
    }
    .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .badge-left {
        left: -10px;
    }
    .badge-right {
        right: -10px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 2rem;
        border-bottom: var(--glass-border);
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Results Section - Light Theme Override */

.results-section {
    padding: 6rem 0;
    position: relative;
    background: #ffffff;
    color: #1a1a2e;
}

.results-section h2,
.results-section h3,
.results-section p {
    color: #1a1a2e;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-badge {
    background: #FFF4E5;
    color: #FF9500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-badge i {
    color: #FF9500;
}

.section-title-lg {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: #050507;
    font-weight: 800;
}

.section-title-lg .text-gradient {
    background: linear-gradient(135deg, #a777e3 0%, #6e8efb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features 2x2 */

.features-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.icon-blue {
    background: #E6F6FF;
    color: #0099FF;
}

.icon-green {
    background: #E6FFF0;
    color: #00C853;
}

.icon-purple {
    background: #F3E5F5;
    color: #9C27B0;
}

.icon-orange {
    background: #FFF3E0;
    color: #FF9800;
}

.feature-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #050507;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Detailed Profile Card */

.profile-card-detailed {
    background: #ffffff;
    color: #1a1a2e;
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f5f5;
}

.pc-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.pc-avatar {
    min-width: 60px;
    height: 60px;
    background: #050507;
    color: #FFD700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    font-family: serif;
}

.pc-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: #3B82F6;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    border: 2px solid white;
}

.pc-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: #050507;
    font-weight: 800;
}

.pc-info .pc-title {
    color: #006Eff;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.pc-tags {
    display: flex;
    gap: 6px;
}

.pc-tags span {
    background: #F3F4F6;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6B7280;
    border: none;
}

.pc-body {
    margin-bottom: 3rem;
}

.pc-body p {
    color: #6B7280;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.pc-body strong {
    color: #111827;
    font-weight: 700;
}

.pc-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: none;
}

.pc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.pc-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #E5E7EB;
}

.pc-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
}

.pc-lbl {
    font-size: 0.65rem;
    color: #9CA3AF;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    .profile-card-detailed {
        padding: 2rem;
    }
    .features-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Services Grid Refined - Dark Minimalist Theme */

/* Services Grid Refined - Dark Minimalist Theme */

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Enforce 4 columns as per format */
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

.glass-card {
    background: transparent;
    border: none;
    padding: 2rem 1.5rem;
    /* Re-added padding for touch target, but keep transparent */
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    box-shadow: none;
    overflow: hidden;
    /* For the spotlight effect */
}

/* UI/UX: Spotlight Effect on Hover */

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.03), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: -1;
    display: block;
    /* Ensure it's not hidden */
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.01);
    /* Very subtle highlight */
    box-shadow: none;
}

/* Minimalist Icon Wrapper */

.card-icon-wrapper {
    width: 55px;
    /* Slightly smaller to match reference */
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    background: #0D0D10;
    /* Darker background */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Icon specific colors */

.glass-card:nth-child(1) .card-icon-wrapper i {
    color: #006Eff;
}

.glass-card:nth-child(2) .card-icon-wrapper i {
    color: #4cd964;
}

.glass-card:nth-child(3) .card-icon-wrapper i {
    color: #ff9500;
}

.glass-card:nth-child(4) .card-icon-wrapper i {
    color: #ff0055;
}

.glass-card:hover .card-icon-wrapper {
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.glass-card p {
    color: #9CA3AF;
    /* Cool grey */
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Feature Lists */

.card-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    width: 100%;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    color: #6B7280;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    padding: 0;
    background: transparent;
}

.card-features li::before {
    content: "�";
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    line-height: 18px;
    /* Align with text */
}

/* Bullet Colors */

.glass-card:nth-child(1) .card-features li::before {
    color: #006Eff;
}

.glass-card:nth-child(2) .card-features li::before {
    color: #4cd964;
}

.glass-card:nth-child(3) .card-features li::before {
    color: #ff9500;
}

.glass-card:nth-child(4) .card-features li::before {
    color: #ff0055;
}

/* View Details Button - Dark Minimalist Pill */

.view-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: #0A0A0C;
    /* Match section bg or slightly darker */
    border: 1px solid #1F2937;
    /* Distinct grey border */
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-top: auto;
}

.view-details-btn:hover {
    background: #111827;
    border-color: #374151;
}

.view-details-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.view-details-btn:hover i {
    transform: translateX(5px);
    color: white;
}

/* -----------------------------------------------------------
   REFINED MODAL STYLES (Light Theme Pop-up)
   ----------------------------------------------------------- */

.modal-refined {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal-content-refined {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    position: relative;
    padding: 3rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    overflow: hidden;
}

.modal-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #00C6FF 0%, #0072FF 50%, #FF0055 100%);
}

.close-modal-refined {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.close-modal-refined:hover {
    background: #f5f5f5;
    color: #000;
}

.modal-refined-header {
    margin-bottom: 1.5rem;
}

.modal-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #E6F6FF;
    color: #0099FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* Modal Typography */

.modal-content-refined h2 {
    color: #111827;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.modal-content-refined p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* "What's Included" Box */

.modal-features-box {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.modal-features-box h4 {
    color: #111827;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

/* Feature Items in Modal */

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #4B5563;
    font-weight: 500;
}

.modal-feature-item i {
    color: #10B981;
    /* Green Check */
    font-size: 0.9rem;
}

/* Close Details Button */

.close-details-btn {
    width: auto;
    float: right;
    background: #111827;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.close-details-btn:hover {
    background: #000;
}

@keyframes modalPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Fixed Comment */

/* -----------------------------------------------------------
   ABOUT PAGE REFRESH (Dark Theme)
   ----------------------------------------------------------- */

.about-split-section {
    background: transparent !important;
    /* Allow body dark bg to show */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h4 {
    color: #006Eff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.about-header h2 {
    color: #ffffff;
    /* White Text */
    font-size: 2.5rem;
    font-weight: 800;
}

.about-header p {
    color: #9CA3AF;
    /* Cool Grey */
    font-size: 0.95rem;
}

.about-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Side */

.about-img-container {
    position: relative;
    display: flex;
    justify-content: center;
    height: 500px;
    align-items: center;
}

.yellow-circle-bg {
    width: 450px;
    height: 450px;
    background-color: #FFC107;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
    background-image: repeating-linear-gradient(45deg, #FFC107 0, #FFC107 10px, #FFB300 10px, #FFB300 20px);
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 193, 7, 0.2);
    /* Glow */
}

.about-profile-img {
    width: 360px;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.floating-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 13, 16, 0.8);
    /* Dark Glass */
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    width: max-content;
    min-width: 260px;
}

.floating-caption i {
    font-size: 1.2rem;
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.15);
    /* Darker blue bg */
    padding: 10px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caption-text h5 {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #9CA3AF;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-weight: 600;
}

.caption-text span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    /* White */
}

/* Text Side */

.about-text-content {
    padding-left: 2rem;
}

.about-text-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text-content h1 span {
    color: #5D5FEF;
}

.about-bio {
    color: #dedede;
    /* Lighter Grey */
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-bio strong {
    color: white;
}

.about-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn-black {
    background: white;
    /* Inverted for dark theme */
    color: #111;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid white;
}

.btn-black:hover {
    background: #e0e0e0;
    transform: translateY(-3px);
}

.btn-white-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-white-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* Values Grid */

.values-section {
    background: transparent;
    padding-bottom: 6rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    /* Dark Glass */
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    text-align: left;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

/* Specific Colors */

.value-card:nth-child(1) .value-icon {
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
}

.value-card:nth-child(2) .value-icon {
    background: rgba(76, 217, 100, 0.1);
    color: #4cd964;
}

.value-card:nth-child(3) .value-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.value-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Bar */

.stats-bar-wrapper {
    background: transparent;
    padding-bottom: 8rem;
}

.stats-bar {
    background: rgba(255, 255, 255, 0.03);
    /* Darker Glass */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 3rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(10px);
}

.stat-item-clean {
    text-align: center;
    min-width: 150px;
    position: relative;
    z-index: 2;
}

.stat-divider {
    height: 50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item-clean h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: white;
}

.stat-item-clean p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    font-weight: 600;
    color: #9CA3AF;
}

@media (max-width: 992px) {
    .about-grid-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-text-content {
        padding-left: 0;
        padding-top: 3rem;
    }
    .about-btns {
        justify-content: center;
    }
    .yellow-circle-bg {
        width: 320px;
        height: 320px;
    }
    .about-profile-img {
        width: 280px;
        height: 320px;
    }
    .stats-bar {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem;
        border-radius: 30px;
    }
    .stat-divider {
        display: none;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------------------------
   DIGITAL SERVICES PAGE (Dark Glow Theme)
   ----------------------------------------------------------- */

/* Header */

.digital-services-header {
    text-align: center;
    padding: 120px 0 60px 0;
}

.icon-stack-container {
    background: linear-gradient(135deg, #1c1c2e, #0f0f16);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-stack-container i {
    font-size: 1.5rem;
    color: #5D5FEF;
    /* Main Purple Accent */
}

.ds-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.ds-subtitle {
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* Grid Section */

.digital-services-grid-section {
    padding-bottom: 80px;
}

.ds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Base Card Style */

.ds-card {
    background: #0d0d10;
    /* Very Dark Bg */
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ds-card:hover {
    transform: translateY(-5px);
}

/* Icon Box */

.ds-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    /* Square with rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
}

.ds-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.ds-card p {
    color: #9CA3AF;
    /* Muted text */
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Features List */

.ds-features {
    list-style: none;
    margin-bottom: 2rem;
}

.ds-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Button */

.ds-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding: 14px 0;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.ds-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.ds-btn:hover i {
    transform: translateX(3px);
}

/* --- Unqiue Card Themes (Glows & Colors) --- */

/* Blue Theme (WordPress) */

.ds-card-blue:hover {
    box-shadow: 0 0 30px rgba(0, 110, 255, 0.15);
    border-color: rgba(0, 110, 255, 0.3);
}

.ds-card-blue .ds-icon-box {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
}

.ds-card-blue .ds-features li i {
    color: #4A90E2;
}

.ds-card-blue .ds-btn:hover {
    background: rgba(0, 110, 255, 0.15);
    border-color: #4A90E2;
}

/* Green Theme (Shopify) */

.ds-card-green:hover {
    box-shadow: 0 0 30px rgba(76, 217, 100, 0.15);
    border-color: rgba(76, 217, 100, 0.3);
}

.ds-card-green .ds-icon-box {
    color: #4cd964;
    background: rgba(76, 217, 100, 0.1);
}

.ds-card-green .ds-features li i {
    color: #4cd964;
}

.ds-card-green .ds-btn:hover {
    background: rgba(76, 217, 100, 0.15);
    border-color: #4cd964;
}

/* Orange Theme (SEO) */

.ds-card-orange:hover {
    box-shadow: 0 0 30px rgba(255, 149, 0, 0.15);
    border-color: rgba(255, 149, 0, 0.3);
}

.ds-card-orange .ds-icon-box {
    color: #FF9500;
    background: rgba(255, 149, 0, 0.1);
}

.ds-card-orange .ds-features li i {
    color: #FF9500;
}

.ds-card-orange .ds-btn:hover {
    background: rgba(255, 149, 0, 0.15);
    border-color: #FF9500;
}

/* Red Theme (Video) */

.ds-card-red:hover {
    box-shadow: 0 0 30px rgba(255, 59, 48, 0.15);
    border-color: rgba(255, 59, 48, 0.3);
}

.ds-card-red .ds-icon-box {
    color: #FF3B30;
    background: rgba(255, 59, 48, 0.1);
}

.ds-card-red .ds-features li i {
    color: #FF3B30;
}

.ds-card-red .ds-btn:hover {
    background: rgba(255, 59, 48, 0.15);
    border-color: #FF3B30;
}

/* Purple Theme (Content) */

.ds-card-purple:hover {
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.15);
    border-color: rgba(156, 39, 176, 0.3);
}

.ds-card-purple .ds-icon-box {
    color: #9C27B0;
    background: rgba(156, 39, 176, 0.1);
}

.ds-card-purple .ds-features li i {
    color: #9C27B0;
}

.ds-card-purple .ds-btn:hover {
    background: rgba(156, 39, 176, 0.15);
    border-color: #9C27B0;
}

/* Grey Theme (VA) */

.ds-card-grey:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.ds-card-grey .ds-icon-box {
    color: #ccc;
    background: rgba(255, 255, 255, 0.05);
}

.ds-card-grey .ds-features li i {
    color: #ccc;
}

.ds-card-grey .ds-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ccc;
}

/* Benefits Footer Section */

.ds-footer-benefits {
    padding: 2rem 0 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    background: #0f0f12;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: #14141a;
}

.benefit-item i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.benefit-item p {
    color: #666;
    font-size: 0.75rem;
    margin: 0;
}

/* Responsive */

@media (max-width: 992px) {
    .ds-grid {
        grid-template-columns: 1fr 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ds-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------------------------------
   PORTFOLIO PAGE (Masterpieces Theme)
   ----------------------------------------------------------- */

/* Header */

.portfolio-header {
    text-align: center;
    padding: 120px 0 40px 0;
}

.star-icon-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFD700;
    /* Gold Star */
}

.portfolio-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.portfolio-subtitle {
    font-size: 1rem;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

.subtitle-underline {
    width: 60px;
    height: 4px;
    background: #006Eff;
    margin: 0 auto;
    border-radius: 2px;
}

/* Filters */

.portfolio-filters {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-pill {
    background: #0d0d10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-pill:hover,
.filter-pill.active {
    background: linear-gradient(135deg, #006Eff, #00C6FF);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 110, 255, 0.3);
}

/* Grid Section */

.portfolio-grid-section {
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* --- Window Card Style --- */

.window-card {
    background: #0F1014;
    /* Deep Dark Bg */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.window-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Window Header (Dots & Address Bar) */

.window-header {
    background: #1C1C24;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.window-dots {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #FF5F56;
}

.dot.yellow {
    background: #FFBD2E;
}

.dot.green {
    background: #27C93F;
}

.address-bar {
    background: #0F1014;
    color: #555;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    flex-grow: 1;
    text-align: center;
    font-family: monospace;
}

/* Window Body */

.window-body {
    position: relative;
    height: 220px;
    background: #050507;
    overflow: hidden;
}

.project-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.window-card:hover .project-thumb {
    opacity: 0.4;
}

/* Placeholder Content */

.placeholder-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
}

.placeholder-content h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.loader-ring {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #006Eff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Hover Overlay (Live Preview) */

.overlay-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 16, 20, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.window-card:hover .overlay-preview {
    opacity: 1;
}

.btn-live-preview {
    background: white;
    color: black;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-card:hover .btn-live-preview {
    transform: translateY(0);
}

.overlay-preview p {
    color: #ccc;
    font-size: 0.8rem;
}

.project-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #1F2937;
    color: white;
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Window Footer (Details) */

.window-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.window-footer h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.window-footer .fa-desktop {
    color: #374151;
    font-size: 1.2rem;
}

.project-desc {
    color: #9CA3AF;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.tech-stack {
    display: flex;
    gap: 8px;
}

.tech-badge {
    background: #1F2937;
    color: #D1D5DB;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Highlight Card (Targeted Glow) --- */

.highlight-card {
    box-shadow: 0 0 40px rgba(0, 110, 255, 0.15);
    /* Blue Ambient Glow */
    border: 1px solid rgba(0, 110, 255, 0.3);
}

.highlight-card:hover {
    box-shadow: 0 0 60px rgba(0, 110, 255, 0.25);
}

/* Responsive */

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* --- Load More Section --- */

.load-more-container {
    text-align: center;
    padding: 2rem 0 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-load-more {
    background: #1F2937;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-load-more:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-load-more i {
    font-size: 0.8rem;
    color: #9CA3AF;
}

.showing-text {
    color: #6B7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hide when no more items */

.load-more-container.hidden {
    display: none;
}

/* --- Shop Coming Soon CSS --- */

.shop-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1b2735 0%, #090a0f 100%);
    padding: 100px 20px 50px 20px;
    text-align: center;
}

.hero-container-centered {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glowing Icon */

.shop-icon-glow {
    width: 80px;
    height: 80px;
    background: rgba(30, 41, 59, 0.5);
    /* #1e293b dark blue-grey */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3b82f6;
    /* Blue icon */
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

/* Typography */

.shop-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.extraordinary-text {
    background: linear-gradient(90deg, #60a5fa, #c084fc, #f472b6);
    /* Blue to Purple to Pink */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.shop-subtext {
    font-size: 1.1rem;
    color: #94a3b8;
    /* Slate 400 */
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Newsletter Form */

.newsletter-area {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 500px;
}

.newsletter-form {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 15px;
    flex-grow: 1;
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #64748b;
}

.btn-notify {
    background: #2563eb;
    /* Blue 600 */
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-notify:hover {
    background: #1d4ed8;
}

/* Feature Checks */

.feature-checks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.check-item i {
    color: #10b981;
    /* Emerald 500 */
}

/* Responsive */

@media (max-width: 768px) {
    .shop-headline {
        font-size: 2.5rem;
    }
    .newsletter-form {
        flex-direction: column;
        padding: 15px;
    }
    .btn-notify {
        width: 100%;
        justify-content: center;
    }
}

/* --- Contact Page (Split Card) --- */

.contact-section-wrapper {
    padding: 120px 20px 60px 20px;
    background: #090a0f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header-center {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.chat-icon-box {
    font-size: 2rem;
    color: #4f46e5;
    /* Indigo */
    margin-bottom: 1rem;
}

.contact-header-center h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-header-center p {
    color: #9ca3af;
}

.header-underline {
    width: 60px;
    height: 4px;
    background: #4f46e5;
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Card Container */

.contact-card {
    display: flex;
    background: white;
    max-width: 1000px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Left Sidebar */

.contact-sidebar {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 3rem;
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Decorative Circle */

.contact-sidebar::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-sidebar h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.sidebar-subtext {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 1.1rem;
}

.info-item .label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.info-item .value {
    display: block;
    font-size: 0.95rem;
    color: #f1f5f9;
    margin-bottom: 2px;
}

.sidebar-footer p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.sidebar-socials {
    display: flex;
    gap: 1rem;
}

.sidebar-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.sidebar-socials a:hover {
    background: #4f46e5;
}

/* Right Form Section */

.contact-form-section {
    flex: 1.5;
    padding: 3rem;
    background: white;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
    color: #1e293b;
    background: transparent;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #4f46e5;
}

/* Service Pills */

.service-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-pill input {
    display: none;
}

.radio-pill span {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    transition: 0.3s;
}

.radio-pill input:checked+span {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.btn-send-message {
    width: 100%;
    background: #0f172a;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-send-message:hover {
    background: #1e293b;
}

/* Responsive */

@media (max-width: 900px) {
    .contact-card {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    .contact-sidebar,
    .contact-form-section {
        padding: 2rem;
    }
}

/* --- "Realistic & Smooth" UI Polish --- */

/* 1. Enhanced Depth & Realism for Main Card */

.contact-card {
    /* Multi-layered shadow for realistic float */
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle rim */
}

/* 2. Premium Sidebar Gradient */

.contact-sidebar {
    /* Richer, deeper gradient */
    background: linear-gradient(135deg, #020617 0%, #0f172a 40%, #1e1b4b 100%);
}

.contact-sidebar::before {
    /* Smoother glow spill */
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    filter: blur(20px);
}

/* 3. "Smooth" Inputs (Tactile feel) */

.form-group input,
.form-group textarea {
    border-bottom: 2px solid #e2e8f0;
    /* Thicker, softer grey */
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to right, rgba(79, 70, 229, 0.03) 0%, transparent 100%) no-repeat left bottom;
    background-size: 0% 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #4f46e5;
    background-size: 100% 100%;
    /* Smooth fill animation on focus */
}

.form-group label {
    transition: color 0.3s;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

.form-group input:focus+label,
.form-group textarea:focus+label {
    color: #4f46e5;
}

/* 4. Service Pills Polish */

.radio-pill span {
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    border-radius: 30px;
    /* Fully rounded */
    padding: 10px 25px;
    font-weight: 500;
}

.radio-pill input:checked+span {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    border-color: transparent;
    transform: translateY(-1px);
}

/* 5. Button "Beautiful" Hover */

.btn-send-message {
    background: #0f172a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-send-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #1e293b;
}

.btn-send-message i {
    transition: transform 0.3s;
}

.btn-send-message:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* Sidebar Icons Glow */

.info-icon {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: rgba(79, 70, 229, 0.2);
    color: #818cf8;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

/* --- Resume Professional Journey CSS --- */

.resume-wrapper {
    padding: 120px 20px 60px 20px;
    background: #090a0f;
    min-height: 100vh;
}

.resume-header-center {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.cv-badge {
    display: inline-block;
    background: rgba(30, 41, 59, 0.6);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.resume-header-center h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.text-highlight {
    color: #6366f1;
    /* Indigo */
    background: linear-gradient(90deg, #60a5fa, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Profile Card */

.profile-card {
    background: #0f172a;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

/* Card Glow Effect */

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.profile-main {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.profile-image-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    /* Border gap */
    background: linear-gradient(135deg, #6366f1, #c084fc);
    /* Gradient Border */
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0f172a;
    /* Match card bg */
}

.profile-info h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.2rem;
}

.profile-title {
    color: #60a5fa;
    /* Blue 400 */
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.profile-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 41, 59, 0.5);
    padding: 8px 16px;
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: 0.3s;
}

.profile-email:hover {
    background: rgba(99, 102, 241, 0.2);
    color: white;
}

.profile-contacts {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.contact-pill {
    font-size: 0.85rem;
    color: #94a3b8;
    background: rgba(15, 23, 42, 0.5);
    /* Darker */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-pill i {
    color: #10b981;
}

/* Green Icons */

.profile-locations {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #64748b;
}

.profile-locations span i {
    color: #ef4444;
}

/* Red Pin */

.btn-download-cv {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-download-cv:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Resume Grid Layout */

.resume-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    /* Fixed Sidebar + Flexible Main */
    gap: 2rem;
}

/* Sidebar Styling */

.resume-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resume-block {
    /* No bg, just content grouping */
}

.block-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.block-title i {
    color: #6366f1;
}

.about-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.exp-stat-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.2rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Skills Bars */

.skill-item {
    margin-bottom: 1.2rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.skill-bar-container {
    background: #1e293b;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 3px;
}

/* Tools Cloud */

.tools-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-tag {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    padding: 6px 14px;
    border-radius: 20px;
    /* Pill */
    font-size: 0.85rem;
    font-weight: 500;
}

/* Main Content Area */

.resume-section {
    margin-bottom: 3rem;
}

.section-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #60a5fa;
}

/* Timeline */

.timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid #1e293b;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -27px;
    /* Adjust to center on line */
    top: 5px;
    width: 16px;
    height: 16px;
    background: #0f172a;
    border: 3px solid #3b82f6;
    /* Blue border */
    border-radius: 50%;
    z-index: 1;
}

.timeline-dot.blue {
    border-color: #3b82f6;
    background: #3b82f6;
}

.timeline-dot.outline {
    border-color: #3b82f6;
    background: #0f172a;
}

.timeline-content {
    /* No bg, clean layout */
}

.job-role {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.job-meta {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.company {
    font-weight: 600;
    color: #cbd5e1;
}

.year {
    background: #1e293b;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.job-desc {
    list-style: disc;
    padding-left: 1.2rem;
    color: #9ca3af;
    line-height: 1.6;
}

.job-desc li {
    margin-bottom: 6px;
}

/* Education & Certs Split Row */

.row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.edu-item {
    margin-bottom: 1.5rem;
    border-left: 3px solid #6366f1;
    padding-left: 15px;
}

.edu-item h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 4px;
}

.edu-item .institute {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.edu-item .edu-year {
    display: block;
    font-size: 0.8rem;
    color: #6366f1;
    margin-top: 4px;
    font-weight: 600;
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.cert-list li i {
    color: #10b981;
}

/* Responsive */

@media (max-width: 992px) {
    .resume-grid {
        grid-template-columns: 1fr;
    }
    .profile-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .profile-main {
        flex-direction: column;
    }
    .profile-contacts {
        justify-content: center;
        flex-wrap: wrap;
    }
    .row-split {
        grid-template-columns: 1fr;
    }
}

/* --- Resume Visual Polish (Exact Match) --- */

/* 1. Timeline Layout Adjustment */

.timeline-content {
    /* Ensure content blocks stack nicely */
    display: flex;
    flex-direction: column;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align top in case of wrap */
    margin-bottom: 5px;
}

.job-role {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    flex: 1;
    /* Take available width */
    padding-right: 15px;
    /* Gap before date */
}

/* 2. Date Pills (Right Aligned) */

.year-pill {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    /* Prevent breaking */
    min-width: 90px;
    text-align: center;
}

/* 3. Company Name Styling */

.company-name {
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* 4. Timeline Line & Dots */

.timeline {
    border-left: 2px solid #1e293b;
    /* Darker thin line */
    padding-left: 25px;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background: #3b82f6;
    /* Solid Blue dot */
    border: none;
    /* No ring, just dot as per reference? Or maybe small dot on line */
    /* Looking at ref: It's a blue dot ON the line. Let's adjust */
    left: -31px;
    /* Center on 2px line: Left padding 25 + 6 (half dot) approx? */
    /* Border-left is at 0px relative to container padding-left 20px */
    /* Let's recalc relative to .timeline */
    left: -30px;
    /* Adjust visual centering */
    top: 6px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    /* Glow */
}

/* 5. Education Section (Refined) */

.edu-item {
    border-left: 3px solid #6366f1;
    /* Purple/Indigo accent line */
    padding-left: 15px;
    margin-bottom: 2rem;
    position: relative;
}

.edu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.edu-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.year-pill-small {
    background: #1e293b;
    color: #94a3b8;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.edu-item .institute {
    color: #cbd5e1;
    font-size: 0.85rem;
}

/* 6. Certifications */

.cert-list li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.8rem;
}

.cert-list li i {
    color: #10b981;
    /* Green Check */
    min-width: 20px;
    /* Alignment */
}

/* Section Icons Colors */

.section-title i {
    color: #6366f1;
    /* Consistent Icon Color */
    margin-right: 8px;
}

/* Sidebar Title Icons */

.block-title i {
    color: #3b82f6;
}

/* --- Final Resume Detail Match --- */

/* Purple Pill for "In Progress" */

.purple-pill {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Ensure Education Title Font Size Matches Reference */

.edu-header h4 {
    font-size: 1.05rem;
    /* Slight bump */
}

/* Ensure Timeline Header Alignment is perfect */

.timeline-header {
    align-items: center;
    /* Center align items vertically */
}

.year-pill {
    font-size: 0.8rem;
    /* Match reference scale */
}

/* Refine Sidebar "Expertise" Spacing */

.skill-item {
    margin-bottom: 1.5rem;
    /* More breathing room like reference */
}

/* Tools Gap */

.tools-cloud {
    gap: 10px;
    /* Slightly wider gap */
}

/* --- Resume Portfolio & CTA Section --- */

/* Projects Section */

.resume-projects-section {
    padding: 60px 0 100px 0;
    /* Background is implicit dark from body */
}

.resume-projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.star-icon {
    font-size: 1.5rem;
    color: #fbbf24;
    /* Amber star */
    margin-bottom: 0.5rem;
}

.resume-projects-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.resume-projects-header p {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #4f46e5;
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid Override for Resume Page if generic grid isn't used */

.resume-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* View All Button */

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-view-all:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

/* Ready to Start CTA Section */

.resume-cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #090a0f 0%, #0f172a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.btn-cta-blue {
    background: #3b82f6;
    /* Blue 500 */
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-cta-blue:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

/* Responsive adjustments */

@media (max-width: 768px) {
    .resume-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Redesigned Footer (Exact Match) --- */

footer {
    background: #090a0f !important;
    /* Ensure deep dark background */
    border-top: none;
    /* Removed gradient border */
    padding: 60px 0 30px 0;
    /* Slightly reduced top padding for mobile */
    font-family: 'Outfit', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.5fr;
    /* 4 Columns: Info, Explore, Support, Connect */
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Column 1: Brand Info */

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
    margin: 1.5rem 0 2rem 0;
    font-size: 0.95rem;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    /* Circle icons */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Columns 2 & 3: Links */

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 5px;
    width: 6px;
    height: 6px;
    background: #10b981;
    /* Green dot for Support? Or just style preference */
    border-radius: 50%;
    /* Only if class has a dot, but generic h4 is fine for now */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '\2022';
    /* Bullet point style */
    color: #475569;
}

.footer-links li a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

/* Column 4: Stay Connected */

.newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.newsletter-text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px;
}

.newsletter-input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px;
    width: 100%;
    outline: none;
}

.btn-newsletter {
    background: #3b82f6;
    /* or gradient */
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-newsletter:hover {
    background: #2563eb;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.contact-row i {
    color: #94a3b8;
    margin-top: 4px;
}

/* Bottom Bar */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal-links a:hover {
    color: white;
}

/* Responsive */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem 1.5rem;
        /* Increased vertical gap */
        justify-items: start !important;
        /* Force Grid Items Left */
        text-align: left !important;
    }
    /* Full width elements */
    .footer-brand {
        grid-column: 1 / -1 !important;
        margin-bottom: 20px;
        text-align: left !important;
        /* Force Left Alignment per picture */
        justify-self: start !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Force Flex Items Left if flex */
    }
    .footer-content>.footer-col:last-child {
        grid-column: 1 / -1 !important;
        margin-top: 20px;
        text-align: left !important;
        justify-self: start !important;
        width: 100%;
    }
    .footer-col {
        text-align: left !important;
        justify-self: start !important;
    }
    /* Logo spacing & Override Global Mobile centering */
    .footer-brand .logo {
        margin-bottom: 1.5rem;
        display: inline-block;
        /* Inline block to fit width naturally? Or block.*/
        position: relative !important;
        /* Reset from absolute */
        left: auto !important;
        transform: none !important;
        text-align: left !important;
        width: auto !important;
        /* Let it size naturally */
    }
    .footer-brand p {
        margin-bottom: 2rem;
        /* Increased space below bio */
        text-align: left !important;
    }
    /* Heading Styles */
    .footer-col h4 {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        /* More space below headings */
        font-size: 1.15rem;
        border-bottom: none;
        padding-bottom: 0;
        pointer-events: none;
    }
    .heading-dot {
        width: 6px;
        height: 6px;
        background-color: #10b981;
        border-radius: 50%;
        margin-left: 8px;
        display: inline-block;
    }
    /* Remove Chevron */
    .footer-col h4::after {
        display: none;
    }
    .footer-links {
        max-height: none;
        overflow: visible;
        margin-bottom: 0;
    }
    /* Stay Connected Card Tweak */
    .newsletter-box {
        padding: 24px;
        margin-bottom: 2.5rem;
    }
    /* Bottom Centering */
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
        padding-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .footer-bottom p {
        width: 100%;
        max-width: 90%;
        /* Use more space to avoid short wrapping */
        margin: 0 auto;
        line-height: 1.6;
    }
    .footer-legal-links {
        justify-content: center;
        gap: 25px;
    }
}

/* --- FLOATING PILL HEADER --- */

.navbar {
    padding: 1rem 0;
    background: transparent;
    /* Assuming overlay like before, or dark background if sticky */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 1. Logo */

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: #006Eff;
    /* Keep brand blue or change to match theme if needed */
}

/* 2. Center Pill Navigation */

.nav-pill-container {
    background: rgba(17, 24, 39, 0.8);
    /* Dark background like reference */
    padding: 5px 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.nav-links {
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #94a3b8;
    /* Muted text */
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    background: #1f2937;
    /* Lighter dark for active state */
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 3. Right Actions */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Cart Icon */

.cart-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cart-btn-wrapper:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cart-btn {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    /* Red badge */
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a14;
    /* Match bg to cut out */
}

/* Let's Talk Button */

.btn-lets-talk {
    background: linear-gradient(90deg, #F59E0B 0%, #FBBF24 100%);
    /* Yellow/Orange */
    color: #111827;
    /* Dark text */
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-lets-talk:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Mobile Responsiveness */

.hamburger {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .nav-pill-container {
        display: none;
        /* Hide pill on smaller screens */
        /* You might want to move this into a mobile drawer */
    }
    .hamburger {
        display: block;
    }
    /* Mobile Menu Implementation via Hamburger logic (existing JS should handle class toggling) */
    .nav-pill-container.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: rgba(17, 24, 39, 0.95);
        padding: 20px;
        border-radius: 20px;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
}

/* --- PREMIUM FLOATING PILL HEADER --- */

/* 1. Navbar Container - Inherently Transparent */

.navbar {
    background: transparent !important;
    padding: 1.5rem 0 !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled State - Optional: Add subtle dark gradient overlay if needed, but keep it minimal */

.navbar.scrolled {
    padding: 1rem 0 !important;
    background: rgba(0, 0, 0, 0.2) !important;
    /* Very subtle dimming */
    backdrop-filter: blur(2px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* 2. Logo - Clean & Modern */

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    z-index: 1002;
    text-shadow: 0 0 20px rgba(0, 110, 255, 0.3);
}

.logo span {
    color: #3b82f6;
    /* Bright blue */
}

/* 3. CENTER PILL CONTAINER - The Star of the Show */

@media (min-width: 1101px) {
    /* 3. CENTER PILL CONTAINER - The Star of the Show */
    .nav-pill-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(15, 23, 42, 0.65);
        /* Deep blue-gray glass */
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 6px 8px;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        z-index: 1001;
        transition: all 0.3s ease;
    }
    .nav-pill-container:hover {
        background: rgba(15, 23, 42, 0.8);
        border-color: rgba(255, 255, 255, 0.15);
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }
    /* Navigation Links */
    .nav-links {
        display: flex;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .nav-links a {
        color: #cbd5e1;
        /* Slate 300 */
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 100px;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    /* Hover Effect - Subtle Lighten */
    .nav-links a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }
    /* Active State - "Glowing" Pill inside the Pill */
    .nav-links a.active {
        color: #fff;
        background: rgba(59, 130, 246, 0.15);
        /* Blue tint */
        font-weight: 600;
        box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.3);
    }
}

/* 4. Right Actions */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 1002;
}

/* Cart Button */

.cart-btn-wrapper {
    position: relative;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-btn-wrapper:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.cart-btn {
    color: #e2e8f0;
    font-size: 1.1rem;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f172a;
    /* Match page bg */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Let's Talk CTA - Gradient Pill */

.btn-lets-talk {
    background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-lets-talk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-lets-talk:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.4);
}

.btn-lets-talk:hover::before {
    opacity: 1;
}

/* Mobile Responsiveness */

.hamburger {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    /* Initially flex for centering, verify display:none below */
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1101px) {
    .hamburger {
        display: none !important;
    }
    /* Hide Mobile Close Button on Desktop */
    .mobile-close-btn {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    /* 1. Header Layout - Logo Center, Hamburger Left */
    .nav-container {
        justify-content: center;
        /* Center the Logo */
        align-items: center;
        position: relative;
        min-height: 50px;
    }
    /* Logo Absolute Center */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        margin: 0;
    }
    /* Actions Container - Full Width Overlay for positioning */
    .nav-actions {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        /* Let clicks pass through to logo if needed */
        justify-content: space-between;
        /* Spread items if cart exists */
    }
    /* Hamburger - Explicit Left */
    .hamburger {
        display: flex !important;
        pointer-events: auto;
        position: absolute;
        left: 0;
        /* Align to left edge */
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        font-size: 1.4rem;
        color: white;
        padding: 10px;
        z-index: 1002;
    }
    /* Hide other actions */
    .cart-btn-wrapper,
    .btn-lets-talk {
        display: none !important;
    }
    /* 2. Side Drawer Menu (Left Slide-in) - WHITE THEME */
    .nav-pill-container {
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        width: 280px !important;
        height: 100vh;
        background: #ffffff;
        /* White Background */
        padding: 80px 20px 20px 20px;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
        /* Softer shadow */
        border-radius: 0 16px 16px 0;
        /* Rounded corners on right edge */
    }
    .nav-pill-container.active {
        display: flex;
        transform: translateX(0);
        background: #ffffff !important;
        /* Force white on active */
    }
    /* Links Style in Drawer - DARK TEXT */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 0;
        position: absolute !important;
        top: 80px !important;
        left: 0 !important;
        margin: 0 !important;
        padding: 0 20px !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        /* Light gray separator */
        opacity: 1 !important;
    }
    .nav-links a {
        display: block !important;
        text-align: left;
        padding: 18px 12px;
        font-size: 1.15rem;
        /* Slightly larger */
        font-weight: 500;
        background: transparent;
        color: #111827 !important;
        /* Dark text */
        border-radius: 8px;
        opacity: 1 !important;
    }
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(0, 0, 0, 0.04);
        /* Light gray hover */
        color: #000000 !important;
        padding-left: 16px;
    }
    /* 3. Close Button - DARK ICON */
    .mobile-close-btn {
        display: flex;
        position: absolute;
        top: 25px;
        left: 20px;
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #111827;
        /* Dark Icon */
        font-size: 1.5rem;
        transition: 0.3s;
        z-index: 2005;
    }
    .mobile-close-btn:hover {
        background: rgba(0, 0, 0, 0.05);
        transform: rotate(90deg);
    }
}

/* --- PREMIUM SERVICES HERO --- */

.digital-services-header {
    padding: 180px 0 100px 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.hero-service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto;
    text-align: left;
}

.hero-service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.hero-service-text {
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
}

.hero-desc-highlight {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    background: linear-gradient(90deg, #94a3b8, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* --- PREMIUM SERVICES HERO --- */

.digital-services-header {
    padding: 180px 0 100px 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.hero-service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto;
    text-align: left;
}

.hero-service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.hero-service-text {
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
}

.hero-desc-highlight {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    background: linear-gradient(90deg, #94a3b8, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* FORCE FONTAWESOME FAMILY FIX */

.fas,
.fa-solid {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
}

.far,
.fa-regular {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 400 !important;
}

.fab,
.fa-brands {
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
}