/* =============================================
   BIOCOM SYSTEMS — Modern Stylesheet 2025
   Google Fonts (HTTPS)
   ============================================= */
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Open+Sans:wght@300;400;600;700&display=swap);

/* =============================================
   BASE RESET & TYPOGRAPHY
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

body, html {
  font-family: 'Lato', sans-serif;
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 { margin-top: 0; }
p { font-family: 'Open Sans', sans-serif; margin: 0 0 10px; }
ul, ol { padding: 0; margin: 0; list-style: none; }

a             { color: #FCAC45; text-decoration: none; }
a:hover,
a:focus       { color: #e09020; text-decoration: none; }

.text-amber   { color: #FCAC45; }
.color        { color: #FCAC45; }

/* Clearfix */
.clearfix::after {
  visibility: hidden; display: block; font-size: 0;
  content: " "; clear: both; height: 0;
}
.clearfix { display: block; }


/* =============================================
   NAVIGATION
   ============================================= */
#tf-menu {
  padding: 12px 20px;
  background: #0f1117;
  border: none;
  transition: all 0.4s;
}
#tf-menu.on {
  background: #0f1117 !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  padding: 8px 20px;
}
#tf-menu.navbar-default { border-color: transparent; }

#tf-menu a.navbar-brand {
  font-size: 22px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0;
}
#tf-menu.navbar-default .navbar-nav > li > a {
  text-transform: uppercase;
  color: #bbb;
  font-size: 12px;
  letter-spacing: 1.2px;
  transition: color 0.3s;
  padding: 20px 14px;
}
#tf-menu.navbar-default .navbar-nav > li > a:hover { color: #FCAC45; }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #FCAC45 !important;
  background: transparent;
  font-weight: 700;
}
.navbar-toggle { border-radius: 0; }
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #FCAC45;
  border-color: #FCAC45;
}
.navbar-default .navbar-toggle:hover > .icon-bar { background-color: #fff; }

.language { width: 100%; text-align: right; clear: both; margin-bottom: 10px; }
.lang { float: right; margin-right: 8px; margin-top: -6px; }


/* =============================================
   HERO SECTION — gradient, no background image
   ============================================= */
#tf-home {
  background:
    linear-gradient(135deg,
      rgba(13, 15, 24, 0.90) 0%,
      rgba(19, 25, 46, 0.82) 45%,
      rgba(13, 21, 32, 0.88) 100%),
    url(../img/bg.jpg) center center / cover no-repeat;
  background-attachment: fixed, fixed;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* Decorative ambient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 {
  width: 560px; height: 560px;
  background: rgba(252,172,69,0.10);
  top: -140px; right: -140px;
}
.blob-2 {
  width: 340px; height: 340px;
  background: rgba(252,172,69,0.06);
  bottom: -80px; left: -80px;
}
.blob-3 {
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.03);
  top: 45%; left: 35%;
}

.hero-container { position: relative; z-index: 2; }

.hero-row {
  padding: 80px 0 80px;
  display: flex;
  align-items: center;
}

/* Hero left */
.hero-pill {
  display: inline-block;
  background: rgba(252,172,69,0.12);
  border: 1px solid rgba(252,172,69,0.28);
  color: #FCAC45;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-heading {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 22px;
  text-transform: none;
}
.hero-desc {
  font-size: 17px;
  color: #8a93a8;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-solid {
  display: inline-block;
  padding: 14px 36px;
  background: #FCAC45;
  color: #0d0f18;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 5px;
  border: 2px solid #FCAC45;
  transition: all 0.3s;
}
.btn-solid:hover {
  background: transparent;
  color: #FCAC45;
}
.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.22);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: #FCAC45; color: #FCAC45; }

/* Hero right — bento grid */
.hero-right { padding-left: 30px; }

.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}
.bento-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 20px;
  color: #fff;
  transition: all 0.35s;
  backdrop-filter: blur(8px);
}
.bento-card:hover {
  background: rgba(252,172,69,0.10);
  border-color: rgba(252,172,69,0.35);
  transform: translateY(-3px);
}
.bc-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
}
.bc-wide i.fa { font-size: 32px; color: #FCAC45; flex-shrink: 0; }
.bc-wide h5 { font-size: 15px; font-weight: 700; margin-bottom: 5px; text-transform: none; }
.bc-wide p  { font-size: 12px; color: #8a93a8; margin: 0; }

.bento-card:not(.bc-wide) i.fa {
  font-size: 24px;
  color: #FCAC45;
  margin-bottom: 10px;
  display: block;
}
.bento-card:not(.bc-wide) h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-transform: none;
}


/* =============================================
   STATS STRIP
   ============================================= */
#tf-stats {
  background: #ffffff;
  border-top: 3px solid #FCAC45;
  border-bottom: 1px solid #eee;
  padding: 56px 0;
}
.stat-item {
  text-align: center;
  padding: 12px 20px;
}
.stat-icon {
  display: block;
  font-size: 22px;
  color: #FCAC45;
  margin-bottom: 12px;
}
.stat-number {
  display: block;
  font-size: 50px;
  font-weight: 900;
  color: #0d0f18;
  font-family: 'Lato', sans-serif;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Open Sans', sans-serif;
}


