* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #111;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}


/* HEADER CONTAINER */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-top: 30px;
  background: transparent;
}

/* NAV WRAPPER */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.096);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 32px;
  border-radius: 60px;
  margin: 0 auto 16px auto;
  width: 100%;
  max-width: 1420px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.85) inset,
    0 0 12px rgba(255, 255, 255, 0.8);
}

/* LOGO */
.logo-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-title img {
  height: 34px;
  width: 34px;
  object-fit: contain;
}
.logo-container {
  display: flex;
  align-items: center;
}
.logo-container img {
  height: 44px;
  margin-right: 10px;
}
.logo-label h1 {
  color: wheat;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.logo-label p {
  font-weight: 300;
  font-size: 10px;
  color: #ffffff;
}

/* MENU WRAPPER */
.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* NAVIGATION LINKS */
.nav-links {
  display: flex;
}
.nav-links ul {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  align-items: center;
}

.nav-links ul li {
  border-radius: 6px;
  transition: background-color 0.25s ease;
}

/* tag spacing */
.nav-links ul li a {
  display: inline-block;
  padding: 7px 12px;
  text-decoration: none;
  color: white;
  border-radius: 6px;
  transition: background-color 0.25s ease;
}

/* Hover */
.nav-links ul li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* ✅ Active Link */
.nav-links ul li a.active {
  background-color: #fdfdfd7a;
  color: #fff;
  font-weight: 700;
}


/* LOGIN BUTTON */
.login-link {
  display: flex;
}
.login-button {
  background-color: transparent;
  border: 1px solid #aaa;
  width: 100px;
  height: 33px;
  color: #fcfcfc;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-button:hover {
  background-color: rgba(51, 202, 51, 0.712);
  border-color: #888;
}

/* HAMBURGER MENU ICON */
#menu-toggle {
  display: none;
}
.menu-icon {
  display: none;
  cursor: pointer;
  margin-left: 10px;
}
.menu-icon img {
  width: 28px;
  height: auto;
}

/* MOBILE DROPDOWN NAV */
@media (max-width: 768px) {
  .nav-links,
  .login-link {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  #menu-toggle:checked ~ .nav-links {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99;
    padding: 10px 0;
  }

  #menu-toggle:checked ~ .nav-links ul {
    flex-direction: column;
    align-items: center;
  }

  #menu-toggle:checked ~ .nav-links ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }

  #menu-toggle:checked ~ .nav-links ul li:last-child {
    border-bottom: none;
  }
}

/* HEADER HIDE ON SCROLL */
.hide-header {
  top: -100px !important;
}


/* MAIN */
main {
  padding: 208px 0 72px;
  min-height: calc(100vh - 62px - 140px);
}
.main-container {
  display: flex;
  gap: 206px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.text-section {
  flex: 1 1 650px;
  max-width: 600px;
}
.text-section h1 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 900;
  font-size: 5.5rem;
  line-height: 1;
  margin-bottom: 10px;
  color: white;
}

.text-section h1 .highlight {
  color: #48db43
}
.text-section p {
  color: #ffffffbd;
  font-size: 18.5px;
  max-width: 580px;
  margin-bottom: 28px;
  text-align: justify;
}

.btn-group {
  display: flex;
  gap: 48px;
}

.btn,
a.btn {
  display: inline-block;
  text-decoration: none;
  height: 48px;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  font-size: 20.5px;
  padding: 12px 40px;
  border-radius: 5px;
  cursor: pointer;
  border: 1.3px solid #dddddd;
  background-color: transparent;
  color: #ffffff;
  transition: color 0.35s ease;
  z-index: 1;
  box-shadow:
    0 0 0 0.1px rgba(255, 255, 255, 0.85) inset,
    0 0 5px rgba(255, 255, 255, 0.8);
}


.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 0;
  transition: width 0.35s ease;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn:hover::after {
  width: 100%;
}

.btn.found-btn {
  border-color: #ffffff;
  color: #ffffff;
}

.btn.found-btn::after {
  background-color: #48db43;
}

.btn.found-btn:hover {
  color: #ffffff;
}

.btn.lost-btn {
  border-color: #ffffff;
  color: #d4d4d4;
}

.btn.lost-btn::after {
  background-color: #880017;
}

.btn.lost-btn:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .btn {
    width: 80%;      
    text-align: center;
  }
}

