/* --- HERO SECTION: Sample-Inspired Styles --- */
.innovation-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(79, 142, 247, 0.12);
    border: 1.5px solid var(--primary-blue);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 16px 0 rgba(79,142,247,0.08);
}

.hero-content .hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.hero-buttons .arrow {
    margin-left: 0.5em;
    font-size: 1.1em;
    vertical-align: middle;
    transition: margin-left 0.2s;
}
.btn-primary:hover .arrow {
    margin-left: 0.8em;
}

.hero-image.futuristic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.futuristic-img {
    width: 340px;
    height: 340px;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 8px 48px 0 rgba(79,142,247,0.18), 0 1.5px 8px 0 rgba(123,92,240,0.10);
    z-index: 1;
}

.floating-card {
    position: absolute;
    min-width: 110px;
    background: rgba(10, 14, 39, 0.92);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(79,142,247,0.13);
    padding: 1.1rem 1.3rem 0.8rem 1.3rem;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1.5px solid rgba(79,142,247,0.13);
    font-size: 1rem;
    animation: floatCard 6s ease-in-out infinite;
}
.floating-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}
.floating-card .card-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.card-growth {
    top: 18px;
    right: -38px;
    animation-delay: 0s;
}
.card-users {
    left: -38px;
    bottom: 38px;
    animation-delay: 2s;
}
.card-time {
    right: 18px;
    bottom: -28px;
    animation-delay: 4s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.04); }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #050816;
    --bg-card: rgba(255, 255, 255, 0.04);
    --border-card: 1px solid rgba(255, 255, 255, 0.08);
    --primary-blue: #4F8EF7;
    --secondary-purple: #7B5CF0;
    --cyan-glow: #00D4FF;
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #050816 0%, #0a0e27 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 142, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 92, 240, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 212, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: shift-bg 15s ease-in-out infinite;
}

@keyframes shift-bg {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(79, 142, 247, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(123, 92, 240, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(0, 212, 255, 0.02) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 30% 40%, rgba(79, 142, 247, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 70%, rgba(123, 92, 240, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    }
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-purple);
}

/* NAVIGATION BAR */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 22, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 142, 247, 0.1);
    padding: 1rem 2rem;
    transition: var(--transition);
}
/* WhatsApp Quick Reachout Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1200;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 24px 0 rgba(37, 211, 102, 0.18);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    animation: whatsapp-float-bounce 2.5s infinite;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 8px 32px 0 rgba(18, 140, 126, 0.22);
}
@keyframes whatsapp-float-bounce {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-8px); }
    40% { transform: translateY(0); }
    60% { transform: translateY(-4px); }
    80% { transform: translateY(0); }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-decoration: none;
}

.logo span {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--cyan-glow), var(--primary-blue));
    border-radius: 50%;
    margin-right: 8px;
    animation: glow-pulse 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-purple));
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hire-btn {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(79, 142, 247, 0.3);
    text-decoration: none;
    display: inline-block;
}

.hire-btn:hover {
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.6);
    transform: translateY(-2px);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    width: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO SECTION */
.hero {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 142, 247, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-spacing: 100vw;
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--cyan-glow);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: white;
    box-shadow: 0 0 20px rgba(79, 142, 247, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background: rgba(79, 142, 247, 0.1);
    box-shadow: 0 0 20px rgba(79, 142, 247, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: rotate-ring 20s linear infinite;
    box-shadow: 0 0 40px rgba(79, 142, 247, 0.5), inset 0 0 40px rgba(79, 142, 247, 0.2);
}

.glow-ring::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid var(--secondary-purple);
    border-radius: 50%;
    animation: rotate-ring-reverse 15s linear infinite;
    box-shadow: 0 0 30px rgba(123, 92, 240, 0.3);
}

.avatar-placeholder {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.4);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 142, 247, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan-glow), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* SECTION STYLING */
section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 3rem 2rem;
}

.section-label {
    color: var(--cyan-glow);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 142, 247, 0), rgba(123, 92, 240, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(79, 142, 247, 0.5);
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.2);
    transform: translateY(-5px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(79, 142, 247, 0.3));
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--cyan-glow);
}

/* ABOUT SECTION */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 142, 247, 0.1);
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(79, 142, 247, 0.2));
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.about-text {
    margin: 2rem 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.btn-start {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(79, 142, 247, 0.3);
    margin-right: 1rem;
}

.btn-start:hover {
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.6);
    transform: translateY(-2px);
}

.no-charge-note {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.about-image {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(79, 142, 247, 0.1), rgba(123, 92, 240, 0.1));
    border: 1px solid rgba(79, 142, 247, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.2), transparent);
    animation: shift-gradient 8s ease-in-out infinite;
}

/* PORTFOLIO SECTION */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(79, 142, 247, 0.1), rgba(123, 92, 240, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-category {
    color: var(--cyan-glow);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.portfolio-card:hover {
    border-color: rgba(79, 142, 247, 0.5);
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.3);
    transform: translateY(-5px);
}

/* TESTIMONIALS SECTION */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonials-container-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

.rating {
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.testimonial-card:hover {
    border-color: rgba(79, 142, 247, 0.5);
    transform: translateY(-5px);
}

/* PRICING SECTION */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: rgba(79, 142, 247, 0.5);
    box-shadow: 0 0 40px rgba(79, 142, 247, 0.2);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    color: var(--text-secondary);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.pricing-features li:before {
    content: '✓ ';
    color: var(--primary-blue);
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1.5rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pricing-cta:hover {
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.5);
    transform: translateY(-2px);
}

/* CONTACT SECTION */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(79, 142, 247, 0.5);
    box-shadow: 0 0 20px rgba(79, 142, 247, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(79, 142, 247, 0.3);
}

.form-submit:hover {
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.6);
    transform: translateY(-2px);
}

.contact-info {
    background: var(--bg-card);
    border: var(--border-card);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    min-width: 30px;
    text-align: center;
    margin-top: 0.2rem;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-blue);
}

