:root {
    --bg-color: #0a0a0a;
    --surface-color: #1a1a1a;
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --accent-color: #60a5fa;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide scrollbars globally */
*::-webkit-scrollbar {
    display: none !important;
}

* {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Ensure pseudo-element positions relative to body */
}

/* RGB Glow Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(76, 29, 149, 0.15),
            rgba(59, 130, 246, 0.15),
            rgba(16, 185, 129, 0.15));
    background-size: 200% 200%;
    filter: blur(60px);
    z-index: -1;
    animation: rgbFlow 15s ease infinite alternate;
    pointer-events: none;
}

@keyframes rgbFlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.5;
    }

    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }

    100% {
        background-position: 0% 50%;
        opacity: 0.5;
    }
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-large {
    max-width: 1400px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    /* Use larger container for edge-to-edge feel */
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-items {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links i {
    font-size: 1rem;
    display: none;
    /* Hide icons on desktop */
}

/* Sidebar Specific (Hidden on Desktop) */
.sidebar-header,
.sidebar-footer {
    display: none;
}

.admin-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Mobile Menu Toggle Refinement */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Sidebar for Mobile View */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.85);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        backdrop-filter: blur(25px) saturate(180%);
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding: 2.5rem;
        transition: 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
        /* Bouncy slide */
        z-index: 2000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
    }

    .nav-items {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: 12px;
        transition: 0.3s;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--primary-color);
        padding-left: 1.5rem;
    }

    .nav-links i {
        display: inline-block;
        /* Show icons on mobile */
        width: 24px;
        opacity: 0.8;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sidebar-close {
        font-size: 1.5rem;
        color: var(--text-secondary);
        cursor: pointer;
        padding: 5px;
    }

    .sidebar-footer {
        display: block;
        width: 100%;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sidebar-footer p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }

    .sidebar-socials {
        display: flex;
        gap: 1.5rem;
    }

    .sidebar-socials a {
        padding: 0;
        width: auto;
        font-size: 1.3rem;
    }

    .nav-links.active {
        right: 0;
    }

    /* Hamburger Animation to X */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero & General Mobile Refinements */
    .hero-grid-edge {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .main-name {
        font-size: 3.5rem;
        white-space: normal;
    }

    .hero-image-right {
        margin-top: 140px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Hero Section - Edge-to-Edge Refinement */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* Use semi-transparent gradients to allow body grid/RGB to show */
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05), transparent),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05), transparent);
    /* Removed opaque background-color: var(--bg-color); */
    overflow: hidden;
}

.hero-container-wide {
    width: 100%;
    padding: 0 4rem;
}

.hero-grid-edge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-content-left {
    max-width: 600px;
    z-index: 2;
}