@media (max-width: 768px) {
  .found-profile-container h1 {
    margin-bottom: 40px;
  }
}


/* --- Video Section --- */
.video-section {
  flex: 1 1 680px;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.61);
}
.video-section:hover {
  filter: brightness(90%);
  box-shadow: 0 2px 20px rgb(112, 250, 94);
}
.video-section video {
  width: 130%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
    gap: 80px;
    padding: 0 20px;
  }

  .text-section h1 {
    font-size: 4rem;
    text-align: center;
  }

  .text-section p {
    font-size: 16.5px;
    text-align: center;
    margin: 0 auto;
  }

  .btn-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .video-section {
    max-width: 100%;
    box-shadow: none !important;
    border-radius: 0 !important; 
    overflow: visible !important;
    filter: none !important;     
  }

  .video-section:hover {
    box-shadow: none !important;
    filter: none !important;
  }

  .video-section video {
    width: 100%;
    height: auto;
    object-fit: contain;             
  }
}

@media (max-width: 600px) {
  .text-section h1 {
    font-size: 3.2rem;
  }

  .text-section p {
    font-size: 15px;
  }

  .btn {
    font-size: 14px;
    padding: 7px 20px;
  }
}

/* FOOTER */
footer {
  background-color: #000000;
  border-top: 1px solid #eee;
  padding: 20px 40px;
  font-size: 12px;
  color: #ebebeb;
  box-shadow: 0 -1px 8px rgba(240, 239, 239, 0.05);
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.footer-col {
  flex: 1 1 140px;
  min-width: 140px;
}
.footer-col ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}
.footer-col ul li {
  margin-bottom: 5px;
  font-size: 12px;
}
.footer-col ul li a {
  color: #0a5f97ad;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #66c2ec;
  text-decoration: underline;
}
.footer-col.logo-footer img {
  height: 64px;
  max-width: 100%;
}
.footer-contact p {
  margin: 3px 0 5px;
  font-size: 12px;
}
.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  transition: filter 0.3s ease;
}
.footer-social a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.footer-social a:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}
.footer-logo-img {
  margin-top: 15px;
  width: 86px;
  height: 550px;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.footer-col.logo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  line-height: 1.6;
  color: #ffffff;
  flex: 1 1 180px;
  min-width: 1  60px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }
  .footer-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-col ul li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 20px;
    font-size: 11px;
  }
  .footer-col ul li {
    font-size: 12px;
  }
  .footer-social {
    gap: 10px;
  }
  .footer-social a {
    width: 28px;
    height: 28px;
  }
}


@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");

/* ABOUT US SECTION */
.aboutus-profile-container {
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.473);
}

.aboutus-profile-container h1 {
  font-size: 32px;
  margin-bottom: 60px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Source Sans Pro", sans-serif;
  background: 50% 100% / 50% 50% no-repeat
              radial-gradient(ellipse at bottom, #fff, transparent, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: reveal 3000ms ease-in-out forwards 200ms,
             glow 2500ms linear infinite 2000ms;
}

@keyframes reveal {
  80% {
    letter-spacing: 8px;
  }
  100% {
    background-size: 300% 300%;
  }
}

@keyframes glow {
  40% {
    text-shadow: 0 0 20px #61ca91ef;
  }
}

/* TEAM PYRAMID */
.team-pyramid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 40px 20px;
  align-items: start;
  justify-items: center;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 80px;
}

.profile-card {
  background: rgba(233, 194, 149, 0.096);
  border: 1.9px solid #ffffff75;
  width: 280px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(243, 243, 243, 0.2);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease-in-out;
}

.profile-card:hover {
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.5), 0 0 8px rgba(0, 255, 0, 0.3);
}

.profile-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.profile-card .info {
  background: rgba(98, 136, 88, 0.8);
  padding: 20px 25px;
  flex-grow: 1;
  box-sizing: border-box;
}

.profile-card .number {
  background: #2c8b29fd;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 10px;
  display: inline-block;
  text-align: left;
  width: 100%;
}

.profile-card h2 {
  font-size: 16px;
  color: rgba(91, 231, 115, 0.836);
  margin: 15px 0 15px;
  text-align: left;
  padding: 0 10px;
}

