 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     display: flex;
     min-height: 100vh;
     font-family: Arial, sans-serif;
     background: #f4f4f4;
 }


 /* =========header=========== */
 header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 12px 20px;
     background: #111;
     color: #fff;
     position: sticky;
     top: 0;
     z-index: 999;
     position: fixed;
     width: 100%;
 }

 .logo {
     font-size: 22px;
     font-weight: 700;
 }

 /* hamburger */
 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
 }

 .hamburger span {
     width: 30px;
     height: 2px;
     background: #fff;
     border-radius: 5px;
 }

 /* nav */
 #navbar ul {
     display: flex;
     gap: 25px;
     list-style: none;
 }

 #navbar li {
     cursor: pointer;
     /* font-size: 26px; */
 }

 @media (min-width: 1000px) {
     header {
         display: none;

     }

     .hero-se {
         height: 80vh;
         background-image: url(img/2.svg);
     }
 }



 .hero-se {
     background-image: url(img/2.svg);
     background-position: bottom center;
     background-repeat: no-repeat;
     background-size: contain;
     background-size: cover;
 }




 @media (max-width: 1000px) {
     .sidebar {
         display: none;
     }

     .main-content {
         margin: 0%;

     }
 }

 /* ================= MOBILE ================= */
 @media (max-width: 1000px) {


     /* 
     #navbar {
         position: absolute;
         top: 130px;
         right: 0;
         width: auto;
         background: #111;
         transform: translateX(100%);
         transition: 0.3s ease;
     } */


     #navbar ul {
         flex-direction: column;
         gap: 0;
     }

     #navbar li {
         padding: 14px 20px;
         border-bottom: 1px solid #222;
     }
 }



 /* Sidebar */
 .sidebar {
     width: 260px;
     background: #0f0f14;
     color: #fff;
     padding: 20px;
     position: fixed;
     top: 0;
     left: 0;
     height: 100vh;
 }

 /* Main content */
 .main-content {
     margin-left: 260px;
     /* padding: 30px; */
     flex: 1;
     background: #ffffff;
     min-height: 100vh;
 }

 .sidebar {
     width: 260px;
     height: 100%;
     background: #0f0f14;
     color: #fff;
     padding: 24px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     font-family: Arial, sans-serif;
 }

 /* Brand */
 .sidebar-brand {
     margin-bottom: 30px;
 }

 .brand-title {
     font-size: 28px;
     font-weight: bold;
     text-transform: lowercase;
     color: #bc1be7;
 }

 .brand-tagline {
     font-size: 18px;
     opacity: 0.7;
     margin-top: 20px;
 }

 /* Navigation */
 .sidebar-nav {
     flex: 1;
 }

 .nav-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .nav-item {
     padding: 10px 0;
     cursor: pointer;
     font-size: 15px;
     transition: color 0.3s;
     color: white;
     text-decoration: none;
 }

 .nav-item a {
     color: white;
     text-decoration: none;
 }

 .nav-item li {
     color: white;
 }


 .nav-item:hover {
     color: #bc1be7;
 }

 .nav-item a:hover {
     color: #bc1be7;
 }

 /* Submenu */
 .has-submenu {
     margin-top: 10px;
 }

 .submenu {
     list-style: none;
     padding-left: 15px;
     margin-top: 8px;
 }

 .submenu li {
     font-size: 13px;
     padding: 6px 0;
     opacity: 0.8;
     cursor: pointer;
 }

 .submenu li:hover {
     color: #bc1be7;
     opacity: 1;
 }

 .submenu a:hover {
     color: #bc1be7;
     opacity: 1;
 }

 /* Footer */
 .sidebar-footer hr {
     border: none;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     margin: 20px 0;
 }

 .social-links {
     list-style: none;
     padding: 0;
     display: flex;
     gap: 15px;
     font-size: 14px;
 }

 .social-links li,
 .social-links a {
     cursor: pointer;
     opacity: 0.8;
     color: #ffffff;
     text-decoration: none;
 }

 .social-links li:hover {
     color: #bc1be7;
     opacity: 1;
 }

 .social-links a:hover {
     color: #bc1be7;
     opacity: 1;
 }

 /* ============================ */
 .staky-card {
     position: relative;
 }

 .staky-card:hover {
     background-color: #d8e1ff;
 }

 .icon {
     position: absolute;
     top: 10px;
     right: 10px;
     z-index: 10;
     cursor: pointer;
     color: #555;
 }

 .icon:hover {
     color: #ff3a3a;
 }

 .icon {
     position: fixed;
     background: #fff;
     padding: 6px;
     border-radius: 50%;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
 }


 .card-wrapper {
     display: flex;
     gap: 20px;
     padding-top: 40px;
     background: #f8f9fc;
     height: 130px;
     justify-content: space-evenly;

 }

 /* cards */
 .staky-card {
     background: #eee;
     width: 340px;
     padding: 14px 16px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

     transform: translateY(-80%);
     /* 🔥 60% bahar */
     /* margin-left: 100px; */
 }

 /* text */
 .staky-card .name {
     font-weight: 600;
     margin-bottom: 4px;
 }

 .staky-card .desc {
     font-size: 14px;
     color: #555;
 }

 /* ---new ================ */




 .hero {
     display: flex;
     align-items: center;
     justify-content: space-around;
     padding: 80px 60px;
     padding: 160px 60px;
     gap: 40px;

 }

 /* Left Content */
 .hero-left {
     max-width: 520px;
 }

 .hero-left h1 {
     font-size: 36px;
     margin-bottom: 20px;
     line-height: 1.2;

 }


 .hero-left p {
     font-size: 16px;
     line-height: 1.6;
     opacity: 0.85;
     margin-bottom: 30px;
 }

 .hero-btn {
     padding: 12px 28px;
     background: #bc1be7;
     color: #fff;
     border: none;
     border-radius: 6px;
     font-size: 15px;
     cursor: pointer;
     transition: 0.3s;
     text-decoration: none;
 }

 .hero-btn:hover {
     background: #a214cc;
 }

 /* Right Box */
 .hero-right {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .hero-box {
     width: 100%;
     /* height: 320px; */
     background: rgb(201, 191, 191);
     border-radius: 14px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
 }

 .hero-box svg {
     width: 500px;
     height: 300px;

 }

 .hero-svg {
     cursor: pointer;
 }

 /* 🔥 Path animation */
 .draw-path {
     stroke-dasharray: 800;
     stroke-dashoffset: 800;
     animation: drawLine 3s ease-in-out infinite;
     transition: stroke 0.3s, stroke-width 0.3s;
 }

 /* ✨ Glow pulse */
 @keyframes drawLine {
     0% {
         stroke-dashoffset: 800;
         opacity: 0.4;
     }

     50% {
         opacity: 1;
     }

     100% {
         stroke-dashoffset: 0;
         opacity: 0.4;
     }
 }

 /* 🎯 Hover effect */
 .hero-svg:hover .draw-path {
     stroke: #080a0a;
     stroke-width: 4;
 }

 /* ✨ Text animation */
 .svg-text {
     font-family: Arial, sans-serif;
     font-size: 18px;
     fill: blue;
     opacity: 0;
     animation: textFade 3s infinite;
 }

 .t1 {
     animation-delay: 0.6s;
 }

 .t2 {
     animation-delay: 1.2s;
 }

 .t3 {
     animation-delay: 1.8s;
 }

 .t4 {
     animation-delay: 2.4s;
 }

 @keyframes textFade {
     0% {
         opacity: 0;
     }

     30% {
         opacity: 1;
     }

     80% {
         opacity: 1;
     }

     100% {
         opacity: 0;
     }
 }

 .hero-svg:hover .svg-text {
     fill: #000000;
 }


 @media (max-width: 768px) {
     .hero {
         flex-direction: column;
         padding: 65px 20px;
     }

     .hero-left h1 {
         font-size: 34px;
     }

 }




 /* ================================ */


 /* project */
 .projects-section {
     padding: 80px 8%;
     background: #f8f9fc;
 }

 .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #222;
     margin-bottom: 10px;
 }

 .section-subtitle {
     color: #666;
     margin-bottom: 50px;
 }

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

 /* Card */
 .project-card {
     background: #fff;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .project-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
 }

 /* Image */
 .project-img img {
     width: 100%;
     height: 220px;
     object-fit: cover;
 }

 /* Content */
 .project-content {
     padding: 25px;
     text-align: left;
 }

 .project-content h2 {
     font-size: 1.4rem;
     margin-bottom: 10px;
     color: #222;
 }

 .project-content p {
     font-size: 0.95rem;
     color: #555;
     margin-bottom: 20px;
 }

 /* Button */
 .project-btn {
     display: inline-block;
     padding: 10px 22px;
     background: linear-gradient(135deg, #6a11cb, #2575fc);
     color: #fff;
     text-decoration: none;
     border-radius: 25px;
     font-size: 0.9rem;
     transition: background 0.3s ease;
 }

 .project-btn:hover {
     background: linear-gradient(135deg, #2575fc, #6a11cb);
 }

 .projects-container {
     display: flex;
     gap: 30px;
     overflow-x: auto;
     /* horizontal scroll */
     padding-bottom: 10px;
     scroll-behavior: smooth;
 }

 /* scrollbar optional clean look */
 .projects-container::-webkit-scrollbar {
     height: 8px;
 }

 .projects-container::-webkit-scrollbar-thumb {
     background: #ccc;
     border-radius: 10px;
 }

 .project-card {
     min-width: 300px;
     flex-shrink: 0;
     width: 350px;
 }



 /* ////////////////////////////////////////////////////////// */
 .live-card {
     position: relative;
     background: #eee;
 }

 .live {
     padding: 4px 14px;
     background: aqua;
     position: absolute;
     top: -12px;
     left: 20px;
     z-index: 999;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 600;
 }


 /* ================= MOBILE ONLY ================= */
 @media (max-width: 1000px) {

     /* Body */
     body {
         flex-direction: column;
     }

     /* Header visible, sidebar hidden */
     header {
         display: flex;
         padding: 0px 12px;
     }

     .sidebar {
         display: none;
     }

     .main-content {
         margin-left: 0;
         padding: 0px;
     }

     /* Navbar mobile */
     .hamburger {
         display: flex;
     }

     #navbar {
         position: absolute;
         top: 60px;
         right: 0;
         width: auto;
         background: #111;
         transform: translateX(100%);
         transition: 0.3s ease;
     }

     #navbar.active {
         transform: translateX(0);
     }

     #navbar ul {
         flex-direction: column;
     }

     #navbar li {
         padding: 14px 20px;
         border-bottom: 1px solid #222;
     }


     .hero {
         flex-direction: column;
         align-items: flex-start;
         padding: 40px 20px;
     }

     .hero-left {
         max-width: 100%;
         margin-top: 60px;
     }

     .hero-left h2 {
         font-size: 42px;
         margin-bottom: 20px;
     }


     .hero-right {
         width: 100%;
         margin-top: 30px;
     }

     .hero-box {
         height: 260px;
     }

     /* Sticky cards */
     .card-wrapper {
         flex-direction: column;
         height: auto;
         gap: 15px;
         padding: 20px 0;
     }

     .staky-card {
         width: 100%;
         transform: translateY(0);
     }

     /* Projects */
     .projects-section {
         padding: 17px 20px;
     }

     .projects-container {
         gap: 20px;
     }

     .project-card {
         min-width: 280px;
     }

     .project-img {
         height: 130px;
     }

     .project-img img {
         height: 130px;
         height: 100%;
     }

     .hero-box svg {
         width: 100%;
     }

     .section-title {
         font-size: 1.7rem;
         font-weight: 700;
         margin-bottom: 6px;
     }




     .project-content {
         padding: 8px;
         text-align: left;
     }

     .project-card {
         min-width: 300px;
         flex-shrink: 0;
         width: 300px;
     }

     .live {
         padding: 4px 14px;
         background: aqua;
         position: absolute;
         top: -128px;
         z-index: 999;
         border-radius: 20px;
         font-size: 14px;
         font-weight: 600;
     }

     .project-btn {
         display: inline-block;
         padding: 6px 16px;
         background: linear-gradient(135deg, #6a11cb, #2575fc);
         color: #fff;
         text-decoration: none;
         border-radius: 25px;
         font-size: 0.7rem;
         transition: background 0.3s ease;
     }


     .project-content p {
         font-size: 0.90rem;
         color: #555;
         margin-bottom: 20px;
     }

     .project-content h2 {
         font-size: 1.1rem;
         margin-bottom: 10px;
         color: #222;
     }
 }