/******************************************/
/******** AVA MANAGER - SITE.CSS ********/
/******************************************/
/* === ARCHIVO FONT (Local Import) === */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Regular.woff2') format('woff2'),
       url('../fonts/Archivo-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Medium.woff2') format('woff2'),
       url('../fonts/Archivo-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-SemiBold.woff2') format('woff2'),
       url('../fonts/Archivo-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Bold.woff2') format('woff2'),
       url('../fonts/Archivo-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  --ink: #2E2A26;
  --primary: #0dcaf0;        /* Main blue tone */
  --secondary: #2eca6a;      /* Fresh mint secondary */
  --accent: #ff66a1;         /* Soft pink accent */
  --warning: #ff771d;        /* Orange highlight */
  --neutral-bg: #f6f9ff;     /* App background */
  --hero-bg: linear-gradient(135deg, #e8f9ff 0%, #f6f9ff 100%);
  --footer-bg: #1b1f23;
  --font-main: 'Archivo', 'Arial', sans-serif;
  --dot: var(--primary);
}
/* Base */
body {
  background: var(--neutral-bg);
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
}

.hidden { display: none !important; }


/* Navbar */
#front .navbar.topbar {
  background: #ffffff;
  border-bottom: 2px solid #e0e6ef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1rem 0;
}
#front .navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary) !important;
}
#front .nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 6px;
  transition: all 0.25s ease;
}
#front .nav-link:hover,
#front .nav-link.active {
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 3px 6px rgba(13,202,240,0.25);
}

/* Hero */
#front .hero {
  background: var(--hero-bg) !important;
  padding: 2rem 0 2rem;
  /*border-bottom: 5px solid var(--primary);*/
}
#front .hero h1 {
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #17212B;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#front .hero p.lead {
  color: #475569;
  font-size: 1.1rem;
  max-width: 45ch;
}
#front .hero img {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(13,202,240,0.25);
}

/* Buttons */
.btn.btn-primary {
  background: linear-gradient(135deg, var(--primary), #34d2ff);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  box-shadow: 0 3px 6px rgba(13,202,240,0.25);
}
.btn.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary), #4ee28a);
  box-shadow: 0 5px 10px rgba(46,202,106,0.25);
}

.btn.btn-info {
  background: linear-gradient(135deg, var(--secondary), #4ee28a);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  box-shadow: 0 3px 6px rgba(46,202,106,0.25);
}
.btn.btn-info:hover {
  background: linear-gradient(135deg, var(--primary), #34d2ff);
  box-shadow: 0 5px 10px rgba(13,202,240,0.25);
}
/* === Custom CTA Buttons === */

.btn-cta-pink {
  background: linear-gradient(135deg, var(--accent), #ff85b5);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 24px;
  box-shadow: 0 4px 10px rgba(255,102,161,0.35);
  transition: all 0.2s ease;
}

.btn-cta-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255,102,161,0.45);
  opacity: 0.95;
}

.btn-cta-orange {
  background: linear-gradient(135deg, var(--warning), #ff9a4d);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 24px;
  box-shadow: 0 4px 10px rgba(255,119,29,0.35);
  transition: all 0.2s ease;
}

.btn-cta-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255,119,29,0.45);
  opacity: 0.95;
}

/* Alerts */
.alert-success {
  background: rgba(13,202,240,0.1);
  border-left: 5px solid var(--primary);
  color: #2E2A26;
}
.alert-danger {
  background: rgba(255,102,161,0.1);
  border-left: 5px solid var(--accent);
  color: #2E2A26;
}
.alert-info {
  background: rgba(46,202,106,0.1);
  border-left: 5px solid var(--secondary);
  color: #2E2A26;
}

/* Divider */
.divider-bold, .divider-slim {
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border: none;
  opacity: 0.9;
}

/* Footer */
footer#contact {
  background: var(--footer-bg);
  color: #e0f2ff;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 4px solid var(--primary);
  box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
}
footer#contact .fw-bold {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
}
footer#contact small { color: #BFD3E6 !important; opacity: 0.9; }
footer#contact a { color: var(--primary); text-decoration: none; }
footer#contact a:hover { color: var(--secondary); }

/* Sticky footer */
html, body { height: 100%; }
body#front { display: flex; flex-direction: column; min-height: 100vh; }
#contact { margin-top: auto; }