.profile-card p {
  font-size: 14px;
  color: rgb(253, 253, 253);
  line-height: 1.2;
  word-spacing: -3px;
  text-align: justify;
  margin: 0;
  padding: 0 10px 10px;
}

/* Pyramid Positioning */
.profile-card.center {
  grid-column: 2;
  grid-row: 1;
}

.profile-card.left {
  grid-column: 1;
  grid-row: 2;
}

.profile-card.right {
  grid-column: 3;
  grid-row: 2;
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
}

.mission-vision .box {
  background: rgba(102, 102, 102, 0.349);
  padding: 40px;
  border-radius: 10px;
  flex: 1 1 400px;
  min-width: 350px;
  box-shadow:
    0 0 0 0.1px rgba(255, 255, 255, 0.85) inset,
    0 0 5px rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.3s ease-in-out;
}

.mission-vision .box:hover {
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.5), 0 0 8px rgba(0, 255, 0, 0.3);
}

.mission-vision h2 {
  font-size: 22px;
  color: rgb(245, 222, 179);
  margin-bottom: 15px;
  text-align: center;
}

.mission-vision p {
  font-size: 16px;
  color: #ffffff;
  text-align: justify;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .team-pyramid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .profile-card.center,
  .profile-card.left,
  .profile-card.right {
    grid-column: auto;
    grid-row: auto;
  }

  .mission-vision {
    flex-direction: column;
    align-items: center;
  }
}

/* Profile Page Styles */
.profile-container {
  background-color: #478f8b2a;
  border: 3.5px solid #ffffff79;
  border-radius: 15px;
  box-shadow:
    0 0 0 0.1px rgba(255, 255, 255, 0.85) inset,
    0 0 5px rgba(255, 255, 255, 0.8);
  padding: 60px 40px;
  width: 900px;
  max-width: 95%;
  margin: -194px auto -20px;
}

.profile-photo img {
  border-radius: 10000%;
  box-shadow:
    0 0 0 0.1px rgba(151, 144, 144, 0.85) inset,
    0 0 3px rgba(177, 176, 176, 0.8);
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto 28px;
  object-fit: cover;
}

.profile-form {
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  padding: 20px;
  border-radius: 10px;
  background-color: #f4f4f4;
}

.profile-form label {
  margin-bottom: 6px;
  margin-top: 12px;
  font-weight: 600;
}

.profile-form input {
  background-color: #eaeaea;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.profile-form input:disabled {
  cursor: not-allowed;
  background-color: #ddd;
  color: #555;
}

/* Button Group Styling */
.button-group {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

#editBtn {
  background-color: #c9cac7e6;
  color: #000;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1.5px solid #000000;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
}

#saveBtn {
  background-color: #38d12a;
  color: #fff;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1.5px solid #000000;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
}

#cancelBtn {
  background-color: #c9cac7e6;
  color: #000;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1.5px solid #000000;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-container {
    padding: 30px 20px;
    top: 0;
  }

  .button-group {
    flex-direction: column;
    gap: 10px;
  }

  .profile-form {
    width: 100%;
    padding: 16px;
  }

  .profile-form input {
    width: 100%;
  }
}


/* Report Lost Form */
.report-lost-main {
  padding: 90px 20px 40px;
  text-align: center;
}
.report-title {
  font-size: 2rem;
  color: #ffffffee;
  margin-bottom: 20px;
}
.report-form-box {
  background: #2d5f6886;
  max-width: 740px;
  margin: 0 auto;
  padding: 30px;
  border: 1.5px solid #f8f8f875;
  border-radius: 8px;
  box-shadow:
    0 0 0 0.1px rgba(255, 255, 255, 0.85) inset,
    0 0 5px rgba(255, 255, 255, 0.8);
}
.report-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  color: white;
}
.form-group label {
  font-weight: bold;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  padding: 10px;
  border-radius: 5px;
}
.center-btn-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.reset-btn,
.submit-btn {
  padding: 10px 0;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
}

/* Reset Button Style */
.reset-btn {
  background-color: transparent;
  color: #ffffff;
  width: 350px;
  box-shadow:
    0 0 0 0.1px rgba(255, 255, 255, 0.85) inset,
    0 0 5px rgba(255, 255, 255, 0.8);
}

.reset-btn:hover {
  background-color: #1a61268e;
}

