:root {
    --bg-color: #333333;
    --text-primary: #FFFFFF;
    --text-secondary: #ececec;
    --accent-blue: #0066FF;
    --accent-cyan: #00D1FF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --container-width: 1200px;
    --section-padding: 100px 0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #0044aa;
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-cyan);
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Header */
#header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-width);
    z-index: 1000;
    /* Premium Glass Effect */
    background: rgba(255, 255, 255, 0.03);
    /* Extremely subtle fill */
    backdrop-filter: blur(50px);
    /* Heavy frosted glass */
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    /* Crisper border */
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

#header.scrolled {
    top: 10px;
    background: rgba(10, 10, 10, 0.4);
    /* Slightly darker on scroll for readability */
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    /* Reduced initial height for pill look */
    padding: 0 30px;
    /* Horizontal padding inside the pill */
    transition: height 0.3s ease;
}

#header.scrolled .header-container {
    height: 60px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    color: var(--text-secondary);
    font-weight: 500;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--accent-blue);
}

.whatsapp-btn i {
    width: 18px;
    height: 18px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    /* Ensure clickable area exists even if icon fails */
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    /* Above header container if needed */
    position: relative;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    /* Use min-height to allow growth */
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for fixed header */
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Just behind content, but in front of blobs */
    /* Background removed to let Blobs show through */
}

/* Ensure Blobs are behind everything */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Deepest layer */
    overflow: hidden;
    pointer-events: none;
    background: #050505;
    /* Deepest black base */
}

.hero-container-new {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}

.hero-top {
    display: flex;
    justify-content: center;
}

.hero-badge {
    background: rgba(10, 10, 10, 0.8);
    padding: 2px;
    /* Gap for border */
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    /* Space between badge and title */
    width: fit-content;
}

/* Infinity Border Animation */
.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--accent-blue), transparent 30%);
    animation: rotate-border 4s linear infinite;
    z-index: 0;
}

.hero-badge-inner {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}

.pulsing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-blue);
    animation: pulse-dot 2s infinite;
}

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

    50% {
        opacity: 1;
        transform: scale(1.5);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.hero-center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    /* Stack badge and title */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title-large {
    font-size: clamp(2.5rem, 4vw, 4rem);
    /* Responsive massive text */
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.hero-gradient-text {
    background: linear-gradient(to right,
            var(--accent-blue),
            var(--accent-cyan),
            #8B5CF6,
            var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gradient-flow 3s linear infinite;
    display: inline-block;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% center;
    }

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

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgb(240, 240, 240);
}

.hero-description {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 1000px;
    line-height: 2;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        /* More space up top */
        overflow: visible;
        /* Allow content to flow */
    }

    .hero-container-new {
        padding: 40px 16px 60px;
        /* More bottom padding */
    }

    .hero-description {
        font-size: 1rem;
        padding: 10px 10px 40px;
    }
}

.hero-bottom {
    display: none;
}

.hero-bottom-right {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.h-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.h-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Mobile adjustments for new Hero */
@media (max-width: 768px) {


    .hero-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .hero-bottom-left p {
        text-align: center;
    }
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 60px;
    text-align: left;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    position: relative;
}

/* Light Card Interactions */
.service-card {
    background: rgba(20, 20, 20, 0.8);
    /* Fallback */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1px;
    /* 1px padding to show the border gradient behind */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: default;
    border: none;
    /* Reset standard border */
}

/* 1. Proximity Border Glow (The "exact corner" effect) */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    z-index: 1;
    /* The border logic: a radial gradient tracking the mouse reveals the color */
    background: radial-gradient(80px circle at var(--mouse-x) var(--mouse-y),
            var(--accent-blue),
            transparent 100%);
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
}

/* 2. Inner Content Background (Mask) */
.service-card .card-content {
    background: #0A0A0A;
    /* Matches site theme */
    border-radius: 15px;
    /* Slightly smaller than card */
    position: relative;
    z-index: 2;
    /* Sits on top of the border glow */
    height: 100%;
    padding: 30px;
    /* Internal spacing */
    transition: background 0.3s ease;
}

/* 3. Spotlight Light on Hover (Inside the card) */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    /* Large soft light tracking mouse */
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.04),
            /* Light color on hover */
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover States */
.service-card:hover::before {
    opacity: 1;
    /* Show border glow */
}

