/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  padding-top: 7.5rem;
  padding-bottom: 3rem;
  color: #fffcf0;
  background-color: #8EC478;
}

.education-list {
  list-style: none;
  padding: 0;
}
.education-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.education-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.education-icon {
  font-size: 2rem;
  margin-right: 15px;
  color: #AE78C4;
  transition: color 0.3s ease, transform 0.3s ease;
}
.education-item:hover .education-icon {
  color: #dc3545;
  transform: scale(1.2);
}

.accordion {
  --bs-accordion-btn-bg: #258C37;
  --bs-accordion-active-bg: #0c3b0f;
  --bs-accordion-active-color: #AE78C4;
  --bs-accordion-btn-color: #ffffff;
  --bs-accordion-bg: #ffffff;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-color: #000;
  --bs-accordion-icon-color: #ffffff;
}

.map-container {
  width: 700px;
  height: 700px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.social-icons a {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #AE78C4;
  background: #f8f9fa;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.social-icons a i {
  font-size: 35px;
  margin-right: 10px;
}
.social-icons a:hover {
  background: #8456cf;
  transform: scale(1.05);
}

.btn-custom {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #AE78C4;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: none;
}
.btn-custom i {
  font-size: 35px;
  margin-right: 10px;
}
.btn-custom:hover {
  background: #9563aa;
  transform: scale(1.05);
}

/*.list-group-hover .list-group-item:hover {
  background-color: #e71a1a;
}*/

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}


/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: auto;
}

.carousel-item img {
  margin: 0 auto;
  width: auto;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  /* rtl:remove */
  letter-spacing: -.05rem;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
