/* Nav Header Styles */
body{
    background:#050505;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

/* =========================
NAVBAR
========================= */

.premium-navbar{
    background:#080808;
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:18px 0;
    position:relative;
    z-index:999;
}

.navbar-brand{
    color:#fff !important;
    font-size:30px;
    font-weight:700;
    letter-spacing:-1px;
}

.nav-link{
    color:#b8b8b8 !important;
    font-size:15px;
    font-weight:500;
    padding:14px 18px !important;
    transition:.3s ease;
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-link .menu-indicator{
    font-size:11px;
    transition:.3s ease;
    opacity:.7;
}

.mega-dropdown:hover .menu-indicator{
    transform:rotate(180deg);
    opacity:1;
}
.nav-link:hover{
    color:#fff !important;
}

/* =========================
MEGA MENU
========================= */

.mega-dropdown{
    position:static;
}

.mega-menu{
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    background:#0b0b0b;

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s;

    border-top:1px solid rgba(255,255,255,0.08);
}

/* HOVER */

.mega-dropdown:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* =========================
LEFT PANEL
========================= */

.mega-left{
    background:#0c0c0c;
    border-right:1px solid rgba(255,255,255,0.08);
    padding:50px 35px;
    height:100%;
    position:relative;
}

.mega-left small{
    color:#8f8f8f;
    display:block;
    margin-bottom:28px;
    font-size:14px;
}

.mega-left h2{
    color:#fff;
    font-size:48px;
    line-height:1.1;
    letter-spacing:-2px;
    font-weight:500;
    max-width:300px;
}

.view-products{
    position:absolute;
    bottom:35px;
    left:35px;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

.view-products:hover{
    opacity:.8;
}

/* =========================
PRODUCT GRID
========================= */

.mega-products{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.product-box{
    min-height:300px;
    padding:35px;
    border-right:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);
    background:#0b0b0b;
    transition:.4s ease;
    cursor:pointer;
    overflow:hidden;
}

.product-box:hover{
    background:#111;
}

.product-box:hover .product-image{
    transform:translateY(-8px) scale(1.04);
}

.product-box:hover .menu-arrow{
    transform:translateX(6px);
}

.product-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:45px;
}

.product-logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-icon{
    width:18px;
    height:18px;
    background:#fff;
}

.product-logo h3{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin:0;
}

.menu-arrow{
    color:#888;
    font-size:24px;
    transition:.3s ease;
}

.product-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:25px;
}

.product-content p{
    color:#8f8f8f;
    font-size:18px;
    line-height:1.5;
    max-width:250px;
    margin:0;
}

/* IMAGE */

.product-image{
    width:220px;
    height:150px;
    position:relative;

    background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    #0d0d0d;

    background-size:24px 24px;

    border:1px solid rgba(255,255,255,0.08);

    transition:.6s cubic-bezier(.22,1,.36,1);
}

.product-image::before{
    content:"";
    position:absolute;
    width:48px;
    height:48px;
    background:#0b4cff;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    box-shadow:0 0 30px rgba(0,98,255,.65);
}

/* =========================
LINKS MENU
========================= */

.links-wrapper{
    padding:50px 40px;
}

.mega-links{
    list-style:none;
    padding:0;
    margin:0;
}

.mega-links li{
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.mega-links li a{
    display:block;
    padding:18px 0;
    color:#d1d1d1;
    text-decoration:none;
    font-size:20px;
    transition:.3s ease;
}

.mega-links li a:hover{
    color:#fff;
    transform:translateX(8px);
}

/* =========================
BOTTOM BAR
========================= */

.mega-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 35px;
    background:#0a0a0a;
}

.demo-link{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
}

.demo-link span{
    color:#8f8f8f;
    margin-left:10px;
}

.social-links{
    display:flex;
    gap:18px;
}

.social-links a{
    color:#8f8f8f;
    text-decoration:none;
    transition:.3s ease;
}

.social-links a:hover{
    color:#fff;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.mega-products{
    grid-template-columns:1fr;
}

}

@media(max-width:992px){

.mega-menu{
    position:relative;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
}

.mega-dropdown:hover .mega-menu{
    display:block;
}

.product-content{
    flex-direction:column;
    align-items:flex-start;
}

.product-image{
    width:100%;
}

.mega-left{
    min-height:280px;
}

}

@media(max-width:767px){

.mega-left h2{
    font-size:36px;
}

.product-logo h3{
    font-size:24px;
}

.product-content p{
    font-size:16px;
}

.mega-links li a{
    font-size:17px;
}

.mega-bottom{
    flex-direction:column;
    justify-content:center;
    gap:15px;
    height:auto;
    padding:25px;
}

}




