@charset "utf-8";
/*========================================
Frankie the Fixer — Clean CSS (No Popup)
- Fonts: Manrope (body) + Fraunces (headings)
- Palette: burnt amber + teal + calm blue accents
- Professional hover (no gradients on cards)
- Articles section included
========================================*/

/*-----------------------
RESET / BASE
------------------------*/
:root {
  /* Typography */
  --font-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  --font-display: "Fraunces", ui-serif, Georgia, serif;

  /* Palette */
  --brand-primary: #d8742a; /* burnt amber */
  --brand-primary-hover: #b85e1f;
  --brand-accent: #2aa6a1; /* teal */
  --brand-accent-2: #3a6ea5; /* calm blue */

  --brand-ink: #0b1b34; /* deep navy */
  --brand-text: #111827;
  --brand-muted: #5b6472;
  --brand-border: #e6e6e6;
  --brand-bg: #f7f4ef;

  /* Layout */
  --container-width: 1170px;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 15px;
}

* {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--brand-text);
  text-align: center;
  font-family: var(--font-body);
}

div,
ul,
li,
p,
img,
form,
input,
textarea {
  margin: 0;
  padding: 0;
}
header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: block;
}
table,
tr,
td {
  border: 0;
}
a {
  outline: none;
  color: inherit;
  text-decoration: none;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
}
li {
  list-style: none;
}

.clearall {
  clear: both;
  font-size: 1px;
  line-height: 1px;
  height: 1px;
}
.fl {
  float: left;
}
.fr {
  float: right;
}

/*-----------------------
LAYOUT
------------------------*/
.container {
  width: var(--container-width);
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/*-----------------------
HEADER
------------------------*/
.top-fix-bar {
  width: 100%;
  margin-bottom: 70px;
}

.header {
  width: 100%;
  height: 70px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.1);
}

.fixed-nav .header {
  position: fixed;
  z-index: 10;
  transition: margin 0.3s ease-out;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  top: 0;
}

.brand {
  float: left;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  font-size: 28px;
  color: var(--brand-primary);
  transform: rotate(-12deg);
}
.brand-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-ink);
  letter-spacing: 0.4px;
}
.brand-the {
  font-weight: 600;
  margin: 0 2px;
}
.brand:hover .brand-icon {
  color: var(--brand-ink);
}

/* Primary button */
a.nav-btn {
  float: right;
  width: 190px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  background: var(--brand-primary);
  font-weight: 800;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 14px;
  transition: background 0.15s ease, transform 0.15s ease;
}
a.nav-btn:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-1px);
}

/*-----------------------
BANNER
------------------------*/
.bnr-sec {
  float: left;
  width: 100%;
  background: radial-gradient(
      900px 380px at 20% 10%,
      rgba(42, 166, 161, 0.25),
      transparent 55%
    ),
    radial-gradient(
      900px 380px at 80% 10%,
      rgba(216, 116, 42, 0.22),
      transparent 55%
    ),
    var(--brand-ink);
  padding: 100px 0 145px;
}
.bnr-hdg {
  color: #fff;
  font-size: 56px;
  line-height: 60px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.2px;
}
.bnr-hdg span {
  color: var(--brand-primary);
}
.bnr-para {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  margin-top: 15px;
  opacity: 0.95;
}

/*-----------------------
ICONS (Font Awesome)
------------------------*/
.service-icon {
  font-size: 60px;
  margin-bottom: 10px;
  color: var(--brand-ink);
  transition: color 0.15s ease, transform 0.15s ease;
}

/*-----------------------
BANNER BOTTOM (SERVICE CARDS)
------------------------*/
.bnr-btm {
  float: left;
  width: 100%;
}
.bnr-btm-bx {
  float: left;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 30px 60px 35px;
  margin-top: -70px;
}
.bnr-btm-hdg {
  color: var(--brand-ink);
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
}

.bnr-btm-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 20px;
}
.bnr-btm-list-bx {
  width: 160px;
}

