/* ======================================================
   FLUZ COIN — Custom Theme Stylesheet
   Overrides & extensions for the new --em / --teal palette
   and all fc-* class names.
   Load order: after style.css and color.css
   ====================================================== */

/* -------------------------------------------------------
   0. CSS VARIABLES  (mirrors style.css root declarations)
------------------------------------------------------- */
:root {
  --bg:         #130F1C;
  --bg2:        #1A1428;
  --bg3:        #221A33;
  --bg4:        #2C2242;
  --em:         #FFB23E;
  --em-dim:     rgba(255,178,62,.13);
  --em-glow:    rgba(255,178,62,.34);
  --teal:       #9B6DFF;
  --teal-dim:   rgba(155,109,255,.13);
  --light:      #F6F0FF;
  --text:       #C9BEDB;
  --muted:      #7A6E92;
  --border:     rgba(255,178,62,.15);
  --border-hi:  rgba(255,178,62,.36);
  --success:    #4ADE80;
  --danger:     #FF5D73;
  --warn:       #FFC24B;
  --nav-h:      68px;
  --rad:        10px;
  --rad-lg:     18px;
  --rad-sm:     6px;
  --fdisp:      'Bricolage Grotesque','Hanken Grotesk',sans-serif;
  --fbody:      'Hanken Grotesk',system-ui,sans-serif;
  --fmono:      'IBM Plex Mono',ui-monospace,monospace;
  --tr:         0.24s cubic-bezier(.4,0,.2,1);
  --glow:       0 0 40px rgba(255,178,62,.18);
  --card-sh:    0 8px 40px rgba(0,0,0,.35);
}

/* -------------------------------------------------------
   1. GLOBAL RESET OVERRIDES — typography & base colours
------------------------------------------------------- */
html { scroll-behavior: smooth; }

body,
.fc-wrapper {
  font-family: var(--fbody);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body p,
.fc-wrapper p {
  font-family: var(--fbody);
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fdisp);
  color: var(--light);
  letter-spacing: -.02em;
}

a { transition: color var(--tr); }

code, pre, .fc-mono {
  font-family: var(--fmono);
}

/* bg-color-1 override */
.bg-color-1 { background: var(--bg2) !important; }

/* -------------------------------------------------------
   2. PRELOADER
------------------------------------------------------- */
.preloader { background: var(--bg); }
.preloader-close { background: var(--em); }

/* -------------------------------------------------------
   3. HEADER — fc-header
------------------------------------------------------- */
.fc-header,
.main-header.style-one {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,.45);
}

.fc-header__lower { background: transparent; }

/* Logo */
.fc-logo img { height: 44px; width: auto; }

/* Navigation links */
.fc-main-nav .fc-navigation > li > a,
.main-header.style-one .main-menu .navigation > li > a {
  font-family: var(--fbody);
  line-height: 1!important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--text);
  text-transform: uppercase;
  padding: 0 18px;
  /* line-height: var(--nav-h); */
  transition: color var(--tr);
}

.main-header.style-one .main-menu .navigation > li > a:before{
  bottom: -10px;
}

.fc-main-nav .fc-navigation > li > a:hover,
.fc-main-nav .fc-navigation > li.current > a,
.main-header.style-one .main-menu .navigation > li:hover > a,
.main-header.style-one .main-menu .navigation > li.current > a {
  color: var(--em) !important;
}

.main-header.style-one .main-menu .navigation > li > a:before {
  background: var(--em);
}

/* CTA button in header */
.fc-cta-btn .theme-btn,
.main-header.style-one .header-lower .menu-right-content .btn-box .theme-btn {
  background: var(--em);
  color: var(--bg) !important;
  font-family: var(--fbody);
  font-weight: 700;
  border-radius: var(--rad-sm);
  padding: 10px 26px;
  font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 0 0 18px var(--em-glow);
}

.fc-cta-btn .theme-btn:hover,
.main-header.style-one .header-lower .menu-right-content .btn-box .theme-btn:hover {
  box-shadow: 0 0 32px var(--em-glow);
  opacity: .9;
}

/* Hamburger / sidebar icon */
.fc-sidebar-btn,
.main-header.style-one .header-lower .menu-right-content .nav-btn {
  color: var(--text);
}

.main-header.style-one .header-lower .menu-right-content .nav-btn{
  top: -5px;
}
.fc-sidebar-btn:hover,
.main-header.style-one .header-lower .menu-right-content .nav-btn:hover {
  color: var(--em);
}

