/* Modern About Section */
.modern-about {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.modern-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4361ee, transparent);
}

/* Section Header */
.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

/* About Visual */
.about-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-visual {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.3);
}

.visual-content {
  text-align: center;
}

.visual-content h4 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.visual-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #2d3748;
  z-index: 3;
  border: 1px solid #e2e8f0;
}

.floating-card i {
  color: #4361ee;
  font-size: 1.2rem;
}

.card-1 {
  top: 20px;
  right: 0;
  animation: float 3s ease-in-out infinite;
}

.card-2 {
  bottom: 60px;
  left: 0;
  animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
  top: 50%;
  right: -20px;
  animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mission Box */
.mission-box {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4361ee;
  margin-bottom: 2.5rem;
}

.mission-box h3 {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.mission-box p {
  color: #718096;
  line-height: 1.7;
  margin: 0;
}

/* Value Grid */
.value-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #f1f5f9;
}

.value-item:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-content h5 {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.value-content p {
  color: #718096;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: space-between;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
  border: 1px solid #f1f5f9;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat:not(:last-child) {
  border-right: 1px solid #e2e8f0;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4361ee;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}

/* CTA Group */
.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(67, 97, 238, 0.4);
  color: white;
}

.btn-secondary {
  background: white;
  color: #4361ee;
  border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
  background: #f8faff;
  border-color: #4361ee;
  transform: translateY(-2px);
  color: #4361ee;
}

/* Trust Section */
.trust-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #e2e8f0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2rem 1rem;
}

.trust-item i {
  font-size: 2.5rem;
  color: #4361ee;
  margin-bottom: 1rem;
}

.trust-item h6 {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: #718096;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-visual {
    height: 300px;
    margin-bottom: 3rem;
  }
  
  .main-visual {
    width: 220px;
    height: 220px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .stats-bar {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-card {
    position: relative;
    margin: 0.5rem;
    animation: none;
  }
  
  .about-visual {
    flex-direction: column;
    height: auto;
  }
  
}




/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.client-avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f1f5f9;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h5 {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.client-info p {
  color: #718096;
  font-size: 0.9rem;
  margin: 0;
}

.quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

/* Testimonial Content */
.testimonial-content p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Testimonial Rating */
.testimonial-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars i {
  color: #fbbf24;
  font-size: 1rem;
}

.industry-tag {
  background: #f1f5f9;
  color: #64748b;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Testimonial Stats */
.testimonial-stats {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  margin: 4rem 0;
  border: 1px solid #f1f5f9;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stats-row .stat-item {
  text-align: center;
  padding: 0 1rem;
}

.stats-row .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4361ee;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-row .stat-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

/* Testimonial CTA */
.testimonial-cta {
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  padding: 4rem 2rem;
  border-radius: 25px;
  color: white;
  margin-top: 3rem;
}

.testimonial-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.testimonial-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-cta .btn-primary {
  background: white;
  color: #4361ee;
}

.testimonial-cta .btn-primary:hover {
  background: #f8faff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.testimonial-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .testimonial-stats {
    padding: 2rem 1rem;
    margin: 3rem 0;
  }
  
  .testimonial-cta {
    padding: 3rem 1.5rem;
  }
  
  .testimonial-cta h3 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }
  
  .client-avatar {
    align-self: center;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
  
  .testimonial-rating {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}



/* Modern Clients Section */
.modern-clients {
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  position: relative;
  overflow: hidden;
}

.modern-clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* Clients Container */
.clients-container {
  position: relative;
  margin: 3rem 0;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.clients-track {
  display: flex;
  gap: 2rem;
  animation: scrollClients 40s linear infinite;
  width: max-content;
}

.client-logo-item {
  flex-shrink: 0;
  width: 200px;
}

.logo-wrapper {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #4361ee;
}

.client-logo {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-wrapper:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.logo-wrapper:hover .logo-overlay {
  opacity: 0.9;
}

.logo-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* No Clients State */
.no-clients {
  text-align: center;
  padding: 4rem 2rem;
  color: #94a3b8;
}

.no-clients i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-clients p {
  font-size: 1.1rem;
  margin: 0;
}

/* Client Stats */
.client-stats {
  margin: 4rem 0 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #4361ee;
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.stat-content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-content p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* Clients CTA */
.clients-cta {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  margin-top: 2rem;
}

.cta-text {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Animations */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.clients-container:hover .clients-track {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .client-logo-item {
    width: 180px;
  }
  
  .logo-wrapper {
    padding: 1.5rem;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .clients-track {
    gap: 1rem;
  }
  
  .client-logo-item {
    width: 150px;
  }
  
  .logo-wrapper {
    padding: 1rem;
    height: 80px;
  }
  
  .client-logo {
    max-width: 100px;
    max-height: 50px;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stat-content h4 {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-track {
    gap: 0.75rem;
  }
  
  .client-logo-item {
    width: 140px;
  }
  
  .clients-cta {
    padding: 2rem 1rem;
  }
  
  .cta-text {
    font-size: 1.1rem;
  }
}












/* Featured Solutions Section - Reduced Spacing */
.featured-solutions {
    padding: 4rem 0;
}

.mb-6, .mt-6 {
    margin-bottom: 2.5rem !important;
    margin-top: 2.5rem !important;
}

/* Solutions Grid - Tighter Layout */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.solution-card-wrapper {
    perspective: 1000px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Solution Image - Slightly Smaller */
.solution-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.solution-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-img {
    transform: scale(1.05);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.solution-card:hover .solution-overlay {
    opacity: 0.8;
}

/* Gradients */
.bg-primary-gradient { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.bg-success-gradient { background: linear-gradient(135deg, var(--success) 0%, var(--success-light) 100%); }
.bg-info-gradient { background: linear-gradient(135deg, var(--info) 0%, var(--info-light) 100%); }
.bg-warning-gradient { background: linear-gradient(135deg, var(--warning) 0%, var(--warning-light) 100%); }

/* Solution Badge */
.solution-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 2;
}

/* Solution Actions (Image Overlay) */
.solution-actions {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 2;
}

.solution-card:hover .solution-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.btn-action:hover {
    background: white;
    transform: scale(1.1);
    color: var(--primary);
}

/* Solution Content - Reduced Padding */
.solution-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-title {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.solution-description {
    line-height: 1.5;
    flex: 1;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Solution Features - Tighter */
.solution-features {
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

/* Solution Stats - Compact */
.solution-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    margin-top: 0.2rem;
    color: var(--dark);
    opacity: 0.7;
}

/* Solution Actions (Buttons) - Smaller */
.solution-actions {
    margin-top: auto;
}

.solution-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* CTA Section - More Compact */
.solutions-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 2.5rem !important;
}

.solutions-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.solutions-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.solutions-cta .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Services Section - Reduced Spacing */
.services-modern-grid {
    padding: 4rem 0;
}

.mb-6 {
    margin-bottom: 2.5rem !important;
}

/* Large Service Cards - More Compact */
.service-card-large {
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card-large .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.service-card-large h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-card-large p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.features-list {
    margin: 1.5rem 0;
}

.feature-item {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Medium Service Cards - More Compact */
.service-card-medium {
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-medium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-card-medium .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    margin: 0 auto 1rem;
}

.service-card-medium h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.service-card-medium p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.feature-dots li {
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

/* Services CTA - More Compact */
.services-cta {
    padding: 2.5rem;
}

.services-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.services-cta .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Responsive Design - Adjusted for Compact Layout */
@media (max-width: 1199px) {
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .service-card-large {
        padding: 2rem;
        min-height: 320px;
    }
}

@media (max-width: 991px) {
    .featured-solutions {
        padding: 3rem 0;
    }
    
    .services-modern-grid {
        padding: 3rem 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .solution-image {
        height: 200px;
    }
    
    .solution-content {
        padding: 1.25rem;
    }
    
    .service-card-large {
        min-height: 300px;
        margin-bottom: 1.5rem;
    }
    
    .services-cta {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .featured-solutions {
        padding: 2.5rem 0;
    }
    
    .services-modern-grid {
        padding: 2.5rem 0;
    }
    
    .mb-6, .mt-6 {
        margin-bottom: 2rem !important;
        margin-top: 2rem !important;
    }
    
    .solutions-cta {
        padding: 1.5rem !important;
    }
    
    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .solution-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .service-card-large {
        padding: 1.5rem;
        min-height: auto;
        text-align: center;
    }
    
    .service-card-large h3 {
        font-size: 1.5rem;
    }
    
    .service-card-medium {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .featured-solutions {
        padding: 2rem 0;
    }
    
    .services-modern-grid {
        padding: 2rem 0;
    }
    
    .solution-content {
        padding: 1rem;
    }
    
    .solution-image {
        height: 180px;
    }
    
    .solution-title {
        font-size: 1.1rem;
    }
    
    .solutions-cta {
        padding: 1.25rem !important;
    }
    
    .service-card-large {
        padding: 1.25rem;
    }
    
    .service-card-medium {
        padding: 1rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

/* Animation Enhancements - Faster */
.solution-card {
    opacity: 0;
    animation: slideUpFade 0.4s ease forwards;
}

.service-card-large, .service-card-medium {
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

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

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

/* Hover Effects - Subtler */
.btn {
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Color Variables - Your Brand Colors */
:root {
    --primary: #0c1e3e;
    --primary-light: #1a3b6b;
    --primary-soft: rgba(12, 30, 62, 0.1);
    --success: #198754;
    --success-light: #157347;
    --success-soft: rgba(25, 135, 84, 0.1);
    --warning: #ffc107;
    --warning-light: #ffca2c;
    --warning-soft: rgba(255, 193, 7, 0.1);
    --info: #0dcaf0;
    --info-light: #31d2f2;
    --info-soft: rgba(13, 202, 240, 0.1);
    --danger: #dc3545;
    --danger-light: #bb2d3b;
    --danger-soft: rgba(220, 53, 69, 0.1);
    --purple: #6f42c1;
    --purple-light: #5a32a8;
    --purple-soft: rgba(111, 66, 193, 0.1);
    --dark: #212529;
    --light: #f8f9fa;
}

/* Section Pre-title */
.section-pre-title .badge {
    font-weight: 600;
    font-size: 0.85rem;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Decoration - Smaller */
.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -40px;
    right: -40px;
}

/* Button Styles */
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-success { background: var(--success); border-color: var(--success); }
.btn-warning { background: var(--warning); border-color: var(--warning); color: #000; }
.btn-info { background: var(--info); border-color: var(--info); }
.btn-danger { background: var(--danger); border-color: var(--danger); }
.btn-purple { background: var(--purple); border-color: var(--purple); }

.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn-success:hover { background: var(--success-light); border-color: var(--success-light); }
.btn-warning:hover { background: var(--warning-light); border-color: var(--warning-light); color: #000; }
.btn-info:hover { background: var(--info-light); border-color: var(--info-light); }
.btn-danger:hover { background: var(--danger-light); border-color: var(--danger-light); }
.btn-purple:hover { background: var(--purple-light); border-color: var(--purple-light); }

/* Background Utility Classes */
.bg-primary-soft { background: var(--primary-soft) !important; }
.bg-success-soft { background: var(--success-soft) !important; }
.bg-warning-soft { background: var(--warning-soft) !important; }
.bg-info-soft { background: var(--info-soft) !important; }
.bg-danger-soft { background: var(--danger-soft) !important; }
.bg-purple-soft { background: var(--purple-soft) !important; }






/* Modern Hero Section */
.services-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

/* Multi-layer Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.base-layer {
    background-image: url('assets/img/hardware.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: kenBurns 20s ease-in-out infinite;
}

.overlay-layer {
    background: rgba(12, 30, 62, 0.7);
    backdrop-filter: blur(2px);
}

.gradient-layer {
    background: linear-gradient(
        135deg,
        rgba(12, 30, 62, 0.9) 0%,
        rgba(26, 59, 107, 0.7) 50%,
        rgba(12, 30, 62, 0.9) 100%
    );
}

@keyframes kenBurns {
    0%, 100% {
        transform: scale(1) translateX(0);
    }
    50% {
        transform: scale(1.1) translateX(-20px);
    }
}

/* Animated Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
}

.particle-1 { width: 8px; height: 8px; top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { width: 12px; height: 12px; top: 60%; right: 15%; animation-delay: 1s; }
.particle-3 { width: 6px; height: 6px; bottom: 30%; left: 20%; animation-delay: 2s; }
.particle-4 { width: 10px; height: 10px; top: 40%; right: 25%; animation-delay: 3s; }
.particle-5 { width: 7px; height: 7px; bottom: 20%; right: 30%; animation-delay: 4s; }
.particle-6 { width: 9px; height: 9px; top: 70%; left: 15%; animation-delay: 5s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(10px) translateX(15px);
        opacity: 0.5;
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-circle {
    border-radius: 50%;
}

.shape-square {
    border-radius: 5px;
}

.shape-triangle {
    width: 0;
    height: 0;
    background: transparent !important;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(255, 255, 255, 0.05);
}

.shape-1 { width: 80px; height: 80px; top: 15%; left: 5%; animation-delay: 0s; }
.shape-2 { top: 25%; right: 10%; animation-delay: 2s; }
.shape-3 { width: 60px; height: 60px; bottom: 20%; left: 8%; animation-delay: 4s; }
.shape-4 { width: 100px; height: 100px; bottom: 15%; right: 5%; animation-delay: 6s; }

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(15px) rotate(240deg);
    }
}

/* Hero Content */
.min-vh-70 {
    min-height: 70vh;
}

.hero-badge .badge {
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.text-gradient-primary {
    background: linear-gradient(135deg, #ffc107 0%, #0dcaf0 50%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.typing-text {
    border-right: 3px solid #ffc107;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #ffc107 }
}

/* Button Animations */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.btn-hover-grow {
    transition: all 0.3s ease;
}

.btn-hover-grow:hover {
    transform: scale(1.05);
    border-color: #ffc107;
    color: #ffc107;
}

/* Hero Stats */
.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 300px;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: floatIcon 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 60%; right: 10%; animation-delay: 1s; }
.icon-3 { bottom: 20%; left: 50%; animation-delay: 2s; }
.icon-4 { top: 40%; right: 20%; animation-delay: 3s; }

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.central-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.orb-inner {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseOrb 2s ease-in-out infinite;
}

.orb-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    filter: blur(10px);
}

@keyframes pulseOrb {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Breadcrumb */
.hero-breadcrumb {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    opacity: 0.6;
}

.breadcrumbs a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ffc107 !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    animation: fadeInOut 2s ease-in-out infinite;
}

.scroll-arrow {
    display: flex;
    justify-content: center;
}

.arrow-line {
    width: 2px;
    height: 20px;
    background: #ffc107;
    animation: bounceArrow 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
        height: 20px;
    }
    50% {
        transform: translateY(10px);
        height: 15px;
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 200px;
        margin-top: 2rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .central-orb {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767px) {
    .services-hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-stats .row {
        justify-content: center;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .base-layer,
    .particle,
    .shape,
    .floating-icon,
    .central-orb,
    .typing-text,
    .btn-glow::before,
    .scroll-arrow {
        animation: none;
    }
    
    .typing-text {
        border-right: none;
        white-space: normal;
    }
}











   
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
        }

        .page-title {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, #3a0ca3 0%, #003566 100%);
        }

        .page-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://media.istockphoto.com/id/2228764569/photo/hispanic-female-software-developer-coding-at-night-in-office.jpg?s=612x612&w=0&k=20&c=d6bNhps-84PN0uBSzec-s1Dqwe6e74A1QIvDqrMFBCI=');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .title-content {
            max-width: 600px;
            color: white;
            padding: 40px 0;
        }

        .title-content h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.1;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            background: linear-gradient(to right, #fff 0%, #a8edea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease-out;
        }

        .title-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(45deg, #ff8a00, #e52e71);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .breadcrumbs {
            margin-top: 30px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .breadcrumbs ol {
            display: flex;
            list-style: none;
            padding: 0;
        }

        .breadcrumbs li {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .breadcrumbs li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            opacity: 0.7;
        }

        .breadcrumbs a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumbs a:hover {
            color: white;
        }

        .breadcrumbs .current {
            color: #ffcc00;
            font-weight: 600;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-delay: -5s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: -10s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
            100% {
                transform: translateY(0) rotate(360deg);
                opacity: 0.7;
            }
        }

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

        @media (max-width: 768px) {
            .title-content h1 {
                font-size: 2.5rem;
            }
            
            .title-content p {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }



         /* About Section Styles */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            position: relative;
            overflow: hidden;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            border-radius: 50%;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            background: #3a0ca3;
            top: 10%;
            left: 5%;
            animation: float 15s infinite ease-in-out;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            background: #003566;
            bottom: 10%;
            right: 5%;
            animation: float 18s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .img-fluid {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .img-fluid:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .content {
            padding: 30px 0 30px 40px;
        }

        .content h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
        }

        .content h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #3a0ca3, #003566);
            border-radius: 2px;
        }

        .content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #555;
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #3a0ca3, #003566);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .feature-icon i {
            color: white;
            font-size: 1.2rem;
        }

        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #2c3e50;
        }

        .feature-text p {
            font-size: 0.9rem;
            margin: 0;
            color: #666;
        }

        .stats-container {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eaeaea;
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3a0ca3;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .col-lg-5, .col-lg-7 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .content {
                padding: 30px 0 0 0;
            }
            
            .img-fluid {
                transform: none;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .stat-item {
                flex: 0 0 calc(50% - 20px);
            }
        }

        @media (max-width: 576px) {
            .stat-item {
                flex: 0 0 100%;
            }
            
            .content h3 {
                font-size: 2rem;
            }
        }

        /* Animation for AOS compatibility */
        [data-aos="fade-up"] {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        [data-aos="fade-up"].aos-animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Why Us Section - Scoped Styles */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c2c 0%, #1a1a3e 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(58, 12, 163, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 53, 102, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.why-us-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.why-us-image-col {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0;
}

.why-us-content-col {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 0;
}

.why-us-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.why-us-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.why-us-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(58, 12, 163, 0.8), rgba(0, 53, 102, 0.6));
    z-index: 1;
}

.why-us-slides-container {
    background: linear-gradient(135deg, #1e1e3e 0%, #2d2d5a 100%);
    padding: 60px 50px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.why-us-swiper {
    width: 100%;
    height: auto;
}

.why-us-swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.why-us-swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.why-us-slide-content {
    max-width: 520px;
    color: white;
    text-align: left;
}

.why-us-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #a8edea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4cc9f0;
    position: relative;
    padding-left: 30px;
    line-height: 1.3;
}

.why-us-slide-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #3a0ca3, #7209b7);
    border-radius: 50%;
}

.why-us-slide-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f8f9fa;
    font-style: italic;
    line-height: 1.4;
}

.why-us-slide-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e9ecef;
    margin-bottom: 0;
}

/* Navigation - Scoped */
.why-us-swiper-nav-next,
.why-us-swiper-nav-prev {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3a0ca3, #7209b7);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-top: -25px;
}

.why-us-swiper-nav-next::after,
.why-us-swiper-nav-prev::after {
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
}

.why-us-swiper-nav-next:hover,
.why-us-swiper-nav-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(58, 12, 163, 0.4);
}

/* Pagination - Scoped */
.why-us-swiper-pagination {
    bottom: 20px !important;
}

.why-us-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.why-us-swiper-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(45deg, #3a0ca3, #7209b7);
    transform: scale(1.3);
}

/* Floating Elements - Scoped */
.why-us-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.why-us-floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: why-us-float 15s infinite ease-in-out;
}

.why-us-floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.why-us-floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes why-us-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-us-image-col,
    .why-us-content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .why-us-image-wrapper {
        min-height: 400px;
    }
    
    .why-us-slides-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .why-us-slide-title {
        font-size: 1.5rem;
        padding-left: 25px;
    }
    
    .why-us-slide-title::before {
        width: 15px;
        height: 15px;
    }
    
    .why-us-slide-subtitle {
        font-size: 1.1rem;
    }
    
    .why-us-slides-container {
        padding: 30px 20px;
    }
    
    .why-us-swiper-nav-next,
    .why-us-swiper-nav-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .why-us-main-title {
        font-size: 1.8rem;
    }
    
    .why-us-slide-title {
        font-size: 1.3rem;
    }
    
    .why-us-slide-text {
        font-size: 1rem;
    }
    
    .why-us-slides-container {
        padding: 25px 15px;
    }
}


/* Team Section - Scoped Styles */
.team-section-component {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.team-section-component::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%233a0ca3" fill-opacity="0.02" points="0,0 1000,1000 0,1000"/></svg>');
}

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

.team-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3a0ca3 0%, #003566 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(58, 12, 163, 0.15);
}

.team-member-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 60%, rgba(58, 12, 163, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member-card:hover .team-member-overlay {
    opacity: 1;
}

.team-member-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member-card:hover .team-member-social {
    transform: translateY(0);
    opacity: 1;
}

.team-social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a0ca3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: #3a0ca3;
    color: white;
    transform: scale(1.1);
}

.team-member-info {
    padding: 30px;
    text-align: center;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 1.1rem;
    color: #3a0ca3;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member-bio {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-cta-section {
    text-align: center;
    padding: 60px 0 0;
}

.team-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.team-cta-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.team-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #3a0ca3 0%, #003566 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(58, 12, 163, 0.3);
}

.team-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(58, 12, 163, 0.4);
    color: white;
}

.team-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.team-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(58, 12, 163, 0.05);
    animation: team-float 20s infinite ease-in-out;
}

.team-floating-shape:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.team-floating-shape:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    animation-delay: -7s;
}

.team-floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation-delay: -14s;
}

@keyframes team-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(15px) rotate(240deg) scale(0.9);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-members-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .team-section-component {
        padding: 60px 0;
    }
    
    .team-main-title {
        font-size: 2.2rem;
    }
    
    .team-section-header {
        margin-bottom: 50px;
    }
    
    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team-cta-title {
        font-size: 1.6rem;
    }
    
    .team-member-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .team-main-title {
        font-size: 1.8rem;
    }
    
    .team-member-info {
        padding: 20px;
    }
    
    .team-member-name {
        font-size: 1.3rem;
    }
    
    .team-cta-button {
        padding: 12px 25px;
    }
}








/* Team Section - Modern Styling */
.team-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.team-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%233a0ca3" fill-opacity="0.02" points="0,0 1000,1000 0,1000"/></svg>');
}

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

.section-title-modern {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #3a0ca3 0%, #003566 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-modern p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 500px;
    margin: 0 auto;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(58, 12, 163, 0.15);
}

.member-img-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .member-img-container img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 60%, rgba(58, 12, 163, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member-card:hover .member-social {
    transform: translateY(0);
    opacity: 1;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a0ca3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3a0ca3;
    color: white;
    transform: scale(1.1);
}

.member-info-modern {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.member-position {
    font-size: 1rem;
    color: #3a0ca3;
    font-weight: 600;
    margin-bottom: 0;
}

.no-team-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #4a5568;
    font-size: 1.1rem;
}

.team-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.team-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(58, 12, 163, 0.05);
    animation: team-float-modern 20s infinite ease-in-out;
}

.team-floating-shape:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.team-floating-shape:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    animation-delay: -7s;
}

.team-floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation-delay: -14s;
}

@keyframes team-float-modern {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(15px) rotate(240deg) scale(0.9);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .team-section-modern {
        padding: 60px 0;
    }
    
    .section-title-modern h2 {
        font-size: 2.2rem;
    }
    
    .section-title-modern {
        margin-bottom: 50px;
    }
    
    .team-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .member-img-container {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .section-title-modern h2 {
        font-size: 1.8rem;
    }
    
    .section-title-modern p {
        font-size: 1rem;
    }
    
    .member-info-modern {
        padding: 20px;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
}



 /* Page Title - Scoped Styles */
        .page-title-dark-background {
            --page-title-primary: #4361ee;
            --page-title-dark: #1d3557;
            --page-title-light: #f8f9fa;
            --page-title-white: #ffffff;
            --page-title-gray: #6c757d;
            --page-title-overlay: rgba(29, 53, 87, 0.8);
            
            position: relative;
            padding: 120px 0 80px;
            background-color: var(--page-title-dark);
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .page-title-dark-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(https://plus.unsplash.com/premium_photo-1663100722417-6e36673fe0ed?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8Y29kaW5nJTIwaGFuZHN8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=600);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.3;
            z-index: 1;
        }

        .page-title-dark-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--page-title-overlay) 0%, rgba(67, 97, 238, 0.7) 100%);
            z-index: 2;
        }

        .page-title-dark-background .container {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .page-title-dark-background h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--page-title-white);
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        /* Breadcrumbs */
        .page-title-dark-background .breadcrumbs {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 12px 25px;
        }

        .page-title-dark-background .breadcrumbs ol {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 10px;
        }

        .page-title-dark-background .breadcrumbs li {
            display: flex;
            align-items: center;
            font-size: 1rem;
            color: var(--page-title-light);
        }

        .page-title-dark-background .breadcrumbs li:not(:last-child)::after {
            content: '/';
            margin-left: 10px;
            color: var(--page-title-primary);
            font-weight: 600;
        }

        .page-title-dark-background .breadcrumbs a {
            color: var(--page-title-light);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .page-title-dark-background .breadcrumbs a:hover {
            color: var(--page-title-primary);
        }

        .page-title-dark-background .breadcrumbs .current {
            color: var(--page-title-primary);
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title-dark-background {
                padding: 100px 0 60px;
            }
            
            .page-title-dark-background h1 {
                font-size: 2.8rem;
            }
            
            .page-title-dark-background .breadcrumbs {
                padding: 10px 20px;
            }
            
            .page-title-dark-background .breadcrumbs li {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .page-title-dark-background {
                padding: 80px 0 50px;
            }
            
            .page-title-dark-background h1 {
                font-size: 2.2rem;
            }
            
            .page-title-dark-background .breadcrumbs {
                padding: 8px 16px;
            }
            
            .page-title-dark-background .breadcrumbs ol {
                flex-direction: column;
                gap: 5px;
            }
            
            .page-title-dark-background .breadcrumbs li:not(:last-child)::after {
                display: none;
            }
        }


























        /* Awesome Page Title - Scoped Styles */
        .page-title-awesome {
            --pt-primary: #4361ee;
            --pt-primary-glow: #4895ef;
            --pt-secondary: #7209b7;
            --pt-dark: #1d3557;
            --pt-light: #f8f9fa;
            --pt-white: #ffffff;
            --pt-accent: #f72585;
            
            position: relative;
            padding: 160px 0 100px;
            background: linear-gradient(135deg, var(--pt-dark) 0%, #0c1b33 100%);
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            isolation: isolate;
        }

        /* Animated Background Layers */
        .page-title-awesome::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(https://plus.unsplash.com/premium_photo-1663100722417-6e36673fe0ed?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8Y29kaW5nJTIwaGFuZHN8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=600);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.4;
            z-index: 1;
            animation: backgroundPan 30s linear infinite;
        }

        .page-title-awesome::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(67, 97, 238, 0.9) 0%,
                rgba(114, 9, 183, 0.7) 50%,
                rgba(247, 37, 133, 0.6) 100%
            );
            z-index: 2;
        }

        /* Floating Code Elements */
        .floating-code {
            position: absolute;
            font-family: 'Courier New', monospace;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.1);
            font-size: 1.2rem;
            z-index: 3;
            animation: floatCode 20s linear infinite;
        }

        .floating-code:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-code:nth-child(2) { top: 60%; left: 80%; animation-delay: -5s; }
        .floating-code:nth-child(3) { top: 40%; left: 15%; animation-delay: -10s; }
        .floating-code:nth-child(4) { top: 70%; left: 60%; animation-delay: -15s; }
        .floating-code:nth-child(5) { top: 30%; left: 85%; animation-delay: -7s; }

        /* Container */
        .page-title-awesome .container {
            position: relative;
            z-index: 4;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        /* Main Title with Glow Effect */
        .page-title-awesome h1 {
            font-size: 4.5rem;
            font-weight: 800;
            color: var(--pt-white);
            margin-bottom: 30px;
            text-shadow: 
                0 0 20px var(--pt-primary-glow),
                0 0 40px rgba(2, 4, 16, 0.5),
                0 0 60px rgba(67, 97, 238, 0.3);
            background: linear-gradient(135deg, var(--pt-white) 0%, var(--pt-primary-glow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        /* Enhanced Breadcrumbs */
        .page-title-awesome .breadcrumbs {
            display: inline-flex;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 15px 30px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .page-title-awesome .breadcrumbs::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .page-title-awesome .breadcrumbs:hover::before {
            left: 100%;
        }

        .page-title-awesome .breadcrumbs ol {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 15px;
        }

        .page-title-awesome .breadcrumbs li {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--pt-light);
            transition: all 0.3s ease;
        }

        .page-title-awesome .breadcrumbs li:not(:last-child)::after {
            content: '›';
            margin-left: 15px;
            color: var(--pt-primary);
            font-size: 1.4rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .page-title-awesome .breadcrumbs a {
            color: var(--pt-light);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .page-title-awesome .breadcrumbs a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .page-title-awesome .breadcrumbs a:hover {
            color: var(--pt-white);
            background: rgba(67, 97, 238, 0.2);
            transform: translateY(-2px);
        }

        .page-title-awesome .breadcrumbs a:hover::before {
            left: 100%;
        }

        .page-title-awesome .breadcrumbs .current {
            color: var(--pt-white);
            background: linear-gradient(135deg, var(--pt-primary), var(--pt-secondary));
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
            position: relative;
        }

        .page-title-awesome .breadcrumbs .current::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--pt-primary), var(--pt-accent), var(--pt-secondary));
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            animation: currentPulse 2s ease-in-out infinite;
        }

        /* Animated Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: var(--pt-primary-glow);
            border-radius: 50%;
            animation: particleFloat 6s ease-in-out infinite;
        }

        /* Animations */
        @keyframes backgroundPan {
            0% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(1deg); }
            100% { transform: scale(1) rotate(0deg); }
        }

        @keyframes titleGlow {
            0% { 
                text-shadow: 
                    0 0 20px var(--pt-primary-glow),
                    0 0 40px rgba(67, 97, 238, 0.5),
                    0 0 60px rgba(67, 97, 238, 0.3);
            }
            100% { 
                text-shadow: 
                    0 0 30px var(--pt-primary-glow),
                    0 0 60px rgba(67, 97, 238, 0.7),
                    0 0 80px rgba(67, 97, 238, 0.5);
            }
        }

        @keyframes floatCode {
            0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.2; }
            100% { transform: translateY(0px) rotate(360deg); opacity: 0.1; }
        }

        @keyframes currentPulse {
            0%, 100% { opacity: 0; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.02); }
        }

        @keyframes particleFloat {
            0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0; }
            10%, 90% { opacity: 1; }
            50% { transform: translateY(-100px) translateX(20px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title-awesome {
                padding: 120px 0 80px;
            }
            
            .page-title-awesome h1 {
                font-size: 3.2rem;
            }
            
            .page-title-awesome .breadcrumbs {
                padding: 12px 20px;
            }
            
            .page-title-awesome .breadcrumbs ol {
                gap: 10px;
            }
            
            .page-title-awesome .breadcrumbs li {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .page-title-awesome {
                padding: 100px 0 60px;
            }
            
            .page-title-awesome h1 {
                font-size: 2.5rem;
            }
            
            .page-title-awesome .breadcrumbs {
                padding: 10px 15px;
            }
            
            .page-title-awesome .breadcrumbs ol {
                flex-direction: column;
                gap: 8px;
            }
            
            .page-title-awesome .breadcrumbs li:not(:last-child)::after {
                display: none;
            }
        }





        