       :root {
            --primary: #fd1313;
            --primary-dark: #ff0000;
            --glass: rgba(255, 255, 255, 0.08);
            --text-color: #ffffff;
            --secondary: #00F0FF;
            --dark: #000000;
            --darker: #050505;
            --light: #F5F5F5;
            --gray: #2A2A2A;
            --card-bg: rgba(30, 30, 30, 0.7);
            --glass: rgba(255, 255, 255, 0.05);
            --success: #00E676;
            --extra-light: #ffffff;
            --cyber-nav-active: #1d1b1b9d;
            --primary-color: rgb(255, 0, 0);
            --secondary-color: rgb(255, 10, 181);
            --tertiary-color: rgb(4, 255, 159);
            --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
            --transition-speed: 0.3s;
            --small-body: clamp(0.7rem, 1.5vw, .9rem);
            --glass-bg: rgba(255, 255, 255, 0.2);
            --background: #303030;
            --black-color: #ffffff;
            --f-500: 500;
            --f-600: 600;
            --space-lg: clamp(2rem, 4vw, 3rem);    /* Large */
            --highlight-color: rgba(255, 255, 255, 0.6);
            --accent-color: rgba(255, 255, 255, 0.9); /* Hover effect brightness */
            --glass-bg: rgba(255, 255, 255, 0.2);
            --glass-border: rgba(255, 255, 255, 0.4);
            --box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2), 
                          0px 10px 20px rgba(0, 0, 0, 0.15), 
                          0px 20px 40px rgba(0, 0, 0, 0.1);
            --icon-size: clamp(1rem, 1.7vw, 2rem); /* Icon size scales responsively */ 
            --body-text: clamp(.9rem, 2vw, 1.3rem);    
            --space-xs: clamp(0.75rem, 1vw, 1rem);  /* Extra Small */
            --foter-xs: clamp(0.55rem, 1vw, 1rem);  /* Extra Small */
            --space-md: clamp(1.5rem, 3vw, 2rem);  /* Medium */
            --h2: clamp(1.5rem, 4vw, 2.5rem);
            --s-shadow-color: rgba(255, 0, 0, 0.432);
            --footer-border: rgba(27, 26, 26, 0.712);
            --input-bg: #acacac88;
            --space-sm: clamp(1rem, 1vw, 1rem);  /* Small */
            --accent-color: rgba(255, 255, 255, 0.9); /* Hover effect brightness */
            --primary-bg: linear-gradient(135deg, #1b2735, #090a0f);
            --shadow-color: rgba(0, 0, 0, 0.3);
            --footer-bg: rgba(49, 47, 47, 0.2);
            --border: hsl(240, 5%, 90%);
            --first-color: hsl(29, 80%, 58%);
            --first-color-light: hsl(29, 80%, 70%);
            --profile-color: hsl(29, 16%, 10%);
            --body-color: hsl(29, 100%, 99%);
            --body-font: 'Poppins', sans-serif;
            --h3-font-size: 1.125rem;
            --smaller-font-size: .75rem;
            --success-color: rgb(50, 205, 50);
            --error-color: rgb(220, 20, 60);
            --s-text-dark: #ffffff;
            --s-text-light: #ffffff;    
            --ds-color: #00fff2;
            --supun-rgb: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--tertiary-color), var(--ds-color));
            --border-radius: 15px;
            --border-color: rgba(64, 224, 255, 0.3);
            --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.3);
            --text-secondary: #87ceeb;
        }

        /* Cyberpunk Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            min-height: 100vh;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(253, 19, 90, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 240, 255, 0.15) 0%, transparent 50%);
            background-attachment: fixed;
            justify-content: center;
            align-items: center;
        }

        /* Cyberpunk Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--darker);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }

        
        /* Cyberpunk Toggle */
        .cyber-toggle {
            position: fixed;
            top: 15px;
            left: 15px;
            width: 29px;
            height: 29px;
            margin-top: 49px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 10%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(253, 19, 90, 0.4);
        }

        .cyber-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(253, 19, 90, 0.6);
        }

        .cyber-toggle i {
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .cyber-toggle.active {
            left: 300px;
        }

        
        /* Cyberpunk Profile */
        .cyber-profile {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 100;
        }

        .cyber-profile-popup {
            position: absolute;
            top: 60px;
            right: 0;
            width: 300px;
            min-height: 60vh;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 17px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(253, 19, 90, 0.3);
            opacity: 0;
            display: none;
            transform: translateY(-20px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .cyber-profile-popup.active {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }

        .cyber-profile-title {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.3rem;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(253, 19, 90, 0.5);
        }

        .cyber-profile-info {
            margin-bottom: 20px;
        }

        .cyber-profile-label {
            font-size: 0.8rem;
            color: var(--secondary);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cyber-profile-value {
            background: rgba(30, 30, 30, 0.7);
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
            font-family: 'Roboto Mono', monospace;
            font-size: 0.9rem;
            word-break: break-all;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cyber-profile-value i {
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cyber-profile-value i:hover {
            transform: scale(1.1);
            color: var(--secondary);
        }

        .cyber-profile-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Cyberpunk Sidebar */
        .cyber-sidebar {
            position: fixed;
            left: 0;
            top: 0;
            width: 280px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(10px);
            border-right: 1px solid rgba(253, 19, 90, 0.3);
            padding: 20px;
            z-index: 100;
            transform: translateX(-100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 5px 0 30px rgba(253, 19, 90, 0.2);
            overflow-y: auto;
        }

        .cyber-sidebar.active {
            transform: translateX(0);
        }

        .cyber-logo {
            width: 100%;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }

        .cyber-logo img {
            border-radius: 18px;
            border: 7px solid #ff0040;
            max-width: 120px;
            filter: drop-shadow(0 0 10px var(--primary));
            animation: logoFloat 4s ease-in-out infinite;
        }

        .cyber-logo::after {
            content: '';
            display: block;
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 15px auto 0;
            opacity: 0.5;
        }

        .cyber-title {
            font-family: 'Orbitron', sans-serif;
            text-align: center;
            color: var(--primary);
            margin-bottom: 4px;
            font-size: 1.5rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(253, 19, 90, 0.5);
        }

        .supun-des{
            text-align: center;
            margin-bottom: 30px;
            font-size: 1rem;
            font-family: 'Courier New', Courier, monospace;
            color: #00f7ff;
        }

        .supun-des span{
            color: #00ffb3;
        }

        .cyber-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cyber-nav a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: var(--light);
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background: rgba(30, 30, 30, 0.5);
            border-left: 3px solid transparent;
        }

        .cyber-nav a i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
        }

        .cyber-nav a:hover {
            background: rgba(26, 25, 25, 0.301);
            border-left: 3px solid var(--primary);
            transform: translateX(5px);
        }

        .cyber-nav a:hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(253, 19, 90, 0.1), transparent);
            animation: navHover 1.5s infinite;
        }

        .cyber-nav .active {
            background: var(--cyber-nav-active);
            border-left: 3px solid var(--primary);
            box-shadow: inset 0 0 15px rgba(32, 31, 31, 0.3);
        }

        .cyber-nav .active i {
            color: var(--primary);
        }

        .cyber-buy-btn {
            margin-top: 20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            font-family: 'Orbitron', sans-serif;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(253, 19, 19, 0.3);
        }

        .cyber-buy-btn i {
            margin-right: 10px;
        }

        .cyber-buy-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(253, 19, 19, 0.5);
        }

      .cyber-main {
            margin-left: 0;
            padding: 23px;
            max-width: 100%;
            min-height: 100vh;
            transition: margin-left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            align-items: center;
            justify-content: center;
        }

        .cyber-main.shifted {
            margin-left: 280px;
        }
        
        .cyber-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            animation: fadeInDown 1s ease;
        }

        .cyber-header h1 {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary);
            font-size: 2.5rem;
            text-shadow: 0 0 10px rgba(253, 19, 90, 0.5);
            letter-spacing: 2px;
            position: relative;
        }

        .cyber-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
        }
        
        .hero {
            /*padding: 180px 5% 100px;**/
            padding: 100px 5% 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient( transparent);
            filter: blur(100px);
            top: -50%;
            left: -10%;
            opacity: 0.3;
            animation: gradientMove 15s infinite linear;
        }

        .hero h1 {
            font-size: 2.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: textAppear 0.9s forwards;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: textAppear 0.9s forwards;
        }

        .hero h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: textAppear 0.9s forwards;
        }

        .hero h4 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: textAppear 0.9s forwards;
        }

        .hero h5 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: textAppear 0.9s forwards;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: textAppear 0.9s 0.4s forwards;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            transform: scale(1);
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(211, 52, 52, 0.4);
        }

        .btn-secondary {
            background: var(--glass);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text-color);
            backdrop-filter: blur(8px);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
        }
          