/* Header Styles */
.custom-logo {
  width: 200px;
  height: auto;
}
#hero .col-md-7 * {
  will-change: transform, opacity, filter;
}
/* Footer style */
.footer-section {
  position: relative;
  overflow: hidden;
  background: #111;
}
border-text{
    -webkit-text-stroke: 1px #508e85;
    color: #0b0f14;
    font-size: 150px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    position: absolute;
    right: 0px;
}
/* Parallax background */
.footer-bg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f') center/cover no-repeat;
  opacity: 0.2;
  z-index: 1;
}

/* Content above bg */
.footer-content {
  position: relative;
  z-index: 2;
}

/* Links */
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Animation base */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}


/* header Styles */
/* Glass Header */
.glass-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(10,10,15,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

body {
  background: #0a0a0f;
  color: #fff;
}

/* Menu */
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.75);
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
}

.navbar-nav .nav-link:hover {
  color: #0cc8c9;
}

/* Cursor underline */
/* .nav-underline {
  position: absolute;
  bottom: 10px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #6a5cff, #00d4ff);
  transition: 0.3s;
} */
.nav-underline {
  position: absolute;
  bottom: 10px;
  height: 2px;
  width: 0;
  opacity: 0; /* 👈 important */
  background: linear-gradient(90deg, #6a5cff, #00d4ff);
  pointer-events: none;
}
/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
}

.mega-inner {
  background: rgba(15,15,20,0.95);
  backdrop-filter: blur(20px);
  padding: 50px;
}

.mega-parent.active .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* Mobile */
@media (max-width: 991px) {
  .mega-menu {
    position: static;
    display: none;
  }

  .mega-parent.active .mega-menu {
    display: block;
  }
}


/* home style */
/* Hero */
.hero-slider {
  position: relative;
  height: 100vh;
  padding: 150px;
  overflow: hidden;
  position: relative;
}

/* Background */
.hero-bg {
  position: absolute;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5,5,15,0.9), transparent);
}

/* Content */
/* .hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 700px;
  left:100px;
} */

/* Title */
.hero-title {
line-height: 65px;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: 1px;
}
span.hero-tag {
    color: #0dd2d3;
    display: block;
    padding-bottom: 20px;
}
h2.hero-desc.split-text {
line-height: 54px;
  text-align: left;
  font-size: 40px;
  color: #0cc8c9;
}
.hero-sub-text {
  font-size: 60px;
}
/* .hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
} */

/* Description */
.hero-desc span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

/* Cursor Spotlight */
.cursor-light {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,212,212,0.15), transparent);
  pointer-events: none;
  border-radius: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}


.premium-slider {
  overflow: hidden;
}


section.hero-slider-main {
    position: relative;
    height: 100vh;
    overflow: hidden;
    text-align: left;
    vertical-align: middle;
    display: flex;
    align-items: center;
}
|
section.hero-slider-main h2 {
        font-size: 2rem;
    }
    section.hero-slider-main h1 {
    font-size: 100px;
    font-weight: 600;
}

.akfa-section {
  padding: 100px 60px;
}

.card-container {
  display: flex;
  gap: 25px;
}

.akfa-card {
  flex: 1;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(180deg, #11161d, #0c1015);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s ease;
}

/* subtle right gradient like screenshot */
.akfa-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(255,255,255,0.05), transparent);
}

/* highlight card */
.akfa-card.highlight {
  background: linear-gradient(180deg, #1c2630, #111820);
}

/* text */
.akfa-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.akfa-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.more {
  position: absolute;
  bottom: 30px;
  color: #0dd2d3;
  font-weight: 500;
  letter-spacing: 1px;
}

/* hover effect */
.akfa-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.akfa-card.highlight {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.akfa-card.highlight:hover {
  transform: scale(1.05) translateY(-10px);

  box-shadow:
    0 0 40px rgba(0,255,255,0.4),
    0 0 80px rgba(122,0,255,0.3),
    0 30px 80px rgba(0,0,0,0.8);
}

.akfa-card:hover::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,255,255,0.35), transparent 70%);
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: 0.1s;
}


.text-revele h2{
font-size: 4rem;
    text-transform: uppercase;

    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    line-height: 5.9rem;
}

.char {
    transform: translateY(115px);
    transition: transform .5s;
}


/* section 3  */

.usecase-slider {
  padding: 80px 0;
  background: #f7f7f7;
}