/* Mobile menu */
.fc-mobile-menu .menu-box,
.mobile-menu .menu-box {
  background: var(--bg2);
}
.fc-mobile-menu .menu-backdrop,
.mobile-menu .menu-backdrop { background: rgba(19,15,28,.85); }

/* Sticky header */
.sticky-header { background: var(--bg2); border-bottom: 1px solid var(--border); }
.fixed-header .sticky-header { box-shadow: 0 4px 20px rgba(0,0,0,.5); }
.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
  color: var(--em) !important;
}

/* Mobile toggler bars */
.fc-mobile-toggler .icon-bar,
.mobile-nav-toggler .icon-bar { background: var(--text); }

/* Dropdown menus */
.main-menu .navigation > li > ul,
.main-menu .navigation > li > ul > li > ul {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  box-shadow: var(--card-sh);
}
.main-menu .navigation > li > ul > li > a {
  color: var(--text);
  font-family: var(--fbody);
}
.main-menu .navigation > li > ul > li > a:hover { color: var(--em); }

/* -------------------------------------------------------
   4. SCROLL-TO-TOP BUTTON
------------------------------------------------------- */
.scroll-top { background: var(--em); border-radius: 50%; }
.scroll-top:hover { background: var(--teal); box-shadow: 0 0 18px var(--em-glow); }

/* -------------------------------------------------------
   5. GLOBAL SECTION TITLE — sec-title
------------------------------------------------------- */
.sec-title h5 {
  font-family: var(--fmono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--em);
}
.sec-title h5:before,
.sec-title h5:after { background: var(--em); }
.sec-title h2 {
  font-family: var(--fdisp);
  font-weight: 700;
  color: var(--light);
}
.sec-title p { color: var(--text); }

/* -------------------------------------------------------
   6. THEME BUTTON — global override
------------------------------------------------------- */
.theme-btn { font-family: var(--fbody); }
.theme-btn.style-one {
  background: var(--em);
  color: var(--bg) !important;
  border-radius: var(--rad-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 0 0 18px var(--em-glow);
  overflow: hidden;
}
.theme-btn.style-one:hover { opacity: .88; box-shadow: 0 0 32px var(--em-glow); color: #fff!important; }
.theme-btn.style-one:before { background: var(--teal); opacity: .25; }
.theme-btn.style-one:after  { background: var(--bg4); }


/* -------------------------------------------------------
   7. HERO BANNER — fc-hero
------------------------------------------------------- */
.fc-hero,
.banner-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

/* dark overlay over banner bg images */
.fc-hero .image-layer::after,
.banner-section .slide-item .image-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(19,15,28,.88) 38%, rgba(19,15,28,.45) 100%);
}

.fc-hero__content h2 {
  font-family: var(--fmono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--em);
  margin-bottom: 12px;
}
.fc-hero__content h1,
.banner-section .content-box h1 {
  font-family: var(--fdisp);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--light);
  margin-bottom: 20px;
}
.fc-hero__text p,
.banner-section .content-box .text p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
}

/* Form wrapper inside banner */
.fc-form-wrapper,
.ai-wrapper-form {
  background: var(--bg3);
  border: 1px solid var(--border-hi);
  border-radius: var(--rad-lg);
  padding: 36px 32px;
  box-shadow: var(--card-sh);
}

/* -------------------------------------------------------
   8. STATS COUNTERS — fc-stats / fun-fact
------------------------------------------------------- */
.fc-stats,
.fun-fact {
  background: var(--bg2);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fc-counter,
.fun-fact .counter-block-one {
  position: relative;
  text-align: center;
  padding: 32px 20px;
}

.fc-counter .count-outer,
.fun-fact .count-outer {
  font-family: var(--fdisp);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--em);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.fc-counter p,
.fun-fact .counter-column p {
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* divider between counters */
.fc-counter::after,
.fun-fact .counter-column::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border);
}
.fc-counter:last-child::after,
.fun-fact .counter-column:last-child::after { display: none; }

/* -------------------------------------------------------
   9. SERVICES SECTION — fc-services / service-section
------------------------------------------------------- */
.fc-services.service-section { background: var(--bg2); padding: 100px 0; }

.fc-service-card,
.service-block-one .inner-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 36px 30px;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  height: 100%;
}

.service-block{
  margin-bottom: 20px;
}

.fc-about__features .single-item h4{
  min-width: 200px;
}

.project-block-one .inner-box .image-box img{
    height: 450px;
    object-fit: cover;
}

.fc-howitworks.project-section, .project-section{
  padding: 40px 0;
}