/* Submit Button Style */
.submit-btn {
  background-color: #05ff43c2;
  color: white;
  width: 350px;
  box-shadow:
    0 0 0 0.1px rgba(255, 255, 255, 0.85) inset,
    0 0 5px rgba(255, 255, 255, 0.8);
}

.submit-btn:hover {
  background-color: #0c6c23;
}

/* Responsive */
@media (max-width: 480px) {
  .report-title {
    font-size: 1.6rem;
  }
  .report-form-box {
    padding: 20px;
  }
}

.aurora-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.aurora-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  z-index: 1;
  pointer-events: none;
}


.animated-aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 150%;
  object-fit: cover;
  opacity: 1.2; 
  z-index: 0;   
  animation: moveAurora 30s ease-in-out infinite alternate;
  pointer-events: none;
}


@keyframes moveAurora {
  0% {
    transform: translate(0%, 0%) scale(1);
  }
  25% {
    transform: translate(-5%, -2%) scale(1.02);
  }
  50% {
    transform: translate(-3%, -3%) scale(1.01);
  }
  75% {
    transform: translate(2%, -1%) scale(1.03);
  }
  100% {
    transform: translate(0%, 0%) scale(1);
  }
}


@media (max-width: 768px) {
  .animated-aurora {
    width: 300%;
    height: 300%;
  }
}

#splash-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
}

  /* Lost and Found Page */
.card-container {
  margin-top: 50px; /* pull the cards upward */
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  justify-content: center;
  
}

.card {
  width: 320px;
  height: 450px;
  background-color: #ffffff6c;
  border-radius: 12px;
  border: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* NEW Combined Shadows */
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.2),
    0 0 0 0.1px rgba(255, 255, 255, 0.85) inset,
    0 0 5px rgba(255, 255, 255, 0.8);
}
.card:hover {
  transform: translateY(-9px);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.6),
    0 0 10px rgba(255, 255, 255, 0.3) inset,
    0 0 20px rgba(255, 255, 255, 0.6);
}


.card-header {
  display: flex;
  align-items: center;
  padding: 12px;
}

.card-header img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.card-header .info {
  display: flex;
  flex-direction: column;
}

.card-header .name {
  font-weight: bold;
  font-size: 0.95em;
}

.card-header .date {
  font-size: 0.8em;
  color: #555;
}

.card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 15px;
  flex-grow: 1;
}

.card-content h3 {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: white;
  font-size: 1.3em;
}

.card-content .location {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 0.95em;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: justify; 
}

.card-content p {
  font-size: 0.85em;
  color: #e4e4e4;
  text-align: justify; 
  padding: 3px;
}

.card-footer {
  padding: 12px;
  text-align: right;
}

.contact-btn {
  padding: 8px 16px;
  background-color: #0f8b2ec7;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  box-shadow:
    0 0 0 0.1px rgba(255, 255, 255, 0.85) inset,
    0 0 3px rgba(255, 255, 255, 0.8);
}
.contact-btn:hover {
  background-color: #0f8b2e;
  box-shadow: 0 0 10px white, 0 0 15px #61ca91ef;
}

.lost-title, .found-title {
  font-size: 2.7rem;
  color: #37412f;
  margin-bottom: 20px;
  text-align: center;
}

/* Container styling */
.search-container {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Search bar layout */
.search-bar {
  position: relative;
  width: 100%;
}

/* Input field */
.search-bar input {
  width: 100%;
  padding: 12px 42px 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Search icon */
.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Search results box */
#searchResults {
  margin-top: 10px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .search-bar input {
    padding: 10px 40px 10px 14px;
    font-size: 0.95rem;
  }

  .search-icon {
    width: 18px;
    height: 18px;
  }
}


.found-profile-container h1 {
  margin-top: -8vh; /* relative to screen height */
  font-size: clamp(2rem, 6vw, 52px); /* responsive font size */
  margin-bottom: 8vh;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Source Sans Pro", sans-serif;
  background: 50% 100% / 50% 50% no-repeat
              radial-gradient(ellipse at bottom, #fff, transparent, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: reveal 3000ms ease-in-out forwards 200ms,
             glow 2500ms linear infinite 2000ms;
}


@keyframes reveal {
  80% {
    letter-spacing: 8px;
  }
  100% {
    background-size: 300% 300%;
  }
}

@keyframes glow {
  40% {
    text-shadow: 0 0 20px #61ca91ef;
  }
}

@import url('https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:300,400,800&display=swap');

/* Login Page */
.login-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Left: Form */
.login-left,
.login-right {
  flex: 1;
}

.login-left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #e6e6e6de;
}

.login-form {
  width: 100%;
  max-width: 680px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #fff;        
  box-shadow: 0 0 15px rgba(0, 10, 6, 0.699);  
  border-radius: 12px;
  color: white;
}


.login-form h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  color: #fdfdfd;
  padding: 10px 15px;
  border-radius: 5px;
}

