* {
  font-family: "Nunito Sans", sans-serif !important;
}

/* Premium Navbar Styles */
.premium-navbar {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand-container {
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 60px;
    overflow: visible;
}

.logo-img {
    height: auto;
    max-height: 100px; /* Control size without scaling */
    width: auto;
    margin-right: 12px;
    vertical-align: middle;
    object-fit: contain;
    transform: none; /* Remove unnecessary scaling */
}


.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #4F46E5, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-nav {
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
    margin: 0 6px;
}

.nav-link {
    padding: 12px 16px !important;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-text {
    position: relative;
    color: #1f1f2e;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4F46E5, #8B5CF6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.nav-link:hover .nav-underline {
    width: 100%;
}

.nav-link:hover .nav-text {
    color: #4F46E5;
    transform: translateY(-2px);
}

.nav-link.active .nav-text {
    color: #4F46E5;
    font-weight: 600;
}

.nav-link.active .nav-underline {
    width: 100%;
}

/* Animated Hamburger */
.animated-hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-line {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #4F46E5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.top-line {
    top: 0;
}

.middle-line {
    top: 50%;
    transform: translateY(-50%);
}

.bottom-line {
    bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .top-line {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .middle-line {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bottom-line {
    transform: translateY(-8px) rotate(-45deg);
}

/* Navbar Extra Elements */
.navbar-extra {
    display: flex;
    align-items: center;
    margin-left: 20px;
    gap: 15px;
}

.btn-primary-nav {
    background: linear-gradient(135deg, #4F46E5, #8B5CF6);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.theme-switcher {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-switcher:hover {
    background: rgba(79, 70, 229, 0.2);
    transform: rotate(30deg);
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 0 !important;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-extra {
        margin: 20px 0 0 0;
        justify-content: center;
        width: 100%;
    }
}



/* Our Expertise Section */


/* Expertise Section */
.expertise-section {
  padding: 100px 0;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
  position: relative;
  overflow: hidden;
  background-color: #1f1f2e !important;
}

.section-title-testimoonials {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  /* background: linear-gradient(90deg, #4F46E5, #8B5CF6); */
  border-radius: 2px;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: bolder !important;
}

.expertise-description {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Tech Stats */
.tech-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.stat-label {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Tech Showcase */
.tech-showcase {
  position: relative;
  padding: 40px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1000px;
}

.tech-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transform-style: preserve-3d;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-item img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  filter: grayscale(30%);
  transition: all 0.4s ease;
}

.tech-tooltip {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  background: #4F46E5;
  padding: 5px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Hover Effects */
.tech-item:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
}

.tech-item:hover::before {
  opacity: 1;
}

.tech-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.tech-item:hover .tech-tooltip {
  opacity: 1;
  bottom: -25px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .expertise-section {
    padding: 60px 0;
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-stats {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
  
  .tech-item {
    padding: 15px;
  }
  
  .tech-item img {
    max-height: 50px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}