* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

#header-container {
  background-color: white;
  display: flex;
  justify-content: space-between;
  left: 0;
  right: 0;
  top: 0;
  height: 60px;
  position: fixed;
  padding: 12px;
  z-index: 100;
}

#header-left-section {
  flex: 1;
}

#header-middle-section {
  display: flex;
  flex: 2;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

#header-right-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 5px;
}

#mosco-logo {
  object-fit: contain;
}

#home-text {
  background-color: rgb(62, 72, 108);
  padding: 10px 15px;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.header-links:hover {
  cursor: pointer;
  text-decoration: underline;
}

#hire-me-text {
  padding: 15px 20px;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  background-color: rgb(15, 27, 51);
  animation: dance 2s ease-in-out infinite;
}
@keyframes dance {
  0% {
    padding: 15px 20px;
  }
  50% {
    padding: 17px 23px;
  }
  100% {
    padding: 15px 20px;
  }
}
#body-container {
  display: flex;
  margin-top: 100px;
  padding: 24px;
}

#body-left-section {
  padding-top: 20px;
  flex: 2;
  height: 100vh;
  width: 100%;
}

#body-right-section {
  flex: 1;
}

#mosco-profile-pic {
  object-fit: contain;
  width: 100%;
}
#text-header,
#text-header-body3,
#body4-heading {
  font-size: 60px;
  color: rgb(62, 72, 108);
}

#text-body,
#sub-text-header-body3 {
  font-size: 24px;
  line-height: 36px;
}

#body2-header {
  text-align: center;
  font-size: 56px;
  color: rgb(62, 72, 108);
}

#text-in-body2 {
  font-size: 18px;
  text-align: center;
  line-height: 27px;
}

#body3-container {
  text-align: center;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 64px;
  padding: 10px;
  margin-bottom: 100px;
}

.boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(62, 72, 108);
  color: white;
  border-radius: 15px;
  height: 280px;
  padding: 10px;
}

.hovered {
  display: none;
}

.box1,
.box2,
.box3,
.box4,
.box5,
.box6 {
  display: flex;
  align-items: center;
}

#nnpc-logo {
  height: 100px;
  object-fit: cover;
  margin-right: 15px;
}

#ggg-logo {
  height: 70px;
  object-fit: cover;
  margin-right: 15px;
}

#oxford-logo {
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
}

#learn-factory-logo {
  height: 70px;
  object-fit: cover;
  margin-right: 15px;
}

#cizoti-logo,
#It-service-logo {
  height: 25px;
  object-fit: cover;
  margin-right: 15px;
}

.boxes:hover .hovered {
  display: block;
}

.boxes:hover .default {
  display: none;
}

.boxes-heading-highlight {
  font-size: 30px;
  line-height: 40px;
}

.boxes-sub-text {
  font-size: 20px;
}

.hovered-text-highlight {
  font-size: 18px;
}

.centered-line {
  margin: auto;
  width: 100px;
  border: 2px solid black;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer-container {
  display: flex;
  flex-direction: column;
}

#footer-top-section {
  display: flex;
}

#linkedin-logo,
#github-logo,
#whatsapp-logo {
  height: 25px;
}

#media-contact-links {
  display: flex;
  width: 125px;
  justify-content: space-between;
}

#footer-lower-section {
  text-align: center;
  border-top: 2px solid white;
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-container {
  background-color: rgb(15, 27, 51);
  color: white;
}
#footer-top-section {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

#text-in-body2 {
  font-size: 24px;
}

.card1,
.card2,
.card4,
.card5,
.card6 {
  display: flex;
  flex-direction: column;
  width: 350px;
  border-radius: 10px;
}

.card3 {
  display: flex;
  flex-direction: column;
  border: 2px solid rgb(15, 27, 51);
  width: 350px;
  border-radius: 10px;
  transform: translateY(-40px);
  position: relative;
  z-index: 1;
}

.cards-logo {
  object-fit: cover;
  height: 260px;
  border-radius: 10px;
}

.Accessibility-text {
  text-align: center;
  font-size: 20px;
  padding: 15px;
  background-color: white;
}

.info-text {
  line-height: 23px;
  padding: 5px;
  background-color: white;
  height: 130px;
  border-radius: 10px;
}

.slider {
  display: flex;
  gap: 10px;
  padding-top: 50px;
  padding-bottom: 20px;
  flex-wrap: nowrap;
}

.slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  margin-top: 64px;
  margin-left: 64px;
  margin-right: 64px;
  background-color: rgb(244, 249, 250);
  scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn-container button {
  background-color: rgb(62, 72, 108);
  padding: 15px 20px;
  color: white;
  border-radius: 8px;
  border: none;
  margin-top: 15px;
}

.btn-container button:active {
  transform: scale(0.9);
  transition: transform 0.15s ease;
}

.carousel-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  position: relative;
  gap: 20px;
  margin-top: 50px;
}

.carousel {
  max-width: 400px;
  box-shadow: 1px 6px 12px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.cards {
  display: none;
  flex-direction: column;
  padding: 10px;
  position: absolute;
  width: 100%;
}

.cards.active {
  display: flex;
  position: relative;
}

#friend1-profile {
  display: flex;
  justify-content: center;
  align-items: center;
}

#friend1-pic {
  height: 100px;
  border-radius: 50px;
}

.carousel-text {
  line-height: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.friends-name {
  line-height: 24px;
  text-align: center;
}

#previous-btn,
#next-btn {
  padding: 10px 12px;
  background-color: rgb(62, 72, 108);
  color: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

#previous-btn:active,
#next-btn:active {
  transform: scale(1.1);
  transition: transform 0.15s ease;
  background-color: rgb(15, 27, 51);
}

#learn-more {
  background-color: rgb(62, 72, 108);
  padding: 10px 15px;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-size: 20px;
}