.greeting {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.main-name {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right,
            #58a6ff,
            #bc8cff,
            #ff7b72,
            #ffa657,
            #58a6ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s linear infinite;
    white-space: nowrap;
    line-height: 1.1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.tagline {
    font-size: 1.5rem;
    color: #8b949e;
    margin-bottom: 1rem;
    font-weight: 500;
}

.accent-white {
    color: #ffffff;
    font-weight: 600;
}

.accent-green {
    color: #38e703;
    font-weight: 600;
}

.hero-bio {
    font-size: 1.1rem;
    color: #c9d1d9;
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.social-links-hero {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.social-links-hero a {
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links-hero a.brand-youtube {
    color: #FF0000;
}

.social-links-hero a.brand-facebook {
    color: #1877F2;
}

.social-links-hero a.brand-tiktok {
    color: #fff;
    text-shadow: 2px 0 #ff0050, -2px 0 #00f2ea;
}

.social-links-hero a.brand-github {
    color: #fff;
}

.social-links-hero a.brand-linkedin {
    color: #0A66C2;
}

.social-links-hero a:hover {
    transform: translateY(-5px) scale(1.1);
    filter: brightness(1.2);
}

.hero-tech-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tech-link-item {
    width: 48px;
    height: 48px;
    background: #21262d;
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: all 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    cursor: pointer;
}

.tech-link-item:hover {
    background-color: #30363d;
    border-color: #8b949e;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tech-link-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-btns-layout {
    display: flex;
    gap: 1.5rem;
}

.btn.primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.btn.secondary-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2.5rem;
}

.btn.secondary-outline:hover {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
}

/* Orbital Image Container */
.hero-image-right {
    position: relative;
    z-index: 1;
}

.orbital-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-profile {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    background: var(--surface-color);
}

/* Skills Section */
.skills-section {
    position: relative;
    padding: 100px 0;
    /* Transparent to show grid */
    background: transparent;
}

.profile-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.orbital-wrapper:hover .profile-img-main {
    transform: scale(1.05);
}

/* Floating Orbit Icons */
.icon-orbit {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 4;
    animation: floatIcon 6s ease-in-out infinite;
}

.icon-orbit img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-2 {
    bottom: 10%;
    right: 0;
    animation-delay: 1.5s;
}

.orbit-3 {
    bottom: 10%;
    left: 0;
    animation-delay: 3s;
}

.orbit-4 {
    top: 20%;
    right: -20px;
    animation-delay: 4.5s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 3;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.project-link {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.link-play {
    background-color: #21262d;
    color: #58a6ff;
    border-color: rgba(240, 246, 252, 0.1);
}

.link-play:hover {
    background-color: #30363d;
    border-color: #8b949e;
    color: #58a6ff;
    transform: none;
    box-shadow: none;
}

.link-github {
    background-color: #238636;
    color: #ffffff;
    border-color: rgba(240, 246, 252, 0.1);
}

.link-github:hover {
    background-color: #2ea043;
    border-color: #8b949e;
    transform: none;
    box-shadow: none;
}

/* Responsiveness for Edge-to-Edge Hero */
@media (max-width: 1024px) {
    .main-name {
        font-size: 4rem;
    }

    .hero-container-wide {
        padding: 0 2rem;
    }

    .orbital-wrapper {
        width: 350px;
        height: 350px;
    }

    .circular-profile {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-grid-edge {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-content-left {
        max-width: 100%;
    }

    .tagline {
        border-left: none;
        padding-left: 0;
    }

    .social-links-hero {
        justify-content: center;
    }

    .hero-btns-layout {
        justify-content: center;
    }

    .main-name {
        font-size: 3.5rem;
    }

    .hero-container-wide {
        padding: 0 1rem;
    }
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.btn.primary {
    background-color: #238636;
    color: white;
    border-color: rgba(240, 246, 252, 0.1);
}

.btn.primary:hover {
    background-color: #2ea043;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn.secondary {
    background-color: #21262d;
    color: #c9d1d9;
    border-color: rgba(240, 246, 252, 0.1);
}

.btn.secondary:hover {
    background-color: #30363d;
    border-color: #8b949e;
    transform: none;
}

/* Generic Section Styles */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: var(--primary-color);
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    position: relative;
    /* Transparent to show grid */
    background: transparent;
}

/* Premium About Section */

/* --- PREMIUM NEWS SECTION --- */
.news-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -3rem;
    margin-bottom: 4.5rem;
    font-size: 1.1rem;
}

.news-grid {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    padding: 20px 100px 60px;
    /* Side padding to clear navigation buttons */
    margin: 0;
    width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Hide Scrollbar for Chrome/Safari */
.news-grid::-webkit-scrollbar {
    display: none;
}

.news-carousel-wrapper {
    position: relative;
    width: 100%;
}

.news-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(13, 17, 23, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.news-nav-btn.prev {
    left: 10px;
    /* Stuck to the left edge */
}

.news-nav-btn.next {
    right: 10px;
    /* Stuck to the right edge */
}

@media (max-width: 768px) {
    .news-nav-btn {
        display: none;
    }
}

.news-card {
    flex: 0 0 450px;
    /* Slightly wider for the premium full-width look */
    background: rgba(33, 38, 45, 0.4);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(48, 54, 61, 0.6);
}

.news-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.news-card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: right;
    direction: rtl;
}

.news-card-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.news-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card-excerpt {
    color: #8b949e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.news-card-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.read-more {
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
    opacity: 0.8;
}

.news-actions {
    display: none;
    /* Hidden because we use horizontal scroll instead of load more */
}

/* --- ARTICLE MODAL --- */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.article-modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow-y: auto;
    z-index: 5001;
    transform: translateY(40px);
    transition: var(--transition);
}

.article-modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5005;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-header-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.modal-content-area {
    padding: 4rem;
    direction: rtl;
    text-align: right;
}

.modal-article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modal-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
}

.modal-date {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.modal-body-text {
    color: #c9d1d9;
    font-size: 1.15rem;
    line-height: 1.9;
}

.modal-body-text h2,
.modal-body-text h3 {
    color: #fff;
    margin: 3rem 0 1.5rem;
}

.modal-body-text p {
    margin-bottom: 2rem;
}

.modal-body-text code {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .modal-content-area {
        padding: 2.5rem 1.5rem;
    }

    .modal-title {
        font-size: 1.8rem;
    }
}

.modal-body-text ul {
    margin-bottom: 2rem;
    padding-right: 1.5rem;
}

.modal-body-text li {
    margin-bottom: 0.8rem;
    position: relative;
}

.modal-body-text li::before {
    content: '';
    position: absolute;
    right: -1.2rem;
    top: 0.8rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.btn-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .modal-content-area {
        padding: 2.5rem 1.5rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-header-image {
        height: 250px;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }
}

.about-section {
    padding: 100px 0;
    position: relative;
    /* Use transparent colors to allow body grid to show through */
    background: linear-gradient(180deg, rgba(13, 17, 23, 0) 0%, rgba(56, 139, 253, 0.05) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-bio-column p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #c9d1d9;
    margin-bottom: 1.5rem;
}

.about-bio-column .intro-large {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(33, 38, 45, 0.4);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(48, 54, 61, 0.6);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(56, 139, 253, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #8b949e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Skill Progress Values */
.progress-95 {
    width: 95%;
}

.progress-90 {
    width: 90%;
}

.progress-85 {
    width: 85%;
}

.progress-80 {
    width: 80%;
}

.progress-75 {
    width: 75%;
}

/* Admin-specific Utility Styles */
.login-title {
    margin-bottom: 1.5rem;
}

.login-form-group {
    text-align: left;
}

.login-btn {
    width: 100%;
}

.login-error-msg {
    color: #ef4444;
    margin-top: 1rem;
}

.modal-title-text {
    margin-bottom: 1.5rem;
}

/* Skill Icons Utility */
.cyber-security-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-actions-admin {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Professional Skill Pro Cards */
.skill-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-pro-card {
    background-color: #21262d;
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.skill-pro-card:hover {
    background-color: #30363d;
    border-color: #8b949e;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.skill-pro-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skill-pro-header img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.skill-pro-header i {
    font-size: 1.8rem;
    color: #8b949e;
    width: 32px;
    text-align: center;
}

.skill-pro-header .skill-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.skill-progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skill-progress-bg {
    flex: 1;
    height: 8px;
    background-color: #30363d;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress-fill {
    height: 100%;
    border-radius: 4px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
}

.fill-flutter {
    background: linear-gradient(90deg, #02569B, #027DFD);
    box-shadow: 0 0 10px rgba(2, 86, 155, 0.4);
}

.fill-dart {
    background: linear-gradient(90deg, #00B4AB, #00D7D7);
    box-shadow: 0 0 10px rgba(0, 180, 171, 0.4);
}

.fill-laravel {
    background: linear-gradient(90deg, #F05340, #FF2D20);
    box-shadow: 0 0 10px rgba(240, 83, 64, 0.4);
}

.fill-python {
    background: linear-gradient(90deg, #FFCA28, #FFA000);
    box-shadow: 0 0 10px rgba(255, 202, 40, 0.4);
}

.fill-security {
    background: linear-gradient(90deg, #38e703, #78f153);
    box-shadow: 0 0 10px rgba(56, 231, 3, 0.4);
}

.fill-firebase {
    background: linear-gradient(90deg, #FFCA28, #FFA000);
    box-shadow: 0 0 10px rgba(255, 202, 40, 0.4);
}

.fill-mysql {
    background: linear-gradient(90deg, #00758F, #F29111);
    box-shadow: 0 0 10px rgba(0, 117, 143, 0.4);
}

.fill-postgres {
    background: linear-gradient(90deg, #336791, #4169E1);
    box-shadow: 0 0 10px rgba(51, 103, 145, 0.4);
}

.fill-mongodb {
    background: linear-gradient(90deg, #47A248, #589636);
    box-shadow: 0 0 10px rgba(71, 162, 72, 0.4);
}

.security-icon {
    font-size: 2rem;
    color: #38e703;
}

.skill-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: barShimmer 2s infinite linear;
}

@keyframes barShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.skill-progress-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: #58a6ff;
    min-width: 40px;
    text-align: right;
}

/* Percentage Widths */
.fill-99 {
    width: 99%;
}

.fill-85 {
    width: 85%;
}

.fill-75 {
    width: 75%;
}

.fill-50 {
    width: 50%;
}

.fill-20 {
    width: 20%;
}

@media (max-width: 1024px) {
    .skill-pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .skill-pro-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: rgba(33, 38, 45, 0.4);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(48, 54, 61, 0.6);
}

.project-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.project-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13, 17, 23, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    border: 1px solid rgba(56, 139, 253, 0.3);
    z-index: 2;
}

.project-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}

.project-desc {
    color: #8b949e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(240, 246, 252, 0.1);
}

.project-actions {
    display: flex;
    gap: 1rem;
}

.p-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 246, 252, 0.1);
    background: rgba(48, 54, 61, 0.3);
}

.p-play {
    color: #3ddc84;
}

/* Android Green */
.p-github {
    color: #fff;
}

.p-btn:hover {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.p-status {
    font-size: 0.8rem;
    font-weight: 600;
    color: #3ddc84;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.p-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3ddc84;
    border-radius: 50%;
    box-shadow: 0 0 10px #3ddc84;
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Section Redesign */
.contact-section {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-form-wrapper {
    width: 100%;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.03);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1 1 300px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- PREMIUM FOOTER v3 --- */
.main-footer-v3 {
    background: rgba(13, 17, 23, 0.7);
    /* Keep semi-transparent for readability */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer-glow-top {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-grid-v3 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-col-v3 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-v3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--primary-color);
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-socials-v3 {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon-v3 {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-v3:hover {
    transform: translateY(-5px);
    color: #fff;
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon-v3.github:hover {
    background: rgba(51, 51, 51, 0.3);
}

.social-icon-v3.linkedin:hover {
    background: rgba(0, 119, 181, 0.15);
    color: #0077b5;
}

.social-icon-v3.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.footer-title-v3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-status-v3 {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(59, 130, 246, 0.06);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.1);
    margin-top: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.footer-bottom-v3 {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6e7681;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid-v3 {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid-v3 {
        grid-template-columns: 1fr;
    }

    .brand-col {
        grid-column: span 1;
    }

    .footer-bottom-v3 {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Fade-in Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-longer {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-name {
        font-size: 3.5rem;
        white-space: normal;
    }

    .hero-image-right {
        margin-top: 140px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    /* .nav-links {
        Removed display: none to allow sidebar
    } */

    .section-title {
        font-size: 2rem;
    }
}

/* --- PREMIUM SERVICE REQUEST SECTION --- */
.service-request-section {
    /* Use transparent background to show grid */
    background: transparent;
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.service-request-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 12rem;
    align-items: start;
}







/* /////////////// */
/* Left Column: Premium Lottie Visual */
.service-visual-col {
    position: sticky;
    top: 20px;
}

.service-visual-lottie {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

#lottie-service-container {
    width: 100%;
    min-height: 400px;
    height: auto;
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-visual-lottie:hover #lottie-service-container {
    transform: scale(1.05);
}

.glow-point-v3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}

.floating-badge-v3 {
    position: absolute;
    bottom: -5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floating_v3 4s ease-in-out infinite;
}

@keyframes floating_v3 {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

/* Right Column: Interactive Form */
.service-request-box {
    padding: 3rem;
    border-radius: 32px;
}

.subsection-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.subsection-title-v2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-section-v2 {
    margin-bottom: 3.5rem;
    animation: slideInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Options Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.2rem;
}

.service-option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-option-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-option-card.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.2);
}

.card-icon-v2 {
    font-size: 2.2rem;
    color: #8b949e;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-option-card.active .card-icon-v2 {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-option-card span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
}

/* Tech Chips Grid */
.tech-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-chip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1.4rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #c9d1d9;
    font-weight: 600;
    font-size: 0.9rem;
}

.tech-chip-item i {
    font-size: 1.1rem;
}

.tech-chip-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tech-chip-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-chip-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Visibility Control */
.hidden {
    display: none;
}

/* Input Styles V3 (Floating Labels) */
.input-row-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group-v3 {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group-v3 input,
.input-group-v3 textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group-v3 label {
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    color: #8b949e;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.input-group-v3 input:focus~label,
.input-group-v3 input:not(:placeholder-shown)~label,
.input-group-v3 textarea:focus~label,
.input-group-v3 textarea:not(:placeholder-shown)~label {
    top: -0.6rem;
    left: 1rem;
    font-size: 0.8rem;
    background: #0d1117;
    padding: 0 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.input-group-v3 input:focus,
.input-group-v3 textarea:focus {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
    outline: none;
}

.form-actions-premium {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.glow-btn-v2 {
    padding: 1.2rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.glow-btn-v2::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-btn-v2:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .service-request-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .service-visual-col {
        position: relative;
        top: 0;
    }

    .visual-card-premium {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .input-row-v2 {
        grid-template-columns: 1fr;
    }

    .service-request-box {
        padding: 2.5rem 1.5rem;
    }

    .subsection-title-v2 {
        font-size: 1.1rem;
    }
}