.login-form label {
  display: block;
  margin-bottom: 8px;
  margin-top: 18px;
  font-weight: 600;
  color: #ddd;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 12px;
  font-size: 15px;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 39%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 23px;
  color: #444;
  padding: 2px 6px;
  border-radius: 5px;
}

.btn-group {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  gap: 10px;
}

.btn {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}
.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.sign-up {  
  color:#0f8b2e;
  border: none;            
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.sign-up:hover {
  background-color: #0c6c23;   
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(15, 139, 46, 0.4); 
}

.sign-up {
  background-color: #fff;
  color: black;
}

.register-line {
  font-size: 14px;
  color: #fff;       
  margin-top: 10px;
  font-family: inherit; 
}

.register-link {
  color: rgb(44, 168, 199);  
  text-decoration: none;
}

.register-link:hover {
  text-decoration: underline;
}


/* Right: Image */
.login-right {
  position: relative;
}

.login-right img {
  width: 200%;
  height: 100%;
  object-fit: cover;
}

.login-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Top bar */
.login-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-logo {
  font-family:Arial, Helvetica, sans-serif;
  font-size: 22px;
  color: #ffffff;
  font-weight: 800;
}

.login-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  gap: 10px;
  text-transform: uppercase;
}

.login-fire-static {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
}


/* Flip container | Animation */
#flip {
  height: 50px;
  overflow: hidden;
}

#flip > div {
  display: flex;
  flex-direction: column;
  animation: show 14s ease-in-out infinite;
}

#flip > div > div {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  padding: 4px 12px;
}

/* colors */
#flip > div > div:nth-child(1) { background: #4ec7f3; } /* Phones */
#flip > div > div:nth-child(2) { background: #42c58a; } /* Wallets */
#flip > div > div:nth-child(3) { background: #dc143c; } /* IDs */
#flip > div > div:nth-child(4) { background: #ff9f1c; } /* Bags */
#flip > div > div:nth-child(5) { background: #9b59b6; } /* Accessories */
#flip > div > div:nth-child(6) { background: #00b894; } /* Everything */
#flip > div > div:nth-child(7) { background: #2980b9; } /* Phones (loop) */

@keyframes show {
  0%    { transform: translateY(0); }
  14.28% { transform: translateY(-50px); }
  28.56% { transform: translateY(-100px); }
  42.84% { transform: translateY(-150px); }
  57.12% { transform: translateY(-200px); }
  71.4%  { transform: translateY(-250px); }
  85.68% { transform: translateY(-300px); }
  100%   { transform: translateY(-350px); }
}

/* Back to Website Button */
.login-back-btn {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  color: white;
  font-size: 13px;
  text-decoration: none;
}

.login-name-row {
  display: flex;
  gap: 10px;
}

.login-name-row > div {
  flex: 1;
}

.login-auth-btns .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.login-auth-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.login-auth-border {
  background-color: transparent;
  border: 2px solid #888;
  color: #eee;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  width: 100%;
}

.divider .line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  margin: 0 10px;
}

.divider .or {
  white-space: nowrap;
  font-weight: bold;
  color: #555;
}

@media (max-width: 480px) {
  .divider .or {
    font-size: 0.9rem;
  }

  .divider .line {
    margin: 0 6px;
  }
}

/* Responsive Layout */
@media (max-width: 768px) {
  .login-name-row {
    flex-direction: column;
  }

  .login-container {
    flex-direction: column;
  }

  .login-right {
    display: none;
  }

  .login-left {
    padding: 30px 20px;
    height: 100%;
  }

  .btn-group {
    flex-direction: column;
    gap: 12px;
  }
}

/* Register and login page */

.login-submit-btn {
  background-color: #0f8b2e;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.login-submit-btn:hover {
  background-color: #0c6c23;
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(15, 139, 46, 0.4);
}



