@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&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 */

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

.bg-yellow-primary{
  background-color: #f69d03;
}
.text-yellow-primary{
  color: #f69d03;
}

.bg-green-primary{
  background-color: #036b2c;
}
.text-green-primary{
  color: #036b2c;
}

.maj-text:hover{
  color: #f69d03;
  cursor: pointer;
}

.f-cont {
  max-width: 960px;
}

.hov-button:hover{
  background-color: #f69d03;
}

.bg-purp{
    background-color: rgb(157 165 187);
}
.bg-purp-200{
    background-color: rgb(102 114 147);
}
.bg-purp-500{
    background-color: rgb(13 10 23);
}
.text-bg-purp-500{
    color: rgb(13 10 23);
}
.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%;
    }
}