.contact-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: block;
}

/* CTA SECTION */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(79, 142, 247, 0.1), rgba(123, 92, 240, 0.1));
    border: 1px solid rgba(79, 142, 247, 0.2);
    border-radius: 12px;
    padding: 4rem 2rem;
    margin: 5rem auto;
    max-width: 1200px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* FOOTER */
footer {
    background: linear-gradient(180deg, rgba(5, 8, 22, 0.5) 0%, rgba(5, 8, 22, 1) 100%);
    border-top: 1px solid rgba(79, 142, 247, 0.1);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(79, 142, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(79, 142, 247, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* ANIMATIONS */
@keyframes glow-pulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(79, 142, 247, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(79, 142, 247, 0.8);
    }
}

@keyframes rotate-ring {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-ring-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes shift-gradient {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FLOATING PARTICLES */
@keyframes float-particle-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, -50px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(50px, -100px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(-50px, -50px) scale(0.9);
        opacity: 0.5;
    }
}

@keyframes float-particle-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    33% {
        transform: translate(-80px, 60px) rotate(120deg) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(60px, 80px) rotate(240deg) scale(0.95);
        opacity: 0.3;
    }
}

@keyframes float-particle-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    50% {
        transform: translate(-100px, 100px) scale(1.15);
        opacity: 0.4;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(79, 142, 247, 0.3), 0 0 40px rgba(79, 142, 247, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(79, 142, 247, 0.6), 0 0 80px rgba(79, 142, 247, 0.3);
    }
}

@keyframes float-up {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-fade-in {
    animation: fade-in-up 0.6s ease-out forwards;
}

/* ANIMATED TECH BACKGROUND ELEMENTS */
.tech-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.particle-1 {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(79, 142, 247, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation: float-particle-1 20s ease-in-out infinite;
}

.particle-2 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(123, 92, 240, 0.3) 0%, transparent 70%);
    top: 30%;
    right: 15%;
    animation: float-particle-2 25s ease-in-out infinite;
}

.particle-3 {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.35) 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation: float-particle-3 22s ease-in-out infinite;
}

.particle-4 {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(79, 142, 247, 0.25) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation: float-particle-1 28s ease-in-out infinite reverse;
}

.particle-5 {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, rgba(123, 92, 240, 0.3) 0%, transparent 70%);
    bottom: 40%;
    right: 20%;
    animation: float-particle-2 24s ease-in-out infinite reverse;
}

/* TECH ICONS */
.tech-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    filter: blur(0.5px);
    text-shadow: 0 0 10px rgba(79, 142, 247, 0.3);
}

.tech-icon-1 {
    top: 10%;
    right: 15%;
    animation: float-particle-1 25s ease-in-out infinite;
}

.tech-icon-2 {
    top: 25%;
    right: 8%;
    animation: float-particle-2 28s ease-in-out infinite;
}

.tech-icon-3 {
    top: 40%;
    right: 20%;
    animation: rotate-slow 20s linear infinite, bounce-float 8s ease-in-out infinite;
}

.tech-icon-4 {
    bottom: 25%;
    left: 8%;
    animation: float-particle-1 30s ease-in-out infinite reverse;
}

.tech-icon-5 {
    bottom: 40%;
    right: 10%;
    animation: float-particle-2 27s ease-in-out infinite reverse;
}

.tech-icon-6 {
    top: 50%;
    left: 3%;
    animation: float-particle-3 32s ease-in-out infinite;
}

.tech-icon-7 {
    top: 30%;
    left: 5%;
    animation: bounce-float 7s ease-in-out infinite;
}

.tech-icon-8 {
    bottom: 15%;
    right: 5%;
    animation: rotate-slow 25s linear infinite reverse;
}

.tech-icon-9 {
    top: 60%;
    right: 25%;
    animation: float-up 20s ease-in infinite;
}

.tech-icon-10 {
    bottom: 50%;
    left: 15%;
    animation: float-particle-2 26s ease-in-out infinite;
}

.floating-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(79, 142, 247, 0.2), transparent);
    filter: blur(1px);
}

.line-1 {
    width: 200px;
    height: 2px;
    top: 25%;
    left: 0;
    animation: float-particle-1 30s linear infinite;
    transform: rotate(15deg);
}

.line-2 {
    width: 250px;
    height: 1.5px;
    bottom: 30%;
    right: 0;
    animation: float-particle-2 28s linear infinite reverse;
    transform: rotate(-20deg);
    background: linear-gradient(90deg, transparent, rgba(123, 92, 240, 0.2), transparent);
}

.line-3 {
    width: 180px;
    height: 1px;
    top: 60%;
    left: 20%;
    animation: float-up 15s ease-in infinite;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
}

.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(79, 142, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 142, 247, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    animation: grid-shift 20s linear infinite;
}

@keyframes grid-shift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

/* Ensure content is above the animated background */
nav, section, footer {
    position: relative;
    z-index: 10;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .hire-btn {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 8, 22, 0.98);
        border-bottom: 1px solid rgba(79, 142, 247, 0.1);
        padding: 1.5rem 2rem;
        gap: 1rem;
        list-style: none;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }



    .nav-links li a {
        padding: 0.5rem 0;
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .glow-ring {
        width: 200px;
        height: 200px;
    }

    .avatar-placeholder {
        width: 140px;
        height: 140px;
        font-size: 3rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        word-spacing: normal;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    section {
        padding: 2rem 1rem;
        margin: 3rem auto;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-container,
    .pricing-container {
        grid-template-columns: 1fr;
    }
}
