/* Animated gradient background */
body { 
  background: linear-gradient(120deg, #0f2027, #2c5364, #00c6ff, #0072ff);
  background-size: 400% 400%;
  animation: gradientBG 18s ease infinite;
} 
@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
  

.about-hero {
      background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 52%,
    rgba(6, 72, 162, 1) 74%,
    rgba(0, 212, 255, 1) 100%
  );
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
    margin-bottom: 0;
    box-shadow: 0 4px 24px rgba(0,198,255,0.08);
}
.about-hero h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.about-hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto;
    color: #e0f7fa;
    padding-bottom: 20px;
}

.team-section {
    background: #f4f6fa;
    padding: 40px 0 30px 0;
}
.team-section h2 {
    text-align: center;
    color: #0072ff;
    margin-bottom: 30px;
}
.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.team-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 24px 18px 18px 18px;
    width: 220px;
    text-align: center;
}
.team-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid #00c6ff;
}
.team-card h3 {
    margin: 10px 0 4px 0;
    color: #0072ff;
    font-size: 1.1em;
}
.team-card p {
    color: #555;
    font-size: 0.98em;
}
.about-cta {
    text-align: center;
    margin: 0;
    padding: 48px 0 56px 0;
    background: linear-gradient(90deg, #00c6ff 0%, #00bfff 60%, #0072ff 100%);
    box-shadow: 0 8px 32px 0 rgba(0,198,255,0.10);
    border-radius: 0 0 0 0;
    position: relative;
}
.about-cta h2 {
    color: #111;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px #00c6ff22;
}
.about-cta .btn {
    background: #090979;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 14px 38px;
    font-size: 1.15em;
    font-weight: 700;
    box-shadow: 0 8px 24px #00c6ff44;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    margin-top: 8px;
    text-shadow: 0 2px 8px #0072ff33;
}
.about-cta .btn:hover {
    background: #6868e4;
    transform: scale(1.09) translateY(-2px);
    box-shadow: 0 12px 32px #00c6ff66;
    text-shadow: 0 2px 8px #0072ff33;
}

@media (max-width: 900px) {
  .about-section { padding: 25px 8px; }
  .team-cards { gap: 16px; }
}
@media (max-width: 700px) {
  .team-cards { flex-direction: column; align-items: center; }
  .team-card { width: 90vw; max-width: 320px; }
}

/* --- Service Centre Sections --- */
.service-centre-section {
  background: #f3f8fd;
  border-radius: 18px;
  margin: 48px auto 32px auto;
  max-width: 1000px;
  box-shadow: 0 4px 32px 0 rgba(0,114,255,0.07);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}
.service-centre-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}
.service-centre-image {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-centre-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 0 24px 0 #7f8cff, 0 2px 16px #00c6ff33;
  background: #fff;
}
.service-centre-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-centre-content h2 {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
}
.service-centre-content p {
  color: #555;
  font-size: 1.08em;
  margin-bottom: 16px;
  line-height: 1.6;
}
.explore-btn {
  display: inline-block;
  background: #ff8c8c;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  margin-top: 8px;
  box-shadow: 0 4px 16px #ff8c8c33;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  text-align: center;
}
.explore-btn:hover {
  background: #ff5e5e;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px #ff8c8c66;
}
/* Alternate layout for second section */
.service-centre-section.alt .service-centre-container {
  flex-direction: row-reverse;
}

@media (max-width: 1100px) {
  .service-centre-image img {
    width: 220px;
    height: 220px;
  }
  .service-centre-container {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .service-centre-section {
    padding: 24px 8px;
  }
  .service-centre-image img {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 700px) {
  .service-centre-container {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }
  .service-centre-image, .service-centre-content {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .service-centre-image img {
    width: 90vw;
    height: auto;
    max-width: 320px;
    margin-bottom: 12px;
  }
}

/* --- Highlight background for About our service centre --- */
.highlight-bg {
  background: linear-gradient(120deg, #e0f7fa 0%, #e3e9ff 100%);
  box-shadow: 0 8px 32px 0 rgba(0,198,255,0.10);
  border: 2px solid #b2e0ff;
}

/* --- What We Do Section as Card --- */
.what-we-do-section {
  background: #f7fbff;
  border-radius: 18px;
  margin: 48px auto 32px auto;
  max-width: 1000px;
  box-shadow: 0 4px 32px 0 rgba(0,114,255,0.07);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 8px solid #0072ff;
  position: relative;
  margin-bottom: 36px;
}
.what-we-do-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-we-do-content {
  width: 100%;
  text-align: left;
}
.what-we-do-content h2 {
  color: #0072ff;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}
.what-we-do-content h2::before {
  content: '\f0ad'; /* fa-cogs */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #00c6ff;
  margin-right: 12px;
  font-size: 1.1em;
}
.what-we-do-content ul {
  background: #fff;
  border-radius: 10px;
  padding: 22px 32px;
  margin: 0;
  box-shadow: 0 2px 12px rgba(0,114,255,0.04);
  font-size: 1.08em;
  border-left: 4px solid #00c6ff;
}
.what-we-do-content ul li {
  margin-bottom: 12px;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  padding-left: 24px;
  transition: color 0.2s;
}
.what-we-do-content ul li::before {
  content: '\f058'; /* fa-check-circle */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #00c6ff;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1em;
}
.what-we-do-content ul li:hover {
  color: #0072ff;
}

@media (max-width: 1100px) {
  .service-centre-image img {
    width: 220px;
    height: 220px;
  }
  .service-centre-container {
    gap: 24px;
  }
  .what-we-do-section {
    padding: 24px 8px;
  }
}
@media (max-width: 900px) {
  .service-centre-section,
  .what-we-do-section {
    padding: 24px 8px;
  }
  .service-centre-image img {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 700px) {
  .service-centre-container,
  .what-we-do-container {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }
  .service-centre-image, .service-centre-content, .what-we-do-content {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .service-centre-image img {
    width: 90vw;
    height: auto;
    max-width: 320px;
    margin-bottom: 12px;
  }
  .what-we-do-content ul {
    padding: 18px 8px;
  }
} 