.header {
  text-align: center;
  margin-bottom: 10px;
}

.header img {
  align-items: center;
  width: 30%;
  height: 30%;
  border: 0.5rem solid var(--extra-light);
  border-radius: 2rem;
  box-shadow: 5px 5px 30px rgba(194, 3, 3, 0.849);
}

.content span {
            text-align: center;
            margin-bottom: 1.5px;
            font-size: clamp(3rem, 4vw, 3rem);
            background: var(--gradient);
            line-height: 1.2;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .features {
            padding: 4rem 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            position: relative;
        }

        .feature-card {
            background: var(--glass);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.12);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .feature-card i {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-card2 {
            background: var(--glass);
            padding: 1rem;
            border-radius: 20px;
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .feature-card2:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.12);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        
        h1, h2 {
            text-align: center;
            margin-bottom: 1px;
            font-size: clamp(2.5rem, 4vw, 3rem);
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            animation: logoPulse 4s ease-in-out infinite;
        }

        
h3,h4{
  color: var(--black-color);
  font-weight: var(--f-600);
}

  p{
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            animation: textAppear 0.9s 0.4s forwards;
            text-align: center;
        }

        /* Cyberpunk Stats Grid */
        .cyber-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .cyber-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid rgba(253, 19, 90, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: cardFadeIn 0.8s ease forwards;
        }

        .cyber-card:nth-child(1) { animation-delay: 0.2s; }
        .cyber-card:nth-child(2) { animation-delay: 0.4s; }
        .cyber-card:nth-child(3) { animation-delay: 0.6s; }
        .cyber-card:nth-child(4) { animation-delay: 0.8s; }
        .cyber-card:nth-child(5) { animation-delay: 1.0s; }
        .cyber-card:nth-child(6) { animation-delay: 1.2s; }

        .cyber-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(253, 19, 90, 0.1), rgba(0, 240, 255, 0.05));
            z-index: -1;
        }

        .cyber-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(253, 19, 90, 0.2);
            border-color: rgba(253, 19, 90, 0.4);
        }

        .cyber-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .cyber-icon {
            width: 50px;
            height: 50px;
            background: rgba(253, 19, 90, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
            color: var(--primary);
            border: 1px solid rgba(253, 19, 90, 0.3);
        }

        .cyber-card-title {
            font-size: 1rem;
            color: var(--light);
            opacity: 0.8;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cyber-card-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }

        .cyber-card-footer {
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--secondary);
            display: flex;
            align-items: center;
        }
        
        .system-info {
            background: var(--glass);
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;
            backdrop-filter: blur(12px);
            box-shadow: 0 5px 15px rgba(255, 0, 119, 0.212);
            transition: all var(--transition-speed);
        }

        .dark-mode .system-info {
            background: rgba(50, 50, 60, 0.8);
        }

        .system-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .system-info h3 {
            margin-top: 0;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 1.8em;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }

        .system-info ul {
            list-style-type: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
        }

        .system-info li {
            background: rgba(255,255,255,0.6);
            padding: 15px;
            border-radius: 10px;
            transition: all var(--transition-speed);
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid var(--tertiary-color);
        }

        .dark-mode .system-info li {
            background: rgba(60,60,70,0.6);
        }

        .system-info li:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            background: rgba(255,255,255,0.8);
            border-left: 4px solid var(--primary-color);
        }

        .dark-mode .system-info li:hover {
            background: rgba(70,70,80,0.8);
        }

        .system-info strong {
            font-weight: 600;
            margin-right: 5px;
            display: block;
            font-size: 0.95em;
            color: var(--primary-color);
        }

        .system-info span {
            font-size: 1.1em;
            color: var(--text-color);
        }


