 :root {
     /* --primary: rgb(125, 110, 255); */
     --primary: rgb(147, 132, 255);
     --glass-bg: rgba(255, 255, 255, 0.1);
     --glass-border: rgba(255, 255, 255, 0.3);
     --text: #f5f5f5;
 }

 html,
 body {
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     font-family: Arial, sans-serif;
     background: #0f0f16;
     color: var(--text);
 }

 /* Glass Navbar */
 nav {
     position: fixed;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 1100px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 12px 25px;
     margin-top: 15px;
     background: var(--glass-bg);
     border: 1px solid var(--glass-border);
     backdrop-filter: blur(12px);
     border-radius: 16px;
     z-index: 10;
 }

 nav .logo {
     font-size: 1.3rem;
     font-weight: bold;
     /* color: var(--primary); */
 }

 nav ul {
     list-style: none;
     display: flex;
     gap: 25px;
     margin: 0;
     padding: 0;
 }

 nav ul li a {
     text-decoration: none;
     color: var(--text);
     font-size: 0.95rem;
 }

 a {
     text-decoration: none;
 }

 a,
 a:link,
 a:visited,
 a:hover,
 a:active {
     text-decoration: none !important;
 }


 /* Hero Section */
 .hero {
     padding-top: 140px;
     text-align: center;
 }

 .hero h1 {
     font-size: 3rem;
     font-weight: 700;
 }

 .hero span {
     color: var(--primary);
 }

 .hero p {
     max-width: 600px;
     margin: 10px auto 25px;
     font-size: 1.1rem;
     opacity: 0.8;
 }

 .btn-primary {
     background: var(--primary);
     color: white;
     padding: 12px 25px;
     border-radius: 10px;
     border: none;
     cursor: pointer;
     font-size: 1rem;
 }

 /* SVG */
 .bg-svg {
     position: absolute;
     top: 0;
     right: 0;
     width: 300px;
     opacity: 0.1;
 }

 .bg-svg2 {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 300px;
     opacity: 0.1;
 }

 /* Responsive */
 @media (max-width: 700px) {
     nav ul {
         display: none;
     }

     .hero h1 {
         font-size: 2.2rem;
     }

     .hero p {
         padding: 0 20px;
     }
 }


 /*  */

 /* Mobile menu + hamburger styles */
 .hamburger {
     display: none;
     background: transparent;
     border: none;
     padding: 8px;
     border-radius: 10px
 }

 .hamburger svg {
     filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
 }

 .mobile-menu {
     display: none;
     position: fixed;
     top: 72px;
     left: 50%;
     transform: translateX(-50%);
     width: 92%;
     max-width: 420px;
     background: rgba(15, 15, 22, 0.95);
     border: 1px solid var(--glass-border);
     backdrop-filter: blur(8px);
     padding: 16px;
     border-radius: 12px;
     flex-direction: column;
     gap: 12px;
     z-index: 999
 }

 .mobile-menu a {
     display: block;
     padding: 10px;
     border-radius: 8px;
     color: var(--text);
     text-decoration: none
 }

 .mobile-menu a:hover {
     background: rgba(255, 255, 255, 0.03)
 }

 /* show hamburger and hide desktop links on small screens */
 @media (max-width:700px) {
     .nav-links {
         display: none
     }

     .hamburger {
         display: block
     }
 }

 /* mobile menu open state */
 .mobile-menu.open {
     display: flex
 }


 .about-section {
     padding: 120px 20px;
     text-align: center;
     max-width: 900px;
     margin: auto;
 }

 .about-icon {
     margin-bottom: 20px;
 }

 .info-svg {
     width: 120px;
     height: 120px;
 }

 .about-section h2 {
     font-size: 2.4rem;
     color: var(--primary);
     margin-bottom: 12px;
 }

 .about-text {
     font-size: 1.15rem;
     line-height: 1.8;
     color: #555;
     max-width: 800px;
     margin: 0 auto 12px;
 }






 .services-section-dark {
     padding: 120px 20px;
     text-align: center;
     background: transparent;
 }

 .services-section-dark h2 {
     font-size: 2.4rem;
     margin-bottom: 40px;
     color: var(--primary);
 }

 .services-grid-dark {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 28px;
 }

 .service-card-dark {
     background: #151522;
     padding: 30px 20px;
     border-radius: 18px;
     border: 1px solid rgba(255, 255, 255, 0.09);
     backdrop-filter: blur(6px);
     box-shadow: 0 0 20px rgba(79, 70, 229, 0.08);
     transition: 0.25s ease;
 }

 .service-card-dark:hover {
     transform: translateY(-6px);
     box-shadow: 0 0 25px rgba(79, 70, 229, 0.35);
 }

 .service-icon {
     width: 65px;
     height: 65px;
     margin-bottom: 12px;
 }

 .service-card-dark h3 {
     margin-top: 10px;
     font-size: 1.2rem;
     color: #fff;
 }

 .service-card-dark p {
     margin-top: 8px;
     font-size: 0.95rem;
     color: #aaa;
     line-height: 1.6;
 }










 .why-section-dark {
     padding: 120px 20px;
     text-align: center;
     background: transparent;
 }

 .why-section-dark h2 {
     font-size: 2.4rem;
     color: var(--primary);
     margin-bottom: 40px;
 }

 .why-grid-dark {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 28px;
 }

 .why-card-dark {
     background: #11111a;
     padding: 30px 22px;
     border-radius: 18px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(6px);
     box-shadow: 0 0 18px rgba(79, 70, 229, 0.1);
     transition: 0.25s ease;
 }

 .why-card-dark:hover {
     transform: translateY(-6px);
     box-shadow: 0 0 25px rgba(79, 70, 229, 0.35);
 }

 .why-icon {
     width: 65px;
     height: 65px;
     margin-bottom: 12px;
 }

 .why-card-dark h3 {
     font-size: 1.2rem;
     color: #fff;
     margin-top: 10px;
 }

 .why-card-dark p {
     color: #bbb;
     margin-top: 8px;
     line-height: 1.6;
     font-size: 0.95rem;
 }



 /* WORK SECTION */
 .work-section-dark {
     padding: 120px 20px;
     text-align: center;
     color: #fff;
 }

 /* Header */
 .work-header h2 {
     font-size: 2.4rem;
     color: var(--primary);
     margin-bottom: 15px;
 }

 .work-header p {
     max-width: 650px;
     margin: 0 auto 40px;
     color: #bbb;
 }

 /* SVG icon */
 .work-svg {
     width: 70px;
     height: 70px;
     margin-bottom: 15px;
 }

 /* Grid */
 .work-grid-dark {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 28px;
 }

 /* Card */
 .work-card-dark {
     background: #151522;
     padding: 20px;
     border-radius: 18px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(6px);
     box-shadow: 0 0 15px rgba(79, 70, 229, 0.15);
     transition: 0.25s ease;
     text-align: left;
 }

 .work-card-dark:hover {
     transform: translateY(-6px);
     box-shadow: 0 0 25px rgba(79, 70, 229, 0.35);
 }

 /* Image Preview */
 .work-img {
     height: 160px;
     width: 100%;
     background: #222;
     border-radius: 12px;
     margin-bottom: 15px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background-size: cover;
     background-position: center;
 }

 /* Text inside card */
 .work-card-dark h3 {
     margin: 0;
     font-size: 1.15rem;
     color: #fff;
 }

 .work-card-dark p {
     margin-top: 6px;
     font-size: 0.95rem;
     color: #bbb;
     line-height: 1.6;
 }

 .work-link {
     text-decoration: none;
     color: inherit;
     display: block;
 }

 .work-link:hover .work-card-dark {
     transform: translateY(-6px);
     box-shadow: 0 0 30px rgba(79, 70, 229, 0.35);
 }


















 .contact-section-dark {
     padding: 120px 20px;
     text-align: center;
     background: transparent;
 }

 .contact-section-dark h2 {
     font-size: 2.4rem;
     color: var(--primary);
 }

 .contact-sub {
     opacity: 0.8;
     margin-bottom: 40px;
 }

 /* Wrapper */
 .contact-wrapper {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 40px;
     max-width: 1000px;
     margin: auto;
 }

 /* LEFT SIDE INFO */
 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 28px;
 }

 .info-item {
     display: flex;
     align-items: center;
     background: #151522;
     padding: 18px;
     border-radius: 16px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(6px);
     gap: 15px;
     transition: 0.3s;
 }

 .info-item:hover {
     transform: translateY(-6px);
     box-shadow: 0 0 25px rgba(79, 70, 229, 0.3);
 }

 .info-icon {
     width: 60px;
     height: 60px;
 }

 .info-item h4 {
     color: #fff;
     margin: 0;
     font-size: 1.1rem;
 }

 .info-item p {
     color: #bbb;
     margin: 4px 0 0 0;
 }

 /* FORM */
 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
     background: #151522;
     padding: 25px;
     border-radius: 16px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(6px);
 }

 .contact-form input,
 .contact-form textarea {
     padding: 12px;
     border-radius: 10px;
     background: #1b1b29;
     border: none;
     color: white;
 }

 .contact-form button {
     margin-top: 10px;
 }












 .footer-dark {
     background: #0e0e16;
     padding: 70px 20px 30px;
     margin-top: 80px;
     color: #bbb;
 }

 .footer-content {
     max-width: 1100px;
     margin: auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 40px;
 }

 /* Brand block */
 .footer-brand .footer-svg {
     width: 60px;
     height: 60px;
     margin-bottom: 12px;
 }

 .footer-brand h3 {
     font-size: 1.4rem;
     margin: 10px 0 6px;
     color: #fff;
 }

 .footer-brand p {
     color: #aaa;
     line-height: 1.6;
 }

 /* Links */
 .footer-links h4,
 .footer-social h4 {
     color: #fff;
     margin-bottom: 12px;
     font-size: 1.1rem;
 }

 .footer-links a {
     display: block;
     color: #bbb;
     text-decoration: none;
     margin: 6px 0;
     transition: 0.2s;
 }

 .footer-links a:hover {
     color: var(--primary);
 }

 /* Social */
 .social-icons {
     display: flex;
     gap: 12px;
     margin-top: 8px;
 }

 .social-svg {
     width: 26px;
     height: 26px;
     fill: white;
     opacity: 0.85;
     transition: 0.3s;
 }

 .social-svg:hover {
     transform: translateY(-4px);
     opacity: 1;
 }

 /* Bottom */
 .footer-bottom {
     text-align: center;
     margin-top: 40px;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.9rem;
     color: #777;
 }

 .footer-brand img {
     width: 60px;
     height: auto;
     margin-bottom: 12px;
     border-radius: 12px;
     object-fit: contain;
 }

 /* .footer-brand {
     display: flex;
     flex-direction: column;
     align-items: center;
 } */

 .popup {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%) translateY(40px);
     background: var(--primary);
     color: white;
     padding: 12px 20px;
     border-radius: 10px;
     opacity: 0;
     transition: 0.4s;
     font-weight: bold;
 }

 .popup.show {
     opacity: 1;
     transform: translateX(-50%) translateY(0px);
 }