/* Removes all default browser spacing */
body, html {
  background-color:  #0b1120;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
}

p {
  text-align: center;
  font-size: 20px;
}
 
.spa {
  color:#0066cc;
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;  
  width: 100%;
  background: white;
  border-bottom: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 1000;
}

/* Register button */
.register-btn {
  background: #0066cc;
  border: 2px solid #ccc;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-right: 150px;
  transition: 0.3s;
}

.register-btn:hover {
  background: rgb(218, 99, 56);
  color: white;
  border-color: #0066cc;
}

/* Hamburger */
.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  border: none;
  background: none;
  margin-right: 25px;
}

/* Sidebar */
.sidebar {
  height: 100%;
  width: 0; /* hidden by default */
  position: fixed;
  top: 0;
  right: 0;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.3);
  overflow-x: hidden;
  transition: width 0.3s ease;
  padding-top: 60px;
  z-index: 3000;
}

.sidebar a {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 18px;
  color: #333;
  transition: 0.2s;
}

.sidebar a:hover {
  background: #6e8d607a;
}

.sidebar .closebtn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}



/* ==== To tap and side bar closes with or without ( X ) ==== */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1500;
}

body.sidebar-open::after {
  opacity: 1;
  pointer-events: auto;
}

.language-select { 
  background:white; 
  border-radius:6px; 
  padding:5px 10px; 
  padding-right: 25px;
}



/* ===== SLIDESHOW SECTION ===== */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen on PC */
  overflow: hidden;
  margin-top: 68px; /* below navbar */
  margin-bottom: 0;
  z-index: 10;
}


.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* stretch properly */
  filter: brightness(60%);
}

/* Text Overlay */
.text-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
}

.text-overlay h2 {
  font-size: 2.8rem;
  margin-top: -170px;

  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.text-overlay h2 span {
  color: #ff6b81;
}

.text-overlay p {
  margin-top: 15px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #f1f1f1;
  margin-top: 45px;
}

/* Buttons */
.buttons {
  margin-top: 75px;
}

.learn-btn {
  background-color: #ffa500;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  margin-right: 15px;
}

.learn-btn:hover {
  background-color: #ff7b00;
}

.contact-btn {
  color: white;
  border: 2px solid white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: white;
  color: black;
}

.contact-btn:hover {
  background-color: white;
  color: black;
}


/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 25px;
  width: 100%;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #ffa500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .text-overlay {
    left: 5%;
    top: 45%;
    max-width: 90%;
  }
  .text-overlay h2 {
    font-size: 1.8rem;
  }
  .text-overlay p {
    font-size: 1rem;
  }
  .learn-btn, .contact-btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
  .slideshow-container {
    height: 100vh; /* full screen for phones */
  }
}


/* === WRAPPER TO GROUP SLIDESHOW + TRACK BOX + VIDEO === */
.track-video-wrapper {
  position:relative;
  width: 100%;
  margin: 0;
  padding: 0;
  margin:0 auto;
}

/* === Track Section (Floating Box Between Both) === */
.track-section {
  position:absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -210%); /* or whatever value you like */
  z-index: 2000; /* ✅ make sure it's above slideshow */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  margin: 0 auto;
}



/* === Track Box Styling === */
.track-box {
  background: #fff;
  padding: 35px 45px;
  border-radius: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 320px;
  width: 100%;
  pointer-events: all; /* make inputs and buttons clickable */
  position: relative;
  margin-bottom: 10px;
  margin: 0 auto;
}


.track-box h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.track-box h2 span {
  color: #0073e6;
}

.track-box p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 25px;
}


/* Input field fix */
.track-box input {
  width: 100%;              /* full width inside padding */
  box-sizing: border-box;   /* ✅ include padding + border in total width */
  padding: 13px 15px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  margin-bottom: 18px;
  outline: none;
  transition: border-color 0.3s;
  background-color: #fff;   /* ✅ ensures white input background */
}

.track-box input:focus {
  border-color: #0073e6;
}

/* Button */
.track-box button {
  width: 100%;
  background-color: #ff9500;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.track-box button:hover {
  background-color: #e67e00;
}



/* ===== VIDEO SECTION (ATTACHED DIRECTLY TO SLIDESHOW) ===== */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: black;

}

.video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

/* Ensure the next (video) section starts right away */
.video-section, .next-section {
  position: relative;
  margin-top: 0;
  padding-top: 0;
}



/* Overlay text and buttons */
.video-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.45); /* subtle dark overlay for contrast */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Paragraph */
.video-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e9f1ff;
  max-width: 1000px;
  margin-bottom: -10px;       
  padding-right: 30px; 
}   

