 :root {
     --bg: #070b1d;
     --bg2: #11153a;
     --card: rgba(255, 255, 255, .08);
     --card2: rgba(255, 255, 255, .04);
     --line: rgba(255, 255, 255, .10);
     --text: #ffffff;
     --muted: rgba(255, 255, 255, .75);
     --muted2: rgba(255, 255, 255, .55);
     --purple: #7c4dff;
     --blue: #1f7cff;
     --cyan: #00d4ff;
     --shadow: 0 30px 70px rgba(0, 0, 0, .45);
     --radius: 24px;
     --container: 1200px;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text);
     background:
         radial-gradient(circle at 10% 15%, rgba(124, 77, 255, .25), transparent 35%),
         radial-gradient(circle at 90% 20%, rgba(0, 212, 255, .15), transparent 30%),
         linear-gradient(180deg, var(--bg), var(--bg2));
     overflow-x: hidden;
     line-height: 1.6;
     letter-spacing: -0.01em;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 .container {
     width: min(100% - 3rem, var(--container));
     margin-inline: auto;
 }

 /* Navigation Header */
 .header {
     position: sticky;
     top: 0;
     z-index: 1000;
     background: rgba(7, 11, 29, .75);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(255, 255, 255, .08);
     transition: all 0.3s ease;
 }

 .nav {
     min-height: 84px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
 }

 .brand {
     display: flex;
     align-items: center;
     gap: 14px;
     font-weight: 800;
     letter-spacing: -.04em;
 }

 .brandlogo {
     width: 46px;
     height: 46px;
     border-radius: 14px;
     display: grid;
     place-items: center;
     color: #fff;
     background: linear-gradient(135deg, var(--purple), var(--cyan));
     box-shadow: 0 12px 30px rgba(124, 77, 255, 0.3);
     font-weight: 800;
     font-size: 1.2rem;
 }

 .brandtext {
     display: flex;
     flex-direction: column;
     line-height: 1.1;
     font-size: 1.1rem;
 }

 .brandtext span {
     font-size: .8rem;
     color: var(--muted2);
     font-weight: 500;
     letter-spacing: 0.02em;
     margin-top: 2px;
 }

 .navlinks {
     display: flex;
     gap: 32px;
     list-style: none;
     align-items: center;
 }

 .navlinks a {
     color: var(--muted);
     font-size: .95rem;
     font-weight: 500;
     transition: color .25s ease;
     position: relative;
     padding: 6px 0;
 }

 .navlinks a:hover,
 .navlinks a.active {
     color: #fff;
 }

 .navlinks a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, var(--purple), var(--cyan));
     transition: width 0.3s ease;
 }

 .navlinks a:hover::after,
 .navlinks a.active::after {
     width: 100%;
 }

 /* Interactive Buttons */
 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 50px;
     padding: 0 26px;
     border-radius: 999px;
     border: 1px solid transparent;
     font-weight: 600;
     font-size: 0.95rem;
     transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
     cursor: pointer;
 }

 .btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 35px rgba(124, 77, 255, 0.35);
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--purple), var(--blue));
     color: #fff;
 }

 .btn-ghost {
     background: rgba(255, 255, 255, .05);
     border-color: var(--line);
     color: #fff;
 }

 .btn-ghost:hover {
     background: rgba(255, 255, 255, .12);
     border-color: rgba(255, 255, 255, 0.3);
 }

 /* Hero Layout */
 .hero {
     padding: 140px 0 90px;
     position: relative;
     overflow: hidden;
 }

 .hero-grid {
     position: relative;
     display: grid;
     grid-template-columns: 1.05fr 0.95fr;
     gap: 56px;
     align-items: center;
 }

 .hero-left {
     z-index: 1;
 }

 .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 16px;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, .12);
     background: rgba(255, 255, 255, .05);
     color: var(--cyan);
     font-size: .75rem;
     text-transform: uppercase;
     letter-spacing: .1em;
     font-weight: 700;
     margin-bottom: 24px;
 }

 .hero h1 {
     margin-bottom: 24px;
     font-size: clamp(3rem, 5.5vw, 4.6rem);
     line-height: 1.08;
     letter-spacing: -.04em;
     font-weight: 800;
 }

 .hero p {
     max-width: 540px;
     color: var(--muted);
     font-size: 1.15rem;
     margin-bottom: 40px;
     line-height: 1.7;
 }

 .hero-actions {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
 }

 /* Hero Showcase Area */
 .hero-right {
     position: relative;
     min-height: 550px;
     padding: 16px;
     border-radius: var(--radius);
     border: 1px solid rgba(255, 255, 255, .12);
     background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
     box-shadow: var(--shadow);
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     gap: 20px;
 }

 .hero-img-wrapper {
     position: relative;
     width: 100%;
     height: 380px;
     border-radius: 18px;
     overflow: hidden;
 }

 .hero-mainimg {
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: saturate(1.15) contrast(1.05);
 }

 .hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, transparent, rgba(7, 11, 29, 0.65));
     pointer-events: none;
 }

 /* Magnetic Floating Badges */
 .floating-card {
     position: absolute;
     padding: 14px 20px;
     border-radius: 18px;
     background: rgba(10, 14, 34, .85);
     border: 1px solid rgba(255, 255, 255, .18);
     backdrop-filter: blur(14px);
     -webkit-backdrop-filter: blur(14px);
     box-shadow: 0 20px 45px rgba(0, 0, 0, .4);
     transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .floating-card:hover {
     transform: translateY(-4px) scale(1.03);
 }

 .fc1 {
     left: -15px;
     top: 35px;
 }

 .fc2 {
     right: -15px;
     top: 165px;
 }

 .fc3 {
     left: 35px;
     bottom: 185px;
 }

 .floating-card strong {
     display: block;
     font-size: 0.95rem;
     margin-bottom: 2px;
     color: #fff;
     font-weight: 700;
 }

 .floating-card span {
     color: var(--muted2);
     font-size: .8rem;
     font-weight: 500;
 }

 /* Micro Stats Row */
 .hero-mini {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 14px;
 }

 .mini-card {
     padding: 18px;
     border-radius: 16px;
     border: 1px solid rgba(255, 255, 255, .06);
     background: rgba(255, 255, 255, .02);
     transition: background 0.3s ease;
 }

 .mini-card:hover {
     background: rgba(255, 255, 255, 0.06);
 }

 .mini-card strong {
     display: block;
     font-size: 1.05rem;
     margin-bottom: 4px;
     color: #fff;
     font-weight: 700;
 }

 .mini-card span {
     color: var(--muted2);
     font-size: .85rem;
 }

 /* Layout Sections */
 .section {
     padding: 120px 0;
 }

 .section-head {
     max-width: 720px;
     margin-bottom: 64px;
 }

 .section-head h2 {
     font-size: clamp(2.4rem, 4.5vw, 3.4rem);
     line-height: 1.15;
     letter-spacing: -.03em;
     font-weight: 800;
     margin-top: 14px;
 }

 .section-head p {
     margin-top: 18px;
     color: var(--muted);
     font-size: 1.15rem;
     line-height: 1.65;
 }

 .grid-2 {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 28px;
 }

 .card {
     padding: 40px;
     border-radius: var(--radius);
     border: 1px solid var(--line);
     background: linear-gradient(180deg, var(--card), var(--card2));
     box-shadow: var(--shadow);
     transition: transform 0.3s ease, border-color 0.3s ease;
 }

 .card:hover {
     transform: translateY(-5px);
     border-color: rgba(255, 255, 255, 0.2);
 }

 .card h3 {
     margin-bottom: 16px;
     font-size: 1.5rem;
     font-weight: 700;
     letter-spacing: -0.02em;
     color: #fff;
 }

 .card p {
     color: var(--muted);
     font-size: 1.05rem;
     line-height: 1.7;
 }

 /* Interactive Filters Layout */
 .filters {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin-bottom: 48px;
 }

 .filter-btn {
     min-height: 46px;
     padding: 0 24px;
     border-radius: 999px;
     border: 1px solid var(--line);
     background: rgba(255, 255, 255, .04);
     color: var(--muted);
     cursor: pointer;
     font-weight: 600;
     font-size: 0.9rem;
     transition: all .25s ease;
 }

 .filter-btn:hover {
     color: #fff;
     border-color: rgba(255, 255, 255, 0.35);
     background: rgba(255, 255, 255, .08);
 }

 .filter-btn.active {
     background: linear-gradient(135deg, var(--purple), var(--blue));
     border-color: transparent;
     color: #fff;
     box-shadow: 0 8px 25px rgba(124, 77, 255, 0.35);
 }

 /* Advanced Project Dynamic Grid */
 .project-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
 }

 .project {
     border-radius: 24px;
     border: 1px solid var(--line);
     background: rgba(255, 255, 255, .03);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s ease, opacity 0.4s ease;
     display: flex;
     flex-direction: column;
     opacity: 1;
     transform: scale(1);
 }

 .project:hover {
     transform: translateY(-8px);
     border-color: rgba(124, 77, 255, 0.45);
 }

 .project-img-holder {
     width: 100%;
     height: 230px;
     overflow: hidden;
     position: relative;
     background: #0c102b;
 }

 .project img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .project:hover .project-img-holder img {
     transform: scale(1.06);
 }

 .project-body {
     padding: 28px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .project-tag {
     align-self: flex-start;
     margin-bottom: 16px;
     padding: 6px 14px;
     border-radius: 999px;
     background: rgba(124, 77, 255, .14);
     color: #ddd8ff;
     font-size: .75rem;
     border: 1px solid rgba(124, 77, 255, .25);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.06em;
 }

 .project h3 {
     font-size: 1.35rem;
     margin-bottom: 12px;
     font-weight: 700;
     letter-spacing: -0.02em;
     color: #fff;
 }

 .project p {
     color: var(--muted);
     font-size: .98rem;
     line-height: 1.6;
 }

 .project.hidden {
     display: none;
     opacity: 0;
     transform: scale(0.95);
 }

 .company-bar {
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 28px;
     align-items: stretch;
 }

 .company-box {
     padding: 40px;
     border-radius: var(--radius);
     border: 1px solid var(--line);
     background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01));
     box-shadow: var(--shadow);
 }

 .company-info {
     display: grid;
     gap: 16px;
 }

 .info-row {
     padding: 18px 22px;
     border-radius: 16px;
     background: rgba(255, 255, 255, .03);
     border: 1px solid var(--line);
     color: var(--muted);
     font-size: 0.98rem;
     transition: background 0.3s ease;
 }

 .info-row:hover {
     background: rgba(255, 255, 255, 0.07);
 }

 .info-row strong {
     color: #fff;
     margin-right: 8px;
     font-weight: 600;
 }

 .contact {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 28px;
 }



 /* Clean Content Reveal Engine */
 .reveal {
     opacity: 0;
     transform: translateY(35px);
     transition: opacity .85s cubic-bezier(0.16, 1, 0.3, 1), transform .85s cubic-bezier(0.16, 1, 0.3, 1);
 }

 .reveal.show {
     opacity: 1;
     transform: translateY(0);
 }

 /* Mobile Menu Toggle classes */
 .menu-toggle {
     display: none;
     cursor: pointer;
     background: none;
     border: none;
     padding: 10px;
     z-index: 1001;
 }

 .menu-toggle span {
     display: block;
     width: 24px;
     height: 2px;
     background: #fff;
     margin: 5px 0;
     transition: 0.3s;
 }

 /* Fluid Design Framework Rules */
 @media (max-width: 1100px) {

     .hero-grid,
     .company-bar,
     .contact,
     .grid-2 {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .project-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 24px;
     }

     .floating-card {
         display: none;
     }

     .menu-toggle {
         display: block;
     }

     .navlinks {
         position: fixed;
         top: 0;
         right: -100%;
         width: 280px;
         height: 100vh;
         background: #0a0e26;
         flex-direction: column;
         justify-content: center;
         gap: 40px;
         transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
         border-left: 1px solid var(--line);
         box-shadow: var(--shadow);
     }

     .navlinks.active {
         right: 0;
     }

     .team-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 700px) {
     .hero {
         padding-top: 80px;
     }

     .section {
         padding: 80px 0;
     }

     .project-grid {
         grid-template-columns: 1fr;
     }

     .hero-mini {
         grid-template-columns: 1fr;
         gap: 12px;
     }

     .hero-right {
         min-height: auto;
     }

     .hero-img-wrapper {
         height: 280px;
     }

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 32px;
     }

     .team-grid {
         grid-template-columns: 1fr;
     }
 }

 /* ==========================================
            FOOTER CSS
   File Name : footer.css
========================================== */

 /* ==========================================
            VARIABLES
========================================== */

 :root {

     --footer-primary: #7c5cff;
     --footer-accent: #00d4ff;

     --footer-bg: #050b18;

     --footer-text: #ffffff;

     --footer-muted: rgba(255, 255, 255, .75);

     --footer-border: rgba(255, 255, 255, .08);

 }

 /* ==========================================
            FOOTER
========================================== */

 .footer {

     width: 100%;

     background: var(--footer-bg);

     border-top: 1px solid var(--footer-border);

     margin-top: 120px;

 }

 /* ==========================================
        FOOTER CONTAINER
========================================== */

 .footer-container {

     width: 100%;

     max-width: 1400px;

     margin: 0 auto;

     padding: 80px 40px 30px;

 }

 /* ==========================================
        FOOTER GRID
========================================== */

 .footer-grid {

     display: grid;

     grid-template-columns: 2fr 1fr 1fr 1.2fr;

     gap: 60px;

 }

 /* ==========================================
        FOOTER COLUMN
========================================== */

 .footer-column {

     display: flex;

     flex-direction: column;

 }

 /* ==========================================
            BRAND
========================================== */

 .footer-brand {

     display: flex;

     align-items: center;

     gap: 14px;

     text-decoration: none;

 }

 .footer-brandmark {

     width: 52px;

     height: 52px;

     display: flex;

     align-items: center;

     justify-content: center;

     border-radius: 16px;

     background: linear-gradient(135deg,
             var(--footer-primary),
             var(--footer-accent));

     color: #fff;

     font-size: 22px;

     font-weight: 700;

     box-shadow: 0 10px 25px rgba(0, 212, 255, .22);

 }

 .footer-brandtext {

     color: var(--footer-text);

     font-size: 28px;

     font-weight: 700;

 }

 /* ==========================================
        DESCRIPTION
========================================== */

 .footer-description {

     margin-top: 24px;

     color: var(--footer-muted);

     line-height: 1.9;

     font-size: 15px;

     max-width: 420px;

 }

 /* ==========================================
            TITLES
========================================== */

 .footer-title {

     color: var(--footer-text);

     font-size: 20px;

     margin-bottom: 24px;

 }

 /* ==========================================
            LINKS
========================================== */

 .footer-links {

     list-style: none;

     padding: 0;

     margin: 0;

 }

 .footer-links li {

     margin-bottom: 14px;

 }

 .footer-links a {

     color: var(--footer-muted);

     text-decoration: none;

     transition: .30s;

     font-size: 15px;

 }

 .footer-links a:hover {

     color: #fff;

     padding-left: 8px;

 }

 /* ==========================================
            CONTACT
========================================== */

 .footer-contact {

     list-style: none;

     padding: 0;

     margin: 0;

     color: var(--footer-muted);

 }

 .footer-contact li {

     margin-bottom: 14px;

     line-height: 1.8;

     font-size: 15px;

 }

 /* ==========================================
        SOCIAL ICONS
========================================== */

 .footer-socials {

     display: flex;

     gap: 14px;

     margin-top: 24px;

     flex-wrap: wrap;

 }

 .footer-social {

     width: 48px;

     height: 48px;

     display: flex;

     align-items: center;

     justify-content: center;

     border-radius: 14px;

     text-decoration: none;

     color: #fff;

     background: rgba(255, 255, 255, .08);

     border: 1px solid rgba(255, 255, 255, .08);

     transition: .30s;

 }

 .footer-social:hover {

     transform: translateY(-5px);

     background: linear-gradient(135deg,
             var(--footer-primary),
             var(--footer-accent));

 }

 /* ==========================================
        COPYRIGHT
========================================== */

 .footer-copyright {

     margin-top: 60px;

     padding-top: 25px;

     border-top: 1px solid var(--footer-border);

     text-align: center;

 }

 .footer-copyright p {

     color: #94a3b8;

     font-size: 15px;

     margin: 0;

 }

 /* ==========================================
        TABLET
========================================== */

 @media (max-width:1100px) {

     .footer-grid {

         grid-template-columns: repeat(2, 1fr);

         gap: 45px;

     }

 }

 /* ==========================================
        MOBILE
========================================== */

 @media (max-width:768px) {

     .footer-container {

         padding: 60px 20px 25px;

     }

     .footer-grid {

         grid-template-columns: 1fr;

         gap: 40px;

         text-align: center;

     }

     .footer-brand {

         justify-content: center;

     }

     .footer-description {

         margin-left: auto;

         margin-right: auto;

     }

     .footer-socials {

         justify-content: center;

     }

 }

 /* ==========================================
        HEADER CSS - PART 2A
========================================== */

 /* ---------- HEADER VARIABLES ---------- */

 :root {

     --header-primary: #7c5cff;
     --header-accent: #00d4ff;

     --header-bg: rgba(5, 10, 19, .92);

     --header-text: #ffffff;
     --header-muted: rgba(255, 255, 255, .75);

     --header-border: rgba(255, 255, 255, .08);

 }


 body {
     background: #07121d;
 }

 /* Grid Background */
 .background-grid {
     position: fixed;
     inset: 0;
     background-image:
         linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
         linear-gradient(90deg,
             rgba(255, 255, 255, .03) 1px,
             transparent 1px);
     background-size: 70px 70px;
     z-index: -3;
 }

 /* Glow Effect */
 .background-glow {
     position: fixed;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     filter: blur(130px);
     opacity: .18;
     z-index: -2;
 }

 .glow-one {
     background: #22d3ee;
     left: -150px;
     top: -100px;
 }

 .glow-two {
     background: #7c3aed;
     right: -150px;
     bottom: -120px;
 }


 /* 
          HEADER CSS
=========================== */
 */ * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 :root {
     --primary: #7c5cff;
     --accent: #00d4ff;
     --bg: rgba(7, 12, 24, .92);
     --text: #ffffff;
     --muted: rgba(255, 255, 255, .75);
     --line: rgba(255, 255, 255, .10);
     --shadow: 0 12px 30px rgba(0, 0, 0, .25);
 }

 body {
     padding-top: 84px;
     font-family: Arial, sans-serif;
     background: #08111f;
     color: #fff;
 }

 /* ===========================
   HEADER
=========================== */

 .header {

     position: fixed;
     top: 0;
     left: 0;

     width: 100%;

     z-index: 99999;

     background: var(--bg);

     backdrop-filter: blur(18px);
     -webkit-backdrop-filter: blur(18px);

     border-bottom: 1px solid var(--line);

     box-shadow: var(--shadow);

     transition: .35s;
 }

 .header.scrolled {

     background: rgba(7, 12, 24, .98);

     box-shadow: 0 18px 40px rgba(0, 0, 0, .35);

 }

 /* ===========================
   CONTAINER
=========================== */

 .header-container {

     max-width: 1400px;

     margin: auto;

     height: 84px;

     padding: 0 24px;

     display: flex;

     align-items: center;

     justify-content: space-between;

 }

 /* ===========================
   LOGO
=========================== */

 .brand {

     display: flex;

     align-items: center;

     gap: 12px;

     text-decoration: none;

     color: #fff;

     font-weight: 700;

     flex-shrink: 0;

 }

 .brandmark {

     width: 45px;

     height: 45px;

     border-radius: 14px;

     display: grid;

     place-items: center;

     color: #fff;

     background: linear-gradient(135deg, var(--primary), var(--accent));

     font-size: 18px;

 }

 .brandtext {

     font-size: 22px;

     letter-spacing: .5px;

 }

 /* ===========================
   NAVIGATION
=========================== */

 .navbar {

     flex: 1;

     display: flex;

     justify-content: center;

 }

 .nav-menu {

     list-style: none;

     display: flex;

     gap: 22px;

     align-items: center;

 }

 .nav-menu li {

     transition: .3s;

 }

 .nav-menu a {

     position: relative;

     display: block;

     text-decoration: none;

     color: var(--muted);

     font-size: 15px;

     font-weight: 600;

     padding: 12px 0;

     transition: .30s;

 }

 .nav-menu a::after {

     content: "";

     position: absolute;

     left: 0;

     bottom: 2px;

     width: 100%;

     height: 2px;

     background: linear-gradient(90deg, var(--primary), var(--accent));

     transform: scaleX(0);

     transform-origin: left;

     transition: .30s;

 }

 /* ===========================
   HOVER EFFECT
=========================== */

 .nav-menu li:hover {

     transform: scale(0.9);

 }

 .nav-menu a:hover {

     color: #fff;

 }

 .nav-menu a:hover::after {

     transform: scaleX(1);

 }

 /* ===========================
   BUTTON
=========================== */

 .btn {

     text-decoration: none;

     display: flex;

     align-items: center;

     justify-content: center;

 }

 .btn--small {

     padding: 12px 24px;

     border-radius: 50px;

 }

 .btn--primary {

     color: #fff;

     background: linear-gradient(135deg, var(--primary), #4e7fff);

     transition: .35s;

 }

 .btn--primary:hover {

     transform: translateY(-3px);

     box-shadow: 0 15px 30px rgba(124, 92, 255, .35);

 }

 /* ===========================
   MENU BUTTON
=========================== */

 .nav-toggle {

     width: 48px;

     height: 48px;

     display: none;

     cursor: pointer;

     background: rgba(255, 255, 255, .05);

     border: 1px solid rgba(255, 255, 255, .10);

     border-radius: 12px;

     transition: .30s;

 }

 .nav-toggle:hover {

     background: rgba(255, 255, 255, .10);

 }

 .nav-toggle span {

     display: block;

     width: 22px;

     height: 2px;

     margin: 5px auto;

     background: #fff;

     transition: .35s;

 }

 /* Hamburger Animation */

 .nav-toggle.active span:nth-child(1) {

     transform: translateY(7px) rotate(45deg);

 }

 .nav-toggle.active span:nth-child(2) {

     opacity: 0;

 }

 .nav-toggle.active span:nth-child(3) {

     transform: translateY(-7px) rotate(-45deg);

 }

 /* ===========================
   MOBILE
=========================== */

 @media(max-width:1100px) {

     body {

         padding-top: 76px;

     }

     .header-container {

         height: 76px;

     }

     .nav-toggle {

         display: block;

     }

     .btn {

         display: none;

     }

     .navbar {

         position: absolute;

         top: 76px;

         left: 0;

         width: 100%;

     }

     .nav-menu {

         position: absolute;

         top: 0;

         left: 0;

         width: 100%;

         background: #091523;

         flex-direction: column;

         align-items: stretch;

         gap: 8px;

         padding: 18px;

         border-bottom: 1px solid rgba(255, 255, 255, .08);

         transform: translateY(-20px);

         opacity: 0;

         visibility: hidden;

         transition: .35s;

     }

     .nav-menu.open {

         transform: translateY(0);

         opacity: 1;

         visibility: visible;

     }

     .nav-menu li {

         width: 100%;

     }

     .nav-menu a {

         width: 100%;

         padding: 15px 18px;

         border-radius: 12px;

         transition: .30s;

     }

     .nav-menu a::after {

         display: none;

     }

     .nav-menu a:hover {

         background: rgba(255, 255, 255, .08);

         color: #fff;

         transform: scale(1.09);

         padding-left: 28px;

     }

     .btn {
         display: inline-flex;
         align-items: center;
         justify-content: center;
         min-height: 52px;
         padding: 0 22px;
         border-radius: 999px;
         border: 1px solid transparent;
         transition: 0.3s ease;
         cursor: pointer;
         font-weight: 600;
     }

     .btn--small {
         min-height: 44px;
         padding: 0 18px;
         font-size: 0.95rem;
     }

     .btn--primary {
         background: linear-gradient(135deg, var(--primary), #5a8bff);
         color: white;
         box-shadow: 0 12px 28px rgba(124, 92, 255, 0.32);
     }

     .btn--glass {
         background: rgba(255, 255, 255, 0.07);
         border-color: var(--line);
         color: var(--text);
     }

     .btn:hover {
         transform: translateY(-2px);
     }

 }