.service-card:hover::after {
    opacity: 1;
    /* Show spotlight */
}



.service-card:hover {
    /* Glass Effect on Hover */
    background: rgba(255, 255, 255, 0.03);
    /* Highly transparent */
    backdrop-filter: blur(20px);
    /* Stronger blur */
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.3);
    /* Brighter border */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    /* Lift effect */
    transform: translateY(-5px);
}

.card-content {
    background: transparent;
    height: 100%;
    border-radius: 14px;
    padding: 32px;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

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

/* Stats Section */
/* Track Record Section ("Numbers That Speak") */
.track-record-section {
    padding: 80px 0;
    position: relative;
    /* Optional: Deep background if needed, otherwise it takes body bg */
}

/* Header */
.track-record-header {
    text-align: center;
    margin-bottom: 60px;
}

.track-record-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    font-weight: 600;
}

.track-record-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

/* Grid Layout */
.track-record-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns on desktop */
    gap: 24px;
}

/* Dark Cards */
/* Dark Cards with Interactive Effects */
/* Dark Cards with Service-like Interactive Effects */
.record-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1px;
    /* 1px padding for border glow */
    display: flex;
    flex-direction: column;
    /* Interactive Properties */
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    transition: transform 0.3s ease;
}

/* 1. Proximity Border Glow (exact animation) */
.record-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    z-index: 1;
    background: radial-gradient(150px circle at var(--mouse-x) var(--mouse-y),
            var(--accent-blue),
            transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 2. Inner Content Wrapper */
.record-content {
    background: #080808;
    /* Dark card bg */
    border-radius: 15px;
    /* 16px - 1px */
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    padding: 40px 24px;
    /* Original padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 3. Spotlight Light */
.record-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(59, 130, 246, 0.08),
            /* Subtle Pale Blue */
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover States */
.record-card:hover::before {
    opacity: 1;
}

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

.record-card:hover {
    transform: translateY(-5px);
}

/* Removed old snake animation keyframes */



/* Icon Box */
.record-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    /* Default dark blueish tint */
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.record-icon-box i {
    width: 24px;
    height: 24px;
}

/* Variant Colors (Optional nuance) */
.folder-blue {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.bolt-cyan {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
}

.award-teal {
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.2);
}

.users-blue {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.2);
}

/* Number */
.record-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

/* Label */
.record-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .track-record-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on Tablet */
    }
}

@media (max-width: 600px) {
    .track-record-grid {
        grid-template-columns: 1fr;
        /* Stack on Mobile */
    }

    .track-record-title {
        font-size: 2.2rem;
    }
}

/* Process Layout (formerly Stats) */
.process-section {
    padding: 80px 0;
    color: white;
}

.process-card {
    background: #0A0A0A;
    /* Very dark card bg */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 60px;
}

/* Steps */
.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    /* Above connectors */
    padding: 0 20px;
}

.step-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    color: #888;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-icon-box:hover,
.step-icon-box.active-glow {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
    transform: scale(1.05);
    /* Subtle pop */
}

.step-icon-box i {
    width: 28px;
    height: 28px;
}

.step-status-swatch {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #0A0A0A;
}

.step-status-swatch.success {
    background: #10B981;
}

/* Green dot */
.step-status-swatch.lock {
    background: #8B5CF6;
}

/* Purple dot */

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.step-desc {
    font-size: 0.85rem;
    color: #666;
    /* Muted text */
    line-height: 1.5;
    max-width: 280px;
}