.usecase-slider .section-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.usecase-slider .section-header p {
  color: #666;
  margin-bottom: 40px;
}

.usecase-slider .swiper {
  position: relative;
}

.usecase-slider .swiper-slide {
  width: 280px;
}

.usecase-slider .card {
  height: 320px;
  background: #fff;
  border-radius: 16px;

  display: flex;
  background: linear-gradient(135deg, #7b55f8, #2dbaae);
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* /* Hover Effect */
.usecase-slider .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7b55f8, #2dbaae);
  opacity: 0;
  transition: 0.4s ease;
}
 */
.usecase-slider .card:hover::before {
  opacity: 1;
}

.usecase-slider .card h3 {
  position: relative;
  z-index: 2;
  font-size: 20px;
  
  transition: 0.3s;
  text-align: center;
  padding-top: 20px;
}

.usecase-slider .card:hover h3 {
  color: #000;
  transform: translateY(-10px);
}

/* Navigation Buttons */
.usecase-slider .usecase-nav {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.usecase-slider .nav-btn {
  width: 45px;
  height: 45px;
  background: #169d9d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.bg-gradient-dark-blue {
    background: radial-gradient(circle at 10% 90%, #00d4ff3d 0%, transparent 40%), radial-gradient(circle at 80% 20%, #007bff29 0%, transparent 35%), linear-gradient(135deg, #000000, #0b0f1a, #000000);

}

/* Multi-OS Device Management */


.tag {
    color: #0dd2d3;
    text-transform: uppercase;
    font-size: 18px;
    padding-bottom: 10px;
}
.section-header-block h2 {
    font-size: 46px;
    font-weight: 500;
    text-transform: uppercase;
}


/* Right side section */
.os-orbit-section {
  display: flex;
  justify-content: center;
  align-items: center;


}

.os-orbit-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

/* SVG Circle */
.os-orbit-path {
  position: absolute;
  width: 100%;
  height: 100%;
}

.os-orbit-path circle {
  fill: none;
  stroke: #00c6ff;
  stroke-width: 1;
  stroke-dasharray: 6 6;
  opacity: 0.4;
}

/* Orbit container */
.os-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Orbit items */
.os-orbit-item {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #0f1624;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.os-orbit-item svg {
  width: 26px;
  height: 26px;
  fill: #00c6ff;
}

/* Hover */
.os-orbit-item:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px #00c6ff;
}
.os-orbit-item img {
width: 80px;
    height: 80px;
  object-fit: contain;

}

.circle-rotate-section {
  display: flex;
  justify-content: center;
  align-items: center;


}

/* wrapper */
.circle-wrapper {
    width: 100%;
    height: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* glowing circle background */
/* .circle-wrapper::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,198,255,0.3), transparent);
  filter: blur(40px);
}
 */
/* image */
.circle-image {
    width: 61%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    transition: 0.3s;
}

/* hover effect */
.circle-wrapper:hover .circle-image {
  transform: scale(1.1);
}

.gsap-logo-slider {
  overflow: hidden;
  position: relative;
  padding: 100px 0;
 
}

/* fade edges */
.gsap-logo-slider::before,
.gsap-logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}



/* track */
.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  will-change: transform;
}

/* logos */
.logo-track img {

  height: 90px;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  transition: 0.3s ease;
}

.logo-track img:hover {
  filter: none;
  transform: scale(1.15);
}

.halo-solutions {
  padding: 100px 0;
  background: #05070d;
}

.haloSwiper {
  overflow: hidden;
  padding: 40px 0;
}

/* Slides */
.halo-solutions .swiper-slide {
  width: 750px;
  opacity: 0.4;
  transform: scale(0.9);
  transition: 0.4s ease;
}

/* Active */
.halo-solutions .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* Card */
.halo-card img{width: 100%;}
.halo-card {
  background: #0f1624;
  border-radius: 16px;
  padding: 25px;
  height: 540px;
  display: flex;
  flex-direction: column;
  padding: 100px;
  justify-content: space-between;
}

.halo-card li {
  position: relative;
  color: #0dd2d3;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  list-style-type: none;
  padding-left: 25px;
}
.halo-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: url('http://localhost/halofort/wp-content/uploads/2026/05/right-arrow.svg') no-repeat center;
  background-size: contain;
}
/* Button */
.halo-card button {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
}

/* Arrows */
.halo-prev,
.halo-next {
  position: absolute;
  bottom: -50px;
  width: 45px;
  height: 45px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.halo-prev { right: 70px; }
.halo-next { right: 10px; }