.autoslider{
    width: 285px;
    max-width: 100vw;
    height: 180px;
    margin: auto;
    position: relative;
    border: 0.3rem solid var(--extra-light);
    border-radius: 1.3rem;
    box-shadow: 5px 5px 30px rgba(194, 3, 3, 0.849);
    overflow: hidden;
}
.autoslider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.autoslider .list img{
    width: 285px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.autoslider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.autoslider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.autoslider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.autoslider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.autoslider .dots li.active{
    width: 30px;
}

.contactContain{
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  max-width: 850px;
  margin: 0 auto;
}
.con_title{
  font-size: var(--body-text);
  font-weight: var(--f-600);
  text-transform: uppercase;
}
.contact_details{
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  margin-bottom: 50px;
}
.contact_item{
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.contact_icon{
  color: var(--black-color);
  font-size: var(--icon-size);
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.contact_method{
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
.contact_method span{
  font-weight: var(--f-500);
  text-transform: uppercase;
}
.contact_method div{
  color: var(--black-color);
  text-transform: lowercase;
  font-weight: var(--f-600);
}
.contact_method a{
  text-transform: uppercase;
  padding: .5rem 0;
  text-decoration: none;
}
.contact_method a:hover{
  color: var(--black-color);
  box-shadow: none;
}
.contact_method a span{
  font-size: var(--small-body);
}
.contact_social_links{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}
.contactForm_container{
  position: relative;
  background: var(--glass-bg);
  border: 3px solid var(--s-glass-border);
  margin-top: 3rem;
  padding: 30px;
  border-radius: 35px;
}
.contactForm_container h2{
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 1rem;
}
.contactForm_container h2 span{
  color: var(--black-color);
}
.contactForm_container p{
  font-size: var(--small-body);
  margin-bottom: 30px;
}
form{
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.contactForm_container form .input_group input,
.contactForm_container form .input_group textarea{
  color: var(--text-color);
  font-size: var(--small-body);
  background: var(--glass-bg);
  width: 100%;
  border: none;
  outline: none;
  padding: 17px 20px;
  border-radius: 10px;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
}
.contactForm_container form .input_group textarea{
  height: 180px;
  resize: none;
}


/*=============== BUTTON ===============*/
.new_btn{
  font-weight: var(--f-500);
  background: var(--glass-bg, transparent);
  border: 4px solid var(--glass-border);
  padding: var(--space-xs) var(--space-md);
  box-sizing: content-box;
  color: var(--text-color);
  border-radius: 8px;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: capitalize;
  transition: all .5s ease-in-out;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3),
              5px 5px 15px rgba(0, 0, 0, 0.4),
              -3px -3px 10px rgba(255, 255, 255, 0.4);
}
.new_btn:is(:hover, :focus){
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: inset 1px 1px 3px var(--s-shadow-color),
              8px 8px 20px var(--s-shadow-color),
              -5px -5px 15px rgba(255, 255, 255, 0.5);
  background-color: var(--highlight-color, rgba(255,255,255,.8));
}

/*=============== FOOTER ===============*/

.footer_bottom{
  text-align: center;
  position: relative;
  width: 100vw;
  max-height: 50px;
  padding: var(--space-sm);
  color: var(--accent-color);
  background: var(--primary-bg);
}

.footer_bottom p{
    font-size: 16px;
}


/*=============== ICON ===============*/
.icns{
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}
.icns a{
  padding: var(--space-xs);
  font-size: var(--icon-size);
  border-radius: 8px;
  font-weight: var(--f-500);
  color: var(--text-color);
  background: var(--glass-bg, transparent);
  text-transform: lowercase;
  transition: all .5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3),
              5px 5px 15px rgba(0, 0, 0, 0.4),
              -3px -3px 10px rgba(255, 255, 255, 0.4);
}
.icns a:hover{
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: inset 1px 1px 3px var(--shadow-color),              
              8px 8px 20px var(--shadow-color),              
              -5px -5px 15px rgba(255, 255, 255, 0.5);
  background: var(--highlight-color, rgba(255,255,255,.8));
  border-radius: 50%;
}

.sub_title{
  font-weight: 600px;
  font-size: 19px;
  text-align: center;
  color: var(--black-color);
}

/*============ API SECTION ======================*/
        .api-dashboard-section {
            background: rgba(20, 20, 40, 0.6);
            border-radius: 15px;
            padding: 20px;
            margin: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.18);
        }
        .api-section-header {
            margin-bottom: 18px; padding-bottom: 10px;
            border-bottom: 1px solid rgba(0,255,231,0.12);
        }
        .api-section-title {
            font-size: 1.2rem; color: var(--primary); margin: 0;
            display: flex; align-items: center;
        }
        .api-section-title i { margin-right: 10px; }
        .api-endpoint-url {
            background: rgba(0,0,0,0.3);
            border-radius: 8px;
            padding: 10px 15px;
            margin-bottom: 18px;
            font-family: monospace;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 1em;
        }
        .api-endpoint-url span { overflow-x: auto; white-space: nowrap; margin-right: 10px;}
        .api-copy-btn {
            background: rgba(0,255,231,0.1);
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 5px 13px;
            border-radius: 5px;
            font-size: 0.95em;
            cursor: pointer;
            transition: all 0.3s;
        }
        .api-copy-btn:hover {
            background: rgba(0,255,231,0.18);
        }
        .api-description {
            color: #cfd8dc;
            margin-bottom: 1.1em;
            font-size: 1.05em;
        }
        .api-test-section {
            display: flex; gap: 1em; align-items: center;
            margin-bottom: 0.7em; flex-wrap: wrap;
        }
        .api-test-input {
            padding: 0.7em 1.2em;
            border-radius: 16px;
            border: none;
            width: 60%;
            font-size: 1em;
            outline: none;
            background: #1a222e;
            color: #fff;
            box-shadow: 0 2px 10px #00ffe770;
            transition: box-shadow 0.19s;
        }
        .api-test-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            font-weight: bold;
            padding: 0.8em 2.2em;
            border-radius: 18px;
            border: none;
            font-size: 1em;
            cursor: pointer;
            box-shadow: 0 6px 18px #00ffe72a;
            transition: background 0.2s, transform 0.2s;
            margin-top: 9px;
        }
        .api-test-btn:hover {
            background: var(--primary);
            color: #07071a;
            transform: scale(1.03);
        }
        .api-response {
            width: 100%;
            background: #111a;
            color: #00ffe7;
            padding: 1.2em;
            border-radius: 12px;
            min-height: 100px;
            max-height: 350px;
            overflow-y: auto;
            text-align: left;
            font-family: 'Roboto Mono', monospace;
            font-size: 1em;
            transition: box-shadow 0.2s;
            box-shadow: 0 2px 12px #00ffe755;
        }

/*=========== Notification ==================*/

        .notification {
            position: fixed;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .notification.show {
            opacity: 1;
            visibility: visible;
        }

        .notification.error {
            background: hsla(0, 70%, 50%, 0.1);
            border-color: hsla(0, 70%, 50%, 0.2);
            color: hsl(0, 70%, 60%);
        }

        .notification.success {
            background: hsla(142, 70%, 45%, 0.1);
            border-color: hsla(142, 70%, 45%, 0.2);
            color: var(--primary);
        }


        /* Cyberpunk Notifications */
        .cyber-notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-left: 4px solid var(--primary);
            padding: 15px 20px;
            border-radius: 5px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transform: translateX(150%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            z-index: 1000;
            max-width: 300px;
            display: flex;
            align-items: center;
        }

        .cyber-notification.active {
            transform: translateX(0);
        }

        .cyber-notification i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .cyber-notification-content {
            flex: 1;
        }

        .cyber-notification-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: #00ffdd;
        }

        .cyber-notification-message {
            font-size: 0.9rem;
            color: var(--light);
            opacity: 0.9;
        }

/*================= FILTER SECTION ============ */

.wrapper{
    width: 100%;
    overflow-x: hidden;
}
.wrapper .container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}
.category-filter{
    margin-top: 40px;
}
.title{
    margin-bottom: 40px;
}
.title h1{
    color: #1b1919;
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: 1px;
}
.filter-btns{
    text-align: center;
}
.filter-btn{
    background: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-transform: uppercase;
    display: inline-block;
    margin: 5px 15px;
    font-size: 16px;
    color: #d3d3d3;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.filter-btn::after{
    content: "";
    position: absolute;
    top: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 2px;
    width: 0;
    background-color: #ff0000;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}
.filter-btn:hover{
    color: #ff0000;
}
.filter-btn:hover::after{
    width: 100%;
}
/* active button */
.active-btn{
    color: #ff0000;
}
.active-btn::after{
    width: 100%;
}
/*  */

.filter-items{
    margin-top: 40px;
}
.item-img{
    position: relative;
    overflow: hidden;
}
.item-img::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 203, 203, 0.1);
}
.item-img .discount{
    position: absolute;
    right: 0;
    top: 20px;
    background-color: #95bf47;
    z-index: 1;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    padding: 4px 16px;
}
.item-img img{
    width: 100%;
    display: block;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.filter-item:hover .item-img img{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.item-info{
    padding: 14px 0;
    align-items: center;
    justify-content: center;
}
.item-info p{
    font-weight: 600;
    font-size: 17px;
    margin-top: 8px;
}
.item-info .old-price{
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
}
.item-info .new-price{
    display: inline-block;
    margin-left: 6px;
    font-weight: 600;
    color: #f53939;
}
.add-btn{
    display: inline-block;
    margin-top: 20px;
    background-color: #95bf47;
    text-decoration: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 2px;
    border: 2px solid #95bf47;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.add-btn:hover{
    border-color: #95bf47;
    background-color: #fff;
    color: #95bf47;
}


.filter-items{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    gap: 30px;
}
.filter-item{
    width: 100%;
    margin-bottom: 40px;
    -webkit-animation: fadeIn 1s;
            animation: fadeIn 1s;
}

/*=============== CARD ===============*/
.profile-container{
    height: 100%;
    margin-inline: 1.5rem;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
}

.profile-card{
    position: relative;
    width: 256px;
    background-color: var(--profile-color);
    padding: 1.25rem 2rem 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px hsla(29, 75%, 8%, .2);
}
    .profile-card__img{
        width: 96px;
        border-radius: 50%;
    }
    .profile-card__border{
        width: 110px;
        height: 110px;
        border: 2px solid var(--first-color);
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin: 0 auto .75rem;
    }
    .profile-card__name{
        color: var(--first-color);
        font-size: var(--h3-font-size);
        font-weight: 500;
    }
    .profile-card__profession{
        color: var(--text-color);
        font-size: var(--smaller-font-size);
        font-weight: 500;
    }
    .profile-card__social{
        width: 200px;
        background-color: var(--first-color);
        padding: .75rem;
        border-radius: 3rem;
        text-align: initial;
        box-shadow: 0 8px 24px hsla(29, 75%, 56%, .3);
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1.75rem;
        margin: 0 auto;
        overflow: hidden;
        transform-origin: 18px 17px;
    }
        .profile-card__social-control{
            position: relative;
            transform-origin: 18px 18px;
            transition: transform .45s ease;
            transform: rotate(0);
        }

        .profile-card__social-toggle{
            display: inline-flex;
            background-color: var(--profile-color);
            color: var(--first-color);
            font-size: 1.25rem;
            padding: .5rem;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            z-index: 10;
        }
        .profile-card__social-text{
            display: block;
            color: var(--profile-color);
            font-size: var(--smaller-font-size);
            font-weight: 500;
        }
        .profile-card__social-list{
            display: inline-flex;
            column-gap: .75rem; 
            transform: rotate(135deg);
            transform-origin: 18px 17px;
        }
        .profile-card__social-link {
            display: inline-flex;
            background-color: var(--first-color-light);
            color: var(--profile-color);
            font-size: 1.25rem;
            padding: 6px;
            border-radius: 50%;
        }
        .profile-card__social-text,
        .profile-card__social-list{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding-left: 3.1rem;
        }
        .profile-card__social-text{
            top: .5rem;
        }
    

/* Rotate social */
.animation .profile-card__social-control{
    transform: rotate(-135deg);
}

/* Up animation */
.profile-card__social.animation{
    animation: up-animation 1s ease-in-out forwards;
}

@keyframes up-animation {
    0%, 100% {
      transform: rotate(0);
    }
    50%, 60% {
      transform: rotate(-3deg);
    }
    88% {
      transform: rotate(1deg);
    }
}

/* Down animation */
.profile-card__social.down-animation{
    animation: down-animation 1s ease-in-out forwards;
}

@keyframes down-animation {
    0%, 100% {
      transform: rotate(0);
    }
    50%, 60% {
      transform: rotate(6deg);
    }
    88% {
      transform: rotate(-1deg);
    }
}

/*============== PLUGIN DASEBOARD ================*/

        .alert {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--success-color);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            display: none;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: slideInRight 0.3s ease;
        }

        .alert.error {
            background: var(--error-color);
        }

        .monitor-board {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            transition: all var(--transition-speed);
        }

        .dark-mode .monitor-board {
            background: rgba(50, 50, 60, 0.8);
        }

        .monitor-item {
            text-align: center;
            padding: 20px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.6);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            transition: all var(--transition-speed);
            backdrop-filter: blur(5px);
        }

        .dark-mode .monitor-item {
            background: rgba(60, 60, 70, 0.6);
        }

        .monitor-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.8);
        }

        .dark-mode .monitor-item:hover {
            background: rgba(70, 70, 80, 0.8);
        }

        .monitor-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: transform var(--transition-speed);
        }

        .monitor-item:hover .monitor-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .monitor-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-color);
            font-size: 0.95em;
        }

        .monitor-value {
            font-size: 1.4em;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: all var(--transition-speed);
        }

        .monitor-item:hover .monitor-value {
            transform: scale(1.1);
        }

