
    /* Global Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }

    body {
      background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
      color: #333;
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Header */
    header {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    header h1 {
      font-size: 24px;
      font-weight: 700;
      background: linear-gradient(90deg, #ff4d5a, #2575fc);
      padding: 5px 15px;
      border-radius: 50px;
    }
    .nav-mob{
      display: none;
    }

    nav a {
        color: #186dff;
      margin-left: 25px;
      font-weight: 500;
      transition: 0.3s;
      padding: 5px 10px;
      border-radius: 5px;
    }

    nav a:hover {
      background: rgba(37, 117, 252, 0.2);
      color: #2575fc;
    }
    nav a.active{
        background: rgba(37, 117, 252, 0.2);
        color: #2575fc;
    }
    .bottom-nav {
        display: none;
    }

    /* Hero Section */
    .hero {
        background: url('/bkg/laptop.jfif') no-repeat center center/cover;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      height: 100vh;
      text-align: center;
      padding: 20px;
    }
    
    .hero-image img{
        width: 320px;
        height: 380px;
        perspective: 1000px;
        border-radius: 50%;
        
    }
    .profile-pic{
        position: absolute;
        top: 25%;
        left: 10%;
        transform: translate(9%, -10%);
        transition: transform 0.7s ease;
    }
    .shape{
       position: absolute;
        top: 30%;
        left: 10%;
        transform: translate(9%, -10%);
        transition: transform 0.7s ease;
    }
    .hero-image:hover .profile-pic{
        transform: translate(9%, -20%);
        transition: ease-in-out 0.0.7s;
    }
    .hero-image:hover .shape{
        transform: rotate(45deg);
        transition: ease-in-out 0.7s;
    }

    .hero h2 {
      font-size: 50px;
      font-weight: 700;
      /* background: linear-gradient(90deg, #ff4d5a, #2575fc); */
      margin-bottom: 20px;
       padding: 10px;
      border-radius: 50px;
    }
    .hero h2 span {
      background: linear-gradient(90deg, #ff4d5a, #2575fc);
      -webkit-background-clip: text;
      background-clip: text; /* Standard property for compatibility */
      -webkit-text-fill-color: transparent;
      display: inline-block;
      padding: 5px 15px;
      border-radius: 50px;
    }

    .hero p {
      font-size: 20px;
      margin-bottom: 30px;
      color: #b1afaf;
    }

    .hero button {
      padding: 14px 35px;
      border: none;
      border-radius: 50px;
      background: linear-gradient(90deg, #ff4d5a, #2575fc);
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .hero button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(37,117,252,0.3);
    }
    .statistics{
        width: 100%;
        position: absolute;
        top: 95%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px); */
        padding: 10px 20px;
        border-radius: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .stats{
        color: #fffdfd;
        display: flex;
        justify-content: space-around;
        align-items: center;
        text-align: center;
    }

    /* Sections */
    section {
      padding: 80px 15px;
      margin: 0 auto;
    }

    section h2 {
      font-size: 36px;
      text-align: center;
      margin-bottom: 50px;
      font-weight: 700;
      color: #333;
    }

    /* Journey / Timeline */
    .journey {
      display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative;
    }

    .journey::before {
      content: '';
      position: absolute;
      left: 50%;
      width: 4px;
      height: 100%;
      background: #2575fc;
      transform: translateX(-50%);
    }

    .journey-item {
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      padding: 25px 30px;
      border-radius: 15px;
      width: 45%;
      position: relative;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .journey-item:hover {
      transform: translateY(-5px);
    }

    .journey-item.left {
      left: 0;
    }

    .journey-item.right {
      left: 55%;
    }

    .journey-item::before {
      content: '';
      position: absolute;
      top: 25px;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: #ff4d5a;
      border: 3px solid #fff;
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }

    .journey-item.left::before {
      right: -40px;
    }

    .journey-item.right::before {
      left: -40px;
    }

    /* Projects Section */
    .projects {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .project-card {
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(15px);
      border-radius: 20px;
      padding: 25px;
      transition: 0.3s;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .project-card:hover {
      transform: translateY(-10px) scale(1.02);
    }
    .project-btn{
        padding: 10px 20px;
       margin-top: 20px;
        border: none;
        border-radius: 50px;
        background: linear-gradient(90deg, #ff4d5a, #2575fc);
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
    }
    .project-btn:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    .project-card h3 {
      margin-bottom: 15px;
      color: #2575fc;
    }

    .project-card p {
      font-size: 15px;
      color: #555;
      line-height: 1.5;
    }

    /* Skills Section */
    .skills {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }
    .skills-broadcast{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 2fr));
      gap: 30px;
    }
    .skill {
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .skill h4 {
      margin-bottom: 12px;
      color: #2575fc;
    }

    .skill-bar {
      background: rgba(255,255,255,0.3);
      border-radius: 10px;
      height: 20px;
      overflow: hidden;
    }

    .skill-bar-inner {
      height: 100%;
      width: 0;
      background: linear-gradient(90deg, #ff4d5a, #2575fc);
      text-align: right;
      padding-right: 5px;
      color: #fff;
      line-height: 20px;
      font-size: 14px;
      border-radius: 10px;
      transition: width 1.5s ease-in-out;
    }
    .skill ul li{
        list-style: none;
      }
    .resume-btn{
      margin-top: 40px;
      padding: 14px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      color: #fff;
      background: linear-gradient(90deg, #ff4d5a, #2575fc);
      transition: 0.3s;
      width: 30%;
      margin-left: 50%;
      transform: translateX(-50%);

      }
      .resume-btn button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(37,117,252,0.3);
    }

    /* Contact Section */
    .contact form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 500px;
      margin: 0 auto;
    }

    .contact input, .contact textarea {
      padding: 12px;
      border-radius: 12px;
      border: none;
      outline: none;
      font-size: 16px;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(10px);
      color: #333;
    }

    .contact input::placeholder, .contact textarea::placeholder {
      color: #555;
    }

    .contact button {
      padding: 14px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      color: #fff;
      background: linear-gradient(90deg, #ff4d5a, #2575fc);
      transition: 0.3s;
    }

    .contact button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(37,117,252,0.3);
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 25px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      color: #333;
      font-weight: 500;
    }

     @media (max-width: 1024px) {
      .hero {
        justify-content: space-between;
        flex-direction: row;
        text-align: center;
        padding-top: 100px;
        gap: 30px;
        
      }
      .hero h2 {
        font-size: 42px;
      }
      .hero-image img{
        width: 280px;
        height: 340px;
      }
     .statistics{
        width: 100%;
        position: absolute;
        top: 91%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255,255,255,0.1);
         backdrop-filter: blur(10px); 
       
        
        
    }
    .stats{
      font-size: 0.8rem;
        color: #fffdfd;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        
    }
      
    }
   

    /* responsive 768px */
    @media (max-width: 768px) {
      section {
    padding: 60px 10px;
    margin: 0 auto;
}
      nav{
        display: none;
      }
      header{
        justify-content: center;
        background: linear-gradient(90deg, #ff4d5a, #2575fc);
        padding: 5px 10px;
        border-radius: 0 0 10px 10px;
      }
      header h1{
        font-weight: 100;
        padding: 5px 5px;
        border-radius: 50px;
        background: transparent;
      }
      header h1 a{
        font-size: 2rem;
        font-family: brush script mt, cursive;
        color: #fff;
      }
 /* Navbar */
 body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f4f6fa;
    }
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(90deg, #ff4d5a, #2575fc);
      display: flex;
      justify-content: space-around;
      align-items: center;
      height: 65px;
      border-radius: 10px 10px 0 0;
      z-index: 1000;
    }

    .bottom-nav a {
      color: #a3b3c9;
      text-decoration: none;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      transition: color 0.3s;
    }

    .bottom-nav a:hover,
    .bottom-nav a.active {
      color: white;
    }

      .hero {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 30px;
        
      }
      .hero h2 {
        font-size: 38px;
      }
      .hero-text{
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-30%, -40%);
        width: 65%;
      }
      .hero-text button{
        padding: 10px 25px;
        font-size: 14px;
      }
      .hero-image img{
        width: 230px;
        height: 280px;
        left: 5%;
      }
      .hero-image img:nth-child(2){
        left: 5%;
      }
      
      .statistics{
        width: 100%;
        position: absolute;
        top: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255,255,255,0.1);
         backdrop-filter: blur(10px); 
       
        
        
    }
    .stats{
      font-size: 0.8rem;
        color: #fffdfd;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        
    }
      .projects {
      display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
      }
      .skills {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
      }
      .skill ul li{
        list-style: none;
      }
    
      .resume-btn{
      margin-top: 20px;
      padding: 14px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      color: #fff;
      background: linear-gradient(90deg, #ff4d5a, #2575fc);
      transition: 0.3s;
      width: 50%;
      margin-left: 50%;
      }
      .resume-btn button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(37,117,252,0.3);
    }
    footer{
      margin-bottom: 4.2rem;
    }

    }

    /* responsive 425px */
      @media (max-width: 430px) {
      section {
    padding: 60px 10px;
    margin: 0 auto;
}
      nav{
        display: none;
      }
      .menu-btn{
        display: flex;
        cursor: pointer;
        
      }

      .hero {
        justify-content: space-around;
        flex-direction: row;
        text-align: center;
        padding-top: 100px;
        gap: 10px;
        
      }
      .hero h2 {
        font-size: 28px;
      }
      .hero-text{
         position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
       width: 65%;
      }
      .hero-text button{
        padding: 10px 25px;
        font-size: 14px;
      }
      .hero-image img{
        width: 150px;
        height: 190px;
        position: absolute;
        top: 15%;
        left: 28%;
      }
      .hero-image img:nth-child(2){
        position: absolute;
        top: 13%;
        left: 28%;
      }
      
      .statistics{
        width: 100%;
        position: absolute;
        top: 91%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255,255,255,0.1);
         backdrop-filter: blur(10px); 
       
        
        
    }
    .stats{
      font-size: 0.5rem;
        color: #fffdfd;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        
    }

      .journey-item{
        font-size: 0.8rem;
        padding: 10px;
      }
      .projects {
      display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    font-size: 0.8rem;
    padding: 10px;
      }
      .skills {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        font-size: 0.8rem;
    padding: 10px;
      }
      .skill ul li{
        list-style: none;
      }
    
      .resume-btn{
      margin-top: 20px;
      padding: 14px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      color: #fff;
      background: linear-gradient(90deg, #ff4d5a, #2575fc);
      transition: 0.3s;
      width: 50%;
      margin-left: 50%;
      }
      .resume-btn button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(37,117,252,0.3);
    }
     .contact form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 350px;
      margin: 0 auto;
    }
    footer{
      margin-bottom: 4.2rem;
    }


    }

    /* responsive 320px */
      @media (max-width: 320px) {
      section {
        padding: 10px 10px;
        margin: 0 auto;
      }
      header{
        padding: 15px 20px;
      }
      .hero h2 {
        font-size: 24px;
      }
      .hero-text{
         position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
       width: 65%;
      }
      .hero-text button{
        padding: 10px 25px;
        font-size: 14px;
      }
      .hero-image img{
        width: 150px;
        height: 190px;
        position: absolute;
        top: 15%;
        left: 25%;
      }
      .hero-image img:nth-child(2){
        position: absolute;
        top: 13%;
        left: 25%;
      }
      .journey-item{
        font-size: 0.7rem;
        padding: 8px;
      }
      .projects {
        font-size: 0.7rem;
        padding: 5px;
      }
      .skills {
        font-size: 0.7rem;
        padding: 5px;
      }
      section h2{
        font-size: 14px;
      }
      .resume-btn{
        padding: 5px;
        margin-left: 50%;
        transform: translateX(-50%);
      }
      .contact form {
        max-width: 250px;
        margin: 0 auto;
      }
    }
