
.services {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.service-item {
   background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-item i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.service-item h6 {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: initial;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.05);
    border: 2px solid #1832dc;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.minimal-btn {
  background: transparent;
  padding: 10px 16px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.minimal-btn:hover {
  border-color: yellow;
  transform: translateY(-2px);
}


.video-bg {
  
  object-fit: cover; 
 
}


.slide-inner {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden; 
}


/* .header-text {
  position: relative;
  z-index: 1; 
  animation: fadeInUp 1.5s ease-in-out; 
}


.header-text button:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
} */

.sub-menu {
  display: none;
  position: absolute;
  background: #ffffff;
  border-radius: 20px;
  
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

li:hover>.sub-menu {
  display: block;
}




/* Adjust submenu for mobile */
@media (max-width: 768px) {
  .sub-menu {
    position: absolute;
    left:65%;
    transform: translateX(-30%);
    background: #2a2e45;
    padding: 10px 15px;
    border-radius: 2px;
    width: max-content;
    text-align: center;
    z-index: 1000;
  }

  .sub-menu.active {
    display: block;
  }
}


.dropdown-icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
}


li:hover>a>.dropdown-icon:first-child {
  transform: rotate(180deg);
}


li:hover>a>.dropdown-icon:last-child {
  transform: rotate(90deg);
}

/* 
.sub-menu li:hover>.second-level {
  display: block;
  opacity: 1;
} */


.client-logos {
  padding: 50px 0;
  background-color: #f8f9fa;
  border-radius: 15px;
  border: 2px solid #f8f9fa;
  
  padding: 40px;
  
}

.section-heading h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.section-heading p {
  color: #666;
  font-size: 18px;
}

.client-carousel {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background: #f8f9fa;
  padding: 20px 0;
}

.client-track {
  display: flex;
  width: calc(200px * 12);
  /* Adjust according to number of logos */
  animation: scroll 15s linear infinite;
}

/* Individual logo */
.client-logo {
  display: inline-block;
  padding: 0 15px;
}

/* Responsive Images */
.client-logo img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}


/* Apply a vignette effect on each slide */






/* Keyframe Animation for Scrolling Effect */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .client-logo img {
    max-width: 80px;
  }

  .client-track {
    animation: scroll 12s linear infinite;
  }
}



@keyframes slideInFromTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.animate-top {
  animation: slideInFromTop 0.8s ease-out forwards;
}


.service-item:nth-child(1) {
  animation-delay: 0.3s;
}

.service-item:nth-child(2) {
  animation-delay: 0.6s;
}


@media (max-width: 768px) {
  h2 {
    font-size: 1.8rem !important;
  }
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