.bnr-btm-list-inr {
  float: left;
  width: 100%;
  background: #fff;
  color: var(--brand-ink);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 25px 10px;
  transition: background 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease, transform 0.15s ease;
}
.bnr-btm-list-inr:hover {
  background: #f9fafb;
  border-color: var(--brand-primary);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.bnr-btm-list-inr:hover .service-icon {
  color: var(--brand-primary);
  transform: scale(1.03);
}

.bnr-btm-list-inr.hovered,
.s2-list-bx-inr.hovered {
  background: #f9fafb;
  border-color: var(--brand-primary);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.bnr-btm-list-inr.hovered .service-icon,
.s2-list-bx-inr.hovered .service-icon {
  color: var(--brand-primary);
  transform: scale(1.03);
}

/*-----------------------
COMMON
------------------------*/
.commn-hdg {
  color: var(--brand-ink);
  font-size: 50px;
  line-height: 60px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.2px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.commn-hdg::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  opacity: 0.95;
}
.commn-hdg.white-txt {
  color: #fff;
}
.commn-hdg.white-txt::after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.85),
    rgba(42, 166, 161, 0.9)
  );
}
.commn-hdg.black-txt {
  color: #000;
}

.commn-para {
  color: #000;
  font-size: 18px;
  line-height: 26px;
  margin-top: 10px;
}
.commn-para.white-txt {
  color: #fff;
  opacity: 0.95;
}

/*-----------------------
SECTION 1
------------------------*/
.sec1 {
  float: left;
  width: 100%;
  padding: 85px 0 65px;
  position: relative;
}
.sec1:before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 1px;
  height: 65px;
  background: var(--brand-accent-2);
}
.s1-contnt {
  display: inline-block;
  vertical-align: middle;
  max-width: 1065px;
  width: 100%;
  margin-top: 40px;
}
.s1-left {
  float: left;
  width: 45%;
}
.s1-img {
  display: inline-block;
  vertical-align: middle;
  border-radius: var(--radius-md);
}
.s1-rgt {
  float: right;
  width: 51%;
  text-align: left;
}

ul.s1-list {
  float: left;
  width: 100%;
}
ul.s1-list li {
  float: left;
  width: 100%;
  text-align: left;
  background: url(../images/s1-bullet.png) no-repeat left 0;
  padding-left: 65px;
  margin-top: 26px;
  position: relative;
}
ul.s1-list li:before {
  content: "";
  position: absolute;
  top: 32px;
  left: 14px;
  bottom: -25px;
  border-left: 2px dotted rgba(42, 166, 161, 0.45);
}
ul.s1-list li:last-child:before {
  display: none;
}

.s1-list-txt1 {
  color: var(--brand-accent-2);
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
}
.s1-list-txt2 {
  color: #000;
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  margin-top: 5px;
}
.s1-list-txt3 {
  color: var(--brand-muted);
  font-size: 17px;
  line-height: 25px;
  margin-top: 8px;
}

/*-----------------------
SECTION 2 (CTA GRID)
------------------------*/
.sec2 {
  float: left;
  width: 100%;
  background: radial-gradient(
      900px 380px at 20% 10%,
      rgba(58, 110, 165, 0.25),
      transparent 55%
    ),
    radial-gradient(
      900px 380px at 80% 10%,
      rgba(42, 166, 161, 0.22),
      transparent 55%
    ),
    var(--brand-ink);
  padding: 65px 0;
}

.s2-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 830px;
  width: 100%;
  margin: 20px auto 0;
}
.s2-list-bx {
  width: 160px;
}

