body {
  font-family: "Outfit", sans-serif;
  -webkit-text-fill-color: #004d99 !important;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  /* background-image: url(../image/bg.png); */
  /* background-size: cover;
    background-repeat: no-repeat; */
  padding-bottom: 0%;
  margin-bottom: 0%;
}

.container-custom {
  --transition: 350ms;
  --folder-W: 120px;
  --folder-H: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  background: linear-gradient(135deg, rgba(79, 156, 232, 0.7), rgba(33, 147, 176, 0.7));
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  height: calc(var(--folder-H) * 1.7);
  position: relative;
}

.folder {
  position: absolute;
  top: -20px;
  left: calc(50% - 60px);
  animation: float 2.5s infinite ease-in-out;
  transition: transform var(--transition) ease;
}

.folder:hover {
  transform: scale(1.05);
}

.folder .front-side,
.folder .back-side {
  position: absolute;
  transition: transform var(--transition);
  transform-origin: bottom center;
}

.folder .back-side::before,
.folder .back-side::after {
  content: "";
  display: block;
  background-color: white;
  opacity: 0.5;
  z-index: 0;
  width: var(--folder-W);
  height: var(--folder-H);
  position: absolute;
  transform-origin: bottom center;
  border-radius: 15px;
  transition: transform 350ms;
  z-index: 0;
}

.container-custom:hover .back-side::before {
  transform: rotateX(-5deg) skewX(5deg);
}

.container-custom:hover .back-side::after {
  transform: rotateX(-15deg) skewX(12deg);
}

.folder .front-side {
  z-index: 1;
}

.container-custom:hover .front-side {
  transform: rotateX(-40deg) skewX(15deg);
}

.folder .tip {
  background: linear-gradient(135deg, #ff9a56, #ff6f56);
  width: 80px;
  height: 20px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -10px;
  z-index: 2;
}

.folder .cover {
  background: linear-gradient(135deg, #ffe563, #ffc663);
  width: var(--folder-W);
  height: var(--folder-H);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.custom-file-upload {
  font-size: 1.1em;
  color: #ffffff;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background var(--transition) ease;
  display: inline-block;
  width: 100%;
  padding: 10px 35px;
  position: relative;
}

.custom-file-upload:hover {
  background: rgba(255, 255, 255, 0.4);
}

.custom-file-upload input[type="file"] {
  display: none;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.button-hvr {
  -webkit-text-fill-color: #fff !important;
}
.button-hvr:hover {
  width: 200px !important;
  -webkit-text-fill-color: #fff !important;
}

.camera {
  position: absolute;
  top: -55px;
  left: calc(50% - 90px);
  animation: float 2.5s infinite ease-in-out;
  transition: transform var(--transition) ease;
}

.camera:hover {
  transform: scale(1.05);
}

.camera-body {
  position: relative;
  width: 180px;
  height: 120px;
  background: linear-gradient(135deg, #333, #555);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
  border: 2px solid #444;
}

.lens {
  position: absolute;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #000, #333);
  border-radius: 50%;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.inner-lens {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #444, #222);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
}

.flash {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 25px;
  height: 15px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.shutter-button {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 18px;
  height: 18px;
  background: #666;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.viewfinder {
  position: absolute;
  top: 30px;
  left: -20px;
  width: 25px;
  height: 20px;
  background: #000;
  border-radius: 3px;
}

.grip {
  position: absolute;
  right: -15px;
  top: 40px;
  width: 15px;
  height: 50px;
  background: #777;
  border-radius: 10px;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Hover effect for the camera body */
.camera-body:hover .lens {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* From Uiverse.io by barisdogansutcu */
.button-cstm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(79, 156, 232, 0.7019607843);
  background-color: #e0e8ef;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: rgba(79, 156, 232, 0.7019607843);
  border-radius: 40px 40px 40px 40px;
  padding: 16px 24px 16px 28px;
  transform: translate(0px, 0px) rotate(0deg);
  transition: 0.2s;
  box-shadow: -4px -2px 16px 0px #ffffff, 4px 2px 16px 0px rgb(95 157 231 / 48%);
}

.button-cstm:hover {
  color: #516d91;
  background-color: #E5EDF5;
  box-shadow: -2px -1px 8px 0px #ffffff, 2px 1px 8px 0px rgb(95 157 231 / 48%);
}

.button-cstm:active {
  box-shadow: none;
}

footer {
  /* background-color: #f8f9fa; Optional: Light grey background */
  width: 100%;
  bottom: 0;
  left: 0;
}

footer .nav li a {
  transition: color 0.3s ease;
}

footer .nav li a:hover {
  color: #0d6efd;
  /* Optional: Change color on hover */
}

footer svg.bi {
  width: 30px;
  height: 30px;
}

/* Floating button */
.float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 24px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.float-btn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

.float-btn i {
  font-size: 1.5rem;
}

/* Custom Styles */
.title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004d99;
  /* Dark blue color */
}

.title-wrapper span {
  font-size: 2rem;
}

.drag-drop-container {
  border: 2px dashed #004d99;
  /* Border color matching the theme */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background-color: #e6f0ff;
  /* Light blue background */
  margin-top: 20px;
  cursor: pointer;
}

.drag-drop-container.dragover {
  background-color: #cce0ff;
  /* Slightly darker blue when dragging over */
}

.drag-drop-container p {
  margin: 0;
  color: #004d99;
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: BLUE !important; /* Gold color on hover */
}

.test-card {
  transition: transform 0.3s ease;
}
.test-card:hover {
  transform: scale(1.05);
}