 :root {
     --bg-color: #030b14;
     --card-bg: rgba(6, 18, 32, 0.6);
     --card-border: rgba(0, 242, 254, 0.15);
     --text-primary: #ffffff;
     --text-secondary: #94a3b8;
     --accent-cyan: #00f2fe;
     --accent-blue: #4facfe;
     --glow-color: rgba(0, 242, 254, 0.25);
     --font-main: 'Inter', sans-serif;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     background-color: var(--bg-color);
     color: var(--text-primary);
     font-family: var(--font-main);
     overflow-x: hidden;
     background-image:
         linear-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 242, 254, 0.03) 1px, transparent 1px);
     background-size: 40px 40px;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* --- BACKGROUND GLOWS --- */
 .bg-glow {
     position: fixed;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
     filter: blur(40px);
     z-index: -1;
     pointer-events: none;
 }

 .glow-1 {
     top: -10%;
     right: -10%;
 }

 .glow-2 {
     bottom: 10%;
     left: -10%;
 }


 /* --- HERO SECTION --- */
 .hero {
     padding: 80px 0;
     text-align: center;
     position: relative;
 }

 .eyebrow {
     color: var(--accent-cyan);
     font-size: 0.85rem;
     letter-spacing: 3px;
     font-weight: 700;
     margin-bottom: 16px;
     text-transform: uppercase;
 }

 .hero h1 {
     font-size: 3.5rem;
     font-weight: 800;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .hero h1 span {
     background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .hero p {
     color: var(--text-secondary);
     max-width: 650px;
     margin: 0 auto 40px auto;
     font-size: 1.1rem;
     line-height: 1.6;
 }

 /* --- MASTER STRUCTURE (EACH SERVICE BLOCK) --- */
 .services-wrapper {
     padding-bottom: 100px;
 }

 .image-layout-card {
     background: var(--card-bg);
     border: 1px solid var(--card-border);
     border-radius: 24px;
     padding: 50px;
     margin-bottom: 60px;
     backdrop-filter: blur(12px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 40px;
     align-items: center;
     position: relative;
 }

 /* Container Left Side Content */
 .layout-left {
     display: flex;
     flex-direction: column;
 }

 .layout-header-inline {
     display: flex;
     align-items: flex-start;
     gap: 25px;
     margin-bottom: 30px;
 }

 .layout-number {
     font-size: 4rem;
     font-weight: 800;
     background: linear-gradient(180deg, rgba(0, 242, 254, 0.4) 0%, rgba(0, 242, 254, 0) 100%);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     line-height: 1;
     font-family: monospace;
 }

 .layout-title-block h2 {
     font-size: 2.2rem;
     font-weight: 700;
     color: var(--text-primary);
     margin-top: 4px;
 }

 /* Pills/Tabs Row */
 .layout-tabs {
     display: flex;
     gap: 12px;
     margin-bottom: 35px;
     flex-wrap: wrap;
 }

 .layout-tab-btn {
     background: transparent;
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--text-secondary);
     padding: 10px 24px;
     border-radius: 50px;
     cursor: pointer;
     font-weight: 500;
     font-size: 0.9rem;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .layout-tab-btn:hover {
     border-color: rgba(0, 242, 254, 0.5);
     color: var(--text-primary);
 }

 .layout-tab-btn.active {
     background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
     color: #030b14;
     font-weight: 600;
     border-color: transparent;
     box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
 }

 /* Tab Content Panel */
 .layout-pane-content {
     min-height: 80px;
     margin-bottom: 40px;
 }

 .layout-pane {
     display: none;
     color: var(--text-secondary);
     font-size: 1.05rem;
     line-height: 1.6;
 }

 .layout-pane.active {
     display: block;
     animation: fadeIn 0.4s ease forwards;
 }

 /* Micro-chips container */
 .chips-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 .chip-item {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.08);
     padding: 8px 18px;
     border-radius: 50px;
     font-size: 0.85rem;
     color: #e2e8f0;
 }

 /* Bottom Row Horizontal Micro-features */
 .layout-footer-row {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 15px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 25px;
 }

 .micro-feature {
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
 }

 .micro-feature i {
     font-size: 1.3rem;
     color: var(--accent-cyan);
     text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
 }

 .micro-feature span {
     font-size: 0.8rem;
     color: var(--text-secondary);
     font-weight: 500;
 }

 /* Right Side Content (Image / Code Frame Structure Like Image) */
 .layout-right {
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100%;
 }

 .mockup-window {
     width: 100%;
     height: 320px;
     background: #02080f;
     border: 1px solid rgba(0, 242, 254, 0.2);
     border-radius: 16px;
     position: relative;
     overflow: hidden;
     box-shadow: inset 0 0 30px rgba(0, 242, 254, 0.05);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Neon tech decorative artifacts inside right view pane */
 .mockup-window::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: conic-gradient(from 0deg, transparent, var(--accent-cyan), transparent, var(--accent-blue), transparent);
     animation: rotateTech 12s linear infinite;
     opacity: 0.15;
     z-index: 1;
 }

 .mockup-image {
     height: 300px;
     width: 450px;
     border-radius: 20px;

 }

 .back-to-top {
     position: fixed;
     right: 22px;
     bottom: 22px;
     width: 48px;
     height: 48px;
     border-radius: 50%;
     border: 1px solid var(--line);
     background: rgba(6, 12, 24, 0.72);
     color: white;
     backdrop-filter: blur(12px);
     opacity: 0;
     visibility: hidden;
     transform: translateY(12px);
     transition: 0.3s ease;
     z-index: 1000;
     cursor: pointer;
 }

 .back-to-top.show {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .mockup-inner-box {
     position: relative;
     z-index: 2;
     width: 92%;
     height: 90%;
     background: rgba(4, 14, 26, 0.85);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.05);
     padding: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .code-snippet-lines {
     font-family: monospace;
     font-size: 0.75rem;
     color: rgba(0, 242, 254, 0.6);
     line-height: 1.5;
     pointer-events: none;
     overflow: hidden;
     width: 60%;
 }

 .right-pane-graphic {
     width: 35%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 15px;
     color: var(--accent-cyan);
 }

 .right-pane-graphic i.main-icon {
     font-size: 3.5rem;
     filter: drop-shadow(0 0 15px var(--accent-cyan));
     animation: floatGlow 4s ease-in-out infinite;
 }

 .tech-tags-group {
     display: flex;
     gap: 10px;
     font-size: 1.1rem;
     opacity: 0.8;
 }

 /* --- CTA SECTION --- */
 .cta {
     padding: 80px 0;
 }

 .cta-box {
     background: linear-gradient(135deg, rgba(79, 254, 254, 0.1), rgba(0, 242, 254, 0.03));
     border: 1px solid var(--accent-cyan);
     border-radius: 24px;
     padding: 60px;
     text-align: center;
     box-shadow: 0 0 40px rgba(0, 242, 254, 0.05);
 }

 .cta-box h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .cta-box p {
     color: var(--text-secondary);
     margin-bottom: 30px;
     font-size: 1.1rem;
 }

 .primary-btn {
     background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
     color: #030b14;
     padding: 14px 35px;
     border-radius: 50px;
     font-weight: 700;
     display: inline-block;
     box-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .primary-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 0 35px rgba(0, 242, 254, 0.5);
 }



 /* --- ANIMATIONS --- */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(6px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes rotateTech {
     100% {
         transform: rotate(360deg);
     }
 }

 @keyframes floatGlow {

     0%,
     100% {
         transform: translateY(0);
         filter: drop-shadow(0 0 15px var(--accent-cyan));
     }

     50% {
         transform: translateY(-8px);
         filter: drop-shadow(0 0 25px var(--accent-cyan));
     }
 }

 /* --- RESPONSIVE RESPONSIVENESS --- */
 @media (max-width: 968px) {
     .image-layout-card {
         grid-template-columns: 1fr;
         padding: 35px;
     }

     .hero h1 {
         font-size: 2.6rem;
     }

     .footer-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width:580px) {
     .layout-footer-row {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .footer-grid {
         grid-template-columns: 1fr;
     }
 }

 /*====================================================
    IoT SERVICES SECTION
    Part 2A : Variables + Layout + Section + Cards
====================================================*/

 /*==============================
    VARIABLES
==============================*/

 :root {
     --primary: #22d3ee;
     --secondary: #8b5cf6;
     --dark: #07121d;
     --dark2: #0b1726;
     --card: #111d2c;
     --text: #ffffff;
     --muted: #9fb3c8;
     --border: rgba(255, 255, 255, .08);
 }

 /*==============================
    CONTAINER
==============================*/

 .container {
     width: 90%;
     max-width: 1300px;
     margin: auto;
 }

 /*==============================
    SECTION
==============================*/

 .hub {
     padding: 120px 0;
     position: relative;
 }

 /*==============================
    SECTION TITLE
==============================*/

 .section-title {
     text-align: center;
     margin-bottom: 90px;
 }

 .eyebrow {

     display: inline-flex;

     padding: 8px 18px;

     border-radius: 999px;

     border: 1px solid var(--border);

     background: rgba(255, 255, 255, .05);

     color: var(--primary);

     text-transform: uppercase;

     letter-spacing: .15em;

     font-size: .78rem;

     margin-bottom: 22px;

 }

 .section-title h2 {

     font-size: 3rem;

     font-weight: 700;

     color: var(--text);

     margin-bottom: 20px;

 }

 .section-title p {

     max-width: 720px;

     margin: auto;

     color: var(--muted);

     font-size: 1.05rem;

     line-height: 1.8;

 }

 /*==============================
    HUB GRID
==============================*/

 .hub-wrapper {

     display: grid;

     grid-template-columns: 1fr 420px 1fr;

     gap: 50px;

     align-items: center;

 }

 /*==============================
    COLUMN
==============================*/

 .hub-column {

     display: flex;

     flex-direction: column;

     gap: 28px;

 }

 /*==============================
    SERVICE CARD
==============================*/

 .hub-item {

     display: flex;

     align-items: center;

     gap: 20px;

     padding: 24px;

     background: rgba(255, 255, 255, .04);

     border: 1px solid rgba(255, 255, 255, .08);

     border-radius: 22px;

     backdrop-filter: blur(18px);

     transition: .35s ease;

 }

 .hub-item:hover {

     transform: translateY(-8px);

     border-color: var(--primary);

     box-shadow: 0 0 35px rgba(34, 211, 238, .18);

 }

 /*==============================
    ICON
==============================*/

 .hub-icon {

     width: 72px;

     height: 72px;

     border-radius: 50%;

     display: flex;

     justify-content: center;

     align-items: center;

     flex-shrink: 0;

     color: #fff;

     font-size: 1.55rem;

     background: linear-gradient(135deg,
             var(--primary),
             var(--secondary));

 }

 /*==============================
    CARD TEXT
==============================*/

 .hub-item h3 {

     color: #fff;

     font-size: 1.15rem;

     margin-bottom: 8px;

     font-weight: 600;

 }

 .hub-item p {

     color: var(--muted);

     font-size: .94rem;

     line-height: 1.7;

 }

 /*====================================================
    IoT SERVICES SECTION
    Part 2B : Center Circle + Animations + Hover Effects
====================================================*/

 /*==============================
    CENTER WRAPPER
==============================*/

 .hub-center {

     display: flex;

     justify-content: center;

     align-items: center;

 }

 /*==============================
    OUTER CIRCLE
==============================*/

 .center-circle {

     position: relative;

     width: 330px;

     height: 330px;

     border-radius: 50%;

     display: flex;

     justify-content: center;

     align-items: center;

 }

 /*==============================
    OUTER GLOW
==============================*/

 .center-circle::before {

     content: "";

     position: absolute;

     inset: 0;

     border-radius: 50%;

     background: linear-gradient(135deg,
             rgba(34, 211, 238, .20),
             rgba(139, 92, 246, .20));

     filter: blur(50px);

     z-index: 0;

 }

 /*==============================
    RING
==============================*/

 .center-circle::after {

     content: "";

     position: absolute;

     inset: 16px;

     border-radius: 50%;

     border: 1px solid rgba(255, 255, 255, .12);

     z-index: 1;

 }

 /*==============================
    PULSE EFFECT
==============================*/

 .pulse {

     position: absolute;

     width: 100%;

     height: 100%;

     border-radius: 50%;

     border: 2px solid rgba(34, 211, 238, .35);

     animation: pulse 3s infinite;

     z-index: 0;

 }

 /*==============================
    INNER CIRCLE
==============================*/

 .inner-circle {

     position: relative;

     z-index: 5;

     width: 180px;

     height: 180px;

     border-radius: 50%;

     display: flex;

     flex-direction: column;

     justify-content: center;

     align-items: center;

     background: linear-gradient(135deg,
             var(--primary),
             var(--secondary));

     box-shadow:
         0 0 20px rgba(34, 211, 238, .25),
         0 0 60px rgba(34, 211, 238, .30);

     transition: .4s ease;

 }

 /*==============================
    INNER ICON
==============================*/

 .inner-circle i {

     color: #fff;

     font-size: 2.7rem;

     margin-bottom: 14px;

 }

 /*==============================
    INNER TITLE
==============================*/

 .inner-circle h3 {

     color: #fff;

     font-size: 2rem;

     font-weight: 700;

     line-height: 1;

     margin-bottom: 8px;

 }

 /*==============================
    INNER SUBTITLE
==============================*/

 .inner-circle p {

     color: #fff;

     letter-spacing: .22em;

     font-size: .82rem;

     font-weight: 600;

 }

 /*==============================
    HOVER EFFECT
==============================*/

 .hub-item:hover .hub-icon {

     transform: rotate(-10deg) scale(1.08);

     transition: .35s;

 }

 .hub-item:hover h3 {

     color: var(--primary);

     transition: .35s;

 }

 .hub-item:hover p {

     color: #d7e5ef;

 }

 /*==============================
    CENTER HOVER
==============================*/

 .center-circle:hover .inner-circle {

     transform: scale(1.06);

     box-shadow:

         0 0 30px rgba(34, 211, 238, .35),

         0 0 80px rgba(34, 211, 238, .45);

 }

 /*==============================
    PULSE ANIMATION
==============================*/

 @keyframes pulse {

     0% {

         transform: scale(.90);

         opacity: .9;

     }

     70% {

         transform: scale(1.20);

         opacity: 0;

     }

     100% {

         transform: scale(1.20);

         opacity: 0;

     }

 }

 /*==============================
    SMOOTH TRANSITIONS
==============================*/

 .hub-item,
 .hub-icon,
 .inner-circle,
 .center-circle {

     transition: all .35s ease;

 }

 /*====================================================
    IoT SERVICES SECTION
    Part 2C : Responsive CSS + Media Queries
====================================================*/

 /*====================================
        Large Screens
====================================*/

 @media (max-width:1200px) {

     .hub-wrapper {

         grid-template-columns: 1fr;

         gap: 60px;

     }

     .hub-column {

         width: 100%;

         max-width: 700px;

         margin: auto;

     }

     .hub-center {

         order: -1;

         margin-bottom: 20px;

     }

 }

 /*====================================
        Tablets
====================================*/

 @media (max-width:992px) {

     .hub {

         padding: 90px 0;

     }

     .section-title {

         margin-bottom: 70px;

     }

     .section-title h2 {

         font-size: 2.5rem;

     }

     .section-title p {

         font-size: 1rem;

     }

     .center-circle {

         width: 280px;

         height: 280px;

     }

     .inner-circle {

         width: 160px;

         height: 160px;

     }

     .inner-circle i {

         font-size: 2.3rem;

     }

     .inner-circle h3 {

         font-size: 1.8rem;

     }

 }

 /*====================================
        Mobile
====================================*/

 @media (max-width:768px) {

     .hub {

         padding: 80px 0;

     }

     .hub-wrapper {

         gap: 40px;

     }

     .section-title {

         margin-bottom: 50px;

     }

     .section-title h2 {

         font-size: 2rem;

         line-height: 1.2;

     }

     .section-title p {

         font-size: .95rem;

     }

     .hub-column {

         gap: 20px;

     }

     .hub-item {

         flex-direction: column;

         text-align: center;

         padding: 25px 20px;

     }

     .hub-icon {

         margin-bottom: 10px;

     }

     .center-circle {

         width: 240px;

         height: 240px;

     }

     .inner-circle {

         width: 140px;

         height: 140px;

     }

     .inner-circle i {

         font-size: 2rem;

         margin-bottom: 10px;

     }

     .inner-circle h3 {

         font-size: 1.5rem;

     }

     .inner-circle p {

         font-size: .72rem;

         letter-spacing: .18em;

     }

 }

 /*====================================
        Small Phones
====================================*/

 @media (max-width:480px) {

     .container {

         width: 92%;

     }

     .hub {

         padding: 70px 0;

     }

     .eyebrow {

         font-size: .72rem;

         padding: 7px 15px;

     }

     .section-title h2 {

         font-size: 1.75rem;

     }

     .section-title p {

         font-size: .9rem;

     }

     .hub-item {

         padding: 20px 18px;

     }

     .hub-icon {

         width: 60px;

         height: 60px;

         font-size: 1.3rem;

     }

     .hub-item h3 {

         font-size: 1.05rem;

     }

     .hub-item p {

         font-size: .88rem;

     }

     .center-circle {

         width: 210px;

         height: 210px;

     }

     .inner-circle {

         width: 125px;

         height: 125px;

     }

     .inner-circle i {

         font-size: 1.8rem;

     }

     .inner-circle h3 {

         font-size: 1.35rem;

     }

     .inner-circle p {

         font-size: .65rem;

     }

 }

 /*====================================
        Smooth Animation
====================================*/

 .hub-item,
 .hub-icon,
 .center-circle,
 .inner-circle {

     transition: all .35s ease;

 }

 /*====================================
        Better Hover
====================================*/

 .hub-item:hover {

     transform: translateY(-8px);

 }

 .center-circle:hover {

     transform: scale(1.02);

 }

 /* ==========================================
            HEADER CSS
   File : header.css
========================================== */

 /* ---------- Header Variables ---------- */

 :root {

     --header-primary: #7c5cff;
     --header-accent: #00d4ff;
     --header-text: #ffffff;
     --header-muted: rgba(255, 255, 255, .75);
     --header-line: rgba(255, 255, 255, .10);
     --header-bg: rgba(5, 10, 19, .88);

 }

 /* ==========================================
            HEADER
========================================== */

 .header {

     position: fixed;

     top: 0;
     left: 0;

     width: 100%;

     z-index: 9999;

     background: var(--header-bg);

     backdrop-filter: blur(18px);
     -webkit-backdrop-filter: blur(18px);

     border-bottom: 1px solid var(--header-line);

 }

 /* ==========================================
        HEADER CONTAINER
========================================== */

 .header-container {

     width: 100%;

     max-width: 1400px;

     margin: 0 auto;

     padding: 0 40px;

     min-height: 82px;

     display: flex;

     align-items: center;

     justify-content: space-between;

     gap: 25px;

 }

 /* ==========================================
            LOGO
========================================== */

 .header-brand {

     display: flex;

     align-items: center;

     gap: 12px;

     text-decoration: none;

     flex-shrink: 0;

 }

 .header-brandmark {

     width: 46px;

     height: 46px;

     display: flex;

     align-items: center;

     justify-content: center;

     border-radius: 14px;

     background: linear-gradient(135deg, var(--header-primary), var(--header-accent));

     color: #fff;

     font-size: 20px;

     font-weight: 700;

     box-shadow: 0 10px 24px rgba(0, 212, 255, .25);

 }

 .header-brandtext {

     color: var(--header-text);

     font-size: 24px;

     font-weight: 700;

     letter-spacing: -0.5px;

 }

 /* ==========================================
            NAVBAR
========================================== */

 .header-navbar {

     flex: 1;

     display: flex;

     justify-content: center;

 }

 .header-nav-menu {

     display: flex;

     align-items: center;

     gap: 24px;

     list-style: none;

     margin: 0;

     padding: 0;

 }

 .header-nav-menu a {

     text-decoration: none;

     color: var(--header-muted);

     font-size: 15px;

     font-weight: 500;

     transition: .30s;

     white-space: nowrap;

 }

 .header-nav-menu a:hover {

     color: #ffffff;

 }

 /* ==========================================
            BUTTON
========================================== */

 .header-btn {

     display: inline-flex;

     align-items: center;

     justify-content: center;

     padding: 12px 24px;

     border-radius: 50px;

     text-decoration: none;

     font-size: 15px;

     font-weight: 600;

     transition: .30s;

     flex-shrink: 0;

 }

 .header-btn-primary {

     color: #fff;

     background: linear-gradient(135deg, var(--header-primary), #5a8bff);

     box-shadow: 0 12px 30px rgba(124, 92, 255, .28);

 }

 .header-btn-primary:hover {

     transform: translateY(-3px);

 }

 /* ==========================================
        MOBILE BUTTON
========================================== */

 .header-nav-toggle {

     display: none;

     width: 46px;

     height: 46px;

     border: none;

     background: rgba(255, 255, 255, .08);

     border-radius: 12px;

     cursor: pointer;

 }

 .header-nav-toggle span {

     display: block;

     width: 22px;

     height: 2px;

     margin: 5px auto;

     background: #fff;

     border-radius: 20px;

 }

 /* ==========================================
        RESPONSIVE
========================================== */

 @media(max-width:1200px) {

     .header-container {

         padding: 0 25px;

     }

     .header-nav-menu {

         gap: 18px;

     }

 }

 @media(max-width:1024px) {

     .header-nav-toggle {

         display: block;

     }

     .header-btn {

         display: none;

     }

     .header-navbar {

         position: absolute;

         top: 82px;

         left: 0;

         width: 100%;

     }

     .header-nav-menu {

         display: none;

         flex-direction: column;

         align-items: flex-start;

         width: 100%;

         background: #07111f;

         padding: 20px 30px;

         border-top: 1px solid rgba(255, 255, 255, .08);

     }

     .header-nav-menu.open {

         display: flex;

     }

     .header-nav-menu li {

         width: 100%;

     }

     .header-nav-menu a {

         display: block;

         width: 100%;

         padding: 12px 0;

     }

 }

 @media(max-width:768px) {

     .header-container {

         padding: 0 20px;

         min-height: 75px;

     }

     .header-brandtext {

         font-size: 20px;

     }

     .header-brandmark {

         width: 42px;
         height: 42px;

     }

     .header-navbar {

         top: 75px;

     }

 }

 /* ==========================================
            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;

     }

 }

 /* ======================================
   COGNIVOSOFT HEADER CSS
   Completely Isolated
====================================== */

 .cv-header,
 .cv-header * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 .cv-header {

     --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);

     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;

     font-family: Arial, sans-serif;
 }

 .cv-header-space {
     height: 84px;
 }

 .cv-header.cv-scrolled {

     background: rgba(7, 12, 24, .98);

     box-shadow: 0 18px 40px rgba(0, 0, 0, .35);

 }

 .cv-container {

     max-width: 1400px;

     margin: auto;

     height: 84px;

     padding: 0 24px;

     display: flex;

     align-items: center;

     justify-content: space-between;

 }

 .cv-brand {

     display: flex;

     align-items: center;

     gap: 12px;

     text-decoration: none;

     color: #fff;

     font-weight: 700;

     flex-shrink: 0;

 }

 .cv-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;

 }

 .cv-brandtext {

     font-size: 22px;

     letter-spacing: .5px;

 }

 .cv-navbar {

     flex: 1;

     display: flex;

     justify-content: center;

 }

 .cv-nav-menu {

     list-style: none;

     display: flex;

     gap: 22px;

     align-items: center;

 }

 .cv-nav-menu li {

     transition: .3s;

 }

 .cv-nav-menu a {

     position: relative;

     display: block;

     text-decoration: none;

     color: var(--muted);

     font-size: 15px;

     font-weight: 600;

     padding: 12px 0;

     transition: .30s;

 }

 .cv-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;

 }

 .cv-nav-menu li:hover {

     transform: scale(.9);

 }

 .cv-nav-menu a:hover {

     color: #fff;

 }

 .cv-nav-menu a:hover::after {

     transform: scaleX(1);

 }

 .cv-navbar {

     flex: 1;

     display: flex;

     justify-content: center;

 }

 .cv-nav-menu {

     list-style: none;

     display: flex;

     gap: 22px;

     align-items: center;

 }

 .cv-nav-menu li {

     transition: .3s;

 }

 .cv-nav-menu a {

     position: relative;

     display: block;

     text-decoration: none;

     color: var(--muted);

     font-size: 15px;

     font-weight: 600;

     padding: 12px 0;

     transition: .30s;

 }

 .cv-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;

 }

 .cv-nav-menu li:hover {

     transform: scale(.9);

 }

 .cv-nav-menu a:hover {

     color: #fff;

 }

 .cv-nav-menu a:hover::after {

     transform: scaleX(1);

 }

 /* ======================================
   BUTTON
====================================== */

 .cv-btn {

     text-decoration: none;

     display: flex;

     align-items: center;

     justify-content: center;

     transition: .35s;

 }

 .cv-btn-small {

     padding: 12px 24px;

     border-radius: 50px;

 }

 .cv-btn-primary {

     color: #fff;

     background: linear-gradient(135deg, var(--primary), #4e7fff);

 }

 .cv-btn-primary:hover {

     transform: translateY(-3px);

     box-shadow: 0 15px 30px rgba(124, 92, 255, .35);

 }

 /* ======================================
   MOBILE TOGGLE BUTTON
====================================== */

 .cv-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;

 }

 .cv-nav-toggle:hover {

     background: rgba(255, 255, 255, .10);

 }

 .cv-nav-toggle span {

     display: block;

     width: 22px;

     height: 2px;

     margin: 5px auto;

     background: #fff;

     transition: .35s;

 }

 /* Hamburger Animation */

 .cv-nav-toggle.cv-active span:nth-child(1) {

     transform: translateY(7px) rotate(45deg);

 }

 .cv-nav-toggle.cv-active span:nth-child(2) {

     opacity: 0;

 }

 .cv-nav-toggle.cv-active span:nth-child(3) {

     transform: translateY(-7px) rotate(-45deg);

 }

 /* ======================================
   MOBILE
====================================== */

 @media(max-width:1100px) {

     .cv-header-space {

         height: 76px;

     }

     .cv-container {

         height: 76px;

     }

     .cv-nav-toggle {

         display: block;

     }

     .cv-btn {

         display: none;

     }

     .cv-navbar {

         position: absolute;

         top: 76px;

         left: 0;

         width: 100%;

     }

     .cv-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;

     }

     .cv-nav-menu.cv-open {

         transform: translateY(0);

         opacity: 1;

         visibility: visible;

     }

     .cv-nav-menu li {

         width: 100%;

     }

     .cv-nav-menu a {

         width: 100%;

         padding: 15px 18px;

         border-radius: 12px;

         transition: .30s;

     }

     .cv-nav-menu a::after {

         display: none;

     }

     .cv-nav-menu a:hover {

         background: rgba(255, 255, 255, .08);

         color: #fff;

         transform: scale(1.03);

         padding-left: 28px;

     }

 }

 .cv-btn-glass {

     background: rgba(255, 255, 255, .07);

     border: 1px solid var(--line);

     color: var(--text);

 }

 .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);
 }