/*=============== SESSION ================*/

    .session-container {
      text-align: center;
      padding: 30px;
      background: #162447;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      width: 90%;
      max-width: 420px;
      transition: all 0.3s ease;
      position: relative;
    }

    .session-container:hover {
      transform: scale(1.02);
    }

    .session-bot-logo {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 20px;
      transition: transform 0.3s ease;
    }

    .session-bot-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .session-typing-effect {
      font-size: 1.8em;
      font-weight: bold;
      color: #e94560;
      overflow: hidden;
      white-space: nowrap;
      border-right: 3px solid #e94560;
      animation: typing 2s steps(20, end), hide-caret 0s 2s forwards;
    }

    #sessionGenerate {
      font-size: 1.2em;
      color: #aaa;
      overflow: hidden;
      white-space: nowrap;
      border-right: 3px solid #aaa;
      visibility: hidden;
    }

    .session-input-field {
      margin: 20px 0;
    }

    .session-input-field input {
      width: 100%;
      padding: 12px;
      font-size: 1em;
      border: 1px solid #ddd;
      border-radius: 8px;
      outline: none;
      transition: all 0.3s ease;
      background-color: #0f3460;
      color: #f5f5f5;
    }

    .session-input-field input::placeholder {
      color: #aaa;
    }

    .session-input-field input:focus {
      border-color: #e94560;
    }

    .session-code-display {
      padding: 15px;
      background-color: #0f3460;
      border-radius: 8px;
      margin: 20px 0;
      font-size: 1.1em;
      color: #f5f5f5;
    }

    .session-copy-button, .session-generate-button {
      background-color: #e94560;
      color: #fff;
      border: none;
      padding: 12px 25px;
      font-size: 1em;
      font-weight: bold;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
    }

    .session-copy-button:hover, .session-generate-button:hover {
      background-color: #eb3b58;
    }

    .session-copy-button:active, .session-generate-button:active {
      transform: scale(0.98);
    }

    #session-loading-spinner {
      display: none;
      color: white;
      margin-top: 10px;
    }

    .fa-spinner {
      animation: spin 2s linear infinite;
    }

        .language-toggle {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

.swiper-section {
  position: relative;
  height: 250px;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  margin: 5px 0;
  margin-left: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.card::before {
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;
  background: var(--gradient);
  border-radius: 20px 20px 0 0;
}
.card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  position: relative;
  z-index: 100;
}
.card-content .image {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient);
}