.s2-list-bx-inr {
  float: left;
  width: 100%;
  background: #fff;
  color: var(--brand-ink);
  font-size: 16px;
  line-height: 20px;
  font-weight: 800;
  border-radius: var(--radius-md);
  padding: 22px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.15s ease, border-color 0.15s ease,
    box-shadow 0.15s ease, transform 0.15s ease;
}
.s2-list-bx-inr:hover {
  background: #f9fafb;
  border-color: var(--brand-primary);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.s2-list-bx-inr:hover .service-icon {
  color: var(--brand-primary);
  transform: scale(1.03);
}

/*-----------------------
SECTION 3 (ARTICLES)
------------------------*/
.sec3 {
  float: left;
  width: 100%;
  padding: 65px 0;
}
.s3-contnt {
  display: inline-block;
  vertical-align: middle;
  max-width: 1090px;
  width: 100%;
}
.s3-left {
  float: left;
  width: 43%;
  text-align: left;
}
.s3-rgt {
  float: right;
  width: 51%;
  text-align: left;
}

.article-grid {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.article-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.article-img {
  display: block;
  width: 100%;
  height: auto;
}
.article-title {
  font-weight: 800;
  color: var(--brand-ink);
  font-size: 18px;
  line-height: 24px;
  padding: 14px 14px 6px;
}
.article-excerpt {
  color: var(--brand-muted);
  font-size: 14px;
  line-height: 20px;
  padding: 0 14px 16px;
}

.s3-left .cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background-color: var(--brand-primary);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.s3-left .cta-btn:hover {
  background-color: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Responsive adjustments */
@media only screen and (max-width: 1021px) {
  .s3-left .cta-btn {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .s3-left .cta-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
  }
}

/*-----------------------
FOOTER
------------------------*/
.footer-sec {
  float: left;
  width: 100%;
  background: var(--brand-bg);
  padding: 50px 0 40px;
}

/* Footer brand must override header float */
.brand.brand-footer {
  float: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 178px;
  height: 37px;
  margin: 0 auto 20px;
}
.brand-footer .brand-icon {
  font-size: 20px;
}
.brand-footer .brand-text {
  font-size: 20px;
  line-height: 1;
}

.note-txt {
  color: var(--brand-muted);
  font-size: 14px;
  line-height: 22px;
  background: #fff;
  border: 1px solid #d7d7d7;
  padding: 15px 55px;
  margin-top: 20px;
}
.ftr-txt {
  color: #000;
  font-size: 14px;
  line-height: 22px;
}
.ftr-txt.medium {
  font-weight: 600;
}
.ftr-txt a {
  padding: 0 5px;
}

.footer {
  float: left;
  width: 100%;
  background: #fff;
  padding: 25px 0;
}

.footer .ftr-txt a,
.footer-sec .ftr-txt a {
  color: var(--brand-ink);
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
  text-decoration-color: transparent;
}

.footer .ftr-txt a:hover,
.footer-sec .ftr-txt a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
  text-decoration-color: rgba(216, 116, 42, 0.65);
}
.footer .ftr-txt {
  color: var(--brand-muted);
}
.footer .ftr-txt a {
  color: var(--brand-ink);
}

/*-----------------------
RESPONSIVE
------------------------*/
.show-mob,
.show-tab {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .container {
    width: 1004px;
  }
  .commn-hdg {
    font-size: 45px;
    line-height: 55px;
  }
}

@media only screen and (max-width: 1021px) {
  .container {
    width: 750px;
  }
  .show-tab {
    display: block;
  }
  .show-desk {
    display: none;
  }

  .commn-hdg {
    font-size: 35px;
    line-height: 43px;
  }
  .commn-para {
    font-size: 17px;
    line-height: 25px;
  }

  .top-fix-bar {
    margin-bottom: 65px;
  }
  .header {
    height: 65px;
    margin-top: -65px;
    top: 65px;
  }
  a.nav-btn {
    margin-top: 12px;
  }

  .bnr-sec {
    padding: 40px 0 110px;
  }
  .bnr-hdg {
    font-size: 40px;
    line-height: 50px;
  }

  .bnr-btm-bx {
    padding: 25px 20px 30px;
  }

  .sec1 {
    padding: 50px 0 40px;
  }
  .sec1:before {
    top: 18px;
    height: 30px;
  }
  .s1-left {
    width: 40%;
  }
  .s1-rgt {
    width: 56%;
  }

  .sec3 {
    padding: 40px 0;
  }
  .s3-left {
    width: 100%;
    text-align: center;
  }
  .s3-rgt {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .article-grid {
    flex-wrap: wrap;
  }
  .article-card {
    flex: 0 0 100%;
  }
  .note-txt {
    padding: 15px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: 600px;
    width: 100%;
    padding: 0 15px;
  }
  .show-mob {
    display: block;
  }
  .hide-mob {
    display: none;
  }

  .brand {
    margin-top: 10px;
  }
  .brand-icon {
    font-size: 24px;
  }
  .brand-text {
    font-size: 24px;
  }

  a.nav-btn {
    width: 155px;
    font-size: 14px;
  }

  .bnr-sec {
    padding: 20px 0 95px;
  }
  .bnr-hdg {
    font-size: 30px;
    line-height: 34px;
  }

  .bnr-btm-bx {
    padding: 20px 15px 25px;
  }

  .sec1 {
    padding: 55px 0 35px;
  }
  .s1-contnt {
    margin-top: 0;
  }
  .s1-rgt {
    width: 100%;
  }
  .s1-img {
    margin: 20px auto 25px;
  }

  .sec2 {
    padding: 30px 0 40px;
  }

  .footer-sec {
    padding: 35px 0;
  }
  .footer {
    padding: 20px 0;
  }
  .ftr-txt.fl,
  .ftr-txt.fr {
    float: none;
  }
}

/* =======================
   Legal / Policy Pages
======================= */
.legal {
  float: left;
  width: 100%;
  padding: 70px 0 60px;
  background: #fff;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 34px 34px 28px;
}

.legal-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-ink);
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.legal-meta {
  color: var(--brand-muted);
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 18px;
}

.legal-content {
  color: var(--brand-text);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-ink);
  font-size: 22px;
  line-height: 1.3;
  margin: 22px 0 10px;
}

.legal-content h3 {
  font-weight: 800;
  color: var(--brand-ink);
  font-size: 18px;
  margin: 18px 0 8px;
}

.legal-content p {
  margin: 10px 0;
}
.legal-content ul {
  margin: 10px 0 10px 18px;
}
.legal-content li {
  list-style: disc;
  margin: 6px 0;
}

.legal-content a {
  color: var(--brand-primary);
  text-decoration: underline;
  text-decoration-color: rgba(216, 116, 42, 0.55);
  text-underline-offset: 3px;
}
.legal-content a:hover {
  color: var(--brand-primary-hover);
  text-decoration-color: rgba(184, 94, 31, 0.75);
}

@media only screen and (max-width: 767px) {
  .legal {
    padding: 45px 0 40px;
  }
  .legal-card {
    padding: 22px 18px;
  }
  .legal-title {
    font-size: 30px;
  }
}

/*-----------------------
CONTACT SECTION
------------------------*/
.contact-section {
  float: left;
  width: 100%;
  padding: 70px 0 65px;
  background: #fff;
}

.contact-section .container {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* Contact Info Card */
.info-container {
  flex: 1;
  text-align: left;
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 34px 34px 30px;
}

.info-container p {
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-text);
}

.info-container strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-ink);
  font-size: 18px;
}