.fc-service-card .inner-box{
  margin: 0!important;
}
.fc-service-card:hover,
.service-block-one .inner-box:hover {
  border-color: var(--border-hi);
  box-shadow: 0 0 40px var(--em-dim), var(--card-sh);
  transform: translateY(-4px);
}

.service-block-one .inner-box h4 {
  font-family: var(--fdisp);
  font-size: 18px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 0;
}
.service-block-one .inner-box h4 a { color: var(--light); }
.service-block-one .inner-box h4 a:hover { color: var(--em); }

.service-block-one .inner-box .inner { padding-top: 100px; padding-left: 0; }

.service-block-one .inner-box .inner .icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--rad);
  background: var(--em-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.service-block-one .inner-box .inner .icon-box i {
  font-size: 24px;
  background: linear-gradient(135deg, var(--em), var(--teal)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.service-block-one .inner-box .inner p { color: var(--text); font-size: 14px; }

.service-block-one .inner-box .inner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--em);
}
.service-block-one .inner-box .inner a i { color: var(--em); }
.service-block-one .inner-box .inner a:hover { color: var(--teal); }
.service-block-one .inner-box .inner a:hover span { color: var(--teal); border-color: var(--teal); }
.service-block-one .inner-box .inner a span { border-bottom: 1px solid var(--em); color: var(--em); }

/* first three cards get top-border accent */
.service-section .inner-content .service-block:nth-child(-n+3) .service-block-one .inner-box {
  border-top: 2px solid var(--em);
  margin-right: 0!important;
}

/* .service-block-one .inner-box .inner .icon-box:before{
  background: #FFB23E;
} */

/* -------------------------------------------------------
   10. ABOUT SECTION — fc-about / about-section
------------------------------------------------------- */
.fc-about.about-section,
.about-section { background: var(--bg); padding: 100px 0; }

.about-section .video-inner .image-box::before {
  background: linear-gradient(135deg, rgba(155,109,255,.35), rgba(255,178,62,.18));
}
.about-section .video-inner .video-btn a {
  background: var(--em);
  color: var(--bg);
  box-shadow: 0 0 24px var(--em-glow);
}
.about-section .video-inner .video-btn a:before { background: var(--em); }

/* About feature items */
#content_block_one .content-box .inner-box .single-item,
.fc-about__features .single-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
#content_block_one .content-box .inner-box .single-item:last-child,
.fc-about__features .single-item:last-child { border-bottom: none; }

#content_block_one .content-box .inner-box .single-item .icon-box,
.fc-about__features .single-item .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: var(--rad);
  background: var(--teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
#content_block_one .content-box .inner-box .single-item .icon-box i,
.fc-about__features .single-item .icon-box i {
  font-size: 22px;
  background: linear-gradient(135deg, var(--teal), var(--em)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

#content_block_one .content-box .inner-box .single-item h4,
.fc-about__features .single-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 6px;
}
#content_block_one .content-box .inner-box .single-item h4 a,
.fc-about__features .single-item h4 a { color: var(--light); }
#content_block_one .content-box .inner-box .single-item h4 a:hover,
.fc-about__features .single-item h4 a:hover { color: var(--em); }
#content_block_one .content-box .inner-box .single-item p,
.fc-about__features .single-item p { color: var(--text); font-size: 14px; }

/* -------------------------------------------------------
   11. HOW IT WORKS — project-section / fc-howitworks
------------------------------------------------------- */
.fc-howitworks.project-section,
.project-section { background: var(--bg3); }

.project-block-one .inner-box {
  background: var(--bg4);
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.project-block-one .inner-box:hover {
  border-color: var(--border-hi);
  box-shadow: 0 0 36px var(--em-dim);
}
.project-block-one .inner-box .lower-content {
  background: var(--bg4);
  padding: 28px 30px 32px;
}
.project-block-one .inner-box .lower-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 12px;
}
.project-block-one .inner-box .lower-content h2 a { color: var(--light); }
.project-block-one .inner-box .lower-content h2 a:hover { color: var(--em); }
.project-block-one .inner-box .lower-content p { color: var(--text); font-size: 14px; }
.project-block-one .inner-box .lower-content p:before { background: var(--em); }

/* -------------------------------------------------------
   12. PERFORMANCE STATS — annual-stats / fc-performance
------------------------------------------------------- */
.fc-performance.annual-stats,
.annual-stats { background: var(--bg); padding: 100px 0; }

.annual-stats #content_block_two .content-box .text p,
#fc_content_stats .content-box .text p { color: var(--text); }

/* Piechart labels */
.annual-stats .single-progress-box h5 { color: var(--muted); font-size: 13px; }
.annual-stats .single-progress-box h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--light);
}

/* Award box */
#image_block_one .image-box .award-box .box,
#fc_image_stats .image-box .award-box .box {
  background: linear-gradient(-90deg, var(--em), var(--teal) 100%);
  border-radius: var(--rad);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#image_block_one .image-box .award-box .box span,
#fc_image_stats .image-box .award-box .box span {
  font-size: 13px;
  font-weight: 700;
  color: var(--bg);
  font-family: var(--fbody);
}

