/* Improved Layout and Typography */

/* Better spacing and typography */
.containers {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Improved service icons layout */
.col-md-3.ser-icon {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin: 16px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.col-md-3.ser-icon:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Better service grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

/* Improved typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.4;
  margin-bottom: 16px;
}

p {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

/* Better button styling */
.button, .button2 {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/* Improved banner section */
#banners {
  position: relative;
  overflow: hidden;
}

#banners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
  z-index: 1;
}

#banners .inner {
  position: relative;
  z-index: 2;
}

/* Better responsive design */
@media (max-width: 768px) {
  .col-md-3.ser-icon {
    margin: 8px 0;
    min-height: 140px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .c2 {
    font-size: 28px;
  }
  
  .containers {
    padding: 0 16px;
  }
}

/* Improved section spacing */
.section-spacing {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 40px 0;
  }
}

/* Better card design for services */
.kophes {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  margin: 16px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

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

/* Improved why us section */
.whyus {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin: 16px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  min-height: 280px;
}

.whyus:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Better icon styling */
.icon-scc {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.icon-scc:hover {
  transform: scale(1.1);
}