/* SpeedyVoice Corporate Demo Styles */

/* Loading Animation */
.loading-overlay {
  background: rgba(255,255,255,0.95);
}

.cssload-pulse-loader {
  width: 40px;
  height: 40px;
  background-color: #0088cc;
  border-radius: 50%;
  animation: cssload-pulse 1s ease-in-out infinite;
}

@keyframes cssload-pulse {
  0% { transform: scale(0); }
  100% { transform: scale(1.0); opacity: 0; }
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-no-border {
  border: none;
}

.section-angled {
  position: relative;
}

.section-angled-layer-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #f8f9fa;
  transform: skewY(-2deg);
  transform-origin: bottom left;
}

/* Typography */
.text-12 {
  font-size: 3rem;
  line-height: 1.2;
}

.text-8 {
  font-size: 2.5rem;
}

.text-6 {
  font-size: 2rem;
}

.text-4 {
  font-size: 1.25rem;
}

/* Animations */
.appear-animation {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Feature Boxes */
.feature-box {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-box-style-2 .feature-box-icon {
  margin-bottom: 1.5rem;
}

.feature-box-style-2 .feature-box-icon i {
  font-size: 3rem;
  color: #0088cc;
}

/* Header Effects */
.header-effect-shrink.sticky-header-active {
  padding: 0.5rem 0;
}

.header-effect-shrink.sticky-header-active .header-logo img {
  max-height: 40px;
}

/* Navigation */
.header-nav-main-square .nav > li > a {
  border-radius: 0;
  padding: 1rem 1.5rem;
}

.header-nav-main-effect-2 .nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0088cc;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header-nav-main-effect-2 .nav > li > a:hover::after,
.header-nav-main-effect-2 .nav > li > a.active::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .text-12 {
    font-size: 2.5rem;
  }
  
  .text-8 {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .text-12 {
    font-size: 2rem;
  }
  
  .text-8 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .feature-box {
    margin-bottom: 2rem;
  }
}