/* Reset & body setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "inter-tight-regular";
}

body,
html {
  height: 100%;
  overflow: hidden;
  /* No scroll */
}

/* Video background */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Centered content */
.content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* Logo */
.logo {
  max-width: 250px;
  margin-bottom: 40px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.buttons button:hover,
header.mil-header .header-btns .header-btn a:hover {
  background: rgba(255, 255, 255, 1);
}

/* Bottom text */
.bottom-text {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #b3d4ac;
  opacity: 0.8;
  font-weight: bold;
}
.bottom-text span {
    font-size: 40px;
    color: #ffff !important;
}

.bottom-text span {
  font-size: 40px;
}

a {
  color: #000;
  font-weight: bold;
  font-size: 20px;
}

.custom-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  background: #0000008f;
}

body {
  position: relative !important;
}

.container {
  margin: auto;
  max-width: 1320px;
}

header.mil-header .header-btns {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.mil-header .header-content {
  position: absolute;
  right: 0;
  top: 80px;
  z-index: 2;
}

.mil-header .container {
  position: relative;
}

.loggedin-components .firstletter {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 10px;
  box-sizing: border-box;
  font-weight: 700;
  border: 2px solid var(--pre-heading-color);
  cursor: pointer;
}

.loggedin-components .userdropdown.hide {
  opacity: 0;
  visibility: hidden;
  scale: 0;

}

.loggedin-components .userdropdown {
  position: absolute;
  top: calc(100% + 10px);
  background-color: var(--secondary-color);
  padding: 10px;
  border-radius: 10px;
  right: 0;
  transition: ease-in-out .3s;
  overflow: hidden;
  scale: 1;
  transform-origin: top center;
  width: 100%;
}

.loggedin-components {
    position: relative;
    transition: ease-in-out .3s;
    cursor: pointer;
}


.loggedin-components .userdropdown .otherLinks a,
.loggedin-components .userdropdown .username {
  padding: 10px;
  display: block;
  font-weight: 400;
  font-size: 16px;
  border-radius: 10px;
}


.loggedin-components .user-image {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 10px;
}

.loggedin-components .user-image img[alt="Profile Picture"] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.loggedin-components .user-image img[alt="angledown"] {
  width: 20px;
}

.loggedin-components .userdropdown .otherLinks a, .loggedin-components .userdropdown .username {
    transition: .2s ease-in-out;
}

.loggedin-components .userdropdown .otherLinks a:hover, .loggedin-components .userdropdown .username:hover {
    background-color: var(--accent-bg-color1);
    color: var(--secondary-color);
}
.logout-btn a:hover {
    background-color: red !important;
}

  @media screen and (max-width: 767px) {
               .header-content {
    position: absolute;
    right: 45px !important;
    top: 80px;
    z-index: 2;
}
.mil-header .header-content {
    right: 50% !important;
    transform: translate(50%);
        top: 40px;
}
  }
