/* marquies colour chage  */
.color-change {
  font-size: 50px;
  animation: colorPulse 3s infinite;
  font-family: 'Courier New', Courier, monospace;

}

@keyframes colorPulse {
  0% {
    color: red;
  }
  25% {
    color: orange;
  }
  50% {
    color: green;
  }
  75% {
    color: blue;
  }
  100% {
    color: purple;
  }
}
/* marquies colour chage end */
/* cus scroling */
    .cus {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f5f5f5;
        }
        
        .scrolling-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin: 30px 0;
        }
        
        .scrolling-wrapper {
            display: flex;
            animation: scroll 20s linear infinite;
            width: max-content;
        }
        
        .card {
            flex: 0 0 auto;
            width: 250px;
            height: 300px;
            margin-right: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .card h3 {
            margin-top: 0;
            color: #333;
        }
        
        .card p {
            color: #666;
        }
        
        .card-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: #4CAF50;
        }
        
        .scrolling-container:hover .scrolling-wrapper {
            animation-play-state: paused;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
/* cus scroling end */
/* loading page */
      /* body {
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #f5f7fa;
            font-family: 'Arial', sans-serif;
        } */
        
        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .bicycle-loader {
            width: 150px;
            height: 100px;
            position: relative;
            margin-bottom: 30px;
        }
        
        /* Bicycle Frame */
        .frame {
            position: absolute;
            width: 120px;
            height: 60px;
            border: 8px solid #2c3e50;
            border-radius: 50% 50% 0 0;
            border-bottom: none;
            top: 20px;
            left: 15px;
        }
        
        /* Wheels */
        .wheel {
            position: absolute;
            width: 40px;
            height: 40px;
            border: 5px solid #3498db;
            border-radius: 50%;
            bottom: 0;
        }
        
        .front-wheel {
            left: 0;
        }
        
        .back-wheel {
            right: 0;
        }
        
        /* Wheel Spokes */
        .spoke {
            position: absolute;
            width: 2px;
            height: 20px;
            background: #3498db;
            top: 50%;
            left: 50%;
            transform-origin: top center;
        }
        
        /* Pedals */
        .pedals {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #e74c3c;
            border-radius: 50%;
            top: 60px;
            left: 65px;
        }
        
        /* Pedal arms */
        .pedal-arm {
            position: absolute;
            width: 3px;
            height: 30px;
            background: #e74c3c;
            top: 45px;
            left: 73px;
            transform-origin: bottom center;
        }
        
        /* Chain */
        .chain {
            position: absolute;
            width: 50px;
            height: 8px;
            background: #2c3e50;
            top: 70px;
            left: 50px;
            border-radius: 5px;
        }
        
        /* Animation */
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes pedal {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .wheel, .spoke {
            animation: rotate 2s linear infinite;
        }
        
        .pedals, .pedal-arm {
            animation: pedal 1s linear infinite;
        }
        
        /* Loading text */
        .loading-text {
            font-size: 18px;
            color: #2c3e50;
            font-weight: bold;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .progress-bar {
            width: 200px;
            height: 4px;
            background: #ecf0f1;
            margin-top: 15px;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .progress {
            height: 100%;
            width: 0%;
            background: linear-gradient(to right, #3498db, #2ecc71);
            transition: width 0.3s ease;
        }
/* loading page end */
/* noties section  */
        .notice { background: #f9f9f9; padding: 10px; margin: 10px 0; border: 1px solid #ccc; }
        textarea { 
            width: 40%; height: 60px; }
         button { 
            margin-top: 30px;
            color: rgb(225, 21, 21);
            background-color: rgb(14, 229, 14);
            }
/* noties section end */
/* testing */
            /* The popup background */
    .popup-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
    }

   /* footer section */
         .footerbodyo {
            margin: 0;
            font-family: 'Courier New', monospace;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .content {
            flex: 1;
            /* padding: 20px; */
        }
        
        .footer {
            background: #1a1a1a;
            color: #0f0;
            padding: 15px 0;
            text-align: center;
            font-size: 14px;
            position: relative;
            overflow: hidden;
            border-top: 1px solid #333;
        }
        
        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .code-scroll {
            white-space: nowrap;
            animation: scrollCode 30s linear infinite;
            margin: 10px 0;
            font-size: 12px;
            
        }
        
        .tech-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 10px 0;
        }
        
        .tech-icon {
            font-size: 24px;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes scrollCode {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .typing-text {
            border-right: 2px solid #0f0;
            animation: blink 0.7s step-end infinite;
            display: inline-block;
        }
        
        @keyframes blink {
            from, to { border-color: transparent; }
            50% { border-color: #0f0; }
        }
   /* footer sectionend */
   /* contact */
.whatsapp {
    padding: 50px 0;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}
.title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}
.title strong {
    color: #1ddec1; /* WhatsApp green */
}
hr {
    width: 100px;
    margin: 20px auto;
    border-top: 3px solid #25D366;
}
.form-control {
    margin-bottom: 20px;
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px;
}
textarea.form-control {
    min-height: 150px;
}
input[type="submit"] {
    background-color: #25D366;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s;
}
input[type="submit"]:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}
.copyright {
    text-align: center;
    margin-top: 50px;
    color: #6c757d;
}
.copyright a {
    color: #25D366;
    text-decoration: none;
}
.copyright a:hover {
    text-decoration: underline;
}
.whatsapp-icon {
    vertical-align: middle;
    margin-right: 5px;
}
   /* contact end*/
/* gameing  section */

/* gameing  section end */