.info-container a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(216, 116, 42, 0.45);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.info-container a:hover {
  color: var(--brand-primary-hover);
  text-decoration-color: rgba(184, 94, 31, 0.75);
}

/* Map Card */
.map-container {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/*-----------------------
RESPONSIVE
------------------------*/
@media only screen and (max-width: 1021px) {
  .contact-section {
    padding: 55px 0 50px;
  }

  .contact-section .container {
    flex-direction: column;
  }

  .map-container iframe {
    min-height: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .info-container {
    padding: 24px 20px;
    text-align: center;
  }

  .info-container strong {
    display: block;
    margin-bottom: 4px;
  }
}
.contact-block + .contact-block {
  margin-top: 24px;
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--brand-ink);
  margin-bottom: 4px;
}

.contact-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--brand-text);
}

.contact-text address {
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .nav-btn.join-btn {
    display: none;
  }
}
.partners-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 700px;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  background-color: #f7f4ef;
  scroll-behavior: smooth;
}

.partners-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--brand-border);
  transition: background 0.15s ease;
}

.partners-list li:last-child {
  border-bottom: none;
}

.partners-list li i {
  color: var(--brand-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.partners-list li:hover {
  background-color: #fff;
}

.partners-cta .cta-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  background-color: var(--brand-primary);
  border-radius: var(--radius-md);
  text-align: center;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.partners-cta .cta-btn:hover {
  background-color: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* =======================
   Scroll Reveal Animations
======================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional variations */
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-left {
  transform: translateX(-30px);
}
.reveal-right {
  transform: translateX(30px);
}
