
  /* Top Meno bar scripting  */
        :root {
            --primary-color: #22c55e;
            --background-color: #ffffff;
            --text-color: #333333;
            --border-color: #e5e7eb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            padding-top: 60px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header {
            position: fixed;
            top: 20px;
            left: 0;
            right: 0;
            background-color: var(--background-color);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-color);
            text-decoration: none;
        }

        .nav {
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            list-style-type: none;
        }

        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            padding: 10px 15px;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
            margin-left: 20px;
        }

        .btn {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-outline {
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-icon,
        .menu-icon::before,
        .menu-icon::after {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            position: relative;
            transition: all 0.3s ease-in-out;
        }

        .menu-icon::before,
        .menu-icon::after {
            content: "";
            position: absolute;
        }

        .menu-icon::before {
            top: -8px;
        }

        .menu-icon::after {
            bottom: -8px;
        }

        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 60px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 60px);
                flex-direction: column;
                background-color: var(--background-color);
                transition: left 0.3s ease-in-out;
            }

            .nav.active {
                left: 0;
            }

            .nav-list {
                flex-direction: column;
                width: 100%;
            }

            .nav-link {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid var(--border-color);
            }

            .nav-buttons {
                flex-direction: column;
                width: 100%;
                margin: 20px 0;
                padding: 0 20px;
            }

            .btn {
                width: 100%;
                text-align: center;
                margin-bottom: 10px;
            }

            .menu-toggle {
                display: block;
            }

            .menu-toggle.active .menu-icon {
                background-color: transparent;
            }

            .menu-toggle.active .menu-icon::before {
                top: 0;
                transform: rotate(45deg);
            }

            .menu-toggle.active .menu-icon::after {
                bottom: 0;
                transform: rotate(-45deg);
            }
        }

        main {
            padding: 20px;
        }

        /* Top Meno bar scripting  */


        /* mein-section  scripting  */
       

        .hero-section {
            min-height: 100vh;
            padding: 2rem;
            background: white;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 0L93.3 25V75L50 100L6.7 75V25L50 0Z" fill="none" stroke="%23FFB800" stroke-width="0.5" opacity="0.1"/></svg>');
            opacity: 0.1;
            z-index: 0;
        }

        .content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            width: 100%;
        }

        .text-content {
            flex: 1;
            z-index: 1;
        }

        .greeting {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .name {
            font-size: 3.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
        }

        .name span {
            color: #22c55e;
        }


        .description {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hire-btn {
            background: #22c55e;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }

        .hire-btn:hover {
            background: transparent;
            color: #22c55e;
            border: 0.20px solid  #22c55e;
            
            
           
            
        }

        .contact-info {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .contact-item {
            color: #666;
        }

        .contact-item h4 {
            margin-bottom: 0.5rem;
            color: #333;
        }

        .video-container {
            flex: 1;
            max-width: 300px;
            z-index: 1;
        }

        video {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        @media (max-width: 968px) {
            .content {
                flex-direction: column;
                text-align: center;
            }

            .contact-info {
                justify-content: center;
            }

            .name {
                font-size: 2.5rem;
            }

            .typewriter {
                font-size: 1.5rem;
            }

            .video-container {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .contact-info {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
   
        /* mein section scripting  */


        /* container About section   */
      
        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 4rem;
            min-height: 100vh;
        }

        .left-section {
            position: relative;
            flex: 1;
        }

        .profile-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            object-fit: cover;
        }

        .stat-box {
            background: rgba(34, 197, 94, 0.1) ;
            backdrop-filter: blur(10px);
            padding: 1rem;
            border-radius: 12px;
            position: absolute;
            animation: float 3s ease-in-out infinite;
        }

        .stat-box.years {
            top: 10%;
            left: 0;
            animation-delay: 0s;
        }

        .stat-box.projects {
            bottom: 20%;
            right: 0;
            animation-delay: 1.5s;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: #22c55e;
        }

        .stat-text {
            font-size: 0.9rem;
            color: #333;
        }

        .right-section {
            flex: 1;
        }

        .subtitle {
            color: #22c55e;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        p {
            color: #cccccc;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hire-button {
            background: transparent;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            border: 2px solid #22c55e;
            color: #333;
        }

        .hire-button:hover {
            transform: translateY(-3px);
            background: #22c55e;
            color: #f0f0f0;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        @media (max-width: 968px) {
            .hero {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
                padding: 4rem 2rem;
            }

            .left-section {
                width: 100%;
            }

            .profile-image {
                max-width: 300px;
            }

            h1 {
                font-size: 2.5rem;
            }

            .stat-box.years {
                left: 10%;
            }

            .stat-box.projects {
                right: 10%;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 2rem 1rem;
            }

            h1 {
                font-size: 2rem;
            }

            .profile-image {
                max-width: 250px;
            }

            .stat-box {
                padding: 0.75rem;
            }

            .stat-number {
                font-size: 1.25rem;
            }

            .stat-text {
                font-size: 0.8rem;
            }}

        /* container About section   */

        

         /* project section   */
         
        .container-project {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            margin-top: 50px;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }

        .filter-button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            background: #f5f5f5;
            transition: all 0.3s ease;
        }

        .filter-button.active {
            background: #22c55e;
            color: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .project-info {
            padding: 20px;
        }

        .project-category {
            color: #2563eb;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .project-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
                margin-bottom: 15px;
            }

            .filter-buttons {
                display: none;
                flex-direction: column;
                align-items: stretch;
            }

            .filter-buttons.show {
                display: flex;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

          /* project section   */

          /* skill section */
        
          .skills-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: #4CAF50;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            justify-items: center;
        }

        .skill-box {
            width: 100%;
            max-width: 350px;
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background: #f5f5f5;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .skill-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .skill-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            padding: 1rem;
            border-radius: 50%;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 3s ease-in-out infinite;
        }

        .skill-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .skill-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .skill-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .skills-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
            }

            .skill-box {
                padding: 1.5rem;
            }

            .skill-icon {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .skills-section {
                padding: 2rem 1rem;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            .skill-box {
                max-width: 100%;
            }
        }
         /* skill section */


          /* Pricing section  */
          .pricing-section {
            max-width: 100%;
            width: 100%;
            padding: 100px;
           
        }
        
        .pricing-label {
            color: #22c55e;
            font-size: 0.875rem;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #222;
            margin-bottom: 2rem;
        }
        
        .pricing-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            justify-content: center;
        }
        
        .tab-btn {
            background: transparent;
            border: 1px solid #333;
            color: #222;
            padding: 0.75rem 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .tab-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .tab-btn.active {
            background: #22c55e;
            border-color: #22c55e;
            color: #ffffff;
        }
        
        .pricing-card {
            background-color: #f0f8ff;
            border-radius: 8px;
            padding: 50px;
        }
        
        .card-header h2 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #222;
        }
        
        .subtitle {
            color: #666;
            font-size: 0.875rem;
        }
        
        .description {
            color: #666;
            margin: 1.5rem 0;
            line-height: 1.6;
        }
        
        .features-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #222;
        }
        
        .check {
            color: #4CAF50;
            font-size: 1.2rem;
        }
        
        .cross {
            color: #ff0044;
            font-size: 1.2rem;
        }
        
        .price {
            font-size: 2rem;
            color: #22c55e;
            margin: 2rem 0;
            font-weight: bold;
        }
        
        .order-btn {
            width: 100%;
            background: #22c55e;
            color: #fff;
            border: none;
            padding: 1rem;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1rem;
            transition: background 0.3s ease;
        }
        
        .order-btn:hover {
            background: transparent;
            border: 2px solid #22c55e;
            color: #222;
        }
        
        .arrow {
            font-size: 1.2rem;
        }
        
        .card-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            color: #666;
            font-size: 0.875rem;
        }
        
        .footer-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .icon {
            font-size: 1.1rem;
        }
        
        @media (max-width: 768px) {
            .features-list {
                grid-template-columns: 1fr;
            }
        
            .pricing-tabs {
                flex-direction: column;
            }
        
            .tab-btn {
                width: 100%;
            }
        
            .pricing-card {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 1rem;
            }
        
            h1 {
                font-size: 2rem;
            }
        
            .pricing-card {
                background-color: transparent;
                padding: 0px;
            }
        }
         /* Pricing section  */


       /* Footer Section  */
       
.footer {
    display: flex;
    flex-flow: row wrap;
    padding: 30px 30px 20px 30px;
    color: #2f2f2f;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    margin-top: 150px;
  }
  
  .footer > * {
    flex:  1 100%;
  }
  
  .footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
  }
  
  .footer__logo {
    font-weight: 400;
    font-size: 2rem;
  }
  
  .footer__addr h2 {
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
  }
  
  .nav__title {
    font-weight: 400;
    font-size: 15px;
  }
  
  .footer address {
    font-style: normal;
    color: #999;
  }
  
  .footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: rgb(33, 33, 33, 0.07);
    border-radius: 100px;
    color: #2f2f2f;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
  }
  
  .footer ul {
    list-style: none;
    padding-left: 0;
  }
  
  .footer li {
    line-height: 2em;
  }
  
  .footer a {
    text-decoration: none;
  }
  
  .footer__nav {
    display: flex;
    flex-flow: row wrap;
  }
  
  .footer__nav > * {
    flex: 1 50%;
    margin-right: 1.25em;
  }
  
  .nav__ul a {
    color: #999;
  }
  
  .nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
  }
  
  .legal {
    display: flex;
    flex-wrap: wrap;
    color: #999;
  }
    
  .legal__links {
    display: flex;
    align-items: center;
  }
  
  .heart {
    color: #2f2f2f;
  }
  
  @media screen and (min-width: 24.375em) {
    .legal .legal__links {
      margin-left: auto;
    }
  }
  
  @media screen and (min-width: 40.375em) {
    .footer__nav > * {
      flex: 1;
    }
    
    .nav__item--extra {
      flex-grow: 2;
    }
    
    .footer__addr {
      flex: 1 0px;
    }
    
    .footer__nav {
      flex: 2 0px;
    }
  }
  
    /*************footer End*****************/


    /* Dashboard Ka coding */
    /* Purana CSS waisa hi rahega */

/* Ye naya CSS dashboard ke link ke liye hai */
nav ul li a[href="dashboard.php"] {
    background-color: #00ff7f;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

nav ul li a[href="dashboard.php"]:hover {
    background-color: #00cc66;
}
    
    /* Dashboard Ka coding */