    :root {
      --primary: #00e0ff;
      --bg-dark: #0d0f1a;
      --bg-light: #131625;
      --text: #ffffff;
      --text-muted: #aaa;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text);
      line-height: 1.6;
      opacity: 0;
      animation: fadeInPage 1s ease forwards;
    }


/*map styles*/
      #map {
      height: 50vh;
      width: 100%;
    }

    /* Custom tooltip style */
    .leaflet-tooltip.custom-label {
      background-color: #2196f3;
      color: white;
      font-weight: bold;
      font-size: 13px;
      padding: 4px 8px;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      border: none;
    }
    @keyframes fadeInPage {
      to {
        opacity: 1;
      }
    }

    a, .btn, .box, .hero-image img {
      transition: all 0.3s ease;
    }

    .btn {
      display: inline-block;
      background: var(--primary);
      color: #000;
      padding: 12px 28px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
    }
    .btn:hover {
      background-color: #00c1e0;
      transform: scale(1.05);
    }

    header {
      background: var(--bg-dark);
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #1a1c2b;
      position: relative;
      z-index: 100;
    }
    header h1 {
      color: var(--primary);
      font-size: 1.5rem;
    }
    nav {
      display: flex;
      gap: 20px;
    }
    nav a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
    }
    nav a:hover {
      color: var(--primary);
    }
    .menu-toggle {
      display: none;
    }
    .menu-icon {
      display: none;
      font-size: 24px;
      color: var(--text);
      cursor: pointer;
    }
    @media (max-width: 768px) {
      .menu-icon {
        display: block;
      }
      nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px;
        display: none;
      }
      .menu-toggle:checked + .menu-icon + nav {
        display: flex;
      }
    }

    .hero {
      padding: 80px 20px;
      background: linear-gradient(to bottom, #0d0f1a 0%, #131625 100%);
    }
    .hero-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }
    .hero-text {
      flex: 1;
      min-width: 280px;
    }
    .hero-text h2 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .hero-text p {
      color: var(--text-muted);
      font-size: 1.2rem;
      margin-bottom: 30px;
      max-width: 500px;
    }
    .hero-image {
      flex: 1;
      min-width: 280px;
      display: flex;
      justify-content: center;
    }
    .hero-image img {
      max-width: 100%;
    /*  border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 224, 255, 0.1);*/
    }
    .hero-image img:hover {
      transform: scale(1.03);
   /*   box-shadow: 0 10px 40px rgba(0, 224, 255, 0.2);*/
    }

    .section {
      padding: 60px 20px;
      width: 80%;
      margin: auto;
    }
    .section h3 {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 20px;
	  color:var(--primary);
    }
    .section p {
      text-align: center;
      color: var(--text-muted);
      margin-bottom: 40px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    .box {
      background-color: var(--bg-light);
      border: 1px solid #1e2235;
      padding: 30px;
      border-radius: 12px;
      text-align: center;
	  
    }
    .box i {
      font-size: 40px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    .box h4 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }
    .box p {
      color: var(--text-muted);
      font-size: 1rem;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .gallery img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .contact-form {
      max-width: 600px;
      margin: auto;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border-radius: 5px;
      border: none;
    }
    .contact-form button {
      background: var(--primary);
      color: #000;
      padding: 10px 20px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
    }
    .contact-form button:hover {
      background: #00c1e0;
    }

    footer {
      text-align: center;
      padding: 30px 20px;
      background: #10121e;
      color: var(--text-muted);
    }
	
	
.hero-text h2 {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff; /* typing cursor */
  width: 0;
  animation: typing 4s steps(40, end) 1s infinite alternate, blink 0.7s step-end infinite;
}

/* Typing effect */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Blinking cursor effect */
@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: #fff; }
}

/* ✅ Responsive: Smaller font for screens under 768px */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 1rem; /* smaller size for tablets/phones */
  }
}

/*

.about-section {
  display: flex;
  height: 60vh;
  transition: all 0.4s ease-in-out;
  
 
}

.about-image {
  flex: 1;
  background-image: url('G1.png');
  
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: all 0.5s ease-in-out;
}

.about-content {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color:  var(--bg-dark);
      background: linear-gradient(to bottom, #0d0f1a 0%, #131625 100%);

  transition: all 0.5s ease-in-out;
}

.title {
  font-size: 80px;
  font-weight: 300;
  text-transform: lowercase;
  margin-bottom: 30px;
  transition: font-size 0.3s ease;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 30px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons i:hover {
  transform: scale(1.2);
  color: #ccc;
}



@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    flex: unset;
    width: 100%;
    height: 50vh;
  }

  .title {
    font-size: 50px;
  }

  .about-content {
    padding: 30px;
  }

  .about-content p {
    font-size: 14px;
  }
}

*/
/* About Us Section */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 10%;
  width: 80%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.about-content {
  max-width: 600px;
}