.get-all {
  margin-bottom: -100px;
}

/* Buttons */
.buttons {
  margin-bottom:  20px;

}

.btn-primary {
  background: #f94f00;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.3s;
  
}

.btn-primary:hover {
  background: #ff7033;
}

.btn-link {
  background: none;
  border: none;
  color: #f94f00;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: underline;
}

/* Related section */
.related {
  text-align: center;
}

.related a {
  display: inline-block;
  margin-right: 15px;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;

}

.related a:hover {
  color: #f94f00;
}

/* Highlighted words */
.bii {
  color: #009cff;
}

.bit {
  color: #47ff47;
}

.bbb {
  color: #ff7033;
}


/* === Responsive Fix for Small Screens === */
@media (max-width: 992px) {

    .track-section {
    transform: translate(-50%, -210%); /* ✅ keep same position */
  }

  .track-box {
    width: 90%;
    padding: 28px 30px;
  }
}

@media (max-width: 600px) {

  @media (max-width: 600px) {
  .track-section {
    transform: translate(-50%, -210%); /* ✅ same for mobile */
  }
}

    .track-box {
    padding: 24px 25px;
  }

  .video-section {
    height: 90vh;
  }

  .video-overlay {
    padding-top: 80px; /* keeps text away from track box */
  }
}



/* ==== FEATURES SECTION ===== */

.features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #f8f8f8;   /* light background */
  margin: 0;
  padding: 20px 15px;
  flex-wrap: wrap;       /* wraps on small screens */
  
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;             /* spacing between icon and text */
  max-width: 250px;
  margin: 12px;
}

.feature-item p {
  margin: 0;
  font-size: 16px;        /* slightly bigger */
  font-weight: 700;       /* bold */
  line-height: 1.4;
  color: #222;            /* dark gray for readability */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.3px;  /* makes text cleaner */
}



/* Users section count down */
.users-section {
  text-align: center;
  padding: 80px 20px;
  background: #fcf9f9;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* When visible on scroll */
.users-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.users-section h6 {
  font-size: 1.8rem;
  color: #0a3d62;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: -30px;
}

#userCount {
  font-size: 2.8rem;
  font-weight: 700;
  color: #a28b46; /* gold tone */
  transition: color 0.3s;
  margin-bottom: 20px;
}

#userCount:hover {
  color: #c7a857;
}

@media (max-width: 768px) {
  #userCount {
    font-size: 2.2rem;
  }
}


/* === Sub Stats Layout (Hash & Miners) === */
.sub-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.left-stat, .right-stat {
  width: 45%;
}

.left-stat h6, .right-stat h6 {
  font-size: 1rem;
  color: #0a3d62;
  margin-bottom: 8px;
}

#hashCount, #activeCount {
  font-size: 1.6rem;
  font-weight: 600;
  color: #a28b46;
}

.right-stat {
  text-align: right;
}

@media (max-width: 768px) {
.sub-stats {
  flex-direction: row;
  justify-content: space-between;
}

.left-stat, .right-stat {
  width: 45%;
  text-align: left;
  margin-bottom: 25px;
}

.right-stat {
  text-align: right;
}
}

.bii {
  color: #0f65bc;
}

.bit {
  color:green;
}






/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: #f4f5f7;
  padding: 80px 7%;
  text-align: center;
}

/* Section Header */
.services-header {
  margin-bottom: 60px;
  margin-top: -60px;
}

.services-header h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.services-header h2 span {
  color: #ff9500;
}

.services-header p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* === Services Grid === */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* === Each Card === */
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 360px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* === Image inside card === */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* === Text content === */
.service-content {
  padding: 25px 25px 35px;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.service-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-content .learn-more {
  color: #ff9500;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-content .learn-more:hover {
  color: #ff6600;
}

/* === Responsive for smaller screens === */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 5%;
  }
  .service-card {
    max-width: 100%;
  }
  .service-card img {
    height: 180px;
  }
}



/* ===== SERVICES HEADER ===== */
.services-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  position: relative;
}

.services-header h2 span {
  color: #ff9500;
}

.services-header p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Responsive Title */
@media (max-width: 600px) {
  .services-header h2 {
    font-size: 2rem;
  }
  .services-header p {
    font-size: 0.95rem;
  }
}




/* ===== PERFORMANCE SECTION ===== */
.performance-section {
  background: linear-gradient(135deg, #ff7b00, #ff9500);
  padding: 80px 7%;
  color: #fff;
  text-align: center;
}

.performance-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* === Card Box === */
.performance-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* === Icon Circle Base === */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}

