 /* .logo-animation {
  animation: fadeInScale 1.5s ease-in-out;
  
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
} */
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }
    
    .nav-link::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #f97316;
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .dropdown-menu {
      display: none;
      position: absolute;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 10px 0;
      margin-top: 8px;
      z-index: 100;
    }
    
    .dropdown:hover .dropdown-menu {
      display: block;
    }
    
    .dropdown-menu a {
      display: block;
      padding: 8px 20px;
      color: #050505;
      font-weight: 500;
    }
    
    .dropdown-menu a:hover {
      background-color: #f3f4f6;
      color: #f97316;
    }
    
    /* Fixed Header Styles */
    header {
      transition: all 0.3s ease;
      z-index: 1000;
    }
    
    header.fixed {
      position: fixed;
      top: 8px;
      left: 8px;
      right: 8px;
      animation: slideDown 0.3s ease;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    @keyframes slideDown {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
    
    /* Add padding to body to account for fixed header */
    body {
      padding-top: 0;
      transition: padding-top 0.3s ease;
    }
    
    body.with-fixed-header {
      padding-top: 80px;
    }
    
   
    
    /* Clients Carousel */
    .clients-track {
      display: flex;
      animation: scroll 30s linear infinite;
    }
    
    .clients-track img {
      height: 80px;
      margin: 0 20px;
      object-fit: contain;
    }
    
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    /* Stats Overview */
    .stat-box {
      transition: all 0.3s ease;
    }
    
    .stat-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    /* Process Circle Styling */
    .circle-container {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .center-image {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 150px;
      height: 150px;
      z-index: 2;
    }
    
    .center-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    
    .process-item {
      position: absolute;
      width: 160px;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .process-item:hover {
      transform: scale(1.05);
    }
    
    .pos1 { top: 10%; left: 50%; transform: translateX(-50%); }
    .pos2 { top: 25%; right: 15%; }
    .pos3 { bottom: 25%; right: 15%; }
    .pos4 { bottom: 10%; left: 50%; transform: translateX(-50%); }
    .pos5 { bottom: 25%; left: 15%; }
    .pos6 { top: 25%; left: 15%; }
    
    /* Portfolio Items */
    .portfolio-item {
      transition: all 0.3s ease;
    }
    
    .portfolio-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    @media (max-width: 768px) {
      header.fixed {
        top: 4px;
        left: 4px;
        right: 4px;
      }
      
      body.with-fixed-header {
        padding-top: 70px;
      }
      
      .process-item {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        transform: none !important;
      }
      
      .center-image {
        position: static;
        transform: none;
        margin: 0 auto 20px;
      }
      
      .circle-container {
        display: flex;
        flex-direction: column;
      }
    }
    /* Optional fine-tuning */
.banner-image {
  position: relative;
  overflow: hidden;
}

.banner-image h1 {
  line-height: 1.3;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Mobile: keep text center aligned */
@media (max-width: 768px) {
  .banner-image h1 {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
  }
}
