@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, rgb(84, 192, 255) 0%, rgb(32, 44, 171) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, rgb(84, 192, 255) 0%, rgb(32, 44, 171) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    transition: all 0.5s ease;
    border: 1px solid rgba(84, 192, 255, 0.1);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(84, 192, 255, 0.3);
    border-color: rgba(84, 192, 255, 0.5);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

 /* .tech-pattern {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(84, 192, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(32, 44, 171, 0.1) 0%, transparent 50%);
}  */


 .tech-pattern {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(84,192,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(32,44,171,0.1) 0%, transparent 50%),
    url('../assets/images/bg1.jpg');
  background-size: auto, auto, cover; /* Control sizing of each layer */
  background-position: center;
  background-repeat: no-repeat;
} 

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

html {
    scroll-behavior: smooth;
}

.logo-text {
    background: linear-gradient(135deg, rgb(84, 192, 255) 0%, rgb(32, 44, 171) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: #000;
}

/* Team Card Styles */
.team-card {
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(84, 192, 255, 0.2);
}

/* Client Logo Styles */
.client-logo {
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

  /* Client Scroll Animation */
  .client-scroll {
      animation: scrollRight 20s linear infinite;
      width: max-content;
  }

  @keyframes scrollRight {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  .client-scroll:hover {
      animation-play-state: paused;
  }


  