*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* LIGHT AND DARK THEME VARIABLE COLORS */
:root {
  --bg: #ffffff;
  --text-main: #293651;
  --text-muted: #6b7280;
  --primary: #00a78e;
  --card-bg: #ffffff;
  --border: #e5e7eb;
}

body.dark {
  --bg: #0f172a;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --primary: #00a78e;
  --card-bg: #111827;
  --border: #1f2937;
}

/* PAGE LOAD STATE */
body.preload * {
  transition: none !important;
}

.page-enter {
  opacity: 0;
  transform: translateY(20px);
}

.page-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body{
  font-family: sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* TOGGLE DARK MODE */
.theme-toggle {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background-color: var(--primary);
  color: #fff;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  width: 0%;
  z-index: 9999;
}

html{
  scroll-behavior: smooth;
}

    /* HEADER */
    .header{
      background: var(--card-bg);
      transition: box-shadow 0.3s ease, background 0.3s ease;
      position: relative;
      color: var(--bg);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 2rem;
      position: sticky;
      top: 0;
      z-index: 5;
    }

    .header.scrolled {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
      background: var(--bg);
    }

    .top-nav ul{
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--bg);
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;width: 100%;
      padding: 2rem 0;
      display: none;
      z-index: 999;
    }

    .top-nav ul.active {
      display: flex;
    }

    li{
      list-style-type: none;
    }

    .top-nav a {
      text-decoration: none;
      color: var(--text-muted);
      font-weight: 600;
      text-size-adjust: 100%;
      transition-behavior: normal;
      transition-delay: 0s;
      transition-duration: 0.3s;
      transition-property: all;
      transition-timing-function: ease-out;
    }

    .header a{
      text-decoration: none;
      color: var(--text-main);
    }

    li a:hover{
      text-decoration: underline;
      color: var(--primary);
    }

    .top-nav a.active-link {
      color: var(--primary);
      position: relative;
    }

    .top-nav a.active-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background-color: var(--primary);
    }

    .nav-link.active {
      color: #00A78E;
      text-decoration: underline;
      font-weight: 600;
    }

    /* HAMBURGER */

    .hamburger{
      display: block;
      width: 28px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--primary);
      margin: 6px 0;
      border-radius: 2px;
      transition: 0.3s ease;
    }

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

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

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

    .lancer{
      color: var(--primary);
      font-weight: 500;
      opacity: 0.8;
    }



    /* Hero Section */
    .hero-section{
      max-width: 1200px;
      margin: auto;
      padding: 2.5rem 1.5rem;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      gap: 1.3rem;
    }

    .hello{
      color: #00A78E;
      font-size: 30px;
    }

    .name{
      color: var(--text-main);
      font-size: 50px;
      margin-top: 20px;
    }

    .hero-image img{
     width: 100%;
     height: auto;
     max-width: 420px;
     border-radius: 25%;
     object-fit: cover;
    }

    /* intro */
    .intro-title{
      font-size: 20px;
      margin-top: 15px;
    }

    .intro-content{
      font-size: 16px;
      margin-top: 15px;
      text-size-adjust: 100%;
    }

    .hire-me-btn{
      position: relative;
      overflow: hidden;
      margin-top: 30px;
      background-color: var(--primary);
      color: var(--text-main);
      border: none;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      padding-left: 40px;
      padding-right: 40px;
      height: 55px;
      border-radius: 5px;
      cursor: pointer;
      transition-delay: 0s;
      transition-duration: 0.4s;
      transition-timing-function: ease-in-out;
    }

    .hire-me-btn:hover{
      background-color: #68c0ae;
      animation: pulse 1.2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(0, 167, 142, 0.6); }
      70% { box-shadow: 0 0 0 15px rgba(0, 167, 142, 0); }
      100% { box-shadow: 0 0 0 0 rgba(0, 167, 142, 0); }
    }

    #typed-text {
      color: var(--text-main);
    }

    #typed-text::after {
      content: "|";
      margin-left: 4px;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 50%, 100% { opacity: 1; }
      25%, 75% { opacity: 0; }
    }

    .hire-me-btn::after {
      content: "";
      position: absolute;
      width: 120%;
      height: 120%;
      background: rgba(255, 255, 255, 0.25);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      border-radius: 50%;
      transition: transform 0.6s ease;
    }

    .hire-me-btn:hover::after {
      transform: translate(-50%, -50%) scale(1);
    }

       /* ABOUT SECTION (MOBILE FIRST)*/
       .about-section{
        padding: 3rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
       }

       .about-image{
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
       }

       .about-image img{
        width: 100%;
        height: auto;
        border-radius: 25%;
        object-fit: cover;
        display: block;
       }

       .about,
       .about-heading,
       .about-content{
        text-align: left;
        width: 100%;
        max-width: 600px;
       }

       .about{
        color: var(--primary);
        font-size: 20px;
       }

       .about-heading{
        color: var(--text-main);
        margin-top: 1rem;
        font-size: 35px;
        font-weight: 600;
        text-size-adjust: 100%;
       }

       .about-content{
        font-size: 16px;
        color: var(--text-main);
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
        height: auto;
        line-height: 24px;
        text-size-adjust: 100%;
       }

       .about-percentage{
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 600px;
       }
       
       .about-percentage .percent{
        float: right;
       }

       .progress{
        width: 100%;
        max-width: 600px;
        height: 8px;
        background-color: #eee;
        border-radius: 10px;
       }

       /* DESIGNS */
       .designs{
        font-size: 14px;
        color: var(--text-main);
        font-weight: 500;
        line-height: 16px;
        text-align: left;
        text-size-adjust: 100%;
       }

       /* PERCENT */
       .percent{
        font-size: 14px;
        color: var(--text-main);
       }

        /* PROGRESS LINE */
        .progress {
        grid-column: 1 / -1;
        height: 12px;
        background: var(--bg-light);
        border-radius: 999px;
         position: relative;
       }

       .progress-fill {
        height: 100%;
        background: var(--primary);
        border-radius: 999px;
        position: relative;
        width: 0;
        transition: width 1.2s ease-in-out;
       }

       /* small vertical handle */
      .progress-handle {
       position: absolute;
       right: 0;
       top: 50%;
       transform: translateY(-50%);
       width: 7px;
       height: 20px;
       background: var(--bg-light);
       border: 2px solid var(--primary);
       border-radius: 2px;
      }

        /* divider */
        .divider{
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
       }

       .line {
        width: 80px;
        height: 4px;
        background: var(--primary);
        border-radius: 999px;
       }

       .dot {
        width: 6px;
        height: 6px;
        background: var(--primary);
        border-radius: 50%;
       }

       /* ===DESKTOP LAYOUT=== */
       @media (min-width: 768px){
        .about-section{
          min-height: 100vh;
          padding: 5rem 2rem;
          display: grid;
          grid-template-columns: 1fr 1fr;
          align-items: center;
          gap: 3rem;
        }
       }
      

       /* SERVICES_SECTION */
       .services-section{
        min-height: 100vh;
        background-color: var(--bg);
        padding: 5rem 2rem;
       }

       .services{
        color: var(--primary);
        font-size: 20px;
        font-weight: 600;
        text-size-adjust: 100%;
       }

       .services-heading{
        color: var(--text-main);
        margin-top: 1rem;
        font-size: 35px;
        font-weight: 600;
        width: 450px;
        text-size-adjust: 100%;       
       }

         /* DIVIDER */
       .divider{
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
       }

       .line {
        width: 80px;
        height: 4px;
        background: var(--primary);
        border-radius: 999px;
       }

       .dot {
        width: 6px;
        height: 6px;
        background: var(--primary);
        border-radius: 50%;
       }

       .services-container1{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;       
       }

       /* SERVICES GRID - MOBILE FIRST */
       .services-grid{
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
       }

       /* ===SERCICES GRID - TABLETS=== */
       @media (min-width: 600px){
        .services-grid{
          grid-template-columns: repeat(2, 1fr);
        }
       }

         /* ===SERCICES GRID - DESKTOP=== */
       @media (min-width: 1024px){
        .services-grid{
          grid-template-columns: repeat(3, 1fr);
        }
       }

       .services-card{
        background-color: var(--card-bg);
        padding: 2rem 1.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        position: relative;
        transition: all 0.3s ease;
       }

       .services-card:hover{
        background-color: var(--primary);
       }

       .services-card:hover h3,
       .services-card:hover p{
       color: white;
       }

       .services-card h3{
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-main);
        cursor: pointer;
        transition: color 0.3s ease;
       }

       .services-card p{
        font-size: 0.95rem;
        color: var(--text-main);
        line-height: 1.6;
        transition: color 0.3s ease;
       }

       /* ICON */
       .icon-box{
        width: 70px;
        height: 70px;
        background-color: var(--primary);
        border-bottom-left-radius: 20px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
       }

       .icon-box i{
        font-size: 32px;
        color: var(--bg-light);
       }

       /* PORTFOLIO SECTION */
       .portfolio-section{
        padding: 5rem 2rem;
       }

       .portfolio-heading{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 2.5rem 2rem;
        max-width: 1100px;
        margin: 0 auto 3rem;
       }

       .portfolio-label{
        color: var(--primary);
        font-size: 20px;
        font-weight: 600;
        text-size-adjust: 100%;
        text-align: left;
       }

       .portfolio-title{
        color: var(--text-main);
        margin-top: 1rem;
        font-size: 35px;
        font-weight: 600;
        width: 450px;
        text-size-adjust: 100%;
        text-align: left;   
       }

       .project-card {
        margin-bottom: 1rem;
       }

       .project-card img {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
       }

       .project-card h3 a {
        text-decoration: none;
         color: var(--text-main);
       }

       .tech-stack {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.8rem;
      }

      .badge.html { background: #e34c26; }
      .badge.css  { background: #264de4;}
      .badge.js   { background: #f0db4f; color: #000; }


       /* All-works-button */
       .all-works-btn{
        background-color: var(--card-bg);
        border: 2px solid rgb(100, 111, 135);
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        height: 55px;
        padding: 0 40px 0 40px;
        text-align: center;
        color: var(--text-main);
        text-wrap-mode: nowrap;
        text-size-adjust: 100%;
        transition-behavior: normal;
        transition-delay: 0s;
        transition-duration: 0.4s;
        transition-property: all;
        transition-timing-function: ease-out;
        z-index: 5;
       }

       .all-works-btn:hover{
        background-color: var(--primary);
       }

          /* ===MOBILE SCREENS=== */
       @media (max-width: 576px){
        .portfolio-heading{
          flex-direction: column;
          align-items: flex-start;
          gap: 1.5rem;
          padding: 2rem 1rem;
        }

        .portfolio-title{
          width: 100%;
          font-size: 28px;
        }

        .portfolio-label{
          font-size: 18px;
        }

        .all-works-btn{
          align-self: flex-start;
          height: 50px;
          padding: 0 1.5rem;
        }
       }

       /* PORTFOLIO GRID */
       .portfolio-grid{
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2.5rem;
        background-color: var(--bg);
       }

       .project-card img{
        width: 100%;
        height: 250px;
        border-radius: 14px;
        object-fit: cover;
        display: block;
        margin-bottom: 1.5rem;
       }

       .project-card h3{
        font-size: 1.5rem;
        color: var(--text-main);
        margin-bottom: 0.5rem;
        cursor: pointer;
       }

       .project-card h3 a:hover{
        color: var(--primary);
       }

       .project-card p{
        color: var(--text-muted);
        font-size: 1rem;
       }

       /* PROJECT IMAGE */
       .project-image {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
       }

       .project-image img {
        width: 100%;
        display: block;
       }

       .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 167, 142, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        opacity: 0;
        transition: 0.4s ease;
       }

       .project-image:hover .overlay {
        opacity: 1;
       }

       .view-btn, .github-btn {
        background: #fff;
        color: var(--primary);
        padding: 0.6rem 1.2rem;
        border-radius: 999px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s ease;
       }

       .github-btn {
        font-size: 1.4rem;
        padding: 0.6rem 0.9rem;
       }

       .view-btn:hover,
       .github-btn:hover {
        background: #e6fffa;
        transform: translateY(-3px);
       }

       /* HIDDEN PROJECTS */
      .hidden-projects {
        display: none; 
        animation: fadeUp 0.5s ease forwards;
      }

      .hidden-projects.show {
        display: grid;
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

       /* ARROWS */
       .portfolio-arrows{
        margin-top: 3rem;
        display: flex;
        justify-content: center;
        gap: 2rem;
       }

       .portfolio-arrows span{
        font-size: 2rem;
        color: var(--text-main);
        cursor: pointer;
       }

       /* PRICING SECTION */
       .pricing-section{
        background-color: var(--bg);
        padding: 5rem 2rem;
       }

       .pricing-heading{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;       
        min-height: 35vh;
       }

       .pricing-label{
        color: var(--primary);
        font-size: 20px;
        font-weight: 600;
        text-size-adjust: 100%;
       }

       .pricing-title{
        color: var(--text-main);
        margin-top: 1rem;
        font-size: 35px;
        font-weight: 600;
        width: 450px;
        text-size-adjust: 100%;  
       }

       /* PRICING GRID */
       .pricing-grid{
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
       }

       /* PRICE CARD */
       .price-card{
        background-color: var(--card-bg);
        padding: 3rem 2rem;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: left;
       }

       .price-card h3{
        font-size: 1.6rem;
        color: var(--text-main);
       }

       .price-card h2{
        font-size: 2.5rem;
        color: var(--primary);
        margin: 1rem 0;
       }

       .subtitle{
        color: var(--text-main);
       }

       hr{
        width: 100%;
        margin: 2rem 0;
        border: none;
        border-top: 1px solid var(--text-muted);
       }

       /* FEATURES */
       .features{
        list-style: none;
        width: 100%;
        margin-bottom: 2.5rem;
       }

       .features li{
        padding: 0.6rem 0;
        color: var(--text-main);
        display: flex;
        align-items: center;
        gap: 0.6rem;
       }

       .features li::before{
        font-weight: bold;
       }

       .features .yes::before {
        content: "✓";
         color: var(--text-muted);
       }

       .features .no::before {
        content: "✕";
        color: var(--text-muted);
       }

       /* BUTTONS */
       .btn {
        border: none;
        background: none;
        font-family: inherit;
        cursor: pointer;
       }
       .btn{
        padding: 0.9rem 2.2rem;
        border-radius: 999px;
        font-size: 1rem;font-weight: 600;
        transition: all 0.25s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
       }

       .btn.outline{
        background: transparent;
        border: 2px solid #6b7280;
        color: var(--text-main);
       }

       .btn.outline:hover{
        background-color: rgba(255, 255, 255, 0.08);
        border-color: #00A78E;
        color: #00A78E;
        transform: translateY(-2px);
       }

       .filled{
        background-color:#00A78E;
        color: var(--text-main);
        box-shadow: 0 10px 25px rgba(0, 167, 142, 0.35);
       }

       .filled:hover{
        background-color: #6ac2af;
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(0, 167, 142, 0.45);
       }

       /* FEATURED CARD */
       .featured{
        transform: translateY(-10px);
       }

       .ribbon{
        position: absolute;
        top: 25px;
        right: -14px;
        background-color: var(--primary);
        color: var(--text-main);
        padding: 6px 20px;
        transform: rotate(45deg);
        font-size: 0.85rem;
        border-radius: 50%;
       }

       /* Journey SECTION (Mobile First */
       .journey {
        padding: 4rem 1.5rem;
        background-color: var(--bg);
        text-align: center;
       }

       .section-tag {
        color: var(--primary);
        font-weight: 600;
        letter-spacing: 1px;
       }

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

       .section-subtitle {
        max-width: 500px;
        margin: 0 auto 2.5rem;
        color: var(--text-muted);
       }

       .journey-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
       }

       .journey-card {
        background-color: var(--card-bg);
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
       }

       .journey-card h3 {
        color: var(--primary);
        margin-bottom: 0.5rem;
       }

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

       /* STATS SECTION */
       .stats-section{
        padding: 4rem 2rem;
        background-color: var(--bg);
       }
    
       .stats-container{
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
       }

       /* STAT ITEM */
      .stat{
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }

      .icon{
        width: 70px;
        height: 70px;
        border: 3px solid var(--text-main);
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 28px;
        color: var(--text-main);
      }

      .text h3{
       font-size: 2.2rem;
       color: var(--primary);
       margin: 0;
      }

      .text p{
        margin: 0.3rem 0 0;
        color: var(--text-muted);
        font-weight: 500;
        line-height: 1.4;
      }
        
        /* STAT SECTION */
        @media (min-width: 768px){
        .stats-container{
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 2.5rem 1.5rem;
          text-align: center;
          padding: 3rem 1.5rem;
        }

        .stat{
          display: flex;
          align-items: center;
          gap: 0.6rem;
        }

        .stat .icon{
          font-size: 2.2rem;
          margin-bottom: 0.4rem;
        }

        .stat h3{
          font-size: 1.5rem;
        }

        .stat p{
          font-size: 0.9rem;
        }
        .stat br{
          display: none;
        }
      }


      /* ===DESKTOP STATS FIX=== */
      @media (min-width: 992px){
        .stats-container{
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 2.5rem;
        }

        .stat{
          display: flex;
          align-items: center;
          gap: 1.5rem;
        }

        .stat .icon{
          flex-shrink: 0;
          font-size: 28px;
        }

        .stat .text h3{
          font-size: 28px;
        }

         .stat .text p{
          font-size: 16px;
          line-height: 1.3;
         }
      }


      /* EXPERIENCE SECTION */
      .experience-section{
        padding: 5rem 2rem;
        position: relative;
      }

      .experience-heading{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;       
        min-height: 35vh;
      }

      .experience-label{
       color: var(--primary);
       font-size: 20px;
       font-weight: 600;
       text-size-adjust: 100%;
      }

      .experience-title{
       color: var(--text-main);
       margin-top: 1rem;
       font-size: 35px;
       font-weight: 600;
       width: 450px;
       text-size-adjust: 100%;  
      }


      /* BASE MOBILE FIRST */
      .timeline{
        display: flex;
        flex-direction: column;
        gap: 3rem;
      }

      .experience-item{
        background: transparent;
      }

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

      .dot2{
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: #6fb1a2;
        color: var(--text-main);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
      }

      .experience-meta h3{
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
      }

      .experience-meta h4{
        color: var(--primary);
        margin-bottom: 0.25rem;
      }

      .experience-item small{
        color: var(--text-muted);
      }

      .experience-content{
        background-color: var(--card-bg);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
      }

      .experience-content:hover{
        background-color: var(--primary);
      }

      .experience-content:hover p{
        color: white;
      }

      /* CTA SECTION */
      .cta{
        padding: 4rem 1rem;
      }

      .cta-inner{
        max-width: 1100px;
        margin: 0 auto;
        padding: 3rem;
        background-color: var(--primary);
        color: var(--bg-light);
        border-radius: 20px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 3rem;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      /* Wave Overlay */
      .cta-inner::before{
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
        circle at right center,
        rgba(255, 255, 255, 0.12),
        transparent 60%);
      }

      /* TEXT */
      .cta-text{
        position: relative;
        z-index: 2;
      }

      .cta-text span{
        background-color: #fff;
        margin-bottom: 1rem;
      }

      .cta-text p{
        max-width: 520px;
        font-size: 1rem;
        line-height: 1.7;
        opacity: 0.95;
      }

      /* BUTTON */
      .cta-btn{
        position: relative;
        z-index: 2;
        background-color: #d6eee9;
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        padding: 1.1rem 2.6rem;
        border-radius: 10px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .counter::after {
        content: "+";
      }
      .counter2::after {
        content: "+ Weeks";
      }

      /* CTA FORM */
      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        z-index: 2;
      }

      .contact-form input,
      .contact-form textarea {
        width: 100%;
        padding: 0.9rem 1rem;
        border-radius: 8px;
        border: none;
        font-size: 0.95rem;
        outline: none;
      }

       .contact-form textarea {
        margin-bottom: 0.8rem;
       }

      .contact-form textarea {
        resize: none;
      }

      .contact-form input::placeholder,
      .contact-form textarea::placeholder {
        color: #7a8c9d;
      }

      .contact-form .cta-btn {
        margin-top: 0.5rem;
        background-color: #ffffff;
        color: var(--primary);
        font-weight: 600;
        transition: all 0.25s ease;
        cursor: pointer;
      }

      .contact-form .cta-btn:hover {
        background-color: #d6eee9;
        transform: translateY(-2px);
      }

      .quick-contact-btn {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.8);
        color: #fff;
        margin-top: 1rem;
        cursor: pointer;
        width: fit-content;
        max-width: 260px;
        padding: 0.9rem 2.2rem;
        align-self: flex-start;
        justify-self: flex-start;
        white-space: nowrap;
      }

      .quick-contact-btn:hover {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
      }

      /* FORM STATUS MESSAGE */
      .form-status {
        font-size: 0.9rem;
        min-height: 1.2rem;
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 0.35s ease, transform 0.35s ease;
        margin-top: 0.5rem;
      }

      .form-status.success {
        background-color: #e6f6f2;
        color: #065f46;
        padding: 0.6rem 0.8rem;
        border-radius: 6px;
        opacity: 1;
        transform: translateY(0);
      }

      .form-status.error {
        background-color: #fdecea;
        color: #9b1c1c;
        padding: 0.6rem 0.8rem;
        border-radius: 6px;
        opacity: 1;
        transform: translateY(0);
      }

      .cta-btn.loading {
        opacity: 0.7;
        pointer-events: none;
      }

      .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 0.6rem;
      }

      /* ===CTA MOBILE FIX=== */
      @media (max-width: 575px){
        .cta-inner{
          grid-template-columns: 1fr;
          gap: 2rem;
          text-align: left;
        }

        .cta-text h2{
          font-size: 1.6rem;
          line-height: 1.3;
        }

        .cta-btn{
          justify-self: flex-start;
        }

        .contact-form {
          margin-top: 1.5rem;
        }

        .quick-contact-btn {
          width: 100%;
          max-width: none;
          text-align: center;
        }
      }

      /* FOOTETR BASE */
      .footer{
        padding: 5rem 1rem;
        background-color: var(--bg);
      }

      .footer-inner{
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
      }

      /* ROLE */
      .footer-role{
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 2rem;
        cursor: pointer;
      }

      .footer-role a{
       text-decoration: none;
       color: var(--text-main);
      }

      /* SOCIAL ICONS */
      .socials{
        display: flex;
        justify-content: center;
        gap: 1.2rem;
        margin-bottom: 2.5rem;
      }

      .socials a{
        width: 48px;
        height: 48px;
        background: var(--text-main);
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--text-muted);
        font-size: 1.1rem;
        transition: all 0.25s ease;
      }

      .socials a:hover{
        background-color: var(--primary);
        color: var(--bg);
        transform: translateY(-3px);
      }

      .footer-email{
        margin-bottom: 3rem;
      }

      .footer-email a{
        text-decoration: none;
        color: var(--text-main);
      }

      .footer-email a:hover{
         box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }

      /* NAV */
      .footer-nav{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5rem;
        margin-bottom: 3rem;
      }

      .footer-nav a{
        text-decoration: none;
        font-weight: 500;
        color: var(--text-main);
        transition: color 0.2s ease;
      }

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

      /* CREDIT */
      .footer-credit{
        font-size: 0.95rem;
        color: var(--text-muted);
      }

      .footer-credit span{
        color: var(--primary);
        font-weight: 600;
        cursor: pointer;
      }

      .footer-credit span:hover{
        color: #0156b3;
      }

      /* REVEAL */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .reveal.show {
        opacity: 1;
        transform: translateY(0);
      }

      /* CONTACT MODAL */
      .contact-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
      }

      .contact-modal.show {
        display: flex;
      }

      .contact-modal-content {
        background: var(--card-bg);
        color: var(--text-main);
        padding: 2rem;
        width: min(90%, 400px);
        border-radius: 14px;
        position: relative;
        text-align: center;
      }

      .contact-modal-content h3 {
        margin-bottom: 0.5rem;
      }

      .contact-modal-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        color: var(--text-muted);
      }

      .contact-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .contact-btn {
        text-decoration: none;
        padding: 0.75rem;
        border-radius: 8px;
        font-weight: 600;
        color: #fff;
      }

      .contact-btn.whatsapp {background: #25d366;}
      .contact-btn.email {background: #3b82f6;}
      .contact-btn.call {background: #10b981;}

      .close-modal {
        position: absolute;
        top: 10px;
        right: 12px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-main);
      }


      /* ===MEDIA QUERRIES=== */


       /* ==MEDIUM DEVICES== */
      @media (min-width: 769px) {
        .top-nav ul {
          position: static;
          flex-direction: row;
          background: none;
          padding: 0;
          width: auto;
          display: flex;
        }

        .hamburger {
          display: none;
        }

        /* Hero Section */
        .hero-section {
          grid-template-columns: 1fr 1fr;
          padding: 5rem 2rem;
          gap: 3rem;
        }
      }


      @media (max-width: 768px){

        /* TOP NAV */
        .header h2 {
          font-size: 20px;
        }

        .top-nav ul{
          position: absolute;
          top: 100%;
          left: 0;
          background-color: white;
          flex-direction: column;
          align-items: center;
          gap: 1.5rem;
          width: 100%;
          padding: 2rem 0;
          display: none;
          z-index: 999;
        }

        .hamburger{
          display: block;
          font-size: 2rem;
          cursor: pointer;
        }

       

        /* HERO SECTION */
        .hero-section{
          grid-template-columns: 1fr;
          gap: 1.3rem;
          padding: 2.5rem 1.5rem;
        }

        .intro{
          text-align: left;
        }

        .hero-image{
          display: flex;
          padding: 2rem 0;
          justify-content: center;
        }

        .hero-image img{
         max-width: 260px;
         width: 70%;
         border-radius: 25%;
        }

        .name{
          font-size: 2.4rem;
        }

        .intro-title{
         font-size: 1.2rem;
        }

        .intro-content{
          font-size: 0.95rem;
          line-height: 1.6rem;
        }

        .hire-me-btn{
          margin-top: 1.5rem;
        }

        /* PORTFOLIO SECTION */
        .portfolio-grid{
          display: grid;
          grid-template-columns: 1fr;
        }

      /* HIDDEN PROJECTS */
      .hidden-projects {
        display: none; 
        animation: fadeUp 0.5s ease forwards;
      }

      .hidden-projects.show {
        display: grid;
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

       .project-card {
        margin-bottom: 0.2rem;
       }

        /* PRICE SECTION */
        .pricing-grid{
          display: grid;
          grid-template-columns: 1fr;
          gap: 2rem;
          justify-items: center;
        }

        .price-card{
         width: min(420px, 92%);
         padding: 2.5rem 2rem;
         text-align: left;
        }

        .price-card h3,
        .price-card h2,
        .price-card .subtitle{
          text-align: left;
        }

        .price-card h2 {
          font-size: 2.5rem;
        }

        .price-card hr{
          width: 75%;
          margin: 1.5rem 0;
        }

        .features{
          margin: 1rem 0 2rem;
          padding: 0;
        }

        .features li{
          display: flex;
          align-items: center;
          gap: 0.9rem;
          padding: 0.55rem 0;
        }

        .features li::before{
          width: 18px;
          display: inline-block;
          text-align: center;
        }

        .featured{
          transform: none;
        }

        .btn {
          width: 100%;
          justify-content: center;
        }
     
        /* WORK EXPERIENCE SECTION */
        .timeline::before{
          display: none;
        }

        .timeline{
          display: flex;
          flex-direction: column;
          gap: 2.5rem;
        }

        .timeline-item{
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          position: static;
        }

        .dot2{
          position: static;
          margin-bottom: 0.5rem;
          background-color: #4fb3a2;
          color: #fff;
          font-size: 0.75rem;
        }

        .meta{
          order: 1;
          margin-bottom: 1rem;
        }

        .meta h3{
          font-size: 1.3rem;
        }

        .meta h4{
          font-size: 1rem;
        }

        .meta small{
         font-size: 0.9rem;
        }

        .timeline-item .left,
        .timeline-item .right{
          left: 0;
          justify-content: flex-start;
          text-align: left;
        }

        .content2{
          order: 2;
          width: 100%;
          margin: 0;
          padding: 1.25rem;
          border-radius: 14px;
          box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        .stat{
          justify-content: flex-start;
        }

        .icon{
          width: 60px;
          height: 60px;
        }

        .text h3{
          font-size: 1.8rem;
        }

        .text p{
          font-size: 1rem;
        }
      }


      /* LARGE DEVICES TABLETS */

      @media (min-width: 900px){

        .timeline{
          position: relative;
          max-width: 1100px;
          margin: auto;
        }

        /* CENTER LINE */
        .timeline::before{
          content: "";
          position: absolute;
          left: 50%;
          top: 0;
          width: 3px;
          height: 100%;
          background-color: #6fb1a2;
          transform: translateX(-50%);
        }

        .experience-item{
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
          position: relative;
        }

        /* ALTERNATE SIDES */
        .experience-item:nth-child(odd){
          grid-template-areas: "content meta";
        }

        .experience-item:nth-child(even){
          grid-template-areas: "meta content";
        }

        .dot2{
          position: absolute;
          left: 50%;
          top: 0;
          transform: translate(-50%, 0);
          margin: 0;
        }
      }

      @media (min-width: 768px) {
        .journey-cards{
          grid-template-columns: repeat(2, 1fr);
        }

        .cta-actions {
          flex-direction: row;
          align-items: center;
          gap: 1.2rem;
        }
      }

      @media (min-width: 1024px) {
        .journey-cards {
          grid-template-columns: repeat(2, 1fr);
        }
      }