/* Connectors */
.step-connector {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 32px;
    position: relative;
    overflow: visible;
    /* Ensure height overflow if needed for glow */
}

/* Base line layer */
.step-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

/* Continuous Infinity Beam */
.step-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Repeating gradient for continuous flow */
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent-blue) 45%,
            var(--accent-cyan) 50%,
            var(--accent-blue) 55%,
            transparent 100%);
    background-size: 200% 100%;
    /* Double width to allow smooth sliding */
    opacity: 0.8;
    animation: connectorFlow 2s infinite linear;
    filter: blur(2px);
    box-shadow: 0 0 8px var(--accent-cyan);
}

@keyframes connectorFlow {
    0% {
        background-position: 100% 0;
    }

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

/* Larger hit area for hover remains */
.step-connector:hover {
    cursor: pointer;
}

/* Increase brightness on hover */
.step-connector:hover::after {
    filter: blur(3px) brightness(1.7);
    height: 2px;
    top: -0.5px;
}

/* Mobile Process */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

    .process-step {
        width: 100%;
        padding: 0;
    }
}

/* Work Section - Carousel Layout */
.portfolio-section {
    padding: 100px 0;
    overflow: hidden;
    /* Prevent horizontal scrollbar on body */
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.carousel-nav {
    display: flex;
    gap: 16px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: scale(1.1);
}

.work-carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    /* Native smooth scroll */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    padding-bottom: 20px;
    /* Space for shadow/hover effects */
    /* Ensure padding doesn't cut off shadows */
    margin: 0 -20px;
    padding: 20px 20px 40px;
    width: calc(100% + 40px);
}

.work-carousel-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.work-carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Allow content to dictate width */
}

/* Interactive Project Cards (Like Services) */
.project-card {
    background: #0A0A0A;
    border-radius: 20px;
    padding: 1px;
    /* Border glow padding */
    display: block;
    /* It's an a tag */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: none;
    /* Reset old border */
    min-width: 350px;
    max-width: 350px;
}

