/* General Styles */
section {
  padding: 80px 0;
  position: relative;
}

.text-gradient {
  background: linear-gradient(45deg, #2196F3, #00BCD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
  margin: 1rem 0;
}

.separator {
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #2196F3, #00BCD4);
  margin: 20px auto;
}

/* Hero Section */
.page-title {
  text-align: center;
  padding: 100px 0 60px;
}

.page-title h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-title .lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Overview Section */
.overview-section .feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.overview-section .feature-list i {
  color: #2196F3;
  margin-right: 1rem;
}

/* Network Solutions Section */
.solution-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.solution-card .icon-box {
  width: 70px;
  height: 70px;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.solution-card .icon-box i {
  font-size: 2rem;
  color: #2196F3;
}

.solution-card .subtitle {
  color: #2196F3;
  font-weight: 500;
  margin-bottom: 1rem;
}

.solution-card .service-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.solution-card .service-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.solution-card .service-list i {
  color: #2196F3;
  margin-right: 0.75rem;
}

/* Services Portfolio Section */
.services-portfolio-section {
  padding: 80px 0;
}

.services-portfolio-section .row {
  margin: -20px;  /* Negative margin to counteract padding */
}

.services-portfolio-section .col-lg-3,
.services-portfolio-section .col-md-6 {
  padding: 20px;  /* Add padding around each column */
}

.service-box {
  text-align: center;
  padding: 2.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin: 0;  /* Remove default margin since we're using column padding */
}

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

.service-box i {
  font-size: 2.5rem;
  color: #2196F3;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-box h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Support Journey Section */
.support-journey-section {
  background: linear-gradient(rgba(33, 150, 243, 0.02), rgba(33, 150, 243, 0.05));
}

.support-journey-section .lead {
  color: #2196F3;
  margin-bottom: 1.5rem;
}

/* Image Styles */
.image-wrapper {
  position: relative;
  padding: 1rem;
}

.image-wrapper img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.image-wrapper:hover img {
  transform: scale(1.02);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .page-title h1 {
    font-size: 2.5rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .solution-card {
    margin-bottom: 2rem;
  }
}

/* Infrastructure Solutions Section */
.infrastructure-solutions-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.infrastructure-solutions-section .text-gradient {
  background: linear-gradient(45deg, #2196F3, #00BCD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.infrastructure-solutions-section .features-list {
  margin-top: 2rem;
}

.infrastructure-solutions-section .feature-item {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

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

.infrastructure-solutions-section .feature-item i {
  font-size: 2rem;
  color: #2196F3;
  margin-bottom: 1rem;
}

.infrastructure-solutions-section .floating-shape-1,
.infrastructure-solutions-section .floating-shape-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(33, 150, 243, 0.1);
  animation: float 6s infinite ease-in-out;
}

.infrastructure-solutions-section .floating-shape-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -50px;
}

.infrastructure-solutions-section .floating-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -30px;
  left: -30px;
  animation-delay: -3s;
}

.infrastructure-solutions-section .service-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.infrastructure-solutions-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.infrastructure-solutions-section .service-card i {
  font-size: 2.5rem;
  color: #2196F3;
  margin-bottom: 1rem;
}

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

@media (max-width: 991px) {
  .content-column {
    margin-bottom: 3rem;
  }
}
