/* Homepage Specific Styles */

.blog-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.blog-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 11px;
    color: var(--muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.4;
    color: #1e293b;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 20px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    margin-top: auto;
    color: #22c55e;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    gap: 12px;
    color: #16a34a;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* FAQ Section Modern */
.service-modern h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 12px;
}

.service-modern p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* Contact Modern */
.contact-modern {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* removed dark mode contact */

.contact-modern-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.contact-content-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin: 20px 0;
}

.badge-modern {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-content-modern p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.contact-methods-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-text .label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 4px;
}

.method-text .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.social-connect-modern {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-connect-modern span {
    font-weight: 600;
    color: #1e293b;
}

.social-icons-modern {
    display: flex;
    gap: 15px;
}

.social-icons-modern a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons-modern a:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-3px);
}

.contact-card-modern {
    background: var(--card);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    position: relative;
}

.card-modern-inner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.card-modern-inner p {
    color: #64748b;
    margin-bottom: 30px;
}

.availability-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.availability-badge-modern .dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.btn-modern-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #3b82f6;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-modern-full:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.or-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.or-divider span {
    background: var(--card);
    padding: 0 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.or-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.btn-modern-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    color: #475569;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #f8fafc;
}

/* Rabbil Style Hero */
* {
    box-shadow: none !important;
}

.hero-rabbil-style {
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-light);
    padding: 120px 0 80px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-shadow: none;
    border: none;
    outline: none;
}

/* removed dark mode hero */

.hero-content-rabbil {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 60vh;
    width: 100%;
}

.hero-bg-rabbil {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bg-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.wave {
    position: absolute;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 50%;
    animation: waveFloat 20s ease-in-out infinite;
}

.wave-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.wave-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.wave-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes waveFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    opacity: 0.3;
    animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

.dot-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot-2 {
    top: 40%;
    right: 20%;
    animation-delay: -1s;
}

.dot-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: -2s;
}

.dot-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: -1.5s;
}

.hero-left {
    animation: slideInLeft 1s ease-out;
}

.hero-title-rabbil {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-main {
    display: block;
    margin-bottom: 8px;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 500px;
}

.tech-stack {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: var(--card);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-icon:hover {
    border-color: #22c55e;
    color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.tech-icon.more {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-color: #22c55e;
    font-weight: 600;
    font-size: 14px;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.profile-container-rabbil {
    position: relative;
    width: min(100%, 400px);
    aspect-ratio: 1/1;
    margin: 0 auto;
}

.profile-image-rabbil {
    position: relative;
    width: min(85%, 300px);
    height: min(85%, 300px);
    margin: 25px auto;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 8px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--card);
}

.profile-ring {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    border: 3px solid #22c55e;
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.floating-stats-card {
    position: absolute;
    top: 20px;
    left: -80px;
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatCard 6s ease-in-out infinite;
    min-width: 200px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card-header {
    margin-bottom: 16px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.stat-row {
    margin-bottom: 16px;
}

.stat-row:last-child {
    margin-bottom: 0;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
}

.live-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
}

.chart-mini {
    display: flex;
    gap: 2px;
    align-items: end;
    height: 20px;
    margin-top: 8px;
}

.chart-bar {
    width: 4px;
    background: #22c55e;
    border-radius: 2px;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from {
        height: 0;
    }

    to {
        height: var(--height, 100%);
    }
}

.floating-tech-card {
    position: absolute;
    background: var(--card);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatTech 8s ease-in-out infinite;
}

.flutter-card {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.laravel-card {
    bottom: -0%;
    left: 140px;
    animation-delay: -2.5s;
}

.firebase-card {
    bottom: 20%;
    right: -20px;
    animation-delay: -5s;
}

@keyframes floatTech {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.tech-card-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.tech-card-content {
    display: flex;
    flex-direction: column;
}

.tech-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.tech-status {
    font-size: 10px;
    color: #64748b;
}

.shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.floating-card {
    position: absolute;
    background: var(--card);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Showcase */
.features-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.features-showca.svc-heading {
    text-align: center;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #1e293b 0%, var(--primary) 100%);
    /* Fixed dark gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-showcase h2 {
    text-align: center;
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1e293b 0%, var(--primary) 100%);
    /* Fixed dark gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-header .section-subtitle {
    color: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--card);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--fg);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.feature.svc-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #1e293b;
}

.svc-card p {
    margin: 0 0 12px;
    color: #475569;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(22, 163, 74, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.feature-stats .stat {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.feature-stats .label {
    color: var(--muted);
    font-size: 12px;
}

/* Service Section */
.svc-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #1e293b 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.svc-card {
    background: var(--gradient-light);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    transition: all .25s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: #dbe4f0;
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

/* Pricing */
.svc-pricing-new {
    padding: 100px 0;
    background: var(--card);
}

.svc-pricing-new .price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--gradient-light);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-card.featured {
    border-color: #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, .18);
    transform: translateY(-2px);
}

.price-card h3 {
    margin: 0;
    font-size: 18px;
    color: #1e293b;
}

.price-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* Resources */
.resources-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.resources-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.resource-card-modern {
    background: var(--gradient-light);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.resource-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.resource-thumb {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

.resource-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Expertise Section */
.flutter-expertise {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.expertise-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 12px;
}

.expertise-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.expertise-card {
    background: var(--card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    padding: 8px 0;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 20px;
}

.expertise-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Availability */
.availability-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.availability-card {
    background: var(--card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.status-indicator.available {
    background: #22c55e;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .hero-content-rabbil {
        gap: 30px;
    }

    .profile-container-rabbil {
        width: 340px;
        height: 340px;
    }

    .profile-image-rabbil {
        width: 260px;
        height: 260px;
        margin: 40px auto;
    }

    .floating-stats-card {
        scale: 0.9;
        right: -20px;
    }

    .flutter-card {
        scale: 0.9;
        top: 0;
    }

    .firebase-card {
        scale: 0.9;
        bottom: 15%;
    }

    .laravel-card {
        scale: 0.9;
        bottom: -5%;
    }

    .floating-stats-card,
    .floating-tech-card,
    .floating-card,
    .shape {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content-rabbil {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-right {
        order: -1;
    }

    .profile-container-rabbil {
        width: 280px;
        height: 280px;
    }

    .profile-image-rabbil {
        width: 220px;
        height: 220px;
        margin: 30px auto;
    }

    .profile-ring {
        width: 60px;
        height: 60px;
        top: 20px;
        left: -20px;
    }

    .floating-stats-card,
    .floating-tech-card,
    .floating-card,
    .shape {
        display: none;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .availability-card {
        flex-direction: column;
        text-align: center;
    }

    .tech-stack {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title-rabbil {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .tech-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .profile-container-rabbil {
        width: 240px;
        height: 240px;
    }

    .profile-image-rabbil {
        width: 180px;
        height: 180px;
    }
}