/* ======================== GLOBAL ======================== */
body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

/* ======================== SIGN IN ======================== */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('Assets/signImages/bg1.png') no-repeat center center;
    background-size: cover;
}


.login-card {
    background: #ffffff;
    width: 380px;
    padding: 30px 28px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.logo img {
    width: 100px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #4a4a4a;
}

.form-control {
    font-size: 14px;
    padding: 10px 12px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 38px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0.6;
}

.forgot-link {
    font-size: 13px;
    text-decoration: none;
    color: #1e88ff;
}

.btn-primary {
    background-color: #1e88ff;
    border: none;
    padding: 10px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #0f6cd1;
}

.signup-text {
    font-size: 14px;
}

.signup-text a {
    color: #1e88ff;
    font-weight: 600;
    text-decoration: none;
}

/* ========================  SIGN UP ======================== */
.signup-body {
    background: url("images/signImages/bg1.png") no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    height: 100vh;
}

.signup-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.signup-card {
    background: #ffffff;
    width: 100%;
    max-width: 600px; 
    padding: 20px 30px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#signupForm {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 10px 20px; 
    text-align: left;
}

#signupForm .row, 
#signupForm .mb-3, 
#signupForm .signup-text,
#signupForm button,
.form-check,
.signup-logo,
.signup-title {
    grid-column: span 2;
}

.signup-logo img { width: 70px; margin-bottom: 5px; }

.signup-title {
    color: #1e88ff;
    font-size: 1.5rem !important;
    font-weight: 800;
    margin-bottom: 15px !important;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e88ff;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.form-control {
    font-size: 0.80rem;
    padding: 6px 35px 10px 12px; 
    border-radius: 8px;
    margin-bottom: 0 !important;
}

.position-relative {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%); 
    z-index: 10;
    font-size: 0.8rem;
    color: #1e88ff;
    display: flex;
    align-items: center;
}

.mb-2.position-relative {
    display: flex;
    flex-direction: column;
}
.form-check {
    margin-top: 5px;
    margin-bottom: 10px !important;
}

.terms-text { font-size: 0.75rem; }

.btn-primary {
    padding: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.signup-text {
    font-size: 0.8rem;
    margin-top: 10px;
}
/* ================= HOME PAGE ================= */
.home-body {
    background: #f6f8fc;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
}

/* ================= HEADER ================= */
.topbar {
    background: #1877f2;
    height: 56px;
    display: flex;
    align-items: center;
}

.topbar-inner {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 40px;
    width: 50px;

}

.nav-links {
    margin: 0 auto;
    display: flex;
    gap: 22px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 4px 10px;
    border-radius: 6px;
}

.nav-links a.active {
    background: white;
    color: #1877f2;
}

.nav-links a,
.navbar-nav .nav-link {
    position: relative;
    text-decoration: none;
    color: white; 
    padding-bottom: 5px;
}

.nav-links a::after,
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: white; 
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.navbar-nav .nav-link:hover::after {
    width: 100%;
    
}


/* ================= TOP ICONS ================= */
.top-icons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.icon-wrapper {
    position: relative;
    cursor: pointer;
}

.icon-wrapper .icon-img {
    width: 26px;
    height: 26px;
 
}

.icon-wrapper .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    font-size: 10px;
    border-radius: 50%;
    padding: 2px 5px;
}

.notif-dropdown {
    display: none;
    position: absolute;
    top: 36px;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    padding: 10px;
    z-index: 10;
}

.notif-dropdown p {
    margin: 5px 0;
    font-size: 13px;
    color: #333;
}

.notif-dropdown p a {
    text-decoration: none;
    color: #333;
}

.avatar-wrapper .avatar {
    border-radius: 50%;
}

/* ================= SEARCH ================= */
.search-row {
    display: flex;
    align-items: center;
    padding: 14px 30px;
    gap: 16px;
}


.search-box {
    background: white;
    border-radius: 20px;
    padding: 6px 14px;
    width: 340px;
    display: flex;
    align-items: center;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.search-box i {
    font-size: 16px;
}


.filters {
    display: flex;
    gap: 10px;
}

.chip {
    border: none;
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 13px;
}

.blue { background: #dbe9ff; color: #1877f2; }
.purple { background: #e4dcff; color: #6f42c1; }
.green { background: #ddf7e3; color: #28a745; }

/* ================= POSTS ================= */
.content-wrapper {
    padding-top: 10px;
}

.post-card {
    background: white;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    margin-bottom: 20px;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.post-name {
    font-weight: 600;
    font-size: 14px;
}

.post-meta {
    font-size: 12px;
    color: #777;
}

.post-menu {
    margin-left: auto;
    cursor: pointer;
}

.post-label {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.post-title {
    font-weight: 600;
    font-size: 16px;
}

.post-rating {
    font-size: 13px;
}

.stars {
    color: #f5a623;
}

.post-text {
    font-size: 14px;
    margin-top: 6px;
}

.post-image {
    width: 100%;
    border-radius: 12px;
    margin-top: 10px;
    object-fit: cover;
    max-height: 450px;
    display: block;
}

.see-all {
    color: #1877f2;
    cursor: pointer;
    font-size: 13px;
}

.post-image {
    width: 100%;
    border-radius: 10px;
    margin-top: 8px;
}

/* ================= COMMENT ================= */
.post-comment {
    display: flex;
    gap: 10px;
    background: #f1f3f6;
    border-radius: 10px;
    padding: 10px;
    margin-top: 12px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-name {
    font-weight: 600;
    font-size: 13px;
}

.comment-text {
    font-size: 13px;
}

/* ================= COMMENT INPUT ================= */
.comment-input {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.comment-input input {
    flex: 1;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 6px 10px;
    font-size: 13px;
}

.comment-input button {
    background: #1877f2;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
}

/* ================= POST ACTIONS ================= */
.post-actions {
    display: flex;
    justify-content: center;
    gap: 80px;
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

/* ================= SIDEBAR ================= */
.sidebar-card {
    background: white;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.sidebar-title {
    font-weight: 600;
    font-size: 18px;
    color: #1877f2;
    margin-bottom: 10px;
}

.sidebar-text {
    font-size: 13px;
    color: #65676b;
}

.sidebar-map {
    height: 120px;
    border-radius: 10px;
    background: #dcdfe4;
}

.lost-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    margin-bottom: 20px;
}

.lost-title {
    color: #1877f2;
    font-weight: 600;
    font-size: 18px;
}

.lost-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lost-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
    max-height: 200px;
}




/* ================= SUB PAGES ================= */
/* ================= SUB PAGES ================= */
.about-section {
  padding: 30px 0;
  background-color: var(--white);
  margin-top: 0;
}
.about-section .about-title::after {
  content: "";
  display: inline-block;
  height: 5px;
  width: 1050px;
  background-color: #1177FE;
  margin-left: 20px;
  vertical-align: middle;
}
.about-section .about-card {
  background: #1177FE;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: white;
  height: 100%;
}
.about-section .about-card .about-card-title {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.about-section .about-card .btn.btn-read-more {
  background-color: #ffffff !important;
  border-radius: 10px;
  padding: 10px 60px;
  font-weight: 700;
  border: none;
  margin-top: 20px;
  width: 80%;
}
.about-section .who-we-are-section h3 {
  color: #4a90e2;
  font-weight: 700;
}
.about-section .target-card {
  background: white;
  border: 1px solid #eef2f7;
  border-radius: 25px;
  padding: 20px;
  text-align: left;
  height: 100%;
  box-shadow: #5db6ff;
  transition: all 0.3s ease;
}
.about-section .target-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(98, 163, 255, 0.2);
}
.about-section .target-card:hover .target-image-box::after {
  opacity: 0.15;
}
.about-section .target-card .target-image-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 250px;
}
.about-section .target-card .target-image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
      object-fit: cover;
}
.about-section .target-card .target-image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #62a3ff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-section .target-card .target-body {
  padding: 0 10px;
}
.about-section .target-card .target-body h4 {
  color: #4a90e2;
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 5px;
}
.about-section .target-card .target-body p {
  color: #000000;
  font-size: 18px;
}
.about-section .cta-text {
  font-weight: 600;
}
.about-section .cta-text span {
  color: #4a90e2;
  font-weight: 800;
}

.stats-section {
  background: #f0f7ff;
  padding: 30px 0;
}
.stats-section .stat-card {
  background: #ffffff;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  height: 100%;
}
.stats-section .stat-card .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0084ff;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.stats-section .stat-card .stat-label {
  font-size: 19px;
  color: #000000;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease;
}
.stats-section .stat-card:hover {
  background: #0084ff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 132, 255, 0.2);
  border-color: transparent;
}
.stats-section .stat-card:hover .stat-number {
  color: #ffffff;
}
.stats-section .stat-card:hover .stat-label {
  color: #ffffff;
  opacity: 0.9;
}
.stats-section .stat-card {
  border-radius: 15px;
  margin: 0 10px;
}


/* TEAM SECTION */

.team-section {
    padding: 20px 0px;
    background-color: #f8fbff;
}

.team-heading {
    font-size: 28px;
    font-weight: bolder;
    color: #1177FE;
}

.team-subtext {
    font-size: 16px;
    color: #555;
}

.team-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(17, 119, 254, 0.15);
}

.team-avatar {
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid #3A8BFF;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.team-role {
    font-size: 14px;
    color: #777;
}

/* Responsive Adjustment */
@media (max-width: 768px) {
    .team-avatar {
        width: 140px;
        height: 140px;
    }
}


.contact-section {
  padding: 80px 0;
  background-color: #f8fbff;
}
.contact-section .contact-main-title {
  color: #0084ff;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 5px;
}
.contact-section .connect-subtitle {
  color: #0084ff;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 2px;
}
.contact-section .form-intro {
  color: #000000;
  font-size: 14px;
  margin-bottom: 30px;
}
.contact-section .form-label {
  color: #0084ff;
  font-weight: 200;
  font-size: 20px;
  margin-bottom: 4px;
}
.contact-section .form-control {
  border: 1px solid #e0e6ed;
  border-radius: 15px;
  padding: 12px 20px;
  background-color: #fff;
}
.contact-section .form-control::-moz-placeholder {
  color: #ccc;
}
.contact-section .form-control::placeholder {
  color: #ccc;
}
.contact-section .input-group-text {
  background: transparent;
  border: 1px solid #e0e6ed;
  border-right: none;
  border-radius: 15px 0 0 15px;
  color: #0084ff;
  font-weight: 600;
}
.contact-section .btn-send-blue {
  background: #0084ff;
  color: white;
  padding: 12px 40px;
  border-radius: 15px;
  font-weight: 700;
  transition: 0.3s;
}
.contact-section .btn-send-blue:hover {
  background: #0066cc;
  transform: translateX(5px);
}
.contact-section .contact-info-card {
  background: #0084ff;
  border-radius: 25px;
  padding: 40px;
  color: white;
  height: 100%;
}
.contact-section .contact-info-card .contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 35px;
}
.contact-section .contact-info-card .info-inner-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-section .contact-info-card .info-inner-box .info-icon {
  width: 45px;
  height: 45px;
  background: white;
  color: #0084ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-section .contact-info-card .info-inner-box .info-content h4 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 2px;
  opacity: 0.9;
}
.contact-section .contact-info-card .info-inner-box .info-content p {
  font-size: 16px;
  font-weight: 200;
  margin: 0;
}
.contact-section .contact-info-card .social-media-section {
  margin-top: 40px;
}
.contact-section .contact-info-card .social-media-section .social-text {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.contact-section .contact-info-card .social-media-section .social-grid {
  display: flex;
  gap: 12px;
}
.contact-section .contact-info-card .social-media-section .social-grid .social-box {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.contact-section .contact-info-card .social-media-section .social-grid .social-box:hover {
  transform: scale(1.1);
}
.contact-section .contact-info-card .social-media-section .social-grid .social-box.fb {
  background: #1877f2;
}
.contact-section .contact-info-card .social-media-section .social-grid .social-box.yt {
  background: #ff0000;
}
.contact-section .contact-info-card .social-media-section .social-grid .social-box.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.contact-section .contact-info-card .social-media-section .social-grid .social-box.x {
  background: #000000;
}
.contact-section .contact-info-card .social-media-section .social-grid .social-box.tk {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
}

.footer {
  background: #0084ff;
  color: #ffffff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.footer .footer-brand-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer .footer-brand-container .footer-paw {
  height: 100px;
  width: auto;
}
.footer .footer-brand-container .brand-text-stack {
  display: flex;
  flex-direction: column;
}
.footer .footer-brand-container .brand-text-stack .footer-wordmark {
  height: 65px;
  width: auto;
}
.footer .footer-brand-container .brand-text-stack .brand-tagline {
  font-size: 18px;
  font-weight: 500;
  margin-top: -5px;
  opacity: 0.95;
}
.footer .footer-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 8px;
}
.footer .footer-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s;
}
.footer .footer-links li a:hover {
  opacity: 0.7;
}
.footer .btn-join-pill {
  background: #ffffff;
  color: #0084ff;
  padding: 12px 40px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.footer .btn-join-pill:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
.footer .footer-bottom-bar {
  background: #00b4ff;
  padding: 15px 0;
  margin-top: 50px;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-bar {
  background: #00b4ff;
  padding: 15px 0;
  margin-top: 50px;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================= PROFILE & SETTINGS ================= */

.profile-container {
        max-width: 900px;
        margin: 30px auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        padding: 20px;
        }
        .profile-header { display: flex; align-items: center; justify-content: space-between; }
        .profile-left { display: flex; align-items: center; }
        
        .profile-header .avatar-wrapper {
        position: relative;
        width: 120px; 
        height: 120px;
        display: inline-block; 
        vertical-align: middle;
        margin-right: 25px;
        }

        .avatar {
        width: 100%; 
        height: 100%; 
        border-radius: 50%; 
        border: 3px solid #1e90ff;
        display: flex; 
        align-items: center; 
        justify-content: center; 
        overflow: hidden;
        background: #fff;
        }


        .camera-icon-style {
        position: absolute;
        bottom: 5px;
        right: 5px;
        z-index: 10;
        }

        .upload-overlay {
            position: absolute;
            bottom: 2px;
            right: 2px;
            background: #1e90ff;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 2px solid white;
            transition: 0.3s;
            z-index: 5;
        }
        .upload-overlay:hover { background: #007bff; transform: scale(1.1); }
        #imageUpload { display: none; }

        .profile-info h2 { margin: 0; font-size: 20px; font-weight: bold; }
        .username-display { color: #666; font-size: 14px; }
        .tabs { margin-top: 20px; border-bottom: 1px solid #ddd; }
        .tabs a { margin-right: 20px; padding-bottom: 10px; display: inline-block; text-decoration: none; color: #333; font-weight: bold; }
        .tabs a.active { border-bottom: 3px solid #1e90ff; color: #1e90ff; }
        
        .form-control { background-color: #f0f4f8; border: 1px solid #ced4da; }
        .save-btn { margin-top: 20px; background: #4da3ff; color: white; border: none; padding: 10px 25px; border-radius: 6px; cursor: pointer; font-weight: bold; }
        .save-btn:hover { background: #1a8cff; }
        .delete-btn { margin-top: 10px; background: #ff4d4d; color: white; border: none; padding: 8px 20px; border-radius: 4px; cursor: pointer; font-weight: bold; }
        .delete-btn:hover { background: #e60000; }
        h4 { margin-top: 25px; color: #333; font-weight: bold; }

.username {
    color: #666;
    font-size: 14px;
}

.location {
    color: #888;
    font-size: 13px;
}

.tabs {
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
}

.tabs a {
    margin-right: 20px;
    padding-bottom: 10px;
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.tabs a.active {
    border-bottom: 3px solid #1e90ff;
    color: #1e90ff;
}

.bio-section {
    margin-top: 20px;
}

.bio-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.bio-section input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.save-btn {
    margin-top: 10px;
    background: #4da3ff;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.save-btn:hover {
    background: #1a8cff;
}

.delete-btn {
    margin-top: 10px;
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.delete-btn:hover {
    background: #e60000;
}

.full {
    margin-top: 15px;
}

h4 {
    margin-top: 25px;
    color: #333;
    font-weight: bold;
}



