* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background: #f1f5f9;

}


/* NAVBAR */
.navbar {
    background: #071f4a;
    padding: 12px 0;
}

.nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}
.logo img {
  height: 50px;      /* navbar-safe */
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.logout {
    background: #ef4444;
    padding: 6px 10px;
    border-radius: 6px;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* PROFILE */
.profile-container {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.avatar-upload img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #071f4a;
}

.avatar-upload input {
    display: none;
}

.avatar-upload span {
    display: block;
    color: #071f4a;
    font-size: 12px;
    margin-top: 6px;
}

/* FORM */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.field label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.field input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* DOCUMENTS */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.doc-box {
    border: 2px dashed #94a3b8;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    background: #f8fafc;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.save {
    background: #eab308;
}

.submit {
    background: red;
    color: white;
}

/* RESPONSIVE NAVBAR */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #071f4a;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 15px;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .buttons {
        flex-direction: column;
    }
}




/* Contact Page - Design */
.contact-header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #1e90ff, #ffcc00, #ff0000);
    color: white;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 20px;
}

/* Container flex */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Contact Info Box */
.contact-info {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 20px;
}

.contact-info h2 {
    color: #1e90ff;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 18px;
}

.btnn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: #1e90ff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btnn:hover {
    background: #ff0000;
    transform: translateY(-3px);
}

.btnn.secondary {
    background: #ffcc00;
    color: #333;
}

.btnn.secondary:hover {
    background: #ff9900;
}

/* Map Section */
.map {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.map h2 {
    color: #1e90ff;
    margin-bottom: 20px;
    text-align: center;
}

.map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 15px;
    margin-bottom: 15px;
}

.map-btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 60px 30px;
}
.footerb {
  background: #0f172a;
  color: #cbd5f5;
  padding: 10px 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer h3, .footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer p {
  margin-bottom: 6px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}
.footer a {
  color: #cbd5f5;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* =========================
   APPLICATION TRACKING
========================= */

.tracking-box {
    margin-top: 30px;
    padding: 20px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.tracking-box h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #111827;
}

.tracking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.tracking-steps::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e7eb;
    z-index: 0;
}

.tracking-step {
    position: relative;
    text-align: center;
    width: 25%;
    z-index: 1;
}

.tracking-step .circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #9ca3af;
    color: #fff;
    line-height: 44px;
    font-weight: bold;
    margin: 0 auto 8px;
}

.tracking-step .label {
    font-size: 13px;
    color: #374151;
}

/* COMPLETED */
.tracking-step.completed .circle {
    background: #22c55e;
}

/* CURRENT */
.tracking-step.current .circle {
    background: #2563eb;
}

/* REJECTED MESSAGE */
.tracking-rejected {
    margin-top: 15px;
    padding: 12px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 8px;
    font-size: 14px;
}