/* Pattern layer tint */
.annual-stats .image-box .pattern-layer { opacity: .08; }

/* -------------------------------------------------------
   13. GLOBAL COMMUNITY — world-cyber / fc-community
------------------------------------------------------- */
.fc-community.world-cyber,
.world-cyber { background: var(--bg2); padding: 90px 0; overflow: hidden; }

.world-cyber .pattern-layer { opacity: .04; }
.world-cyber .sec-title h5 { color: var(--em); }
.world-cyber .sec-title h2 { color: var(--light); }

.world-cyber .office-location .location-area .location-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 18px 16px;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.world-cyber .office-location .location-area .location-box:hover {
  border-color: var(--border-hi);
  box-shadow: 0 0 28px var(--em-dim);
  transform: translateY(-3px);
}
.world-cyber .office-location .location-area .location-box:before { background: var(--em); }
.world-cyber .office-location .location-area .location-box:hover:before { background: var(--teal); }

.world-cyber .office-location .location-area .location-box .address-box .icon-box {
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-hi);
  box-shadow: 0 0 12px var(--em-glow);
}
.world-cyber .office-location .location-area .location-box .address-box p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
}
.world-cyber .office-location .location-area .location-box .address-box p b { color: var(--light); }

/* -------------------------------------------------------
   14. TESTIMONIALS — fc-testimonials / testimonial-section
------------------------------------------------------- */
.fc-testimonials.testimonial-section,
.testimonial-section { position: relative; padding: 100px 0; }
.testimonial-section:before { background: rgba(19,15,28,.88); }

.testimonial-section .testimonial-block { padding: 40px 0; }
.testimonial-section .testimonial-block p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--light);
  font-style: italic;
}

/* Quote mark */
.testimonial-section .testimonial-block:before {
  content: '\201C';
  font-family: var(--fdisp);
  font-size: 80px;
  color: var(--em);
  opacity: .35;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
}

/* Thumb items */
.testimonial-section .client-thumb-outer .client-thumbs-carousel .thumb-item {
  cursor: pointer;
  opacity: .5;
  transition: opacity var(--tr);
}
.testimonial-section .owl-item.active .thumb-item { opacity: 1; }
.testimonial-section .owl-item.active .thumb-item .thumb-box {
  border: 2px solid var(--em);
  box-shadow: 0 0 18px var(--em-glow);
}
.testimonial-section .client-thumb-outer .client-thumbs-carousel .thumb-item .thumb-box {
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.testimonial-section .owl-item .thumb-item .info-box h5 {
  color: var(--light);
  font-size: 15px;
  font-weight: 700;
}
.testimonial-section .owl-item .thumb-item .info-box .designation {
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--em);
  text-transform: uppercase;
}

.testimonial-section .client-thumb-outer .owl-theme .owl-dots .owl-dot.active span,
.testimonial-section .client-thumb-outer .owl-theme .owl-dots .owl-dot span:hover {
  background: var(--em);
}

.testimonial-section .title-box { margin-bottom: 50px; }

/* -------------------------------------------------------
   15. EXPERTS / NEWS SECTION — fc-experts / news-section
------------------------------------------------------- */
.fc-experts.news-section { background: var(--bg3); padding: 100px 0; }

.fc-expert-card,
.news-block-one .inner-box {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  height: 100%;
}
.fc-expert-card:hover,
.news-block-one .inner-box:hover {
  border-color: var(--border-hi);
  box-shadow: 0 0 36px var(--em-dim);
  transform: translateY(-4px);
}
.news-block-one .inner-box .image-box { overflow: hidden; }
.news-block-one .inner-box .image-box img {
  width: 100%;
  object-fit: cover;
  height: 220px;
  transition: transform .6s ease;
}
.news-block-one .inner-box:hover .image-box img { transform: scale(1.04); }

