 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Antic', sans-serif;
            background: #05161Fff;
            color: #9faab0;
            overflow-x: hidden;
        }

          /* Navigation */
        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            max-width: 600px;
            background: transparent;
            padding: 15px 40px;
            z-index: 1000;
            backdrop-filter: none;
            border: none;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(5, 22, 31, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(96, 165, 250, 0.3);
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 35px;
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            font-weight: 500;
            position: relative;
        }

        nav a:hover {
            color: #60a5fa;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #60a5fa;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

          /* Burger Icon */
        .burger {
             display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
            position: relative;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Fullscreen Menu */
        .fullscreen-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(5, 22, 31, 0.98);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
        }

        .fullscreen-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .fullscreen-menu ul {
            list-style: none;
            text-align: center;
        }

        .fullscreen-menu li {
            margin: 30px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .fullscreen-menu.active li {
            opacity: 1;
            transform: translateY(0);
        }

        .fullscreen-menu.active li:nth-child(1) { transition-delay: 0.1s; }
        .fullscreen-menu.active li:nth-child(2) { transition-delay: 0.2s; }
        .fullscreen-menu.active li:nth-child(3) { transition-delay: 0.3s; }
        .fullscreen-menu.active li:nth-child(4) { transition-delay: 0.4s; }
        .fullscreen-menu.active li:nth-child(5) { transition-delay: 0.5s; }

        .fullscreen-menu a {
            color: #ffffff;
            text-decoration: none;
            font-size: 2.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .fullscreen-menu a:hover {
            color: #60a5fa;
            transform: scale(1.1);
        }

        /* Content */
        .content {
            padding: 150px 20px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .content p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 20px;
            opacity: 0.9;
        }

           @media (max-width: 425px) {
            nav {
                padding: 15px 20px;
                width: 90%;
                max-width: none;
            }

            nav.scrolled {
                background: rgba(5, 22, 31, 0.95);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(96, 165, 250, 0.3);
            }

            nav ul {
                display: none;
            }

            .burger {
                display: flex;
            }

            .content h1 {
                font-size: 2rem;
            }

            .content p {
                font-size: 1rem;
            }

            .fullscreen-menu a {
                font-size: 2rem;
            }
        }
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            position: relative;
            overflow: hidden;
            background: #050505;
            padding-left: 10%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1920&q=80') center/cover no-repeat;
            opacity: 0.75;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #050505;
            mix-blend-mode: multiply;
            opacity: 0.7;
            z-index: 0;
        }

        .code-bg {
            display: none;
        }

        .hero-content {
            text-align: left;
            z-index: 1;
            animation: fadeIn 1s ease-in;
            max-width: 600px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .hero p {
            font-size: 20px;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .hero .highlight {
            color: #ffffff;
            font-weight: 600;
        }

        #typedText {
            font-weight: 600;
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: flex-start;
            margin-top: 30px;
        }

        .social-links a {
            color: #ffffff;
            font-size: 24px;
            transition: transform 0.3s;
        }

        .social-links a:hover {
            transform: translateY(-5px);
        }

        .social-icons {
            width: 30px;
            height: 30px;
            background-image: url('');
            background-size: contain;
            background-repeat: no-repeat;
        }

         .social-icons1 {
            width: 35px;
            height: 33px;
            background-image: url('');
            background-size: contain;
            background-repeat: no-repeat;
        }


         .about-btn {
            margin: 40px auto 0 auto;
            padding: 15px 40px;
            background: transparent;
            border: 1px solid #ffffff;
            border-radius: 200px;
            color: #ffffff;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Antic', sans-serif;
            display: flex;
            gap: 10px;
        }

        .about-btn:hover {
            background: #ffffff;
            color: #000000;
        }

        .chicken-logo {
            height: 20px;
            width: 20px;
            vertical-align: middle;
        }

        /* Section Styling */
        section {
            padding: 100px 10%;
            max-width: 100%;
            margin: 0 auto;
        }

        .section-title-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;

        }

        .section-title {
            text-align: center;
            font-size: 2.3rem;
            margin: 40px 0px 15px 0px ;
            color: #ffffff;
            display: inline-block;
            width: 41%;
            white-space: wrap;
        }

        .section-title2 {
            display: inline-block;
            font-size: 2.3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            white-space: nowrap;
            color: #fff;
}

        .section-title3 {
            display: inline-block;
            font-size: 2.3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            white-space: nowrap;
            color: #fff;
        }

        .section-title-mini {
            
            font-size: 1rem;
            font-weight: 600;
            color: #8957ff;
            margin-bottom: 10px;
        }

        .section-subtitle {
            text-align: center;
            color: #ffffff;
            margin-bottom: 60px;
            font-size: 17px;
            white-space: wrap;
}


    @media only screen and (max-width:1024px) {
             
            .section-title {
            width: 60%;
            line-height: 50px;
        }

    .section-subtitle {
            font-size: 18px;
            width: 80%;
            line-height: 27px;
        }
           
}

    @media only screen and (max-width:768px) {
             
        .section-title {
            width: 75%;
            line-height: 40px;
            font-size: 2.3rem;
        }
       
        .section-subtitle {
            font-size: 15px;
            width: 80%;
            line-height: 27px;
        }
}

    @media only screen and (max-width:425px) {
             
    .section-title {
            width: 100%;
            line-height: 40px;
            font-size: 31px;
}
       
    .section-subtitle {
            font-size: 15px;
            width: 100%;
            line-height: 27px;
}
    
    section {
            padding: 40px 15px 40px 15px;
            max-width: 100%;
            margin: 0 auto;
        }

        .section-title3 {
            font-size: 1.7rem;
            margin-bottom: 10px;
        }
   
}

        /* Journey & Skills */
    .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 40px;
}

    .journey h3, .skills h3 {
            font-size: 24px;
            margin-bottom: 30px;
            color: #ffffff;
}

    .journey p {
            color: #ffffff;
            line-height: 1.8;
            margin-bottom: 20px;
 }

    .journey .highlight-text {
           color: #ffffff;
            font-weight: bold;
            
 }

        /* Skills Bars */

    .skill-bar-container {
             width: 100%;
             max-width: 600px;
            margin: 25px auto;
}

    .titled {
    border-bottom: 2px solid #ffffff;
    white-space: nowrap;
    padding-bottom: 13px;
    width: 13%;
}

.skill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-text h3 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.skill-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 400;
}

