/*====================================================================
  Aurogix Child — COMPLETE STYLE (Optimized & Centered Hero, No Overlay)
====================================================================*/

/* Google fonts */
@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,400,600,700,900&display=swap');

/* Vendor CSS */
@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/* ------------------------------------------------------------------ */
/* Tokens */
/* ------------------------------------------------------------------ */
:root {
  --auro-navy: #032154;
  --auro-gold: #B8860B;
  --text-dark: #090909;
}

/* ------------------------------------------------------------------ */
/* Base */
/* ------------------------------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #fff;
  color: var(--text-dark);
  font: 14px/1.8 'Raleway', sans-serif;
}
img { max-width: 100%; height: auto; }

/* ✅ FIX: Global links so nothing turns pink */
a,
a:visited {
  color: #222;
  text-decoration: none;
  transition: .3s;
}
a:hover,
a:focus {
  color: var(--auro-gold);
  text-decoration: underline; /* optional */
}
a:active {
  color: var(--auro-gold);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 10px;
  color: #090909;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.container { max-width: 1172px; }
.d_flex { display: flex; align-items: center; flex-wrap: wrap; }

/* ------------------------------------------------------------------ */
/* Skip Link */
/* ------------------------------------------------------------------ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 10000;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 10px;
  outline: 3px solid var(--auro-gold);
}

/* Optional: prevent sticky header overlap */
#content {
  scroll-margin-top: 90px; /* adjust if header height differs */
}

