@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700&display=swap');


:root {
  --font-sans-serif: "Inter", sans-serif;
  --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-body-font-family: var(--font-sans-serif);
  --font-family-heading: "Inter", sans-serif;
  --font-family-base: "Inter", sans-serif;
  --color-text: #ffffff;
  --color-bg: #0D1323;
  --color-back: #141d35;
  --color-layer: #1a2238;
  --color-primary: #0969EF;
  --color-primary2: #00CCFF;
  --color-success: #3bbe07;
  --color-red:#ff0000;
  --color-gray:#adacac;
  --border-radius: 6px;
  --border-color: #AEAEAE61;
  --card-color:  #D9D9D917;
  --font-size-base: 16px;
  --footer-color: #171F32;
  --footer-border: #282828;
  --line-height-base: 1.3
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family-base);
  color: var(--color-text);
  text-decoration: none;
}
html {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  
}


body {
  margin: 0;
 padding-top: 90px;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--color-bg);
  align-items: center;
}

footer {
  background-color: var(--color-bg);
  margin-top: 50px;
}



section {
  margin: 10px auto;
  max-width: 1200px;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: auto 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em;
 
}

/* Make the navbar toggler icon white #52AFDF*/
.navbar-toggler {
  border-color: rgba(255,255,255,0.5);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.nav-item{
    padding: 0 10px;
}
.nav-item .nav-link{
    font-size: 1.2rem !important;
    color: var(--color-text);
}

.nav-item .nav-link:hover,.nav-item .nav-link:focus{
    color: #3797D5;
    text-decoration: underline;
}
.nav-item .nav-link.active{
    color: var(--color-primary2);
    text-decoration: underline;
    font-weight: bold;
}
.form-control {
  background-color: transparent !important; 
  color: var(--color-text) !important;           
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.form-control:not(:placeholder-shown),
.form-control:focus:not(:placeholder-shown) {
  background-color: transparent !important;
}
.bnt{
  display: flex;
  gap: 10px;
  justify-content:flex-start;
  margin-top: 10px;
}

.btn-primary{
  background-color: var(--color-primary) !important;
  color: var(--color-text) !important;
}
.btn-primary:hover{
  background-color: var(--color-primary2) !important;
  color: var(--color-text) !important;
}

.custom-input,
  .custom-textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 1rem;
    border: 1px solid var(--color-primary);
    background-color: transparent !important;
    color: var(--color-text);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
  }

  .custom-input::placeholder,
  .custom-textarea::placeholder {
    color: var(--color-text);
    opacity: 0.7;
  }

  .custom-input:focus,
  .custom-textarea:focus {
    border-color: var(--color-accent, #00bfff);
  }
@media (max-width: 600px) {
  .navbar-collapse {
    background-color: var(--color-back);
  }

  .bnt{
  display: flex;
  gap: 10px;
  justify-content:center;
  margin-top: 10px;
  padding: 0 30px;
}
}