 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;  /* Scrollbar ki width - aap 6px bhi kar sakte hain */
}

::-webkit-scrollbar-track {
    background: #1a1a1a;  /* Dark background */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #59b3d6;  /* Aapki website ke green color jaisa */
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: #59b3d6;  /* Hover par light green */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Navigation height ke liye */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    background: #000000 !important;
    color: #C3C3C3 !important;
    padding-top: 80px; /* Navbar height ke liye padding */
}

        /* Navigation - Fixed Position */
.navbar{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1030 !important; /* High z-index */
    border-bottom: 1px solid #334155 !important;
}

.navbar-brand {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem !important;
    font-weight: 700;
    color: white !important;
    text-decoration: none;
}

.navbar-nav {
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: #e2e8f0 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    position: relative;
    text-decoration: none;
}

        /* Hover line effect - Right to Left */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.5s ease;
}

.nav-link:hover::after {
    width: 90%;
    right: auto;
    left: 0;
}

.nav-link:hover {
    color: #fff !important;
}

.resume-btn {
    background: #3b82f6;
    color: white !important;
    padding: 0.8rem 2rem !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.resume-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    /* margin-top removed kyunki body mein padding hai */
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
    line-height: 1.8;
}

/* Override Bootstrap Defaults */
.navbar-toggler {
    border: none !important;
    padding: 4px 8px !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 25px;
    height: 20px;
    position: relative;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
    
section {
    padding-top: 80px;
    margin-top: -80px;
}
    
#home, #about, #projects, #skills, #contact {
    scroll-margin-top: 80px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    top: 8px;
}

.navbar-toggler-icon::after {
    top: 16px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* main about work */

.frontend{
    font-size: 30px;
    /* text-align: center; */
    margin-top: 120px;
}

.main-skill{
    margin-top: 30px;
    /* background-color: yellow; */
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 40px;
}


.skills-ten{
    display: grid;
    border-radius: 8px;
    border: 2px solid rgb(250, 250, 250);
    width: 210px;
    padding: 10px;
}

.skills-ten p{
   text-align: center;
   line-height: 1.1;
   font-size: 14px;
}

.skills-twenty{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 9px;
}

.skills-twenty h1{
    font-size: 19px;
    font-weight: 600;
}

.skills-twenty img{
    width: 60px;
    height: 60px;
}

#myj{
    margin-top: 100px;
}

.journey-section {
    display: flex;
    justify-content: start;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}

.journey-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: yellow;
}

.journey-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.journey-item {
    color: #ffffff;
    background: rgb(102, 98, 98);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease;
}

.journey-item:hover {
    transform: translateX(10px);
}

.journey-item h3 {
    color: #d2d3d3;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.journey-item p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1rem;
}

#letss{
    text-align: center;
    margin-top: 50px;
}

.collab-creative{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
}

.collab-creative p{
    font-size: 20px;
}

.collab-creative button a{
    text-decoration: none;
    color: rgb(255, 217, 217);
    font-weight: 500;
    font-size: 20px;
}

.collab-creative button{
    background-color: #589eff;
    padding: 10px 30px;
    border: none;
    border-radius: 10px;
}

#linee{
     width: 600px;
     height: 3px;
     background-color: rgb(170, 170, 206);
}

#id-laravel{
    padding: 8px 8px !important
}

#php{
    padding: 8px 8px !important
}

#javascript {
    padding: 10px 5px !important;
}

#sql-server{
    padding: 10px 5px !important;
}

.about-oon{
    margin-top: 80px !important;
}