/* =============================================
   SHARED SECTION LABELS & HEADINGS
   ============================================= */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FCAC45;
  margin-bottom: 12px;
}
.section-heading {
  font-size: 38px;
  font-weight: 900;
  color: #0d0f18;
  line-height: 1.2;
  margin: 0 0 14px;
  text-transform: none;
}
.section-heading.light { color: #ffffff; }
.section-sub {
  font-size: 16px;
  color: #999;
  font-family: 'Open Sans', sans-serif;
  margin-top: 8px;
}
.section-header { margin-bottom: 52px; }

/* Legacy section-title (for team section) */
.section-title.center { padding: 30px 0; }
.section-title h2,
.section-title.center h2 { font-weight: 300; color: #fff; }
.section-title.center .line {
  border-top: 4px solid #fcac45;
  height: 10px;
  width: 60px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}


/* =============================================
   ABOUT SECTION
   ============================================= */
#tf-about {
  padding: 100px 0;
  background: #f8f9fb;
}
.about-row { display: flex; align-items: center; }

.about-img-col { position: relative; }
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img-wrap img {
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: #FCAC45;
  border-radius: 14px;
  padding: 20px 26px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(252,172,69,0.42);
}
.badge-num {
  display: block;
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.badge-txt {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}
.about-content { padding-left: 52px; }

.about-lead {
  font-size: 16px;
  color: #555;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-features { margin-top: 28px; }
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
  font-family: 'Open Sans', sans-serif;
}
.feature-icon {
  width: 28px; height: 28px;
  background: rgba(252,172,69,0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}
.feature-icon .fa { color: #FCAC45; font-size: 11px; }


/* =============================================
   TEAM SECTION — KEPT AS IS (parallax bg)
   ============================================= */
#tf-team {
  background: url(../img/03.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #ffffff;
}
#tf-team .overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 100%);
  height: auto;
  background-attachment: fixed;
  padding: 80px 0;
}
#team { margin: 0 auto; }
#team .item {
  padding: 0; margin: 15px;
  color: #fff; text-align: center;
}
img.img-circle.team-img {
  width: 120px; height: 120px;
  border: 4px solid #FCAC45;
  transition: all 0.5s;
}
#tf-team .item .thumbnail:hover > img.img-circle.team-img {
  border: 4px solid #fff;
}
#tf-team .thumbnail { background: transparent; border: 0; }
#tf-team .thumbnail .caption { padding: 9px; color: #FCAC45; }
#tf-team .thumbnail .caption p { color: #fff; }
#tf-team .thumbnail .caption h3 { color: #FCAC45; font-size: 16px; font-weight: 700; }


/* =============================================
   SERVICES SECTION
   ============================================= */
#tf-services {
  padding: 100px 0;
  background: #ffffff;
}
.services-grid { margin-top: 8px; }