.skill-percentage {
    color: #a855f7;
    font-size: 16px;
    font-weight: 700;
}

.skill-bar {
    background: #1a1a2e;
    border-radius: 8px;
    height: 12px;
    position: relative;
    overflow: hidden;
}

.skill-bar-fill {
   background: linear-gradient(90deg, #fb923c 0%, #60a5fa 50%, #ffffff 100%);
    height: 100%;
    border-radius: 8px;
    position: relative;
    animation: fillBar 1.5s ease-in-out;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

@keyframes fillBar {
    from {
        width: 0%;
    }
    to {
        width: 95%;
    }
}

/* Tablet styles */
@media (max-width: 768px) {
   
    .skill-text h3 {
        font-size: 15px;
    }

    .skill-text p {
        font-size: 12px;
    }

    .skill-icon {
        width: 20px;
        height: 20px;
    }

    .skill-percentage {
        font-size: 15px;
    }

    .skill-bar {
        height: 10px;
    }
}

/* Mobile styles */
@media (max-width: 480px) {

    .skill-text h3 {
        font-size: 14px;
    }

    .skill-text p {
        font-size: 11px;
    }

    .skill-icon {
        width: 18px;
        height: 18px;
    }

    .skill-info {
        gap: 8px;
    }

    .skill-percentage {
        font-size: 14px;
    }

    .skill-bar {
        height: 8px;
    }

    .skill-header {
        margin-bottom: 6px;
    }
}

     #bring {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
    }


    .bring-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 40px a;
    }

    .bring-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 16px;
      padding: 40px 30px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .bring-item:hover {
      background: rgba(99, 102, 241, 0.05);
      border-color: rgba(99, 102, 241, 0.6);
      transform: translateY(-4px);
    }

    .bring-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(99, 102, 241, 0.5);
      border-radius: 50%;
      font-size: 2rem;
      background: rgba(99, 102, 241, 0.1);
      transition: all 0.3s ease;
    }

    .bring-item:hover .bring-icon {
      background: rgba(99, 102, 241, 0.2);
      border-color: rgba(99, 102, 241, 0.8);
      transform: scale(1.05);
    }

    .bring-item h4 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 16px;
      text-align: center;
      color: #fff;
    }

    .bring-item p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.7);
      text-align: center;
    }

    @media (max-width: 768px) {
      .section-title2 {
        font-size: 2rem;
      }

      .bring-grid {
        grid-template-columns: 1fr;
      }

      .bring-item {
        padding: 30px 24px;
      }
    }

        /* Experience */
        .experience-item {
            background: #05161f;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid #ffffff;
            border-radius: 5px;
        }


        .exp-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .exp-title h3 {
            color: #ffffff;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .exp-company {
            color: #9faab0;
            display: flex;
            align-items: center;
            margin-top: 15px;
            gap: 6px;
        }

        .exp-company img {
            height: 22px;
            width: 22px;
        }

        .exp-dates {
            background: #000000;
            color: #ffffff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            margin-top: 15px;
            font-weight: bold;
        }

        .exp-location {
            background: #666666;
            color: #ffffff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            margin: 10px 0px 0px 3px;
            display: inline-block;
        }

        .exp-details ul {
            list-style: none;
            margin-top: 20px;
        }

        .exp-details li {
            color: #9faab0;
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
            line-height: 20px;
        }

        .exp-details li:before {
            content: "▹";
            position: absolute;
            left: 0;
            color: #9faab0;
            font-size: 20px;
        }

        .exp-subtitle {
            display: inline-flex;
            gap: 15px;
            color: #ffffff;
            font-weight: bold;
            margin-top: 15px;
            letter-spacing: 1px;
        }

        .exp-subtitle img {
       
            height: 22px;
            width: 22px;

        }

        .Inner-designate {
            line-height: 27px;
        }


        .download-btn {
            display: block;
            margin: 30px auto;
            padding: 15px 40px;
            background: transparent;
            border: 1px solid #ffffff;
            border-radius: 10px;
            color: #ffffff;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Antic', sans-serif;
        }

        .download-btn:hover {
            background: #ffffff;;
            color: #000000;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .bring-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero {
                padding-left: 5%;
                padding-right: 5%;
            }

            .hero h1 {
                font-size: 40px;
            }

            nav ul {
                gap: 20px;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 425px) {
            .bring-grid {
                grid-template-columns: 1fr;
            }
        
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 10px;
        }

            .hero .highlight {
            color: #ffffff;
            font-weight: 600;
        }
        
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: rgba(20, 20, 35, 0.8);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
        }

        .project-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .project-content {
            padding: 24px;
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .project-title {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
        }

        .project-year {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #a0a0b0;
            font-size: 14px;
        }

        .calendar-icon {
            width: 14px;
            height: 14px;
        }

        .project-description {
            color: #b0b0c0;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .tech-badge {
            background: rgba(124, 58, 237, 0.2);
            color: #a78bfa;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
        }

        .more-badge {
            background: rgba(100, 100, 120, 0.2);
            color: #c0c0d0;
        }

        .project-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .demo-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #7c3aed;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.3s ease;
        }

        .demo-button:hover {
            background: #5017a5;
        }

        .external-icon {
            width: 16px;
            height: 16px;
        }

        .status-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: #a0a0b0;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .status-active {
            background: #10b981;
            box-shadow: 0 0 8px #10b981;
        }

        .status-live {
            background: #10b981;
            box-shadow: 0 0 8px #10b981;
        }

        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

         .contact-footer {
            width: 100%;
            background: #1a1a2e;
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 40px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .left-section h2 {
            color: #ffffff;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .left-section p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 300;
        }

        .center-section {
            display: flex;
            gap: 20px;
        }

        .social-icon {
            width: 44px;
            height: 44px;
            background: #8957ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: #ffffff;
        }

        .right-section {
            display: flex;
            align-items: center;
        }

        .mail-button {
            background: #8957ff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .mail-button:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .mail-button svg {
            width: 18px;
            height: 18px;
            stroke: #ffffff;
            fill: none;
        }

        .out-spacing {
            padding: 0px;
            max-width: 100%;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .contact-footer {
                flex-direction: row;
                gap: 20px;
                padding: 30px 20px;
                text-align: center;
            }

            .left-section h2 {
                font-size: 24px;
            }
        }
         @media (max-width: 425px) {
            .contact-footer {
                flex-direction: column;
                gap: 20px;
                padding: 20px 10px;
                text-align: center;
            }

            .social-icon {
            width: 30px;
            height: 30px;
            background: #8957ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

            .mail-to {

                padding: 10px 20px
            }

            .left-section h2 {
                font-size: 24px;
            }
        }

        
        