root::
h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Sans", sans-serif;
}

p {
    font-family: "Nunito", sans-serif;
}

.btn.btn-primary{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 25px;
    border: 1px solid transparent;
    border-radius: 55px;
    background: #fab600;
}

.btn.btn-primary:hover{
    background: #2a034c;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* 60% black overlay */
  z-index: 1;
}

.banner .container {
  position: relative;
  z-index: 2;
}

.banner-img {
  max-height: 600px;
  width: auto;
  object-fit: contain;
  border-right: 10px solid #fab600;
  border-bottom: 10px solid #fab600;
}

.navbar{
    z-index: 999;
}

.img-outlined {
  outline: 8px solid black;
  outline-offset: 10px; /* space between image and border */
  border: none; /* removes default border if any */
}

.cta-section {
  background: url('../images/home/Ready-to-Get-Started.jpg') center center / cover no-repeat;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay 
}

.cta-section .container {
  position: relative;
  z-index: 1; /* keep text above overlay */
}

.image-scroller {
  overflow: hidden;
  position: relative;
}

.image-scroller.service {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.scroller {
  display: flex;
  overflow: hidden;
}

.scroller-track {
  display: flex;
  gap: 60px; /* increased horizontal space between images */
  animation: scroll 30s linear infinite;
}

.scroller-track img {
  height: 120px;   /* adjust as needed */
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Infinite scroll effect */
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-slider {
  position: relative;
  min-height: 180px; /* keeps consistent height */
}

.testimonial {
  display: none;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.testimonial-section{
    margin: 50px 0;
}

.testimonial.active {
  display: block;
}

.review {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
}

.title {
  margin-top: 10px;
  font-weight: bold;
  color: #222;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-section .accordion-button {
  font-weight: 600;
  font-size: 1rem;
}

.faq-section .accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.hero-section {
  height: 600px;
  background: url('../images/bg-image.jpg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  margin-top: -145px;
}

.hero-section.about-us{
  background: url('../images/about/about-page-banner.jpg') center center / cover no-repeat;
}

.hero-section.service-pg{
  background: url('../images/service/services-page-banner.jpg') center center / cover no-repeat;
}

.hero-section.us-uk{
  background: url('../images/service/us-uk/U.S-Staffing,-U.K.-Staffing,-&-Asia-Pacific-Recruitment-banner.jpg') center center / cover no-repeat;
}

.hero-section.web-d{
  background: url('../images/service/web-dev/Website-Development-&-Digital-Marketing-banner.jpg') center center / cover no-repeat;
}

.hero-section.net-sol{
  background: url('../images/service/net-sol/Network-Security-Solutions-banner.jpg') center center / cover no-repeat;
}

.hero-section.health-staf{
  background: url('../images/service/healthcare/Healthcare-Staffing-and-Recruitment-banner.jpg') center center / cover no-repeat;
}

.hero-section.blog-bg-img{
  background: url('../images/blog/blogs-banner.jpg') center center / cover no-repeat;
}

.hero-section.contact-bg-img{
  background: url('../images/contact/contact-us-banner.jpg') center center / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
  margin-top:120px !important;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-hero {
  display: inline-block;
  padding: 12px 30px;
  background: #f9ca15;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

.about-n{
    padding:10px;
    border:1px solid black;
    border-radius: 12px;
}

.bor-serv{
    border-right: 1px solid black;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
}

.bor-serv-l{
    border-bottom: 1px solid black;
}

.bor-serv-p{
    border-right: 1px solid black;
    border-left: 1px solid black;
}

footer.footer-section {
    border-top: 2px solid black;
}

.container.faq {
    max-width: 716px;
}

li.nav-item {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.dropdown-menu {
  display: none;
  position: absolute;
  z-index: 1000;
  visibility: hidden;
}

/* Hide on devices up to 991px (tablets & mobiles) */
@media (max-width: 991px) {
  .desktop {
    display: none !important;
  }
  
  section.banner.d-flex.align-items-center.position-relative{
     margin-top: -85px !important;
  }
  
  .banner-img {
    max-height: 350px !important;
}

    .testimonials-section .col-12{
        padding: 25px !important;
    }
    
    .hero-section {
    height: 468px !important;
    padding-top: 98px !important;
}
}

/* Hide on devices 991px and above (desktops) */
@media (min-width: 991px) {
  .mobile {
    display: none !important;
  }

.accordion-button:not(.collapsed) {
    color: #000000 !important;
    background-color: #fab60036 !important;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #fab60036 !important;
}
