/* General Body and Section Styling */
body {
  margin: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}


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

.anton-sc-regular {
  font-family: "Anton SC", serif;
  font-weight: 400;
  font-style: normal;
}



 /* Sticky header styling */
    .sticky-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: #000;
    }
    
    
    .sticky-header .btn {
      background-color: #000;
      color: #ffc107;
      font-size: 0.72rem;

    }

#logo {
  height: 40px;
}

.navbar {
  display: flex;
  gap: 15px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.navbar a:hover {
  color: #007bff;
}

/* Hero section */
#hero {
  position: relative;
  background-image: url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#hero h1 {
  font-size: 3rem;
  margin: 0;
}

#hero p {
  font-size: 1.5rem;
  margin: 10px 0;
}

#hero .btn {
  margin: 60px 0;
  padding: 10px 20px;
  font-size: 1rem;
  color: #000;
  font-family: "Michroma", sans-serif;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

#hero .btn:hover {
  background-color: #fff;
}

#hero .highlight {
  color: #ffc107;
}

#clients {
  display: flex;
  align-items: flex-end; /* Align logos to the bottom */
  justify-content: center;
  padding: 10px 0;
  background-color: #f8f9fa;
}

/* Client Row */
#client-row {
  display: flex;
  flex-wrap: nowrap; /* Ensure logos stay on one row */
  justify-content: space-evenly; /* Even spacing between logos */
  align-items: center; /* Vertically align logos */
  overflow-x: auto; /* Allow horizontal scrolling if needed */
  gap: 20px; /* Add space between logos */
  padding: 10px 0;
  scrollbar-width: none; /* Hide scrollbar (for non-webkit browsers) */
}

#client-row::-webkit-scrollbar {
  display: none; /* Hide scrollbar (for webkit browsers) */
}

#client-row img {
  max-height: 50px;
  width: 90%; /* Maintain aspect ratio */
  object-fit: contain; /* Prevent image distortion */
  transition: transform 0.3s ease;
}

#client-row img:hover {
  transform: scale(1.1); /* Add hover effect */
}

/* Small Screen Adjustments */
@media (max-width: 768px) {
  #client-row {
    flex-wrap: wrap; /* Allow wrapping if needed */
    justify-content: center; /* Center-align logos */
  }

  #client-row img {
    height: 60px; /* Slightly smaller height on small screens */
  }
}




.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.grid-item {
    text-align: center;
}

.grid-item img {
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.grid-item img:hover {
    transform: scale(1.05);
}


.role {
  font-size: 14px;
  margin: 4px 0;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.showTitle {
  font-family: "Anton SC", serif;
  font-size: 24px;


}


