/* General Body Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.hero-section {
  background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
  max-height: 110vh;
  height: auto;
  padding: 0px 0px 25px 0px;
}

h1,
p {
  animation: fadeIn 2s ease-out;
}

.carousel-inner {
  box-shadow: 0px 0px 4px 1px white;
}

#heading {
  text-transform: uppercase;
  border-radius: 50px;
  color: #EEF4ED;
  border: 2px solid #001631;
  margin: 25px 0px;
  text-align: center;
  background: linear-gradient(180deg, #0b2545 25%, #054692);
}

.line {
  border: 2px solid #0b2545;
  opacity: 1;
  margin: 0;
  box-shadow: 0px 0px 27px 9px #0b2545;
}

.projects-section {
  padding: 50px 0;
}

.project-card {
  border: none;
  background-color: #134074;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 0px 6px 3px black;
  color: #EEF4ED;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.project-btn {
  width: 100%;
  background-color: #eef4ed;
  border: none;
  font-weight: bold;
  color: #EEF4ED;
  transition: background-color 0.3s ease;
}

.project-btn:hover {
  background-color: #A0153E;
}

.source-btn,
.output-btn {
  background-color: #EEF4ED;
  color: #0b2545;
  border: 2px solid #00224D;
  transition: 0.5s ease-in;
}

.source-btn:hover,
.output-btn:hover {
  background-color: #00224D;
  border: 2px solid #EEF4ED;
  color: #EEF4ED;
}

.card-img-top {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 16px;
}

.social-icon-card {
  width: 50px;
  height: 50px;
  background-color: #EEF4ED;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.social-icon-card i {
  font-size: 35px;
  color: #000000;
  transition: color 0.3s ease;
}

.social-icon-card:hover {
  transform: scale(1.2);
}

.social-icon-card.linkedin:hover {
  background-color: #0077b5;
}

.social-icon-card.instagram:hover {
  background-color: #e4405f;
}

.social-icon-card.github:hover {
  background-color: #000000;
}

.social-icon-card.codepen:hover {
  background-color: #000000;
}

.social-icon-card:hover i {
  color: white;
  transform: rotate(360deg);
}

.social-icon-card a {
  text-decoration: none;
  color: inherit;
}

footer {
  height: auto;
  min-height: 11vh;
  background-color: #0b2545;
}

.footer-text {
  margin: 3.5vh 0vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Responsive Styles */
@media (max-width: 767px) {
  .project-card {
    margin-bottom: 20px;
  }
}

#more {
  display: none;
}