.service-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 38px 28px 32px;
  margin-bottom: 28px;
  text-align: center;
  transition: all 0.35s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  position: relative;
}
.service-card:hover {
  box-shadow: 0 14px 48px rgba(252,172,69,0.14);
  border-color: rgba(252,172,69,0.5);
  transform: translateY(-6px);
}
.service-icon {
  width: 80px; height: 80px;
  background: rgba(252,172,69,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.35s;
}
.service-icon .fa { font-size: 30px; color: #FCAC45; transition: all 0.35s; }

.service-card:hover .service-icon { background: #FCAC45; }
.service-card:hover .service-icon .fa { color: #fff; }

.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0d0f18;
  margin: 0 0 12px;
  text-transform: none;
}
.service-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.78;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

/* Highlighted "NEW" card */
.service-highlight {
  border-color: rgba(252,172,69,0.35);
  background: #fffdf8;
}
.service-highlight .service-icon { background: #FCAC45; }
.service-highlight .service-icon .fa { color: #fff; }

.badge-new {
  display: inline-block;
  background: #FCAC45;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  vertical-align: middle;
  margin-left: 6px;
}


/* =============================================
   CONTACT — split panel (dark left / white right)
   ============================================= */
#tf-contact { background: #f8f9fb; padding: 0; }

.contact-split {
  display: flex;
  min-height: 620px;
}
.contact-info-panel {
  background: #0d0f18;
  flex: 0 0 40%;
  padding: 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-intro {
  color: #8a93a8;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  margin: 18px 0 36px;
}
.office-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}
.office-icon {
  width: 36px; height: 36px;
  background: rgba(252,172,69,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-right: 16px; flex-shrink: 0;
}
.office-icon .fa { color: #FCAC45; font-size: 13px; }

.office-details strong {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 6px;
}
.office-details p {
  color: #8a93a8;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}
.office-details a { color: #FCAC45; }
.office-details a:hover { color: #fff; }

.contact-form-panel {
  flex: 1;
  padding: 80px 60px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Alert banners */
.alert { margin-bottom: 20px; border-radius: 6px; }
.alert-error {
  color: #F14915;
  background-color: rgba(244,67,54,0.10);
  border-color: rgba(244,67,54,0.15);
}
.alert-val {
  color: #F14915;
  background-color: rgba(244,67,54,0.10);
  border-color: rgba(244,67,54,0.15);
}

.form-row-modern { margin-bottom: 20px; }
.form-row-modern label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  float: none;
}
.input-modern {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  background: #f8f9fb;
  border: 1.5px solid #e8e8e8;
  border-radius: 7px;
  outline: none;
  transition: all 0.3s;
  font-family: 'Open Sans', sans-serif;
  display: block;
}
.input-modern:focus {
  border-color: #FCAC45;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(252,172,69,0.10);
}
textarea.input-modern { resize: vertical; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: #FCAC45;
  color: #0d0f18;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.btn-submit:hover {
  background: #e09020;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252,172,69,0.35);
}


/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: #0d0f18;
  padding: 44px 0 28px;
  color: #8a93a8;
}
.footer-inner { }

.footer-brand { margin-bottom: 10px; }
.footer-logo {
  max-height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 14px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  color: #555;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  padding-top: 6px;
}
.footer-links a {
  color: #8a93a8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.footer-links a:hover { color: #FCAC45; }

.footer-copy p {
  font-size: 12px;
  color: #555;
  margin: 0 0 6px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}
.privacy-link {
  cursor: pointer;
  color: #FCAC45 !important;
}
.privacy-link:hover { text-decoration: underline; }


/* =============================================
   MODAL
   ============================================= */
.modal-header {
  background: #dcdcdc;
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}
.modal-header button { font-size: 60px; }
.modal-header .close { margin-top: -35px !important; }
.modal-footer {
  background: #dcdcdc;
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}
.modal-body { padding: 60px; font-size: 16px; }
.modal-dialog { width: 80%; border-radius: 20px; }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1199px) {
  .hero-heading { font-size: 46px; }
}

@media (max-width: 991px) {
  .hero-heading { font-size: 36px; }
  .hero-right { padding-left: 0; margin-top: 40px; }
  .about-content { padding-left: 30px; }
  .about-badge { bottom: -16px; right: -10px; }
  .contact-info-panel { flex: 0 0 45%; padding: 60px 36px; }
  .contact-form-panel { padding: 60px 36px; }
  .section-heading { font-size: 32px; }
}

@media (max-width: 767px) {
  #tf-home { padding-top: 90px; min-height: auto; }
  .hero-row { padding: 50px 0 60px; }
  .hero-heading { font-size: 30px; }
  .hero-desc { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .btn-solid, .btn-ghost { text-align: center; display: block; }
  #tf-stats { padding: 40px 0; }
  .stat-number { font-size: 38px; }
  #tf-about { padding: 70px 0; }
  .about-row { display: block; }
  .about-content { padding-left: 0; margin-top: 48px; }
  .about-badge { display: none; }
  .section-heading { font-size: 26px; }
  .section-header { margin-bottom: 36px; }
  #tf-services { padding: 70px 0; }
  .contact-split { flex-direction: column; }
  .contact-info-panel { flex: none; width: 100%; padding: 52px 28px; }
  .contact-form-panel { padding: 52px 28px; }
  #footer { padding: 36px 0 24px; }
  .footer-copy { text-align: left !important; margin-top: 24px; }
  .footer-links ul { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 26px; }
  .contact-info-panel,
  .contact-form-panel { padding: 40px 20px; }
}