.card-content .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}
.card .media-icons {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card .media-icons i {
  color: #fff;
  opacity: 0.6;
  margin-top: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.card .media-icons i:hover {
  opacity: 1;
}
.card .name-profession {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  color: #000000;
}
.name-profession .name {
  font-size: 20px;
  font-weight: 600;
}
.name-profession .profession {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.card .rating {
  display: flex;
  align-items: center;
  margin-top: 18px;
}
.card .rating i {
  font-size: 18px;
  margin: 0 2px;
  color: #e82a2a;
}
.card .button {
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}
.card .button button {
  background: var(--gradient);
  outline: none;
  border: none;
  color: #fff;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button button:hover {
  background: #d01616;
}

/*============== developer info ================*/
.navigation {
        position: absolute;
        top: 0;
        left: -20px;
        height: 100%;
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .navigation:nth-child(4) {
        left: calc(100% - 20px);
      }
      .navigation button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgb(77, 77, 77);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        outline: none;
        border: none;
      }
      .navigation button span {
        font-size: 24px;
        color: white;
      }
      .navigation button:hover {
        background: rgb(215, 16, 16);
      }

     .slide-lock {
        width: 900px;
        max-width: 100%;
        overflow: hidden;
        min-width: 300px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        box-sizing: border-box;
        padding: 15px;
        scroll-behavior: smooth;
      }

      .slides {
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
      }
      
      .carousel {
        width: 90%;
        height: fit-content;
        background: rgba(245, 245, 245, 0);
        border-radius: 2mm;
        box-sizing: border-box;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-direction: column;
        font-weight: 600;
      }

      .thanksteam{
        background: var(--glass);
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all var(--transition-speed);
      }

      .thanksteam h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(30px);
        animation: textAppear 0.9s forwards;
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
      }

      .thanksteam h3{
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: #ff0000;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(30px);
        animation: textAppear 0.9s forwards;
      }

      .thanksteam h4{
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: #ffffff;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(30px);
        animation: textAppear 0.9s forwards;
      }

      .thanksteam h4 span{
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: #00e1ff;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(30px);
        animation: textAppear 0.9s forwards;
      }


.header__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__content > div {
  max-width: 400px;
  display: grid;
  gap: 1rem;
}

.header__content .action__btns {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.story {
  display: flex;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
}

.video__image {
  position: relative;
}

.video__image img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 2px #00F0FF;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.video__image span {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
}

.video__image span i {
  padding: 0.5rem;
  font-size: 1rem;
  color: red;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
}

.story > span {
  font-size: 1.2rem;
  font-family: 'Orbitron', sans-serif;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
  animation: textGlow 1.5s infinite alternate;
}

        .thanksteam-progress {
            width: 297px;
            height: 4px;
             background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

/*============== API RESPONSE =================*/

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.api-preview {
    background: var(--glass-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.code-window {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    overflow: hidden;
    min-width: 400px;
}

.window-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ff5f57; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.window-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary-color);
    min-height: 200px;
}

/*=============== Button ================*/

.cyber-profile-btn::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
}


#cyberProfileBtn.cyber-profile-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(253, 19, 90, 0.6);
}

/* Original styles for other profile buttons in the popup */
.cyber-profile-btn {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-profile-btn i {
    margin-right: 10px;
}

.cyber-profile-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.cyber-profile-btn-secondary {
    background: rgba(30, 30, 30, 0.7);
    color: var(--light);
    border: 1px solid var(--gray);
}

.cyber-profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 19, 90, 0.3);
}

        .cyber-profile-btns {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(253, 19, 90, 0.4);
            position: relative;
        }

        .cyber-profile-btns::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            border: 2px solid var(--primary);
        }

        .cyber-profile-btns:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(253, 19, 90, 0.6);
        }
    
        .cyber-profile-logo{
            align-items: center;
            justify-content: center;
            margin-bottom: 3px;
        }

        .cyber-profile-logo img{
           width: 44%;
           height: 44%;
           border: 0.2rem solid #00ffff;
           border-radius: 4rem;
           box-shadow: 5px 5px 30px rgba(194, 3, 3, 0.849);
           margin: auto;
           margin-left: 25%;
           object-fit: cover;
        }

        .supun-profile-edit{
            position: absolute;
            top: 16px;
            right: 16px;
            background: #ff3535;
            border: none;
            width: 19px;
            height: 19px;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin: auto;
        }
        
        .supun-profile-edit:hover {
            background: #00f7ff;
            transform: scale(1.05);
        }

        
        .cyber-profile-value i {
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.5rem;
            text-align: center;
        }

        .cyber-profile-value i:hover {
            transform: scale(1.1);
            color: var(--secondary);
        }