/* ------------------------------------------------------------------ */
/* Loader */
/* ------------------------------------------------------------------ */
.loader_bg { position: fixed; inset: 0; background: #fff; z-index: 9999999; }
.loader { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.loader img { width: 280px; }

/* ------------------------------------------------------------------ */
/* HEADER */
/* ------------------------------------------------------------------ */
.header { width: 100%; }
.header_to { background: var(--auro-navy); padding: 9px 0; }
.header_midil { background: #fff; padding: 26px 0; }
.logo { text-align: center; display: block; }

ul.conta_icon li { display: inline-block; }
ul.conta_icon li a {
  display: flex; align-items: center; gap: 8px;
  color: #271e0a; font-weight: 600; font-size: 18px;
}
ul.conta_icon li a i { color: var(--auro-gold); font-size: 28px; }
ul.conta_icon li a:hover { color: var(--auro-gold); text-decoration: underline; }

/* ------------------------------------------------------------------ */
/* MENU BAR */
/* ------------------------------------------------------------------ */
.header_bo {
  background: var(--auro-navy);
  width: 100%;
  height: 70px;
  border-bottom: 2px solid rgba(255,255,255,0.65);
  margin-bottom: 0;
}

.navigation.navbar { padding: 0; margin-bottom: 0; }
.navbar-expand-md .navbar-nav {
  display: flex; align-items: stretch; padding-right: 10px;
}
.navigation.navbar-dark .navbar-nav .nav-item { display: flex; }
.navigation.navbar-dark .navbar-nav .nav-link {
  display: flex; align-items: center; justify-content: center;
  height: 70px; padding: 0 18px; margin: 0 5px;
  color: #fff; font-weight: 700; font-size: 20px;
  text-transform: uppercase; white-space: normal;
}
.navigation.navbar-dark .navbar-nav .nav-link:hover,
.navigation.navbar-dark .navbar-nav .active>.nav-link {
  background: var(--auro-gold);
  color: #fff;
}

/* ------------------------------------------------------------------ */
/* HERO — Centered Banner (Overlay Removed) */
/* ------------------------------------------------------------------ */
.hero-banner {
  background: url(../images/about_img2.jpg) center/cover no-repeat;
  height: clamp(340px, 44vh, 520px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 24px 0;
}

/* Overlay removed */
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.banner-content h1 {
  font: 700 52px 'Poppins', sans-serif;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Updated: removed gold default from all hero paragraphs */
.banner-content p {
  font: 700 24px 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ✅ Tagline specifically white */
.hero-banner .hero-tagline {
  color: #fff;
}

/* Fade-in animation */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(25px); filter: blur(3px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-banner .banner-content h1,
.hero-banner .banner-content p {
  opacity: 0;
  animation: heroFadeIn 1.4s ease-out forwards;
}
.hero-banner .banner-content h1 { animation-delay: 0.2s; }
.hero-banner .banner-content p { animation-delay: 0.6s; }

/* Responsive Hero Adjustments */
@media (max-width: 768px) {
  .hero-banner { height: auto; padding: 40px 10px; }
  .banner-content h1 { font-size: 36px; }
  .banner-content p { font-size: 18px; }
}

/* ------------------------------------------------------------------ */
/* ABOUT US */
/* ------------------------------------------------------------------ */
.about { padding-top: 90px; background: #fff; }
.about .titlepage { text-align: center; padding-bottom: 25px; }
.about .titlepage h2 {
  font-size: 48px; font-weight: 800; color: var(--auro-gold);
  text-transform: uppercase;
}
.about_box p {
  font-size: 17px; line-height: 30px; color: #0d0d0d;
  max-width: 1200px; margin: 0 auto 20px; text-align: center;
}

/* ------------------------------------------------------------------ */
/* OUR TEAM */
/* ------------------------------------------------------------------ */
section.team .titlepage {
  text-align: center; padding-bottom: 24px;
}
section.team .titlepage h2 {
  font-size: 48px; font-weight: 900;
  text-transform: uppercase; color: var(--auro-gold);
  margin-bottom: 8px;
}
section.team p {
  max-width: 1100px; margin: 0 auto 14px; text-align: center;
  font-size: 20px; line-height: 1.9; padding: 0 16px;
}

/* ------------------------------------------------------------------ */
/* CONTACT PAGE */
/* ------------------------------------------------------------------ */
.contact { padding-top: 80px; background: #fff; }
.contact .titlepage { text-align: center; }
.contact_form .contact_control,
.contact_form .textarea {
  width: 100%; background: transparent; color: #363636;
  font-size: 18px; border-bottom: #003471 solid 1px !important; border: 0;
  margin-bottom: 20px; padding-top: 10px;
}
.contact_form .send_btn {
  display: block; margin: 30px auto 0; max-width: 217px; width: 100%;
  padding: 15px 0; border-radius: 40px; background: var(--auro-gold);
  color: #fff; text-transform: uppercase; font-weight: 600; font-size: 20px;
  transition: .5s;
}
.contact_form .send_btn:hover { background: #092352; }

/* ------------------------------------------------------------------ */
/* FOOTER (base) */
/* ------------------------------------------------------------------ */
.footer {
  background: url(../images/footer_bg.jpg) center/cover no-repeat;
  margin-top: 60px; padding: 48px 0 18px; color: #fff;
}
.footer .footer-inner {
  max-width: 1172px; margin: 0 auto; padding: 0 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.footer .footer-left img { height: 170px; width: auto; display: block; }
.footer .footer-right { text-align: left; flex: 0 1 560px; }
.footer .footer-title { font: 800 28px 'Poppins', sans-serif; margin-bottom: 14px; }
.footer .contact-list { list-style: none; margin: 0; padding: 0; }
.footer .contact-list li {
  display: flex; align-items: center; gap: 14px;
  color: #fff; font: 600 20px 'Poppins', sans-serif; margin: 7px 0;
}
.footer .contact-list li i { color: var(--auro-gold); font-size: 26px; }

/* footer links white */
.footer .contact-list a,
.footer .contact-list a:visited { color: #fff; }
.footer .contact-list a:hover,
.footer .contact-list a:focus {
  color: var(--auro-gold);
  text-decoration: underline; /* optional */
}

/* ------------------------------------------------------------------ */
/* WCAG REFLOW 400% FIXES (Footer wrap/stack) */
/* ------------------------------------------------------------------ */

/* Stack footer columns + avoid squeeze */
@media (max-width: 768px) {
  .footer .row.align-items-center {
    flex-direction: column;
  }
  .footer-left,
  .footer-right {
    width: 100%;
    text-align: center;
  }
  .footer-right { margin-top: 20px; }
}

/* Let long emails wrap */
.footer .contact-list li,
.footer .contact-list li a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Flex shrink/wrap safety */
.footer .contact-list li {
  align-items: flex-start;
  min-width: 0;
  flex-wrap: wrap;
}
.footer .contact-list li a {
  min-width: 0;
  flex: 1 1 auto;
}

/* Scale footer text down for tiny/reflow widths */
@media (max-width: 480px) {
  .footer .footer-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .footer .contact-list li {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer .contact-list li a {
    font-size: 16px;
    line-height: 1.5;
    display: inline-block;
    max-width: 100%;
  }

  .footer .contact-list li i {
    font-size: 22px;
  }
}

/* ------------------------------------------------------------------ */
/* FOOTER — FORCE STYLES FIX (overrides parent + fixes bg path) */
/* ------------------------------------------------------------------ */
footer .footer {
  /* fallback navy so footer never looks white */
  background-color: var(--auro-navy);

  /* ✅ corrected child-theme assets path */
  background-image: url(../assets/images/footer_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  color: #fff;
  margin-top: 60px;
  padding: 48px 0 18px;
}

/* footer heading white */
footer .footer .footer-title {
  color: #fff;
}

/* remove bullets + spacing */
footer .footer .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* force footer text white */
footer .footer .contact-list li {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  font: 600 20px 'Poppins', sans-serif;
  margin: 7px 0;
}

/* icons gold */
footer .footer .contact-list li i {
  color: var(--auro-gold);
  font-size: 26px;
}

/* email link white (no pink visited) */
footer .footer .contact-list a,
footer .footer .contact-list a:visited {
  color: #fff;
}
footer .footer .contact-list a:hover,
footer .footer .contact-list a:focus {
  color: var(--auro-gold);
  text-decoration: underline;
}

/* ------------------------------------------------------------------ */
/* Copyright */
/* ------------------------------------------------------------------ */
.copyright {
  background: #fff; padding: 18px 0; margin-top: 50px;
}
.copyright p {
  color: #082557; font-size: 18px; text-align: center; margin: 0;
}

/* ------------------------------------------------------------------ */
/* ABOUT PAGE FIX */
/* ------------------------------------------------------------------ */
section.about p,
section.about ul,
section.about li {
  max-width: 1200px !important;
  margin-left: auto; margin-right: auto;
  padding: 0 16px;
}
.page-template-about section.about .container {
  max-width: 1400px;
}

/* ------------------------------------------------------------------ */
/* NAVY OUTLINE UTILITIES */
/* ------------------------------------------------------------------ */
.outline-navy {
  color: #fff;
  -webkit-text-stroke: 2px var(--auro-navy);
  text-shadow:
    2px 0 0 var(--auro-navy), -2px 0 0 var(--auro-navy),
    0 2px 0 var(--auro-navy), 0 -2px 0 var(--auro-navy);
}

/* ------------------------------------------------------------------ */
/* Titles & Yellow Helper */
/* ------------------------------------------------------------------ */
.titlepage { text-align: left; padding-bottom: 60px; }
.titlepage h2 {
  font-size: 36px;
  line-height: 45px;
  font-weight: 800;
  color: #154492;
  text-transform: uppercase;
}

.yellow {
  color: var(--auro-gold);
  font-weight: 800;
  text-transform: uppercase;
}