
@charset "utf-8";
/* CSS Document */
/*
/* 
 */


/*
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Footer */
.footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem 2rem;
  height: 35px;
}

.footer .container {
  display: flex;
  justify-content: space-between; /* left-right alignment */
  align-items: center;
  flex-wrap: wrap; /* keeps it responsive on smaller screens */
  font-size: 0.9rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #6366f1; /* subtle hover effect */
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
  .footer .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .footer a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

        :root {
            --primary-color: rgb(46, 26, 70);
            --secondary-color: rgb(70, 40, 105);
            --accent-color: #F26522;
            --accent-pink: #ec4899;
            --accent-cyan: #06b6d4;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --text-light: #ffffff;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-dark: #0f172a;
            --bg-card: rgba(255, 255, 255, 0.95);
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-elegant: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --glass: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            scroll-behavior: smooth;
            overflow-x: hidden;
            background: var(--bg-primary);
        }

        /* Navigation */
        nav {
            position: fixed;
    top: 0;
    width: 100%;
    height: 80px; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
 
    justify-content: space-between; /* optional: space logo & links */
    padding: 0 2rem;          /* left/right spacing */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
            padding: 0.5rem 0;
        }
        nav.shrink {
    height: 2 px;
    padding: 0.5rem 2rem;
}

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

     /* Logo */
.logo-link {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.logo-link:hover {
  color: #ffaa7a;
}

.logo-icon {
  height: 32px;
  width: 32px;
  margin-right: 8px;
  stroke: currentColor;
}
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 1.2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--accent-color);
            transform: translateY(-1px);
        }

          .nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
  }


        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 1px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }



        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 1px;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active .hamburger:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            text-align: center;
        }

        .mobile-nav-links li {
            margin: 2rem 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active .mobile-nav-links li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

        .mobile-nav-links a {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .mobile-nav-links a:hover {
            transform: scale(1.05);
        }

       
  /* Hero Section */
  .hero {
    min-height: calc(100vh - 60px);
    display: flex;
     text-align: left; 
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 1rem;
    background: linear-gradient(to right, rgb(46, 26, 70), rgb(70, 40, 105) )/* from-primary to-secondary */
  }

  /* Image overlay on the right */
  .hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://d288tngog90ix0.cloudfront.net/AAEAAQAAAAAAAAAAAAAAJDFhODU5ZTU4LTkxMmYtNGExOS1hYTU5LWJhOTY1NTQwNzYzNA?fit=crop&w=625&h=440&bg=000000&auto=enhance,compress&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }

  /* Container for content */
  .hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 140px);
    animation: fadeInUp 1s ease-out;
    text-align: left; 
    align-items: flex-start;
  }

  /* Hero Text */
  .hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  }

  .hero-content p {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;

    font-size: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  
  }



  /* Stats section */

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem; /* adds space between stat items */
  padding-top: 0.5rem; /* space above the stats row */
  padding-bottom: 2rem; /* optional space below */
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.stat {
  text-align: center;
  transition: transform 0.3s ease;
  padding: 0.5rem; /* space inside each stat block */
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
    color: var(--text-light);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }
}
      

        .hero-content {
         
            color: var(--text-light);
            z-index: 2;
            
          
            padding: 0 2rem;
        }

        .cta-ghost {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(6px);
        }

        /* New hero enhancements */
        .hero-top {
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .logo-badge {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
            padding: 0.35rem 0.9rem;
            border-radius: 999px;
            font-weight: 700;
            letter-spacing: 0.4px;
            box-shadow: 0 6px 18px var(--accent-shadow);
        }
        .hero-title {
            font-size: 2.5rem;
            margin: 0.6rem 0 1rem;
            line-height: 1.2;
            font-weight: 700;
        }
        .hero-highlight {
            color: var(--highlight);
            background: linear-gradient(90deg, var(--highlight), var(--highlight-hover));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            max-width: 720px;
            margin: 0 auto 1.6rem;
            color: rgba(255,255,255,0.9);
        }
        .hero-ctas {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-ghost {
            background: transparent;
            border: 1px solid var(--white-12);
            color: var(--text-light);
            padding: 1rem 2rem;
        }
        .cta-ghost:hover {
            background: var(--white-12);
            color: var(--dark-color);
        }

        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.2s forwards;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .hero h1 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.4s forwards;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }      

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

       
        /* Section Styles */
        /* To set the section of home, about, team , tech stack */
        section {
            padding: 1rem ;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section-title {
            text-align: center;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 4rem;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--gradient-primary);
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }





        /* About Section */
        .about {
            background: var(--bg-secondary);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
        }

        .about-content {
            display: grid;

            /* Stack images above text: single column layout for simpler placement */
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: start;
            position: relative;
        }

        /* New two-image layout inside the about section */

        .about-images {
            display: grid;
            /* 75% / 25% split: use fractional columns to keep responsiveness */
            grid-template-columns: 3fr 1fr;
            gap: 1.5rem;
            align-items: stretch; /* make both children match height */
            justify-items: stretch;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Small badges above images */
        .about-badges {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .about-badges .badge {
            background: linear-gradient(90deg, rgba(99,102,241,0.12), rgba(139,92,246,0.09));
            color: var(--primary-color);
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.85rem;
            border: 1px solid rgba(99,102,241,0.12);
        }

        /* Make headline and CTAs feel marketing-y */
        .about-headline {
            font-size: 2rem;
            margin: 0 0 0.5rem 0;
            font-weight: 800;
            background: var(--gradient-elegant);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
        }

        .about-short {
            text-align: center;
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin: 0 auto 1rem;
            max-width: 900px;
        }

        .about-ctas {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            margin-top: 0.75rem;
        }
        .btn-primary {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 0.9rem 1.4rem;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(99,102,241,0.12);
        }
        .btn-primary:hover { transform: translateY(-3px); }
        .btn-ghost {
            background: transparent;
            color: var(--text-primary);
            padding: 0.75rem 1.2rem;
            border-radius: 999px;
            text-decoration: none;
            border: 1px solid rgba(15,23,42,0.06);
        }

        /* Image marketing hover: subtle scale and overlay */
        .about-images .image-desktop img,
        .about-images .image-mobile img {
            transition: transform 0.5s ease, filter 0.35s ease;
        }
        .about-images:hover .image-desktop img,
        .about-images:hover .image-mobile img {
            transform: scale(1.03);
            filter: contrast(1.03) saturate(1.02);
        }

        /* Slight overlay for images to make them pop */
        .about-images .image-desktop::after,
        .about-images .image-mobile::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 12px;
            pointer-events: none;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
        }

        .about-images .image-desktop,
        .about-images .image-mobile {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
            background-position: center;
            border: 1px solid rgba(15,23,42,0.06);
            height: 360px; /* reduced to a smaller, readable size */
            background-color: #f8fafc; /* subtle background so 'contain' has letterbox */
        }

        /* Device frames removed — keep clean rounded image containers */
        .about-images .image-desktop img,
        .about-images .image-mobile img { position: relative; }

        /* Desktop screenshot: wide, keep a sensible height for desktop hero screenshot */
        .about-images .image-desktop {
            background-image: url('images/vantage-website.png');
        }

        /* Mobile screenshot: keep same height, limit width to look phone-like inside its column */
        .about-images .image-mobile {
            background-image: url('images/vantage-mobile.jpg');
            max-width: 100%;
            display: block;
            margin: 0 auto;
            align-self: center;
        }

        /* Ensure the inserted <img> elements fill their containers */
        .about-images .image-desktop img,
        .about-images .image-mobile img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* show whole image without cropping */
            display: block;
            background-color: #f8fafc;
        }

        /* Remove hover-hide behavior so text remains visible on image hover */

        /* Add captions under images */
        .img-caption {
            font-size: 0.85rem;
            color: var(--text-secondary);
            text-align: center;
            padding: 0.5rem 0;
        }

        /* Entrance animations for badges and CTAs */
        .fade-up { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .fade-up.animate { opacity: 1; transform: translateY(0); }

        /* Stagger helpers */
        .fade-up.delay-1 { transition-delay: 0.08s; }
        .fade-up.delay-2 { transition-delay: 0.18s; }
        .fade-up.delay-3 { transition-delay: 0.28s; }

        .about-badges .badge { opacity: 0; transform: translateY(8px); }
        .about-badges .badge.animate { opacity: 1; transform: translateY(0); transition: all 0.45s cubic-bezier(0.2,0.8,0.2,1); }
        .about-ctas .btn-primary, .about-ctas .btn-ghost { opacity: 0; transform: translateY(8px); }
        .about-ctas .btn-primary.animate, .about-ctas .btn-ghost.animate { opacity: 1; transform: translateY(0); transition: all 0.45s cubic-bezier(0.2,0.8,0.2,1); }

        /* Promo copy styles */
        .promo-copy {
            margin-top: 2rem;
        }
        .promo-test {
            white-space: pre-wrap;
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.95));
            padding: 1rem 1.25rem;
            border-radius: 12px;
            border: 1px solid rgba(99,102,241,0.08);
            color: var(--text-primary);
            font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial;
            font-size: 1rem;
            line-height: 1.5;
            box-shadow: var(--shadow-sm);
            max-width: 900px;
            margin: 1.5rem auto 0;
            text-align: center;
        }

        .about-image {
            width: 100%;
            height: 500px;
            background: url('images/smiling-girl-computer-desktop.jpg') center/cover;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            transform: rotate(-2deg);
            transition: transform 0.4s ease;
        }

        .about-image:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
            transition: opacity 0.3s ease;
        }

        .about-image:hover::before {
            opacity: 0.7;
        }

    /* removed empty pseudo-element to avoid lint warnings */

        .about-text h3 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
            font-weight: 500;
            line-height: 1.3;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .skills {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .skill-tag {
            padding: 0.75rem 1.5rem;
            background: var(--bg-card);
            color: var(--primary-color);
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .skill-tag:hover {
            background: var(--primary-color);
            color: var(--text-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Portfolio Section */
                /* Team Section */
                .team {
                    background: var(--bg-primary);
                }

                .team-grid {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 2rem;
                    margin-top: 2rem;
                }

              

                .team-card {
                   
                     background: linear-gradient(90deg, rgba(99,102,241,0.12), rgba(124,58,237,0.12));
                    border-radius: 16px;
                    padding: 1.25rem;
                    text-align: center;
                    box-shadow: var(--shadow-md);
                    border: 1px solid rgba(15,23,42,0.03);
                }

                .team-avatar {
                    width: 100px;
                    height: 100px;
                    margin: 0 auto 0.75rem;
                    border-radius: 50%;
                    background-size: cover;
                    background-position: center;
                    box-shadow: 0 10px 20px rgba(15,23,42,0.08);
                }

                .team-card h4 {
                    margin: 0.5rem 0 0.25rem;
                    font-size: 1.05rem;
                }

                .team-card .role {
                    font-weight: 600;
                    color: var(--primary-color);
                    font-size: 0.9rem;
                    margin-bottom: 0.75rem;
                }

                .team-card p {
                    color: var(--text-secondary);
                    font-size: 0.95rem;
                    line-height: 1.5;
                }

                .team-card:hover {
     transform: translateY(-5px); 
     box-shadow: 0 10px 30px var(--primary-color);
     }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 2rem;
        }

        .portfolio-item {
            background: var(--bg-card);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(20px);
            opacity: 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .portfolio-item.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-2xl);
        }

        .portfolio-image {
            width: 100%;
            height: 180px;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .portfolio-item:nth-child(1) .portfolio-image {
            background-image: url('images/working-business-women.jpg');
        }

        .portfolio-item:nth-child(2) .portfolio-image {
            background-image: url('images/computer-desk-stickers.jpg');
        }

        .portfolio-item:nth-child(3) .portfolio-image {
            background-image: url('images/curved-display-pinky-girl.jpg');
        }

        .portfolio-item:nth-child(4) .portfolio-image {
            background-image: url('images/dashboard-interfaces-transparent-displays.jpg');
        }

        .portfolio-item:nth-child(5) .portfolio-image {
            background-image: url('images/marketing-strategy-women.jpg');
        }

        .portfolio-item:nth-child(6) .portfolio-image {
            background-image: url('images/portfolio-website-girl.jpg');
        }

        .portfolio-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
            transition: all 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
        }

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-content h4 {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .portfolio-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .portfolio-tech {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .tech-tag {
            padding: 0.4rem 1rem;
            background: var(--bg-secondary);
            color: var(--text-secondary);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            background: var(--primary-color);
            color: var(--text-light);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #3b4cb8 0%, #4a2c65 50%, #9c35a8 100%);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
            animation: contactFloat 30s ease-in-out infinite;
            opacity: 0.6;
        }

        .contact::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: contactPulse 6s ease-in-out infinite alternate;
        }

        /* Contact Floating Shapes */
        .contact-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .contact-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .contact-shape-1 {
            width: 70px;
            height: 70px;
            top: 15%;
            left: 8%;
            animation: contactFloatShape1 24s ease-in-out infinite;
        }

        .contact-shape-2 {
            width: 110px;
            height: 110px;
            top: 65%;
            right: 12%;
            background: rgba(255, 255, 255, 0.06);
            animation: contactFloatShape2 28s ease-in-out infinite reverse;
        }

        .contact-shape-3 {
            width: 55px;
            height: 55px;
            top: 25%;
            right: 30%;
            background: rgba(255, 255, 255, 0.1);
            animation: contactFloatShape3 20s ease-in-out infinite;
        }

        .contact-shape-4 {
            width: 90px;
            height: 90px;
            bottom: 20%;
            left: 18%;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            animation: contactFloatShape4 26s ease-in-out infinite;
        }

        .contact-shape-5 {
            width: 35px;
            height: 35px;
            top: 12%;
            right: 45%;
            background: rgba(255, 255, 255, 0.12);
            animation: contactFloatShape5 18s ease-in-out infinite reverse;
        }

        .contact-shape-6 {
            width: 130px;
            height: 130px;
            bottom: 12%;
            right: 8%;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 35px;
            animation: contactFloatShape6 32s ease-in-out infinite;
        }

        @keyframes contactFloatShape1 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(-25px) translateX(15px) rotate(90deg); }
            50% { transform: translateY(-10px) translateX(-8px) rotate(180deg); }
            75% { transform: translateY(-35px) translateX(12px) rotate(270deg); }
        }

        @keyframes contactFloatShape2 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            33% { transform: translateY(20px) translateX(-15px) scale(1.05); }
            66% { transform: translateY(-15px) translateX(20px) scale(0.95); }
        }

        @keyframes contactFloatShape3 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            50% { transform: translateY(-20px) translateX(-25px) rotate(180deg); }
        }

        @keyframes contactFloatShape4 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            25% { transform: translateY(15px) translateX(-12px) rotate(30deg); }
            50% { transform: translateY(-8px) translateX(25px) rotate(60deg); }
            75% { transform: translateY(12px) translateX(-18px) rotate(90deg); }
        }

        @keyframes contactFloatShape5 {
            0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
            50% { transform: translateY(-30px) translateX(15px) scale(1.15); }
        }

        @keyframes contactFloatShape6 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            33% { transform: translateY(-12px) translateX(8px) rotate(45deg); }
            66% { transform: translateY(8px) translateX(-20px) rotate(90deg); }
        }

        @keyframes contactFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-15px) rotate(0.5deg); }
            66% { transform: translateY(-10px) rotate(-0.5deg); }
        }

        @keyframes contactPulse {
            0% { opacity: 0.4; }
            100% { opacity: 0.7; }
        }

        .contact-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .contact .section-title {
            color: var(--text-light);
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-form {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .form-group {
            display: grid;
            gap: 0.75rem;
            text-align: left;
        }

        .form-group label {
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 1.2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .submit-btn {
            padding: 1.2rem 3rem;
            background: var(--gradient-primary);
            color: var(--text-light);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 1rem;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            /* Stack the images vertically on medium screens */
            .about-images {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .about-images .image-desktop,
            .about-images .image-mobile {
                height: 320px;
                max-width: 100%;
                transform: none;
            }

            .hero h1 {
                font-size: 4rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1.5rem;
            }

            section {
                padding: 5rem 0;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-text h3 {
                font-size: 2rem;
            }

            .skills {
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }
        }


/* Tech Stack Section */
.techstack {
    padding: 6rem 1rem 4rem;
    color: #fff;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 420px));
    gap: 1rem;
    margin: 2rem auto 0;
    justify-content: center; 
    max-width: 1200px;
}

.stack-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(15,23,42,0.04);
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Glow animation */
.stack-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, rgba(99,102,241,0.12), rgba(124,58,237,0.12));
    z-index: 0;
    filter: blur(8px);
    opacity: 0.65;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.stack-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    z-index: 1;
    pointer-events: none;
}

.stack-card > * { position: relative; z-index: 2; }

.stack-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(99,102,241,0.12);
}

.stack-card:hover::before {
    transform: scale(1.03);
    opacity: 1;
}

.stack-card h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: black;
}

.stack-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.stack-card li {
    padding-left: 0.5rem;
    position: relative;
}

.stack-card li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -0.5rem;
}

/* Tech badges */
.tech-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), #8b5cf6);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin: 0.3rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.tech-badge:hover {
    transform: translateY(-2px);
    cursor: default;
}
.stack-card:hover {
     transform: translateY(-5px); 
     box-shadow: 0 10px 30px var(--primary-color);
     }

/* Tech list logo styles */
.tech-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    align-items: center;
}
.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
}
.tech-logo {
    height: 36px;
    width: auto;
    display: inline-block;
    object-fit: contain;
}
.tech-label {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}