.news-block-one .inner-box .lower-content {
  padding: 24px 26px 28px;
  background: var(--bg4);
}
.news-block-one .inner-box .lower-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 12px;
}
.news-block-one .inner-box .lower-content h3 a { color: var(--light); }
.news-block-one .inner-box .lower-content h3 a:hover { color: var(--em); }
.news-block-one .inner-box .lower-content p { color: var(--text); font-size: 14px; line-height: 1.7; }
.news-block-one .inner-box .lower-content .link a i { color: var(--em); }
.news-block-one .inner-box .lower-content .link a span { color: var(--text); }
.news-block-one .inner-box .lower-content .link a:hover span { color: var(--em); border-color: var(--em); }

/* -------------------------------------------------------
   16. PARTNER LOGOS — fc-partners / clients-section
------------------------------------------------------- */
.fc-partners.clients-section,
.clients-section {
  background: var(--bg2);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-section .client-logo img {
  filter: brightness(0) invert(1);
  opacity: .35;
  transition: opacity var(--tr), filter var(--tr);
  max-height: 36px;
}
.clients-section .client-logo:hover img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(72%) sepia(52%) saturate(600%) hue-rotate(5deg);
}

/* -------------------------------------------------------
   17. CTA BANNER — fc-cta / cta-section
------------------------------------------------------- */
.fc-cta.cta-section,
.cta-section {
  background: linear-gradient(100deg, var(--bg3) 0%, var(--bg4) 100%);
  border-top: 1px solid var(--border-hi);
  border-bottom: 1px solid var(--border-hi);
  padding: 60px 0;
}
.cta-section .pattern-layer { opacity: .06; }
.cta-section .title h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--light);
}
.cta-section .btn-box a {
  display: inline-block;
  background: var(--em);
  color: var(--bg) !important;
  font-family: var(--fbody);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--rad-sm);
  box-shadow: 0 0 24px var(--em-glow);
  transition: all var(--tr);
}
.cta-section .btn-box a:hover {
  background: var(--teal);
  box-shadow: 0 0 32px rgba(155,109,255,.4);
  color: var(--light) !important;
}
.cta-section .btn-box a:before,
.cta-section .btn-box a:after { display: none; }

/* -------------------------------------------------------
   18. SIGN-UP / SUPPORT SECTION — fc-signup / support-section
------------------------------------------------------- */
.fc-signup-section,
.support-section { background: var(--bg2); padding: 100px 0; }

.fc-signup-inner,
.support-section .inner-container {
  background: var(--bg3);
  border: 1px solid var(--border-hi);
  border-radius: var(--rad-lg);
  padding: 60px;
  box-shadow: 0 0 60px rgba(255,178,62,.08);
}

.fc-signup-box,
.support-section .inner-container .inner-box { padding: 0; }

.fc-visual-img img,
.support-section .inner-container .info-inner .image-box img {
  border-radius: var(--rad-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--card-sh);
}

/* -------------------------------------------------------
   19. FOOTER — fc-footer / main-footer
------------------------------------------------------- */
.fc-footer,
.main-footer { background: var(--bg); border-top: 1px solid var(--border); }

.fc-footer__disclaimer,
.main-footer .footer-disclaimer {
  background: var(--bg2);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.fc-disclaimer-text p,
.main-footer .footer-disclaimer .text-box p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}

.fc-footer__top,
.main-footer .footer-top { padding: 70px 0 40px; }

/* Footer logo */
.fc-footer-logo img { height: 38px; width: auto; margin-bottom: 24px; }

/* Contact list */
.fc-contact-list li,
.main-footer .widget-section .logo-widget .info-list li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fc-contact-list li i,
.main-footer .widget-section .logo-widget .info-list li i { color: var(--em); flex-shrink: 0; margin-top: 4px; }
.fc-contact-list li a,
.main-footer .widget-section .logo-widget .info-list li a { color: var(--text); }
.fc-contact-list li a:hover,
.main-footer .widget-section .logo-widget .info-list li a:hover { color: var(--em); }

