/* Section styling */
.website-maintenance {
  background: linear-gradient(to bottom, #fbbd08, #fff9e5);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;      /* Vertical centering */
  justify-content: center;  /* Horizontal centering */
}

/* Spider webs (add SVG or PNG images as background or pseudo-elements) */
.website-maintenance::before,
.website-maintenance::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.website-maintenance::before {
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-image: url('assets/images/spiderweb-top-left.png');
}

.website-maintenance::after {
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url('assets/images/spiderweb-top-right.png');
}

/* Title style */
.maintenance-title {
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  z-index: 1;
  position: relative;
  vertical-align: center;
}

/* Text style */
.maintenance-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #222;
  z-index: 1;
  position: relative;
}

/* Responsive image */
img.img-fluid {
  max-width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .maintenance-title {
    font-size: 2rem;
    text-align: center;
  }

  .maintenance-text {
    text-align: center;
    font-size: 1rem;
  }
}

.our-strengths-section {
  background-color: #fffdf9;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
}

.strengths-img {
  max-width: 100%;
  height: auto;
}

.strengths-list li {
  display: inline;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}


.strengths-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .strengths-list li{
  display: block;
  margin-left: 1rem;
  }
  
.strengths-list li::before {
  margin-left: 1rem;
}
}

.our-expertise {
  background-color: #fff;
}

.section-subtitle {
  font-size: 1rem;
  color: #444;
  max-width: 100%;
  margin: 0 auto;
}

.expertise-card {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  text-align: left;
  font-weight: 400;
}

/* Color variations */
.bg-blue {
  background: #49b6f5;
}

.bg-purple {
  background: linear-gradient(90deg, #7c4dff, #7986cb);
}

.bg-navy {
  background: #1c3e65;
}

.bg-green {
  background: #00b894;
}

.bg-yellow {
  background: #f6b93b;
  color: #333;
}

@media (max-width: 767px) {
  .expertise-card {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

.why-choose-us {
  background-color: #fff;
}

.why-choose-us h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
}

.why-list {
  padding-left: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
}

.why-list li {
  margin-bottom: 1rem;
  list-style-type: disc;
  display: inline;
}

.why-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive Image */
.img-fluid {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .why-choose-us h2 {
    font-size: 1.5rem;
  }

  .why-list {
    font-size: 1rem;
  }

  .why-choose-us .col-lg-6 {
    margin-bottom: 2rem;
  }

  .why-list li{
    display: block;
    margin-left: 1rem;
    }
    
  .why-list li::before {
    margin-left: 1rem;
  }
}

.how-it-works {
  background-color: #fff;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
}

.how-list {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
  padding-left: 1rem;
}

.how-list li {
  list-style-type: disc;
  margin-bottom: 1rem;
  display: inline;
}

.how-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .how-it-works h2 {
    font-size: 1.5rem;
  }

  .how-list {
    font-size: 1rem;
  }

  .how-it-works .col-lg-8 {
    margin-top: 2rem;
  }

  .how-list li{
  display: block;
  margin-left: 1rem;
  }
    
  .how-list li::before {
    margin-left: 1rem;
  }
}