/* 1. Proximity Border Glow */
.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    z-index: 1;
    background: radial-gradient(80px circle at var(--mouse-x) var(--mouse-y),
            var(--accent-blue),
            transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 2. Inner Content Wrapper */
.project-content {
    background: #0A0A0A;
    border-radius: 19px;
    /* 20px - 1px */
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 3. Spotlight Light */
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover States */
.project-card:hover::before {
    opacity: 1;
}

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

.project-card:hover {
    transform: translateY(-5px);
}

/* Child Elements */
.project-image {
    height: 220px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-img {
    color: #444;
    font-weight: 600;
    font-size: 1.2rem;
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: white;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.placeholder-img {
    color: #444;
    font-weight: 600;
    font-size: 1.2rem;
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: white;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .section-header-row {
        flex-direction: row;
        /* Keep buttons next to title or below? Let's keep row */
    }

    .portfolio-section .project-card {
        min-width: 280px;
        max-width: 280px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
    /* Hide overflow for marquee */
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    margin-top: 60px;
    /* Fade masks for edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Allow track to stretch */
    /* Animation handled by GSAP */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    width: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.t-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.t-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.t-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.t-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.t-stars {
    color: #FFC107;
    /* Gold stars */
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.project-card {
    cursor: pointer;
}

.project-image {
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 20px;
    position: relative;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-weight: 700;
    font-size: 2rem;
    transition: transform 0.5s ease;
}

.project-card:hover .placeholder-img {
    transform: scale(1.05);
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* About Section */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    color: var(--text-secondary);
}

.about-placeholder i {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.about-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-shape {
    transform: translate(10px, -10px);
    opacity: 0.6;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-text-col .section-title {
    margin-bottom: 30px;
    text-align: left;
}

.about-bio .lead-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-bio p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

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

.a-stat {
    display: flex;
    flex-direction: column;
}

.a-stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 8px;
}

.a-stat-label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    padding-bottom: 150px;
}

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

.contact-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-item a {
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

/* Pale Blue Icon Color */
.contact-icon {
    color: #93C5FD;
    width: 24px;
    height: 24px;
}

/* Dark Theme Contact Form */
.contact-form {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    /* Ensure Select has correct text color */
}

/* Specific Select Styling to fix white-on-white */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

/* Dropdown Options Styling (Browser dependent, but helps) */
.form-group select option {
    background-color: #000000;
    color: #FFF;
    padding: 12px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-blue);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link-item:hover {
    color: white;
}

.footer-link-item i {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Floating Whatsapp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp i {
    color: white;
    width: 32px;
    height: 32px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .desktop-nav,
    .whatsapp-btn {
        display: none;
    }

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

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

    .hero-section {
        padding-top: 120px;
    }

    .portfolio-grid,
    .contact-container,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        display: grid;
        gap: 32px;
    }

    .contact-container {
        gap: 40px;
    }

    .service-card {
        padding: 1px;
    }
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    /* Deep Glass Effect for Overlay */
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.mobile-menu-close i {
    width: 32px;
    height: 32px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-nav a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-nav a:hover {
    color: var(--accent-blue);
}

/* =========================================
   Floating Hero Icons
   ========================================= */
.hero-center {
    position: relative;
    /* Ensure absolute children are relative to this */
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: -1;
    /* Behind text if needed, or 0 if flanking */
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: float-icon 6s ease-in-out infinite;
}

.floating-icon i {
    width: 28px;
    height: 28px;
    opacity: 0.9;
}

/* Individual Positions - Scattered & Asymmetrical */
/* Icon 1 (Code): Far Top Left, slower bob */
.icon-1 {
    top: -100px;
    left: -15%;
    animation-delay: 0s;
    animation: float-icon 7s ease-in-out infinite;
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

/* Icon 2 (WordPress): Top Right, faster bob */
.icon-2 {
    top: -40px;
    right: -10%;
    animation-delay: 1.5s;
    animation: float-icon 5.5s ease-in-out infinite;
    color: #3b82f6;
}

.icon-2 svg {
    fill: currentColor;
    width: 32px;
    height: 32px;
}

/* Icon 3 (Layers): Bottom Left, medium speed */
.icon-3 {
    bottom: 40px;
    left: -10%;
    animation-delay: 3.2s;
    animation: float-icon 6.5s ease-in-out infinite;
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.2);
}

/* Pure Y-axis Bobbing Animation */
@keyframes float-icon {

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

    50% {
        transform: translateY(-30px);
        /* Increased range for more visibility */
    }
}

/* Mobile Adaptation for Floating Icons */
@media (max-width: 768px) {
    .hero-floating-elements {
        display: block;
        /* Show on mobile */
    }

    .floating-icon {
        transform: scale(0.6);
        /* Make smaller */
        opacity: 0.7;
        /* Less distracting */
    }

    /* Adjust positions to keep them on screen */
    .icon-1 {
        top: -60px;
        left: -10%;
    }

    .icon-2 {
        top: -20px;
        right: -5%;
    }

    .icon-3 {
        bottom: 20px;
        left: -5%;
    }

    /* Ensure animation still works but maybe clearer */
    @keyframes float-icon {

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

        50% {
            transform: translateY(-15px) scale(0.6);
        }
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 1024px) {
    .hero-title-large {
        font-size: 6rem;
    }

    .hero-bottom {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {

    /* Global Container */
    .container {
        padding: 0 20px;
    }

    /* Header */
    #header {
        width: 95%;
        top: 15px;
        padding: 10px 20px;
    }

    .desktop-nav,
    .whatsapp-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Hero Section */
    .hero-container-new {
        justify-content: center;
        padding-top: 100px;
        /* More space from top */
    }

    .hero-center {
        margin-top: -20px;
        z-index: 2;
        /* Ensure on top of canvas if needed */
    }

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

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero-bottom {
        position: relative;
        /* Unlock from absolute bottom */
        bottom: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        width: 100%;
        padding: 40px 20px;
        margin-top: 40px;
    }

    .hero-bottom-left {
        max-width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .hero-bottom-right {
        gap: 30px;
        justify-content: center;
        width: 100%;
    }

    .hero-stat {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .h-stat-num {
        font-size: 2.5rem;
    }

    /* General Sections */
    .section-title {
        font-size: 2.5rem;
    }



    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        min-height: 300px;
    }

    /* Stats Section (if present) */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-card {
        padding: 3rem 1.5rem;
        border-radius: 40px;
    }

    .stat-number {
        font-size: 4rem;
    }
}

/* Skills Section */
.skills-section {
    padding: var(--section-padding);
}

.skills-section .container {
    display: block;
    /* Stack independent departments */
}

.skills-category {
    margin-bottom: 80px;
    /* Separate the departments visually */
}

.skills-category:last-child {
    margin-bottom: 0;
}

.skills-category .section-header {
    margin-bottom: 40px;
    text-align: left;
    /* Align header to start */
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Skill Card - Matching Record Card Style */
.skill-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    transition: transform 0.3s ease;
    cursor: default;
}

/* Proximity Glow */
.skill-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    z-index: 1;
    background: radial-gradient(150px circle at var(--mouse-x) var(--mouse-y),
            var(--accent-blue),
            transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Content Wrapper */
.skill-card .card-content {
    background: #080808;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    /* align-items: center;  Center content like Record Card? Or keep left aligned? 
       Record card is centered. User said "same style". I will center it. */
    align-items: center;
    text-align: center;
}

/* Spotlight */
.skill-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(59, 130, 246, 0.08),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover::before,
.skill-card:hover::after {
    opacity: 1;
}

.skill-card:hover {
    transform: translateY(-5px);
}

/* Icon Box */
.skill-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon-box {
    transform: scale(1.1);
}

.skill-icon-box i {
    width: 28px;
    height: 28px;
}

/* Text Styles */
.skill-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: white;
    font-weight: 600;
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Skill Level Bar */
.skill-level-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    margin-top: auto;
}

.skill-fill {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 6px;
}

/* Coming Soon Badge */
.coming-soon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Color Glo Variants */

/* Blue */
.skill-icon-box.blue-glow {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

/* Purple */
.skill-icon-box.purple-glow {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

/* Cyan */
.skill-icon-box.cyan-glow {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

/* Yellow */
.skill-icon-box.yellow-glow {
    color: #eab308;
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.2);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.1);
}

/* Pink */
.skill-icon-box.pink-glow {
    color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.2);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.1);
}

/* Green */
.skill-icon-box.green-glow {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

/* Orange */
.skill-icon-box.orange-glow {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
}

/* Red */
.skill-icon-box.red-glow {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

@media (max-width: 768px) {
    .skills-grid {
        gap: 20px;
    }
}

/* International Phone Input Overrides */
.iti {
    width: 100%;
    margin-bottom: 20px;
}

.iti__flag-container {
    border-radius: 12px 0 0 12px;
}

.iti__selected-flag {
    background: transparent !important;
}

.iti__country-list {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) #1a1a1a;
}

.iti__country {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.iti__country:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Ensure input styling matches form-group */
.form-group .iti__tel-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group .iti__tel-input:focus {
    border-color: var(--accent-blue);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

/* Search Input Styling (v24+) */
.iti__search-input {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px;
    color: #fff !important;
    padding: 10px !important;
    font-size: 0.9rem !important;
    outline: none;
    margin-bottom: 5px;
}

.iti__search-input:focus {
    border-color: var(--accent-blue) !important;
    background: rgba(0, 0, 0, 0.5) !important;
}

/* Fix dropdown positioning and z-index if needed */
.iti__dropdown-content {
    background-color: #1a1a1a !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}