@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary-color: #086d8b;
  --secondary-color: #c963a8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', serif;
  scroll-behavior: smooth;
}

/* Breadcrumb */
#breadcrumb-container {
  background-color: var(--primary-color);
  width: 100%;
  height: 100px;
  padding: 0.75rem 1rem;
  /* margin-bottom: 1rem; */
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* about section */
#about-title {
  place-self: center;
}

#about-title span {
  font-weight: 500;
  color: var(--secondary-color);
}

/* About Us section */
#about-us {
  background-color: var(--primary-color);
}

.aboutus-title {
  width: fit-content;
  color: var(--secondary-color);
  padding: 10px;
  place-self: center;
  border-radius: 10px;
  border-bottom: 2px solid var(--secondary-color);
}

/* #about-img {
  flex: 1;
  overflow: hidden;
} */

#about-img img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
/* 
#about-content {
  flex: 1;
} */

#about-list p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: bold;
  color: white;
}

#about-list i {
  width: 30px;
  height: 30px;
  font-size: 1rem;
  color: white;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* core service section */
.core-service-card {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

/* Data Section */
#data-section {
  height: 60vh;
  background-image: url('../images/about-3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#data-section .layout {
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

#data-section .data-card {
  position: relative; /* Ensure it stays above the overlay */
  z-index: 2;
  color: white;
  padding: 20px;
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Optional: Adds a slight background */
  border-radius: 10px; /* Optional: For better UI */
}

/* Faq Section */
#faq-section {
  background-color: var(--primary-color);
  padding: 20px;
}

.faq-title {
  width: fit-content;
  color: white;
  padding: 10px;
  place-self: center;
  border-radius: 10px;
  border-bottom: 2px solid var(--secondary-color);
}

/* Our Expert Section */
.expert-card {
  width: 300px;
  height: 450px;
  padding: 10px;
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.expert-card img {
  border-radius: 10px;
}

.expert-card p {
  color: grey;
}

@media (max-width: 786px) {
  #data-section {
    height: fit-content;
    padding: 20px 0px;
  }
}