/* Widget headings */
.fc-widget-title h4,
.main-footer .widget-section .footer-widget .widget-title h4 {
  font-family: var(--fbody);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.main-footer .widget-section .footer-widget .widget-title h4:before { background: var(--em); }

/* Footer links */
.fc-footer-links li,
.main-footer .widget-section .links-widget .widget-content ul li {
  padding: 5px 0;
}
.fc-footer-links li:before,
.main-footer .widget-section .links-widget .widget-content ul li:before {
  color: var(--em);
  content: '→ ';
  font-size: 12px;
}
.fc-footer-links li a,
.main-footer .widget-section .links-widget .widget-content ul li a {
  color: var(--text);
  font-size: 14px;
  transition: color var(--tr), padding-left var(--tr);
}
.fc-footer-links li a:hover,
.main-footer .widget-section .links-widget .widget-content ul li a:hover {
  color: var(--em);
  padding-left: 4px;
}

/* Footer bottom bar */
.fc-footer__bottom,
.main-footer .footer-bottom {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.fc-copyright p,
.main-footer .footer-bottom .copyright p {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* -------------------------------------------------------
   20. PAGE TITLE BARS — fc-page-title / page-title
------------------------------------------------------- */
.fc-page-title,
.page-title {
  position: relative;
  padding: 90px 0 70px;
  background-color: var(--bg3) !important;
  background-blend-mode: multiply;
}
.fc-page-title::before,
.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(19,15,28,.75);
}
.fc-page-title h1,
.page-title .content-box h1 {
  font-family: var(--fdisp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--light);
}
.fc-page-title .bread-crumb,
.page-title .content-box .bread-crumb {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.page-title .content-box .bread-crumb li { color: var(--muted); font-size: 14px; }
.page-title .content-box .bread-crumb li a { color: var(--text); }
.page-title .content-box .bread-crumb li a:hover { color: var(--em); }

/* -------------------------------------------------------
   21. INFO SECTION — fc-info / info-section (About page)
------------------------------------------------------- */
.fc-info.info-section,
.info-section { background: var(--bg); padding: 80px 0; }

.info-section .title-inner .year-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.info-section .title-inner .year-box h2 {
  font-size: 5rem;
  font-weight: 700;
  color: var(--em);
  line-height: 1;
}
.info-section .title-inner .title h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.2;
}
.info-section .title-inner .title h2 span { color: var(--em); }
.info-section .text-column .text p { color: var(--text); font-size: 15px; line-height: 1.75; }
.info-section .text-column .text a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--em);
  letter-spacing: .04em;
}
.info-section .text-column .text a i { color: var(--em); }
.info-section .text-column .text a:hover span { color: var(--teal); border-color: var(--teal); }

/* -------------------------------------------------------
   22. ABOUT STYLE TWO — tabs (About page)
------------------------------------------------------- */
.fc-about-detail.about-style-two,
.about-style-two { background: var(--bg2); padding: 100px 0; }

.tabs-box .tab-btn-box .tab-btns { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 30px; }
.tabs-box .tab-btn-box .tab-btns li {
  font-family: var(--fbody);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 9px 22px;
  border-radius: var(--rad-sm);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--tr);
}
.tabs-box .tab-btn-box .tab-btns li:before { background: var(--em); }
.tabs-box .tab-btn-box .tab-btns li.active-btn,
.tabs-box .tab-btn-box .tab-btns li:hover {
  border-color: var(--em);
  color: var(--em);
  background: var(--em-dim);
}
.tabs-box .tabs-content .content-inner p { color: var(--text); font-size: 15px; line-height: 1.75; }
.tabs-box .tabs-content .content-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: var(--em);
  font-size: 14px;
}
.tabs-box .tabs-content .content-inner a i { color: var(--em); }
.tabs-box .tabs-content .content-inner a:hover span { color: var(--teal); border-color: var(--teal); }

/* About image block */
#fc_about_image .image-box .content-box,
#image_block_two .image-box .content-box {
  background: var(--bg4);
  border: 1px solid var(--em);
  border-left: 4px solid var(--em);
  border-radius: var(--rad);
  padding: 18px 20px;
}
#image_block_two .image-box .content-box i { color: var(--em); font-size: 22px; margin-bottom: 8px; display: block; }
#image_block_two .image-box .content-box h4 { font-size: 15px; font-weight: 700; color: var(--light); }
#image_block_two .image-box .content-box h5 { font-size: 13px; color: var(--muted); margin-top: 4px; }
#image_block_two .image-box .content-box h5 a { color: var(--em); }
#image_block_two .image-box .content-box h5 a:hover { color: var(--teal); }

/* -------------------------------------------------------
   23. ABOUT PAGE STATS — funfact-style-four
------------------------------------------------------- */
.fc-about-stats.funfact-style-four,
.funfact-style-four { background: var(--bg3); padding: 80px 0; }

.funfact-style-four .counter-block-four {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
}
.funfact-style-four .counter-column:last-child .counter-block-four { border-right: none; }

.funfact-style-four .counter-block-four .count-outer {
  font-family: var(--fdisp);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--em);
  display: block;
  margin-bottom: 10px;
}
.funfact-style-four .counter-block-four h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
  font-family: var(--fbody);
}

/* -------------------------------------------------------
   24. CONTACT INFORMATION — fc-contact / contact-information
------------------------------------------------------- */
.fc-contact.contact-information,
.contact-information { background: var(--bg); padding: 100px 0; }

.contact-information .single-item .inner-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--tr);
}
.contact-information .single-item .inner-box:hover {
  border-color: var(--border-hi);
  box-shadow: 0 0 30px var(--em-dim);
  transform: translateY(-4px);
}
.contact-information .single-item .inner-box .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--em-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-information .single-item .inner-box .icon-box i {
  font-size: 26px;
  background: linear-gradient(135deg, var(--em), var(--teal)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.contact-information .single-item .inner-box:hover .icon-box i {
  background: linear-gradient(135deg, var(--teal), var(--em)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.contact-information .single-item .inner-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 10px;
}
.contact-information .single-item .inner-box p { color: var(--text); font-size: 15px; }
.contact-information .single-item .inner-box p a { color: var(--em); }
.contact-information .single-item .inner-box p a:hover { color: var(--teal); }

/* -------------------------------------------------------
   25. OVERVIEW / BLOG DETAILS — sidebar-page-container
------------------------------------------------------- */
.fc-overview.sidebar-page-container,
.sidebar-page-container { background: var(--bg); padding: 80px 0; }

.blog-details-content { color: var(--text); }

.blog-details-content .image-box { position: relative; border-radius: var(--rad-lg); overflow: hidden; margin-bottom: 40px; }
.blog-details-content .image-box img { border-radius: var(--rad-lg); }
.blog-details-content .image-box .category {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--em);
  color: var(--bg);
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--rad-sm);
  font-weight: 600;
}

.blog-details-content .inner-box { color: var(--text); }
.blog-details-content .inner-box h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 20px;
  line-height: 1.25;
}
.blog-details-content .inner-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.blog-details-content .inner-box h5 {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}
.blog-details-content .inner-box p { color: var(--text); font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.blog-details-content .inner-box strong { color: var(--light); }
.blog-details-content .inner-box blockquote {
  border-left: 4px solid var(--em);
  padding: 20px 24px;
  background: var(--bg3);
  border-radius: 0 var(--rad) var(--rad) 0;
  margin: 28px 0;
}

/* FAQ items */
.blog-details-content .inner-box .text p strong {
  color: var(--em);
  font-family: var(--fbody);
}

/* -------------------------------------------------------
   26. SIDEBAR PANEL — xs-sidebar-group
------------------------------------------------------- */
.xs-sidebar-group .xs-sidebar-widget { background: var(--bg2); border-left: 1px solid var(--border); }
.xs-sidebar-group .xs-overlay { background: rgba(19,15,28,.85); }
.xs-sidebar-group .widget-heading a.close-side-widget {
  color: var(--muted);
  font-size: 18px;
}
.xs-sidebar-group .widget-heading a.close-side-widget:hover { color: var(--em); }

/* -------------------------------------------------------
   27. SEARCH POPUP
------------------------------------------------------- */
.search-popup { background: rgba(19,15,28,.96); }
.search-popup .search-form fieldset input[type="search"] {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--light);
  border-radius: var(--rad-sm);
}
.search-popup .search-form fieldset input[type="submit"] { background: var(--em); }

/* -------------------------------------------------------
   28. UTILITY / MISC
------------------------------------------------------- */

/* Breadcrumbs separator */
.bread-crumb li + li::before {
  content: '/';
  margin: 0 6px;
  color: var(--muted);
}

/* OWL carousel nav dots */
.owl-theme .owl-dots .owl-dot span {
  background: var(--bg4);
  border: 1px solid var(--border);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot span:hover {
  background: var(--em);
  border-color: var(--em);
}

/* Owl nav arrows */
.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--rad-sm);
}
.owl-theme .owl-nav .owl-prev:hover,
.owl-theme .owl-nav .owl-next:hover {
  background: var(--em);
  border-color: var(--em);
  color: var(--bg);
}

/* Piechart value labels */
.piechart span {
  font-family: var(--fmono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--em);
}

/* WOW animation base */
.wow { visibility: hidden; }

/* -------------------------------------------------------
   29. RESPONSIVE OVERRIDES
------------------------------------------------------- */
@media (max-width: 1200px) {
  .fc-signup-inner,
  .support-section .inner-container { padding: 40px 30px; }
}

@media (max-width: 991px) {
  .fc-counter::after,
  .fun-fact .counter-column::after { display: none; }

  .fc-about__features .single-item,
  #content_block_one .content-box .inner-box .single-item { flex-direction: column; gap: 12px; }

  .funfact-style-four .counter-block-four { border-right: none; border-bottom: 1px solid var(--border); }
  .funfact-style-four .counter-column:last-child .counter-block-four { border-bottom: none; }

  .fc-signup-inner,
  .support-section .inner-container { padding: 36px 24px; }
}

@media (max-width: 767px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }

  .fc-hero__content h1,
  .banner-section .content-box h1 { font-size: 2rem; }

  .sec-title h2 { font-size: 1.7rem; }

  .fc-form-wrapper,
  .ai-wrapper-form { padding: 26px 20px; }

  .fc-cta.cta-section .fc-cta__inner,
  .cta-section .inner-container { flex-direction: column; gap: 24px; }

  .world-cyber .office-location .location-area .location-box {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .fc-footer__top,
  .main-footer .footer-top { padding: 50px 0 30px; }

  .fc-footer-col { margin-bottom: 32px; }
}

@media (max-width: 575px) {
  .fc-hero__content h1,
  .banner-section .content-box h1 { font-size: 1.7rem; }

  .annual-stats .inner-box { padding: 24px 16px; }

  .blog-details-content .inner-box h1 { font-size: 1.5rem; }
  .blog-details-content .inner-box h2 { font-size: 1.25rem; }
}

/* -------------------------------------------------------
   30. JS-DRIVEN COMPONENTS (fluzcoin.js)
------------------------------------------------------- */

/* --- Particle canvas sits behind content --- */
#fc-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.fc-hero .auto-container,
.banner-section .auto-container { position: relative; z-index: 2; }

/* --- Sticky header transition --- */
.fc-header,
.main-header { transition: background var(--tr), box-shadow var(--tr); }
.fc-header.fixed-header,
.main-header.fixed-header {
  background: rgba(19,15,28,.97) !important;
  box-shadow: 0 2px 32px rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* --- Scroll-to-top --- */
.scroll-top {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr), transform var(--tr), opacity var(--tr);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
}
.scroll-top.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--teal) !important; transform: translateY(-3px); }

/* --- Reading progress bar --- */
#fc-reading-bar { pointer-events: none; }

/* --- Reveal on scroll --- */
.fc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fc-reveal.fc-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for sibling reveals */
.fc-reveal:nth-child(2) { transition-delay: .1s; }
.fc-reveal:nth-child(3) { transition-delay: .2s; }
.fc-reveal:nth-child(4) { transition-delay: .3s; }

/* --- Cookie consent banner --- */
#fc-cookie-banner a:hover { opacity: .8; }
#fc-cookie-ok:hover { opacity: .85; }

/* --- Tooltip --- */
.fc-tooltip {
  animation: fcFadeIn .15s ease;
}
@keyframes fcFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Form UX --- */
.fc-field { position: relative; margin-bottom: 20px; }
.fc-field label {
  position: absolute;
  top: 14px; left: 16px;
  font-size: 14px;
  color: var(--muted);
  pointer-events: none;
  transition: all var(--tr);
  font-family: var(--fbody);
}
.fc-field--active label,
.fc-field input:focus ~ label,
.fc-field textarea:focus ~ label {
  top: -10px; left: 12px;
  font-size: 11px;
  color: var(--em);
  background: var(--bg3);
  padding: 0 6px;
}
.fc-field input,
.fc-field textarea {
  width: 100%;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  color: var(--light);
  padding: 14px 16px;
  font-family: var(--fbody);
  font-size: 14px;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.fc-field input:focus,
.fc-field textarea:focus {
  outline: none;
  border-color: var(--em);
  box-shadow: 0 0 0 3px var(--em-dim);
}
.fc-field--error input,
.fc-field--error textarea {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(255,93,115,.15) !important;
}

/* --- Typewriter cursor --- */
.fc-typewriter::after {
  content: '|';
  margin-left: 2px;
  color: var(--em);
  animation: fcBlink .7s step-end infinite;
}
@keyframes fcBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* --- Ticker number --- */
.fc-ticker {
  font-family: var(--fmono);
  font-variant-numeric: tabular-nums;
  color: var(--em);
}

/* --- Toast notifications --- */
.fc-toast { animation: fcSlideIn .3s ease; }
@keyframes fcSlideIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}

/* --- Card tilt (disable on touch) --- */
@media (hover: none) {
  .location-box,
  .fc-service-card,
  .service-block-one .inner-box {
    transform: none !important;
  }
}

/* --- Mobile menu visible state --- */
body.mobile-menu-visible .fc-mobile-menu,
body.mobile-menu-visible .mobile-menu { right: 0 !important; }
.fc-mobile-menu,
.mobile-menu { transition: right .35s cubic-bezier(.4,0,.2,1); }

.main-header .header-lower .menu-right-content{
  display: flex;
  align-items: center;
}