/* Basic reset */
* { box-sizing: border-box; margin:0; padding:0; font-family: Arial, sans-serif; }
body { line-height:1.6; color:#1a1a1a; background-color:#fff; scroll-behavior: smooth; }

/* #003366 = oldBlue #286A7A = newBlue */
/* #a91b0d = oldRed  #7A3828 = newRed */


a { color:#286A7A; text-decoration:none; }
a:hover { text-decoration: underline; }

/* HEADER */
header {
    background-color: #fff; /* White background */
    padding: 20px 0;
    /*text-align: center;*/
    border-bottom: 4px solid #7A3828; /* Red bottom border */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.red-text {
  color: #7A3828; /* Red */
}

.red-textMain1 {
  color: #7A3828; /* Red */
  font-size: 1.8rem;
}

.red-textMain2 {
  color: #7A3828; /* Red */
  font-size: 1.9rem;
}

.blue-text {
  color: #286A7A; /* Blue/navy */
  
}

.blue-textMain {
  color: #286A7A; /* Blue/navy */
  font-size: 2.5rem;
}

.headerSubText {
  color: #286A7A;
  font-size: 1.2rem;
  margin-top: 4px; /* small space under the title */
}

header h1 {
    font-size: 3rem;
    color: #7A3828; /* Red text */
    margin-bottom: 10px;
}

/* NAVIGATION */
nav a {
    margin: 0 15px;
    font-weight: bold;
    /*color: #7A3828;  Red links */
    color: #fff; /* Red links */
}

nav a:hover {
    color: gold; /* Gold hover */
}

.container { max-width:1000px; margin:20px auto; padding:0 20px; }

section { margin-bottom:60px; 
/* opacity:0;  */
transform: 
translateY(50px); 
transition: 0.8s ease-out; 
}
section.visible { opacity:1; transform: translateY(0); }

h2 { color:#286A7A; margin-bottom:20px; font-size:1.8rem; }

p { margin-bottom:15px; }

.services {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap:20px;
}

.service-card {
    padding:20px;
    border:2px solid #286A7A; /* Navy border */
    border-radius:10px;
    background-color:#f9f9f9; /* Slight off-white */
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color:#7A3828; /* Red on hover */
}

.cta-button {
    display:inline-block;
    margin-top:20px;
    padding:15px 30px;
    background-color:#286A7A; /* Navy */
    color:#fff;
    font-size:1.2rem;
    font-weight:bold;
    border:none;
    border-radius:10px;
    cursor:pointer;
    opacity:0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.cta-button.visible { opacity:1; transform: translateX(0); }

.cta-button:hover { background-color:#7A3828; } /* Red hover */

.contact-form input, .contact-form textarea {
    width:100%;
    padding:10px;
    margin-bottom:10px;
    border-radius:5px;
    border:1px solid #286A7A; /* Navy border */
}

.contact-form button {
    background-color:#7A3828; /* Red */
    color:#fff;
    border:none;
    padding:10px 20px;
    cursor:pointer;
    border-radius:5px;
}

.contact-form button:hover { background-color:#286A7A; }

footer {
    background-color:#286A7A; /* Navy footer */
    padding:20px 0;
    text-align:center;
    border-top:4px solid #7A3828; /* Red top border */
    color:#fff;
}


footer a {
    color: #fff;            /* make links white */
    text-decoration: none;  /* optional: cleaner look */
    margin: 0 8px;          /* spacing */
}

footer a:hover {
    text-decoration: underline;  /* accessibility-friendly */
    opacity: 0.9;                /* tiny visual feedback */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    header h1 { font-size:2.6rem; }
    nav a { font-size:1.1rem; } /* keep horizontal, just scale font */
.headerSubText {
  color: #286A7A;
  font-size: 1.0rem;
  margin-top: 3px; /* small space under the title */
}
}

 


/* HEADER LAYOUT FIXES */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* keeps nav from overflowing on small screens */
  padding: 0 15px;
}

.header-left {
  display: flex;
  align-items: center; /* keeps logo and text vertically aligned */
}

.header-text {
  display: flex;
  flex-direction: column; /* stack title and subtitle vertically */
  justify-content: center;
  line-height: 1.1;
}

.header-text h1 {
  margin: 0;
  padding: 0;
}

.headerSubText {
  color: #286A7A;
  font-size: 1.2rem;
  margin-top: 2px; /* small space below LibertyEd */
}



.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 75px;
  width: auto;
  margin-right: 10px; /* space between logo and text */
}

/* NAVIGATION + AUTH BUTTONS */
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background-color: #7A3828;
}

.auth-buttons {
  display: flex;
  gap: 8px;
}

.btn-outline,
.btn-primary {
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;   /* Makes centering work */
  text-align: center;      /* Centers the text */
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff; /* Red outline button text */
}

.btn-outline:hover {
    background-color: gold;
    color: #fff;
}

.btn-primary {
    background-color: #286A7A; /* Red filled button */
    color: #fff;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background-color: gold;
    border-color: #fff;
    color: #fff;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #7A3828; /* Red */
    z-index: 2000;
    position: absolute;
    right: 20px;
    top: 20px;
}

/* MOBILE MENU HANDLING */
@media (max-width: 768px) {

    .hamburger {
      display: block;
  }

.main-nav {
  display: none;          /* hide by default on mobile */
  flex-direction: column;
  align-items: center;
  gap: 1px;
  margin-top: 10px;
  width: 100%;
  background-color: #7A3828;
}

.main-nav.active {
  display: flex;          /* show when hamburger clicked */
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.auth-buttons {
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}


 
}







/* utility */
.wrap { max-width: 1100px; margin: 0 auto; padding: 28px; }

/* hero */
.about-hero {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  border-bottom: 4px solid #ad1f2d; /* softened red */
  text-align: center;
  padding: 48px 16px;
}
.about-hero h1 { font-size: 2.2rem; color: #286A7A; margin-bottom: 10px; }
.about-hero .lede { color: #333; font-size: 1.05rem; margin-bottom: 18px; }
.btn { display: inline-block; padding: 10px 18px; border-radius: 8px; text-decoration: none; border: 2px solid #286A7A; color: #286A7A; font-weight: 700; margin-top: 8px; }
.btn.primary { background: #286A7A; color: #fff; border-color: #286A7A; }

/* steps */
.how-steps h2 { text-align: center; color: #286A7A; margin-bottom: 18px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.step { background:#fff; border:1px solid #e6e9ee; padding: 16px; border-radius: 8px; box-shadow: 0 6px 18px rgba(0,0,0,0.04); }
.step h3 { color: #ad1f2d; margin-bottom: 8px; }
.step p { color: #444; font-size: .98rem; }

/* support + partners */
.support-inner { display:flex; gap:20px; align-items:flex-start; flex-wrap:wrap; padding: 18px 0; }
.support-inner > div { flex:1 1 420px; }
.partners .logos { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.partners img { height:36px; object-fit:contain; opacity:.95; filter:grayscale(.05); }

/* samples */
.samples-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:16px; margin-top:12px; }
.sample { background:#fff; border:1px solid #eef2f6; padding:12px; border-radius:8px; }

/* cta */
.cta-wrap { text-align:center; margin-top:20px; }
.muted { color:#6b7280; font-size:0.95rem; margin-top:8px; }

/* responsive tweaks */
@media (max-width:720px) {
  .about-hero h1 { font-size:1.6rem; }
  .wrap { padding:14px; }
  .support-inner { flex-direction:column; }
}







.info-list {
  margin: 20px 0;
  padding-left: 25px;
  color: #286A7A;
  font-size: 1.05rem;
  line-height: 1.6;
}

.info-list li {
  margin-bottom: 8px;
}










/* Container styling */
.signup-form {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff; /* match your site's background */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form title */
.signup-form h2 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

/* Input styling */
.signup-form input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.signup-form input:focus {
  border-color: #007BFF; /* primary site color */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Button styling */
.signup-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #007BFF; /* primary site color */
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.signup-form button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}



.title-group div {
  margin: 2px 0; /* adjust to control vertical spacing */
  line-height: 1;
}









/* DESKTOP */
@media (min-width: 768px) {

  .main-nav {
    position: relative;
    display: flex;
    justify-content: flex-end;   /* pushes auth-buttons to the right */
    align-items: center;
    width: 100%;
    padding: 10px 0;
    background-color: #7A3828;
  }

  .main-nav ul {
    list-style: none;
    display: flex !important;
    flex-direction: row;
    gap: 25px;

    position: absolute;          /* absolute centering */
    left: 50%;
    transform: translateX(-50%); /* perfect center */
    padding: 0;
    margin: 0;
  }

  .auth-buttons {
    display: flex;
    gap: 15px;
  }
}




/*SIGN UP PAGE INPUTS      VVVVVVVVVVVVV*/

.styled-form input {
  width: 100%;
  padding: 14px 16px;
  margin: 12px 0;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 10px;
  background: #f8f8f8;
  transition: 0.25s ease;
}

.styled-form input:focus {
  border-color: #4b7bec;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(75, 123, 236, 0.3);
  outline: none;
}

.styled-form button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  font-size: 17px;
  border-radius: 10px;
  cursor: pointer;
}

/* Center the form */
#signup-form {
  max-width: 400px;     /* Limit width on PC */
  margin: 0 auto;       /* Center horizontally */
}

/* Keep the existing styling */
.styled-form input,
.styled-form button {
  width: 100%;          /* Full width INSIDE the container */
}




.form-container {
  max-width: 400px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;             /* newBlue */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.35);
  color: #fff;
  text-align: center;
  border: 2px solid #286A7A; 
}

.form-container h2 {
  margin-bottom: 20px;
  color: #7A3828;
  font-weight: bold;
}

.form-container .info-list {
  list-style: disc;       /* normal bullets */
  padding-left: 20px;     /* space for bullets */
  text-align: left;       /* text aligns naturally with bullets */
  max-width: 400px;       /* optional, keeps list from being too wide */
  margin: 0 auto 20px auto; /* center the block itself horizontally */
  line-height: 1.5;       /* nice spacing for wrapped lines */
}

.form-container .info-list li {
  margin-bottom: 10px;
}

.form-container p {
  margin-top: 20px;
  color: #286A7A;
}



/* Inputs: themed with newBlue and white border */
.form-container input[type="email"],
.form-container input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 2px solid #1f5562;
  background: #286A7A;             /* slightly darker newBlue for contrast */
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-container input::placeholder {
  color: #d7e9ed;
}

/* Login button using newBlue + newRed hover theme */
.form-container button {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 2px solid #1f5562;
  background: #286A7A;             /* newBlue */
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s ease;
  display: inline-block;
  text-align: center;
}

.form-container button:hover {
  background: #7A3828;             /* newRed on hover */
  border-color: #fff;
  color: #fff;
}

/* Forgot password link */
.form-container a {
  color: #7A3828; 
  font-weight: bold;
}

.form-container a:hover {
  text-decoration: underline;
}



/*SIGN UP PAGE INPUTS    ^^^^^^^^^^^^^^^*/