/* oXFLARE Technologies — design enhancements layered on top of the base theme */

/* ---------- Hero banners: colourful gradient wash + subtle grid pattern ---------- */
.inner-banner{ position: relative; overflow: hidden; }
.inner-banner::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(115deg, rgba(138,20,20,.88) 0%, rgba(185,28,28,.55) 45%, rgba(28,16,16,.35) 100%);
  z-index: 1;
}
.inner-banner::after{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 1;
  opacity: .5;
}
.inner-banner .container{ position: relative; z-index: 2; }
.inner-banner-content h1{ text-shadow: 0 2px 18px rgba(0,0,0,.35); }

/* ---------- Card hover-lift, everywhere ---------- */
.trand-details,
.career-infos,
.induscard-realtive .card,
.client_logo_box,
.client-boxs,
.careerSec{
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.trand-details:hover,
.career-infos:hover,
.induscard-realtive .card:hover,
.careerSec:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(138,20,20,.16);
  border-color: #b91c1c;
}
.client_logo_box:hover{
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(138,20,20,.18);
}

/* image zoom-on-hover for banner/thumbnail imagery */
.hover-zoom{ overflow: hidden; display:block; }
.hover-zoom img{ transition: transform .6s ease; }
.hover-zoom:hover img{ transform: scale(1.08); }
.trand-banner{ overflow: hidden; }
.trand-banner img{ transition: transform .6s ease; }
.trand-details:hover .trand-banner img{ transform: scale(1.06); }

/* ---------- Buttons: glow + lift ---------- */
.btn-blue, .btn.btn-primary, .btn.btn-secondary{
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-blue:hover, .btn.btn-primary:hover, .btn.btn-secondary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(185,28,28,.35);
}
.btn.btn-outline-grey{ transition: all .3s ease; }
.btn.btn-outline-grey:hover{ transform: translateY(-2px); box-shadow: 0 10px 20px rgba(185,28,28,.25); }

/* ---------- Gradient accent text ---------- */
.gradient-text{
  background: linear-gradient(90deg, #b91c1c 0%, #e63946 60%, #8a1414 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Stat numbers: subtle pop on view ---------- */
.stat-pop{ transition: transform .3s ease; }
.stat-pop:hover{ transform: scale(1.08); }

/* ---------- Pills / tags ---------- */
.btn-outline-grey.tag-pill{ transition: all .25s ease; cursor: default; }

/* ---------- Section dividers: subtle accent bar ---------- */
.section-head.accent-bar h3{ position: relative; display:inline-block; padding-bottom:14px; }
.section-head.accent-bar h3::after{
  content:"";
  position:absolute; left:50%; bottom:0; transform: translateX(-50%);
  width:70px; height:4px; border-radius:4px;
  background: linear-gradient(90deg, #b91c1c, #e63946);
}

/* ---------- Industry hover-flip cards (uses theme's existing industry_box_v2) ---------- */
.industry_box_v2_action{ cursor: default; }

/* ---------- Back to top button ---------- */
.BackToTop{
  position: fixed;
  display: flex; align-items:center; justify-content:center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  z-index: 999;
}
.BackToTop.show{ opacity: 1; visibility: visible; }
.BackToTop:hover{ transform: translateY(-4px) scale(1.05) !important; }

/* ---------- Logo marquee tuning ---------- */
.logo-item{ transition: transform .3s ease, box-shadow .3s ease; }
.logo-item:hover{ transform: translateY(-4px); box-shadow: 0 12px 26px rgba(138,20,20,.18); }

/* ---------- Nav link underline sweep ---------- */
.header .menu > ul > li > a:not(.btn-blue) > span{ position: relative; }

@media (max-width: 767px){
  .inner-banner::before{ background: linear-gradient(135deg, rgba(138,20,20,.9) 0%, rgba(28,16,16,.55) 100%); }
}

/* =========================================================
   TYPOGRAPHY BOOST — clearer, bigger text sitewide
   ========================================================= */
body{ font-size: 19px !important; line-height: 1.7 !important; }
p{ font-size: 18px; }
.font-14{ font-size: 16px !important; }
.font-16{ font-size: 18px !important; }
.font-18{ font-size: 20px !important; }
.font-20{ font-size: 22px !important; }
.career-infos p, .trand-details p, .stories-content p,
.contactForm_wrap p, .accordion-body, .terms_condition_pages p,
.terms_condition_pages li{ font-size: 18px !important; line-height: 1.65 !important; }
.career-infos h5, .trand-details h4, .induscard-realtive h5,
.industry_box_title h5{ font-size: 22px !important; }
.accordion_site .accordion-button{ font-size: 22px !important; }
.section-head p{ font-size: 19px !important; }
.inner-banner-content p{ font-size: 22px !important; }
label, .form-control{ font-size: 17px !important; }
@media (max-width: 767px){
  body{ font-size: 17px !important; }
  .inner-banner-content p{ font-size: 18px !important; }
}

/* =========================================================
   CONTACT INFO CARDS — fancy icon-circle cards
   ========================================================= */
.contact-info-card{
  background:#fff; border:1px solid #e5e5e5; border-radius:18px;
  padding:38px 22px; text-align:center; height:100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.contact-info-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(138,20,20,.16);
  border-color:#b91c1c;
}
.contact-icon-circle{
  width:74px; height:74px; border-radius:50%; margin:0 auto 18px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, #b91c1c 0%, #8a1414 100%);
  box-shadow: 0 12px 26px rgba(185,28,28,.35);
}
.contact-icon-circle i{ color:#fff; font-size:26px; }
.contact-info-card h5{ font-size:21px !important; margin-bottom:8px; }
.contact-info-card p{ margin-bottom:0; color:#4a4a4a; }

/* =========================================================
   FAQ — replace the mismatched fixed-height decorative panel
   with a clean auto-sizing card
   ========================================================= */
.FAQ_container::before{ content:none !important; }
.FAQ_container .faq-panel{
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
  border-radius: 20px;
  padding: 46px 42px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}
.accordion_site .accordion-item{ border-bottom:1px solid #e2e2e2 !important; }
.accordion_site .accordion-item:last-child{ border-bottom:none !important; }
@media (max-width: 767px){
  .FAQ_container .faq-panel{ padding: 30px 20px; }
}