/*============== EDIT PROFILE ===============*/


/*=============== MEDIA QUERIES ===============*/
@media screen and (max-width: 768px){
    .autoslider{
        height: 180px;
    }
    .filter-item{
        width: calc(50% - 30px);
    }
}

    @media (max-width:800px) {
        .contact-inputs{
            width: 80vw;
        }

        .contact-right{
            display: none;
        }
    }

        @media (max-width: 480px) {
            .monitor-board {
                grid-template-columns: 1fr;
            }
            
    .code-window {
        min-width: 200px;
    }

    .window-controls {
        gap: 6px;
    }
    
    .window-title {
        font-size: 0.8rem;
    }

    .code-content {
        padding: 12px;
        font-size: 0.7rem;
        min-height: 150px;
    }
        }
    
@media (min-width:768px){
  .contactChat_head{
    display: flex;
  }
  .icons{
    order: -1;
    flex-direction: column;
  }
  
  .monitor-board {
        grid-template-columns: repeat(2, 1fr);
    }
    .swiper-section {
    padding: 15px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
    .code-window {
        min-width: 250px;
    }

    .window-header {
        padding: 10px 15px;
    }
    
    .code-content {
        padding: 15px;
        font-size: 0.8rem;
    }

}

@media screen and (min-width: 992px){
    .filter-item{
        width: calc(33.3333% - 30px);
    }
}

@media screen and (min-width: 1200px){
    .filter-item{
        width: calc(25% - 30px);
    }
}


/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .code-window {
        min-width: 300px;
    }
}


   

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulsse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

        @keyframes gradientMove {
            0% { transform: translate(0,0) rotate(0deg); }
            100% { transform: translate(300px,200px) rotate(360deg); }
        }

        @keyframes textAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes navHover {
            from { transform: translateX(-100%); }
            to { transform: translateX(100%); }
        }
        
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

        @keyframes cardFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

@-webkit-keyframes fadeIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

    @keyframes typing {
      from { width: 0; }
      to { width: 100%; }
    }

    @keyframes hide-caret {
      to { border-right: none; }
    }

        @keyframes textGlow {
            from { text-shadow: 0 0 5px var(--secondary); }
            to { text-shadow: 0 0 15px var(--secondary), 0 0 20px var(--primary); }
        }
        
        @keyframes logoPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes scaleUp {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }