@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('../assets/premium_photo.png') center/cover no-repeat fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

:root {
  --blue: #06326b;
  --blue-light: #0d47a1;
  --white: #fff;
  --dark: #111;
  --accent: #fbc02d;
}

/* HEADER */
.site-header {
  background: var(--blue);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand a {
  color: white;
  text-decoration: none;
}

.brand-company {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

@media(max-width: 480px) {
  .brand-company {
    font-size: 13.2px;
    font-weight: 700;
    line-height: 0.1;
  }

}

.brand-sub {
  font-size: 11px;
  opacity: 0.9;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: #eaf4ff;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 5px;
  position: relative;
}

.nav-list a::after {
  content: "";
  width: 0;
  height: 3px;
  background: white;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.25s;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}
@media (max-width: 480px) {
  body {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-color: #f0f0f0; /* optional */
  }
}
/* MOBILE NAV */
@media (max-width: 900px) {

  .mobile-toggle {
    display: block;
  }



  .nav-list {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--blue);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    display: none;
    width: 200px;
  }

  .nav-list.nav-open {
    display: flex;
  }
}


-----New Section------
.profile-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100%;
  height: 100%;
  justify-content: space-between; /* pushes logo up and bar down */
}

/* Logo Section */
.logo-circle {
  width: 450px;
  height: 550px;
  border-radius: 50%;
  margin: 20px auto -25px auto;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fa-download {
  margin-right: 5px;
}

.btn-1 {
  display: block;
  margin-bottom:2px;
  width: fit-content;
  padding: 6px 16px;
  text-align: center;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  color: black !important;
  background: white !important;

}

/* Bottom Blue Bar */
.bottom-bar {
  margin-top: 30px;
  width: 100%;
  background: #06326b;
  padding: 10px 0;
  text-align: center;
}

.bottom-bar p {
  color: white;
  font-size: 30px;
  font-weight: 600;
  font-family: 'Dancing Script', cursive;
  letter-spacing: 1px;
  margin: 0;
}


@media (max-width: 1024px) {

  /* Add spacing from the header */
  .logo-circle {
    margin-top: 60px !important; /* increase gap from top */
    width: 420px !important;
    height: 420px !important;
  }

  /* Increase space above blue bar */
  .bottom-bar {
    margin-top: 40px !important;
  }
}


/* ------------------------------------
   MOBILE LARGE
------------------------------------ */
@media (max-width: 768px) {

  .logo-circle {
    width: 320px !important;
    height: 320px !important;
    margin-top: 70px !important; /* more space under header */
  }

  .bottom-bar {
    margin-top: 50px !important; /* push bar downward */
  }

  .bottom-bar p {
    font-size: 22px !important;
  }
}


/* ------------------------------------
   MOBILE MEDIUM + SMALL
------------------------------------ */
@media (max-width: 480px) {

  .logo-circle {
        width: 250px !important;
        height: 250px !important;
        margin-top: 200px !important;
        margin-bottom: 200px;
    }

  .bottom-bar {
    margin-top: 60px !important; /* push blue bar down */
    padding: 8px 0 !important;
  }

  .bottom-bar p {
    font-size: 18px !important;
  }
}


/* ------------------------------------
   EXTRA SMALL DEVICES
------------------------------------ */
@media (max-width: 360px) {

  .logo-circle {
        width: 250px !important;
        height: 250px !important;
        margin-top: 200px !important;
        margin-bottom: 200px;
    }

  .bottom-bar {
    margin-top: 50px !important;
  }

  .bottom-bar p {
    font-size: 16px !important;
  }
}

/* Force container to shrink-wrap content */
.profile-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}