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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #00ff88;
    --accent-hover: #00cc6f;
    --border: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.contact-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.contact-item{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  color:inherit;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);

  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}

.contact-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}

.contact-icon{
 width:48px;
  height:48px;
  object-fit:cover;
 

  border-radius:8px;
  
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-icon-img{
  width:64px;
  height:48px;
  object-fit:cover;

 
  padding:4px;
}


.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg-primary);
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

/* Projects Section - Vertical Agency Layout */
.projects {
    background-color: var(--bg-secondary);
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 40px;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
}

/* Reverse layout for alternating cards */
.project-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.project-card.reverse .project-image {
    order: 2;
}

.project-card.reverse .project-content {
    order: 1;
}

.project-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-content {
    padding: 20px;
}

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

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid var(--border);
}

.project-card h3 {
    font-size: 32px;
    margin-bottom: 0;
    color: var(--text-primary);
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

.project-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag {
    background-color: rgba(0, 255, 136, 0.1);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.playstore-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.playstore-link img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.playstore-link:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Tech Stack Section */
.tech-stack {
    background-color: var(--bg-primary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    background-color: var(--bg-card);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--accent);
    transform: scale(1.05);
}

.tech-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.tech-icon img {
    display: block;
    margin: 0 auto;
}

.tech-item h4 {
    font-size: 16px;
    color: var(--text-primary);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-secondary);
}

.scroll-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.testimonials-scroll-container {
    position: relative;
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0 30px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-card);
    cursor: grab;
}

.testimonials-scroll:active {
    cursor: grabbing;
}

.testimonials-scroll::-webkit-scrollbar {
    height: 10px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 10px;
    margin: 0 20px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    flex-grow: 1;
}

.testimonial-author {
    color: var(--text-primary);
    font-weight: 600;
    margin-top: auto;
}

/* Contact Section */
.contact {
    background-color: var(--bg-primary);
    text-align: center;
}

.contact-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 32px;
}

.contact-item span:last-child {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.linkedin-link {
    transition: all 0.3s ease;
    display: inline-block;
}

.linkedin-link:hover {
    transform: translateY(-5px) scale(1.05);
}

.linkedin-link svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 119, 181, 0.3));
}

.linkedin-link:hover svg {
    filter: drop-shadow(0 8px 16px rgba(0, 119, 181, 0.5));
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .project-card,
    .project-card.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-card.reverse .project-image,
    .project-card.reverse .project-content {
        order: initial;
    }

    .project-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .project-card {
        padding: 25px;
        margin-bottom: 50px;
    }

    .project-card h3 {
        font-size: 24px;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 30px 20px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .project-card {
        padding: 20px;
    }

    .project-image {
        height: 250px;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 260px;
    }
}