       :root {
            --primary-dark:  #161722;
            --secondary-dark: #161722;
            --primary-accent: #9ef01a;
            --secondary-accent: #9ef01a;
            --tertiary-accent: #610a26;
            --text-primary: #f8f9fa;
            --text-secondary: #adb5bd;
            --card-bg: rgba(29, 30, 44, 0.7);
            --transition: all 0.3s ease;
            --section-spacing: 8rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 400;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
    .navbar { 
             width: 100%;
            background-color: rgba(20, 29, 43, 0.95);
            padding: 0 20px;
       
            position: sticky;
            top: 0;
            z-index: 1000;
              box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            
        }

        .nav-container {
            font-family:Verdana, Geneva, Tahoma, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            margin-top: 10px;
            display: flex;
            align-items: center;
            font-weight: bold;
            color: #9fef00;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .logo-text {
            margin-left: 10PX;
            font-size: 3rem;
            white-space: nowrap;
            transition: all 0.3s ease;
           font-family: 'Orbitron', sans-serif;
            
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-item {
            margin-left: 25px;
        }

        .nav-link {
           color: #a4b1cd;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #9fef00;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #9fef00;
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Glowing Contact Button */
        .contact-btn {
            background: linear-gradient(135deg, #9fef00 0%, #7bc200 100%);
            color: #0c0c0c;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(159, 239, 0, 0.4);
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(159, 239, 0, 0.7), 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .contact-btn:active {
            transform: translateY(0);
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .contact-btn:hover::before {
            left: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: #9fef00;
        }

      
 

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .logo-text {
                font-size: 2rem;
            }
            
            .nav-item {
                margin-left: 20px;
            }
        }

        @media screen and (max-width: 900px) {
            .logo-text {
                font-size: 2rem;
            }
            
            .nav-item {
                margin-left: 15px;
            }
            
            .nav-link {
                font-size: 0.95rem;
            }
            
            .contact-btn {
                padding: 10px 18px;
                font-size: 0.95rem;
            }
        }

        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: #0c0c0c;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                border-top: 1px solid #333;
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 15px 0;
            }

            .nav-link {
                padding: 15px;
                display: block;
                font-size: 1.1rem;
            }

            .contact-btn {
                margin-top: 10px;
                padding: 15px 30px;
                font-size: 1.1rem;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
        }

        @media screen and (max-width: 600px) {
            .logo-text {
                font-size: 1.1rem;
            }
            
            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 1.5rem;
            }
        }

        @media screen and (max-width: 480px) {
            .logo-text {
                font-size: 1rem;
            }
            
            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 1.3rem;
                margin-right: 8px;
            }
            
            .navbar {
                padding: 0 15px;
            }
        }

        @media screen and (max-width: 400px) {
            .logo-text {
                font-size: 0.9rem;
            }
            
            .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 1.2rem;
                margin-right: 6px;
            }
        }

        @media screen and (max-width: 350px) {
            .logo-text {
                display: none;
            }
            
            .logo-icon {
                margin-right: 0;
            }
        }
        /* Hero Section */
              /* Hero Banner Styles */
        .hero {
            width: 100%;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            overflow: hidden;
            height: 85vh;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(12, 20, 39, 0.85) 0%, rgba(26, 35, 50, 0.7) 100%);
        }

        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

        .text-content {
            max-width: 700px;
            animation: fadeInUp 1s ease;
        }
        .text-content a{
            text-decoration: none;
        }

        .banner-slogan {
            text-align: left;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .banner-slogan span {
            color: #9fef00;
            text-shadow: 0 0 20px rgba(159, 239, 0, 0.5);
            position: relative;
            text-align: left;
        }

        .banner-slogan span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #9fef00, transparent);
            animation: shimmer 3s infinite;
        }

        .banner-text {
            text-align: left;
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #a4b1cd;
            line-height: 1.6;
        }

        .glow-button {
            background-color: #9fef00;
            color: #0c1427;
            border: none;
            padding: 15px 35px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(159, 239, 0, 0.4);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .glow-button:hover {
            background-color: #8cd600;
            box-shadow: 0 0 30px rgba(159, 239, 0, 0.7);
            transform: translateY(-3px);
        }

        /* Cyber Circle Animation */
        .cyber-circle {
            position: relative;
            width: 400px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotate 20s linear infinite;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            border: 2px solid transparent;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            border-top: 2px solid #9fef00;
            border-right: 2px solid transparent;
            animation: spin 8s linear infinite;
        }

        .circle-2 {
            width: 250px;
            height: 250px;
            border-bottom: 2px solid #9fef00;
            border-left: 2px solid transparent;
            animation: spin 6s linear infinite reverse;
        }

        .circle-3 {
            width: 200px;
            height: 200px;
            border-top: 2px solid #9fef00;
            border-right: 2px solid transparent;
            animation: spin 4s linear infinite;
        }

        .inner-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(159, 239, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }

        .inner-circle h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #9fef00;
        }

        .inner-circle p {
            font-size: 0.9rem;
            color: #a4b1cd;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background-color: #9fef00;
            transform: scale(1.2);
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(20, 29, 43, 0.7);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .slider-arrow:hover {
            background-color: #9fef00;
            color: #0c1427;
        }

        .slider-arrow.left {
            left: 20px;
        }

        .slider-arrow.right {
            right: 20px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .banner-slogan {
                font-size: 2.8rem;
            }
            
            .cyber-circle {
                width: 250px;
                height: 250px;
            }
            
            .circle-1 {
                width: 250px;
                height: 250px;
            }
            
            .circle-2 {
                width: 200px;
                height: 200px;
            }
            
            .circle-3 {
                width: 150px;
                height: 150px;
            }
            
            .inner-circle {
                width: 120px;
                height: 120px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                gap: 15px;
            }
            
            .hero {
                padding-top: 150px;
                height: auto;
                min-height: 500px;
            }
            
            .banner-content {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            
            .banner-slogan {
                font-size: 2.2rem;
            }
            
            .banner-text {
                font-size: 1rem;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
            }
            
            .cyber-circle {
                width: 200px;
                height: 200px;
            }
            
            .circle-1 {
                width: 200px;
                height: 200px;
            }
            
            .circle-2 {
                width: 160px;
                height: 160px;
            }
            
            .circle-3 {
                width: 120px;
                height: 120px;
            }
            
            .inner-circle {
                width: 100px;
                height: 100px;
                padding: 15px;
            }
            
            .inner-circle h3 {
                font-size: 1rem;
            }
            
            .inner-circle p {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 576px) {
            .banner-content {
                padding: 0 20px;
            }
            
            .banner-slogan {
                font-size: 1.8rem;
            }
            
            .slider-arrow {
                display: none;
            }
            
            .cyber-circle {
                width: 150px;
                height: 150px;
            }
            
            .circle-1 {
                width: 150px;
                height: 150px;
            }
            
            .circle-2 {
                width: 120px;
                height: 120px;
            }
            
            .circle-3 {
                width: 90px;
                height: 90px;
            }
            
            .inner-circle {
                width: 80px;
                height: 80px;
                padding: 10px;
            }
            
            .inner-circle h3 {
                font-size: 0.8rem;
            }
            
            .inner-circle p {
                font-size: 0.7rem;
            }
        }
        

       
        /* About Section */
        .containe {
            margin: auto;
            max-width: 1000px;
            width: 100%;
        }
        
        .cyber-cardd {
            background: linear-gradient(145deg, #0f1525, #0a0e17);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
            border: 1px solid #2b4c7c;
        }
        
        .cyber-cardd::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #9fef00, #2b4c7c);
        }
        
        .hheader {
            text-align: center;
           
        }
        
        .logo {
            color: #9fef00;
            font-size: 3.5rem;
            margin-bottom: 15px;
        }
        
        .hheader h1 {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-align: center;
        }
        
        .hheader p {
            font-size: 1rem;
            color: #a0a0b0;
            max-width: 800px;
            margin: auto;
             margin-bottom: 20px;
          font-family: 'Courier New', monospace;
        }
        
        .content {
            font-family: 'Courier New', monospace;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
           
        }
        
        .mission {
            flex: 1;
            min-width: 300px;
            padding: 25px;
            background: rgba(15, 25, 45, 0.5);
            border-radius: 8px;
            border-left: 4px solid #9fef00;
        }
        .mission p{
             font-family: 'Courier New', monospace;
            font-size: 1.2rem;
        }
        
        .mission h2 {
            color: #9fef00;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .services {
            flex: 1;
            min-width: 300px;
            font-family: 'Courier New', monospace;
            margin: auto;
        }
        
        .services h2 {
            color: #9fef00;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            
        }
        
        .service-items {
            background: rgba(15, 25, 45, 0.5);
            padding: 15px;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #2b4c7c;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        
        .service-items:hover {
            transform: translateY(-3px);
            border-color: #9fef00;
            box-shadow: 0 5px 15px rgba(159, 239, 0, 0.2);
        }
        
        .service-items i {
            font-size: 2rem;
            color: #9fef00;
            margin-bottom: 10px;
        }
        
        .service-items h3 {
            color: #ffffff;
            font-size: 1.1rem;
        }
        
        .terminal {
            margin-top: 20px;
            background: #0a0e17;
            border: 1px solid #9fef00;
            border-radius: 8px;
            padding: 20px;
            font-family: 'Courier New', monospace;
            position: relative;
        }
        
        .terminal-header {
            background: #0f1525;
            padding: 10px 15px;
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
            margin: -20px -20px 20px -20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #2b4c7c;
        }
        
        .terminal-title {
            color: #9fef00;
            font-weight: bold;
        }
        
        .terminal-controls {
            display: flex;
        }
        
        .control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-left: 8px;
        }
        
        .close { background-color: #ff5f56; }
        .minimize { background-color: #ffbd2e; }
        .expand { background-color: #27c93f; }
        
        .terminal-content {
            color: #9fef00;
            margin-top: 20px;
        }
        
        .command {
            color: #a0a0b0;
            margin-bottom: 10px;
        }
        
        .result {
            margin-bottom: 15px;
        }
        
        .blink {
            animation: blink 1s step-end infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        @media (max-width: 768px) {

             .hero-visual {
             display: none;
        }
        .cyber-circle{
            display: none;
        }
            .hheader h1 {
                font-size: 2.2rem;
            }
            
            .content {
                flex-direction: column;
            }

            .terminal{
                width: 100%;
                margin: auto;
            }
             
        }
         

        .mission-container {
            max-width: 900px;
            width: 100%;
            padding: 50px;
            margin: auto;
            border-radius: 15px;
            text-align: center;
            position: relative;
            overflow: hidden;
             
        }
        
        .mission-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #9fef00; /* Hack The Box green */
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .mission-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #9fef00, transparent);
        }
        
        .mission-text {
            font-size: 1.5rem;
            line-height: 1.6;
            color: #a4b1cd;
            margin-top: 30px;
            position: relative;
            padding: 0 20px;
        }
        
        .mission-text::before,
        .mission-text::after {
            content: '"';
            font-size: 4rem;
            color: #9fef00;
            opacity: 0.3;
            position: absolute;
            line-height: 1;
        }
        
        .mission-text::before {
            top: -20px;
            left: 0;
        }
        
        .mission-text::after {
            bottom: -40px;
            right: 0;
        }
        
        .mission-company {
            display: block;
            margin-top: 50px;
            font-size: 1.8rem;
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .mission-company::before {
            content: '';
            display: block;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #9fef00, transparent);
            margin: 0 auto 15px;
        }
        
        /* Background animation elements */
        .background-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(159, 239, 0, 0.05);
            animation: float 15s infinite linear;
        }
        
        .bg-1 {
            width: 150px;
            height: 150px;
            top: -50px;
            left: 10%;
            animation-delay: 0s;
        }
        
        .bg-2 {
            width: 100px;
            height: 100px;
            bottom: 50px;
            right: 10%;
            animation-delay: -5s;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .mission-title {
                font-size: 2rem;
            }
            
            .mission-text {
                font-size: 1.3rem;
                padding: 0 10px;
            }
            
            .mission-company {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .mission-container {
                padding: 30px 20px;
            }
            
            .mission-title {
                font-size: 1.8rem;
            }
            
            .mission-text {
                font-size: 1.1rem;
            }
            
            .mission-company {
                font-size: 1.3rem;
            }
        } 

        .containere {
            width: 100%;
            max-width: 900px;
            margin: auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .service-item {
            font-family: 'Courier New', monospace;
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--primary-accent);
        }

        .item-image {
            width: 200px;
            height: 200px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .item-content {
            flex-grow: 1;
        }

        .item-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 0 0.5rem 0;
            color: var(--primary-accent);
        }

        .item-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .item-list li {
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            line-height: 1.4;
            display: flex;
            align-items: flex-start;
            color: #a0aec0;
        }

        .item-list li::before {
            content: '•';
            color: #00c2a2;
            font-weight: 600;
            margin-right: 0.75rem;
            font-size: 1.2rem;
            line-height: 1;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 2rem;
            text-align: center;
        }

        @media (max-width: 600px) {
            body {
                padding: 1rem;
            }
            .service-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem;
            }
            .item-image {
                width: 100%;
                height: auto;
                margin-bottom: 1rem;
            }
            .item-title {
                font-size: 1.1rem;
            }
            h1 {
                font-size: 2rem;
            }
        }

        /* Why Choose Us */
            .why-choose-section {
            font-family: 'Courier New', monospace;
            max-width: 100%;
            margin: 40px auto;
            padding: 40px 20px;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .wsection-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
        
        .wsection-header h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #9fef00; /* Hack The Box green */
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeInDown 1s ease-out;
        }
        
        .wsection-header p {
            font-size: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
            color: #a4b1cd;
            animation: fadeInUp 1s ease-out;
        }
        
        .features-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .feature {
            border: 1px solid var(--primary-accent);
            flex: 1 1 300px;
            max-width: 350px;
            padding: 25px;
            background: rgba(20, 20, 40, 0.7);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeIn 1s ease-out;
            animation-fill-mode: both;
        }
        
        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(159, 239, 0, 0.2);
        }
        
        .feature:nth-child(1) { animation-delay: 0.2s; }
        .feature:nth-child(2) { animation-delay: 0.4s; }
        .feature:nth-child(3) { animation-delay: 0.6s; }
        .feature:nth-child(4) { animation-delay: 0.8s; }
        .feature:nth-child(5) { animation-delay: 1s; }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #9fef00;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .feature h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
            text-align: center;
        }
        
        .feature p {
            font-size: 1.1rem;
            color: #a4b1cd;
            text-align: center;
        }
        
        /* Background animation elements */
        .background-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(159, 239, 0, 0.05);
            animation: float 15s infinite linear;
        }
        
        .bg-1 {
            width: 150px;
            height: 150px;
            top: -50px;
            left: 10%;
            animation-delay: 0s;
        }
        
        .bg-2 {
            width: 100px;
            height: 100px;
            bottom: 50px;
            right: 10%;
            animation-delay: -5s;
        }
        
        .bg-3 {
            width: 80px;
            height: 80px;
            top: 40%;
            left: 5%;
            animation-delay: -10s;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .wsection-header h2 {
                font-size: 2.2rem;
            }
            
            .wsection-header p {
                font-size: 1.2rem;
            }
            
            .feature {
                flex: 1 1 100%;
            }
        }
        
        @media (max-width: 480px) {
            .wsection-header h2 {
                font-size: 1.8rem;
            }
            
            .feature h3 {
                font-size: 1.3rem;
            }
            
            .feature p {
                font-size: 1rem;
            }
        }
        /* Contact Section */
        
      
        .cta-button {
            background-color: #9fef00;
            color: #141d2b;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(159, 239, 0, 0.3);
        }

        .cta-button:hover {
            background-color: #8cd600;
            box-shadow: 0 0 20px rgba(159, 239, 0, 0.5);
            transform: translateY(-2px);
        }

        /* Contact Hero Section */
        .contact-hero {
            padding: 100px 0 80px;
            background: linear-gradient(135deg, rgba(20, 29, 43, 0.9) 0%, rgba(26, 35, 50, 0.8) 100%), 
                        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .contact-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            color: #a4b1cd;
        }

        /* Contact Content */
        .contact-content {
            padding: 80px 0;
            display: flex;
            justify-content: center;
        }

        .contact-info {
            max-width: 1000px;
            width: 100%;
            text-align: center;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #9fef00;
            position: relative;
            display: inline-block;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #9fef00;
        }

        .contact-details {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            flex: 1;
            min-width: 250px;
            max-width: 300px;
        }

        .contact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-color: #9fef00;
        }

        .contact-icon {
            background-color: rgba(159, 239, 0, 0.1);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: #9fef00;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background-color: rgba(159, 239, 0, 0.2);
            transform: scale(1.1);
        }

        .contact-text h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: white;
        }

        .contact-text p {
            color: #a4b1cd;
            font-size: 1.1rem;
        }

        /* Google Map Styles */
        .map-container {
            margin-top: 40px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            height: 400px;
        }

        #google-map {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(20%) invert(90%) hue-rotate(180deg);
        }

        .map-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(20, 29, 43, 0.9);
            padding: 15px 20px;
            border-radius: 10px;
            border-left: 4px solid #9fef00;
            max-width: 300px;
        }

        .map-overlay h3 {
            color: #9fef00;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .map-overlay p {
            color: #a4b1cd;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background-color: #1a2332;
            padding: 30px ;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #9fef00;
        }

        .footer-column p, .footer-column a {
            color: #a4b1cd;
            line-height: 1.8;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column a:hover {
            color: #9fef00;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo i {
            color: #9fef00;
            font-size: 24px;
        }

        .footer-logo h2 {
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(to right, #9fef00, #7bc600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .services-list {
            list-style: none;
        }

        .services-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .services-list li:before {
            content: '▸';
            color: #9fef00;
            margin-right: 10px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #9fef00;
            color: #141d2b;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a4b1cd;
            font-size: 0.9rem;
        }

        .developer-credit {
            margin-top: 10px;
            font-size: 0.8rem;
        }

        .developer-credit a {
            color: #9fef00;
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-details {
                gap: 20px;
            }
            
            .contact-item {
                min-width: 220px;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                gap: 15px;
            }
            
            .contact-hero h1 {
                font-size: 2.8rem;
            }
            
            .contact-info h2 {
                font-size: 2.2rem;
            }
            
            .contact-details {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-item {
                width: 100%;
                max-width: 400px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .contact-hero {
                padding: 80px 0 60px;
            }
            
            .contact-hero h1 {
                font-size: 2.2rem;
            }
            
            .contact-hero p {
                font-size: 1rem;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .contact-item {
                padding: 30px 20px;
            }
            
            .contact-icon {
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
            }
            
            .map-container {
                height: 250px;
            }
            
            .map-overlay {
                bottom: 10px;
                left: 10px;
                padding: 10px 15px;
                max-width: 200px;
            }
        }