.about-content h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about-content h2 {
    font-size: 2.2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

.how-it-works {
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.how-it-works h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color:var(--primary);
}

.how-it-works .subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.step {
  max-width: 25%;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.circle {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  line-height: 80px;
  font-size: 20px;
 color: white;
  font-weight: bold;
}

.step h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  color: #fff;
}

/* Media Queries */
@media (max-width: 992px) {
  .steps {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 90%;
  }
}


	
	
	
    .section1 {
      display: flex;
      justify-content: space-between;
      padding: 40px;
      gap: 20px;
    }

    .box1 {
      flex: 1;
      padding: 20px;
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 6px;
    }

    .box1 h2 {
      margin-top: 0;
    }

    /* Media query for tablets and smaller screens */
    @media (max-width: 768px) {
      .section {
        flex-direction: column;
        padding: 20px;
      }
    }
	
	
	.faq-section {
  max-width: 80%;
  margin: 50px auto;
  padding: 20px;
/*  background: #ffffff;*/
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.faq-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
}

.faq {
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.faq input {
  display: none;
}

.faq label {
  display: block;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  padding: 15px;
 /* background: #f0f2f5;*/
  border-radius: 5px;
  transition: background 0.3s ease;
}

.faq label:hover {
/*  background: #e3e6ea;*/
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fafafa;
  padding: 0 15px;
  border-left: 3px solid #2196f3;
  border-radius: 0 0 5px 5px;
}

.faq input:checked ~ .faq-content {
  max-height: 200px;
  padding: 15px;
}

.faq-content p {
  margin: 0;
  color: #555;
}

/* Responsive Design */
@media (max-width: 600px) {
  .faq-section {
    margin: 20px;
    padding: 15px;
  }

  .faq label {
    font-size: 16px;
    padding: 12px;
  }

  .faq-content {
    padding: 0 12px;
  }

  .faq input:checked ~ .faq-content {
    padding: 12px;
  }
}


/*
.custom-store {
	  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: #c1eef2;
  flex-wrap: wrap;
}
*/
.custom-store {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  flex-wrap: wrap;
 /* background-image: url('world.png');*/ /* Replace with your own URL if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
.content {
  max-width: 500px;
  color: white;
  font-weight: bold;
  font-size: 2rem;
}

.mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.phone {
  width: 250px;
  height: 480px;
  border: 4px solid #1d1d1f;
  border-radius: 30px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.play-icon {
  width: 40px;
  height: 40px;
  background-color: #00c3ff;
  border-radius: 10px;
}

.text-lines {
  width: 100px;
  height: 20px;
  background: #c1eef2;
  border-radius: 5px;
}

.buttons {
  height: 30px;
  background: #c1eef2;
  border-radius: 8px;
  margin: 10px 0;
}

.banner {
  height: 20px;
  width: 80%;
  background: #a3e2ed;
  border-radius: 6px;
  align-self: center;
}

/*
.preview {
  height: 150px;
  background: #00c3ff44;
  border-radius: 10px;
  border: 2px dashed #00c3ff;
}
*/
.preview {
  height: 150px;
  border-radius: 10px;
  background-image: url('phone.png'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

/* ✅ Responsive Media Query */
@media screen and (max-width: 768px) {
  .custom-store {
    flex-direction: column;
    text-align: center;
  }

  .content {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
    .content h1{
     justify-content: center;
  } 

  .mockup {
    justify-content: center;
  }
}


.download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.get-it-button img {
  height: 45px;
  transition: transform 0.3s ease;
}

.get-it-button img:hover {
  transform: scale(1.05);
}

/* ✅ Media Query for Mobile */
@media screen and (max-width: 768px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .get-it-button img {
    height: 50px;
    width: auto;
  }
}


  .auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .auth-buttons .btn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
  }

  .auth-buttons .btn i {
    margin-right: 6px;
  }

  .login-btn {
    background-color: #3498db;
    color: white;
  }

  .register-btn {
    background-color: #2ecc71;
    color: white;
  }

  .login-btn:hover {
    background-color: #2980b9;
  }

  .register-btn:hover {
    background-color: #27ae60;
  }

  /* 🔄 Media Query for small screens */
  @media (max-width: 600px) {
    .auth-buttons {
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }

    .auth-buttons .btn {
	  width:100%;
      font-size: 13px;
      padding: 5px 10px;
    }
  }