/* === Feature Icons | About Page Thumbnails === */
.feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
@media (max-width: 576px) {
  .feature-icon { width: 64px; height: 64px; }
}
section, footer {
  background-clip: padding-box;
}
body, h1, h2, h3, h4, h5, h6, button, input, select, textarea, .btn {
  font-family: var(--font-main) !important;
}
/* === Compact Layout Adjustment === */
section {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

#front .hero {
  padding: 4rem 0 3rem !important;
}

.container {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.card {
  padding: 1rem !important;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0.8rem !important;
}


/*restore from yesterday oct17 file*/
/* === Utilities === */
.pull-right { float: right !important; }
.text-right { text-align: right !important; }
.active-menu { background: #f6f9ff !important; color: #4154f1 !important; }
.hidden { display: none !important; }

/* === Accounts / Dropdown / Profile === */
.dropdown-menu {
  max-width: 100% !important;
  width: auto;
  right: 0 !important;  /* force align to right */
  left: auto !important;
}
/* Profile image size */
.nav-profile img {
  max-width: 32px;
  height: auto;
}

.addbtn:hover {
  background: #9dcfcc;
  border-color: #9dcfcc;
  color: green;
}

.submitbtn {
  background: #48888A;
  border-color: #48888A;
}

.submitbtn:hover {
  background: #258888;
  border-color: #258888;
}

/* === Pricing === */
.pricing-content { position: relative; }

.pricing_design {
  position: relative;
  margin: 10px 15px;
}

.pricing_design .single-pricing {
  background: #554c86;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 40px -10px rgba(0,64,128,.2);
  position: relative;
  z-index: 1;
}

.pricing_design .single-pricing:before {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 18px 18px 190px 18px;
  border: 1px solid #eee;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.price-head h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
}

.price-head h1 {
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 5px;
}

.single-pricing ul {
  list-style: none;
  margin-left: -35px;
  margin-top: 30px;
  text-align: left !important;
}

.single-pricing ul li {
  line-height: 36px;
  margin-bottom: 5px;
  font-size: 16px;
}

.single-pricing ul li i {
  background: #554c86;
  color: #fff;
  width: 50px;
  height: 20px;
  border-radius: 30px;
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  margin-right: 6px;
}

.pricing-price {}

.price_btn {
  background: #554c86;
  padding: 10px 30px;
  color: #fff;
  display: inline-block;
  margin-top: 20px;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.price_btn:hover { background: #3c24bb; color: white; }

/* === Hero / Landing Page Dots === */
.dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 10px);
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot);
  opacity: .6;
}

/* === Section mini-nav bar (decor element) === */
.section-strip {
  border-top: 6px solid #2b5e66;
  border-bottom: 6px solid #2b5e66;
  background: var(--sky);
}

.section-strip .nav-link { color: #073740 !important; }
.section-strip .nav-link.active {
  background: rgba(255,255,255,.6);
  border-radius: 999px;
  padding: .25rem .8rem;
}

/* === Ghost Burger === */
.ghost-burger {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.35);
}

/* === About / Mission / Vision === */
.about { background: #f6fbfc; }
.about .card { border: 0; background: transparent; }
.about h2 { font-weight: 900; }

.cta-pill {
  background: var(--mint);
  color: #06353d;
  border: 0;
  border-radius: 999px;
  padding: .6rem 1.2rem;
  font-weight: 700;
}

.badge-tab {
  position: relative;
  display: inline-block;
  padding: .65rem 1.5rem;
  background: var(--sky);
  border-radius: 1.25rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 .25rem 0 rgba(0,0,0,.12) inset;
}

.mv-card { background: var(--card); border: 0; border-radius: 1rem; }
.mv-card ul { margin-left: 1rem; }
.mv-icon { width: 80px; height: 80px; opacity: .9; }

/* === Invoice === */
.invoice {
  margin: 40px auto;
  text-align: left;
  width: 100%;
}

.invoice td { padding: 5px 0; }

.invoice .invoice-items { width: 100%; }
.invoice .invoice-items td { border-top: #eee 1px solid; }

.invoice .invoice-items .total td {
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  font-weight: 700;
}

/* === Upload with Preview === */
#upload, #upload2, #upload3 { opacity: 0; }

#upload-label, #upload-label2, #upload-label3 {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.image-area {
  border: 2px dashed rgba(255, 255, 255, 0.7);
  padding: 1rem;
  position: relative;
}

.image-area::before {
  content: 'Uploaded image result';
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  z-index: 1;
}

.image-area img {
  z-index: 2;
  position: relative;
}

