/* Enhanced Services Section Styles */
.enhanced-services {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.enhanced-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  margin: 0 auto 25px;
  border-radius: 2px;
  animation: expand 1s ease-out;
}

@keyframes expand {
  0% { width: 0; }
  100% { width: 80px; }
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

/* Service Cards */
.service-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

/* Service Icons */
.service-icon {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.service-icon i {
  font-size: 2.5rem;
  color: white;
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Card Color Themes */
.microsoft-card .icon-bg {
  background: linear-gradient(45deg, #00bcf2, #0078d4);
  
}

.development-card .icon-bg {
  background: linear-gradient(45deg, #28a745, #20c997);
}

.infrastructure-card .icon-bg {
  background: linear-gradient(45deg, #fd7e14, #e83e8c);
}

.advisory-card .icon-bg {
  background: linear-gradient(45deg, #6f42c1, #e83e8c);
}

.service-card:hover .icon-bg {
  transform: rotate(5deg) scale(1.1);
}

/* Service Content */
.service-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: #007bff;
}

.service-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Service Arrow */
.service-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}

.service-arrow i {
  font-size: 1.2rem;
  color: #007bff;
  transition: transform 0.3s ease;
}

.service-card:hover .service-arrow i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .enhanced-services {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 2rem;
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced Footer Styles */
.enhanced-footer {
  background: white;
  color: #333;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.footer-content {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(1.1);
}

.footer-brand h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c3e50;
}

.tagline {
  font-style: italic;
  margin-bottom: 25px;
  color: #6c757d;
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6c757d;
  font-size: 0.95rem;
}

.contact-item i {
  font-size: 1.1rem;
  color: #2196F3;
}

.footer-section h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
  position: relative;
}

.footer-section h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #2196F3;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: block;
  padding: 5px 0;
}

.footer-links a:hover {
  color: #2196F3;
  transform: translateX(5px);
}

.social-section {
  margin-top: 30px;
}

.social-section h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
}

.social-link:hover {
  background: #2196F3;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

.social-link i {
  font-size: 1.1rem;
}

.footer-bottom {
  background: #f8f9fa;
  padding: 20px 0;
  border-top: 1px solid #dee2e6;
  position: relative;
  z-index: 2;
}

.copyright, .powered-by {
  margin: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.powered-by {
  font-style: italic;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    padding: 40px 0 30px;
  }
  
  .footer-brand {
    margin-bottom: 30px;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-section h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .footer-bottom .row {
    text-align: center;
  }
  
  .footer-bottom .col-md-6:last-child {
    margin-top: 10px;
  }
}

/* Enhanced CTA Section Styles */
.enhanced-cta {
  background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.enhanced-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.enhanced-cta .container {
  position: relative;
  z-index: 3;
}

/* CTA Content */
.cta-content {
  color: white;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-badge i {
  font-size: 1.1rem;
  color: #ffd700;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 500px;
}

/* CTA Features */
.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.cta-feature i {
  color: #00e676;
  font-size: 1.1rem;
}

/* CTA Actions */
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 250px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn.primary {
  background: #fff;
  color: #4a4a4a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #4a4a4a;
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #4a4a4a;
  transform: translateY(-3px);
}

.cta-btn i {
  font-size: 1.1rem;
}

/* CTA Trust Badge */
.cta-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 20px;
}

.cta-trust i {
  color: #00e676;
  font-size: 1.1rem;
}

/* CTA Background Elements */
.cta-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.cta-shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cta-shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.cta-shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive CTA */
@media (max-width: 991px) {
  .enhanced-cta {
    padding: 80px 0;
  }
  
  .cta-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .cta-content h3 {
    font-size: 2rem;
  }
  
  .cta-description {
    margin: 0 auto 30px;
  }
  
  .cta-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .enhanced-cta {
    padding: 60px 0;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-btn {
    min-width: 200px;
    padding: 12px 25px;
  }
  
  .cta-shape {
    display: none;
  }
}

@media (max-width: 576px) {
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-btn {
    min-width: 100%;
    font-size: 0.95rem;
  }
}