/* === Delivery Truck Icon === */
.truck-icon::before,
.truck-icon::after {
  content: "";
  position: absolute;
  background: #fff;
}
.truck-icon::before {
  width: 30px;
  height: 18px;
  border-radius: 3px;
  top: 20px;
}
.truck-icon::after {
  width: 12px;
  height: 8px;
  border-radius: 2px;
  top: 25px;
  left: 35px;
}

/* Truck wheels */
.truck-icon::before,
.truck-icon::after {
  box-shadow: 
    -15px 12px 0 0 #fff,
    20px 12px 0 0 #fff;
}

/* === Tracking Pin Icon === */
.pin-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fbc935;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.pin-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ff7b00;
  border-radius: 50%;
  top: 17px;
  left: 26px;
}

/* === Star Icon === */
.star-icon::before {
  content: "★""★""★""★""★";
  padding-left: 60px;
  font-size: 28px;
  color: rgba(0, 128, 0, 0.566);
}

/* === Text === */
.performance-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.performance-card h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.performance-card h1 span {
  font-size: 1rem;
  font-weight: 500;
  color: #ffe0b3;
}

.performance-card p {
  font-size: 0.95rem;
  color: #fff8e7;
  line-height: 1.5;
}

/* === Responsive === */
@media (max-width: 768px) {
  .performance-section {
    padding: 60px 5%;
  }
  .performance-card {
    padding: 30px 20px;
  }
}



/* ===== FOOTER SECTION ===== */
.footer {
  background: linear-gradient(180deg, #101926, #0b1120);
  color: #fff;
  padding: 70px 8%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* === Titles === */
.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* === Quick Links === */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #bfc7d3;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-column ul li a::before {
  content: "›";
  margin-right: 8px;
  color: #ff7b00;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* === Contact Info === */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.contact-item p {
  font-size: 0.95rem;
  color: #bfc7d3;
  margin: 0;
}

.contact-item span {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}

/* === Circle Icons === */
.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff9500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  position: relative;
}

/* Mail Icon */
.mail-icon::before {
  content: "";
  width: 16px;
  height: 10px;
  border: 2px solid #fff;
  position: absolute;
  top: 11px;
  left: 10px;
  border-radius: 3px;
}
.mail-icon::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 10px;
  width: 16px;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 5px solid #fff;
}

/* Phone Icon */
.phone-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  transform: rotate(45deg);
}

/* Clock Icon */
.clock-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
}
.clock-icon::after {
  content: "";
  width: 6px;
  height: 1.5px;
  background: #fff;
  position: absolute;
  top: 17px;
  left: 17px;
  transform: rotate(0deg);
  transform-origin: left;
}


  /* Newsletter card */


  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');


.newsletter-card {
  background-color: #a28b46;
  color: white;
  text-align: center;
  padding: 40px 35px;
  border-radius: 20px;
  width: 90%;
  max-width: 250px;
  margin: 0 auto;        /* ✅ centers the brown box */
}

.newsletter-card h6 {
  font-size: 25px;
  font-weight: 800;
  margin-top: 20px;
  color: #111;
  line-height: 1.4;
}

.newsletter-card p {
  font-size: 15px;
  color: #d1d1d1;
  margin-top: -45px;
  line-height: 1.6;
}

.newsletter-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-card input {
  padding: 14px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 15px;
  color: #444;
  background-color: #fff;
}

.newsletter-card button {
  background-color: #130505;
  color: #4A50F8;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-card button:hover {
  background-color: #e8e8e8b5;
}

 /* Get started button (outlined) */
.cta {
  display:block;
  width:100%;
  max-width:280px;
  margin:26px auto 22px;
  padding:18px 26px;
  font-size:20px;
  font-weight:600;
  color:var(--navy);
  text-decoration:none;
  text-align:center;
  border:3px solid var(--navy);
  border-radius:8px;
  background:rgba(163, 149, 49, 0.774);
  box-sizing:border-box;
}

.cta:hover  {
  color: #1b0ba8b8;
}

  /* disclaimer */
.disclaimer {
  margin-top:1px;
  font-size:15px;
  color:whitesmoke;
  max-width:360px;
  line-height:1.6;
  margin-left:auto;
  margin-right:auto;
  padding-bottom:16px;
}




/* === Quick Track Form === */
.quick-track-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-track-form input {
  background: #1a2333;
  border: 1px solid #263249;
  color: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.95rem;
}

.quick-track-form input::placeholder {
  color: #9fa9bb;
}

.quick-track-form button {
  background: #ff9500;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.quick-track-form button:hover {
  background: #ff7b00;
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer {
    text-align: left;
    padding: 50px 6%;
  }
}


.footer-content {
  color: whitesmoke;
}

.footer-content  p{
  font-size: 10px;
  text-align: right;
}











