/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');


body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #0d0d0d;
    color: #fff;
  }


  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #000; /* Adjust to match your theme */
    flex-wrap: nowrap;
    overflow: hidden;
    z-index: 999;
  }
  
  .navbar .logo img {
    height: 50px;
    width: auto;
  }
  
  .navbar .company-name {
  font-size: 1rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 450vw;
    /* margin: 0 10px; */
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInDown 0.6s ease-in-out;
  /* white-space: nowrap; */
  }

/* Optional glow effect on hover */
.company-name:hover {
  color: #00ffe0;
  text-shadow: 0 0 5px #00ffe0, 0 0 10px #00ffe0;
}

/* Keyframes for entry animation */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

  .language-switch {
    display: flex;
    gap: 1rem;
    list-style: none;
  }
  
  .language-switch a {
    color: #00ffcc;
    text-decoration: none;
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
  }
  
  .mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #222;
    padding: 2rem 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
    width: 80vw;
    max-width: 300px;
    border-radius: 0 0 0 10px;
    box-shadow: -3px 3px 10px rgba(0,0,0,0.5);
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  .mobile-menu a {
    color: #00ffcc;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .slider {
    position: relative;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .slide-content h1 {
    font-size: 2.5rem;
    color: #00ffcc;
  }
  
  .slide-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
  }
  
  .prev,
  .next {
    position: absolute;
    top: 85%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem 1rem;
    z-index: 2;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  .counter-section {
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
    background: #111;
  }
  
  .counter-box {
    text-align: center;
  }
  
  .crypto-live {
    padding: 3rem 2rem;
    background: #121212;
    text-align: center;
  }
  
  .crypto-box {
    background: #1a1a1a;
    margin: 1rem;
    padding: 1rem;
    display: inline-block;
    border-radius: 5px;
    min-width: 100px;
  }
  
  .why-choose-us {
    background: #101010;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .choose-box {
    max-width: 300px;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,255,204,0.2);
  }


  .testimonials {
    padding: 2rem;
    background: #111;
    color: #fff;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .testimonial-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .testimonial {
    background: #1f1f1f;
    color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 300px;
    width: 90%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .testimonial:hover {
    transform: scale(1.03);
  }
  
  .testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
  }
  
  .testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
  }
  
  .stars {
    color: gold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .testimonial strong {
    color: #ccc;
  }
  
  .testimonial-controls {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .testimonial-controls button {
    background: #0e76a8;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .testimonial-controls button:hover {
    background: #095a82;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1024px) {
    .testimonial {
      max-width: 45%;
    }
  }
  
  @media (max-width: 768px) {
    .testimonial {
      max-width: 100%;
      text-align: center;
      align-items: center;
    }
  
    .testimonial-list {
      flex-direction: column;
      align-items: center;
    }
  }
  
  

  .telegram-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: #101010;
  }
  
  .btn {
    background: #00ffcc;
    color: #000;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  
  .btn:hover {
    transform: scale(1.05);
  }
  
  .footer {
    background: #0a0a0a;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  
  @media screen and (max-width: 768px) {

    .hero{
      height: 55vh;
    }
    .navbar {
      justify-content: space-between;
    }
  
    .company-name {
      font-size: 0.9rem;
      max-width: 45vw;
    }
  
    .logo img {
      height: 32px;
    }

    .language-switch {
      display: none;
    }
    .menu-toggle {
      display: block;
    }
    .choose-grid {
      flex-direction: column;
      align-items: center;
    }
    .telegram-buttons {
      flex-direction: column;
      align-items: center;
    }

 }
  

 @media (max-width: 768px) {
    .slide {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 1rem;
    }
  
    .slide-content {
      max-width: 90%;
    }
  
    .slide-content h1 {
      font-size: 1.8rem;
      line-height: 1.3;
    }
  
    .slide-content p {
      font-size: 1rem;
      line-height: 1.5;
      margin-right: 1em;
    }
  
    .prev, .next {
      font-size: 1.5rem;
      top: unset;
      bottom: 20px;
    }
  }
  