<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

/* General styles */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
  }
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Custom styles can be added here */
.hero-section {
  background-image: url('techvillage.jpg');
}

.hyp-bg-logo{
  background-image: url('hyperbird\ logo\ transparent\ blue\ x-15.png');
}

.poppins-regular {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}

.box-shadow-300{
  box-shadow: 0px 6px 13px 9px #00000018;
}

.bg-purp{
    background-color: rgb(157 165 187);
}
.bg-purp-200{
    background-color: rgb(0, 61, 228);
}
.bg-purp-500{
    background-color: #1306c9;
}
.text-bg-purp-500{
    color: #1608f6;
}
.h-screen-73{
    height: 72vh;
}
.logo-section{
    overflow: hidden;
}
.bg-dark-blue {
    background-color: #0c1e38; /* This matches the background color in the image */
  }

  /* Custom overlay styling */
.group:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(43, 31, 73, 0.7); /* Dark transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px); /* Start the overlay below the image */
}

.overlay h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.description {
    font-size: 0.875rem;
    margin-top: 8px;
    color: #ffffff;
    opacity: 0.8;
}

  
  /* Section animations */
  section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  /* Scroll-activated section */
  section.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Hover effect on navigation links */
  nav a:hover {
    transition: color 0.3s ease;
  }
  
  /* Button hover effect */
  button, .hover\:bg-orange-600:hover {
    transition: background-color 0.3s ease;
  }
  
  /* Image hover effect on roles section */
  .group {
    overflow: hidden;
  }
  
  .group img {
    transition: transform 0.4s ease;
  }
  
  .group:hover img {
    transform: scale(1.2) translateX(-10px);
  }
  
  .group:hover .overlay {
    opacity: 1;
  }
  
  .description {
    color: white;
    font-size: 14px;
    visibility: hidden;
  }
  
  .group:hover .description {
    visibility: visible;
  }
  
  img {
    display: block;
    width: 100%;
  }


  .logo-slider {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: slide 30s linear infinite; /* Controls speed and infinite sliding */
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);  /* Start at original position */
    }
    100% {
      transform: translateX(-100%);  /* Move left by 100% of the container width */
    }
  }

  #typewriter-text {
    border-right: 2px solid rgba(255, 255, 255, 0.75); /* Cursor effect */
    overflow: hidden; /* Hide overflow */
    display: inline-block;
    padding-right: 5px;
  }
  

@media (min-width: 768px) and (max-width: 1024px) {
    .book-p{
        display: none !important;
    }
    .hero-section{
        margin-top: 6rem !important;
    }
}

@media (min-width: 768px) {
    #testimonial-slider{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 5px;
        width: 125%;
        overflow-x: hidden;
    }
}
@media (max-width: 768px) {
    .w4{
        min-width: 100%;
    }
}</pre></body></html>