body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  /* CSS HEX */
  --gold-metallic: #d6b655ff;
  --pale-dogwood: #c1ada5ff;
  --taupe-gray: #8c8f9aff;
  --taupe-gray-2: #a29fa4ff;
  --drab-dark-brown: #463920ff;
  --purple: #3a0ca3;
  --blue: #00a8e8;
  --secondary: #003459;
}

h2 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #000000;
}

span {
  color: var(--blue);
}

/* button */
.btn-outline-info {
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-info:hover {
  color: #fff;
  background-color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-infoa:active {
  color: pink;
}
.navbar {
  padding: 20px;
}

.nav-item {
  margin-right: 10px;
  font-weight: 600;
}

.mr-5 {
  margin-right: 10px;
}

a.custom-link {
  color: var(--blue); /* Default link color */
  text-decoration: none; /* No underline by default */
  transition: color 0.3s ease; /* Smooth transition */
}

a.custom-link:hover {
  color: #ffffff; /* Hover color */
  background-color: var(--blue);
  border-radius: 10px;
}

section {
  scroll-margin-top: 150px;
}

/* timeline */

.timeline {
  position: relative;
  padding: 2rem 0;
  border-left: 3px solid #00a8e8;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-icon {
  position: absolute;
  left: -1rem;
  top: 0;
  background-color: #00a8e8;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.timeline-content p {
  margin-bottom: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations to the columns */
.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply the animation to the navbar */
.navbar {
  animation: slideDown 0.8s ease-out;
}

/* back to top button */

#myBtn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 999;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: var(--blue);
  color: white;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#myBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

.list-group-item {
  font-size: 1.5em;
}

/* Remove default border and add underline for input fields */
.custom-input {
  border: none;
  border-bottom: 2px solid #ccc; /* Apply bottom border (underline) */
  border-radius: 0; /* Remove border-radius to make it flat */
  box-shadow: none; /* Remove any box shadow */
  outline: none; /* Remove focus outline */
  transition: border-color 0.3s ease; /* Smooth transition for border color */
}

/* Change the border color when input fields are focused */
.custom-input:focus {
  border-bottom-color: #007bff; /* Change the bottom border to blue when focused */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add a slight shadow on focus for better UX */
}

/* Style the submit button to match the design */
#submitBtn {
  background-color: #007bff;
  color: white;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

#submitBtn:hover {
  background-color: #0056b3; /* Darker blue when hovered */
}

/* cards */

.card-title {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #868686;
}

.card-text {
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
}

.card-link {
  text-decoration: none;
  color: var(--blue);
}

.card:hover {
  box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.1);
  transform: scale(1.1, 1.1);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0, 1);
}

@media (max-width: 600px) {
  .pic {
    display: none;
  }
}
