/* =========================================
   NAVBAR
========================================= */

.ax-navbar{

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: transparent;

    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);

    border-bottom: 1px solid rgba(255,255,255,.14);

    box-shadow: none;

    transition:
        background 1.2s cubic-bezier(.22,.61,.36,1),
        backdrop-filter 1.2s cubic-bezier(.22,.61,.36,1),
        -webkit-backdrop-filter 1.2s cubic-bezier(.22,.61,.36,1),
        border-color 1.2s cubic-bezier(.22,.61,.36,1),
        box-shadow 1.2s cubic-bezier(.22,.61,.36,1);
}
/* =========================================
   SCROLL EFFECT
========================================= */


/* =========================================
   INNER
========================================= */

.ax-navbar-inner{

  max-width: 1450px;

  margin: auto;

  height: 92px;

  padding: 0 34px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   LEFT LOGO
========================================= */

.ax-logo-wrap{

  width: 180px;
  height: 100%;

  display: flex;
  align-items: center;

  flex-shrink: 0;

  border-right: 1px solid rgba(255,255,255,0.10);
}

/* LOGO LINK */
.ax-logo{

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  width: 100%;
  height: 100%;

  margin-left: -24px;
}

/* WHITE BOX */
.ax-logo-box{

  width: 82px;     /* INCREASED */
  height: 82px;    /* INCREASED */

  border-radius: 20px;


  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  transition: all .3s ease;
}

/* LOGO IMAGE */
.ax-logo-img{

  width: 200px;     /* INCREASED */
  height: ;    /* INCREASED */

  object-fit: contain;
  margin-top: -0px;

  display: block;
}
/* =========================================
   CENTER SECTION
========================================= */

.ax-nav-center{

  flex: 1;

  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  /* ✅ MORE GAP BETWEEN MENU & BUTTON */
  gap: 72px;

  border-right: 1px solid rgba(255,255,255,0.10);
}

/* MENU */
.ax-nav-links{

  display: flex;
  align-items: center;

  /* ✅ MORE GAP BETWEEN LINKS */
  gap: 58px;

  list-style: none;

  margin: 0;
  padding: 0;
}

/* LINKS */
.ax-nav-links a{

  color: #ffffff;

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  position: relative;

  transition: none;
}

/* REMOVE UNDERLINE */
.ax-nav-links a::after{
  display: none;
}

/* REMOVE COLOR CHANGE */
.ax-nav-links a:hover{
  color: #ffffff;
}

/* =========================================
   BUTTON
========================================= */

.liquid-btn{

  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  width: fit-content;

  padding: 16px 32px;

  border-radius: 999px;

  background: #fff300;

  color: #062024;

  font-size: 16px;
  font-weight: 600;

  line-height: 1;

  text-decoration: none;
  white-space: nowrap;

  border: none;

  overflow: hidden;

  box-shadow: 0 14px 32px #00000038;

  transition: all .3s ease;

  background-size: 200% 100%;
  background-position: left;
}

/* TEXT */
.liquid-text{

  position: relative;
  z-index: 2;

  color: #062024;

  transition: color .3s ease;
}

/* =========================================
   BUTTON HOVER EFFECT
========================================= */

.liquid-btn:hover{

  background: radial-gradient(
    120% 120% at 0% 100%,
    #fff300 80%,
    #fff300 40%,
    #fff300 20%,
    #ffffff 40%,
    #ffffff 10%
  );

  background-size: 200% 100%;
  background-position: right;

  transform: translateY(-3px);

  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* TEXT HOVER */
.liquid-btn:hover .liquid-text{
  color: #062024;
}

/* =========================================
   RIGHT BRAND
========================================= */

/* =========================================
   BRAND LOGO
========================================= */

.ax-brand-right{
    width:180px;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:flex-end;

    flex-shrink:0;
}

.ax-brand-logo{
    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    width:100%;
    height:100%;
}

.ax-brand-logo-img{
    width:400px;          /* Same width as previous text */
    height:200px; 
    margin-top:4%;         /* Adjust according to navbar height */
    margin-left:38px;
    object-fit:contain;
    display:block;

    transition:all .35s ease;
}

.ax-brand-logo:hover .ax-brand-logo-img{
    transform:scale(1.04);
    filter:drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}
/* =========================================
   MOBILE MENU TOGGLE
========================================= */

.ax-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 10000;
}

.ax-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.ax-navbar.menu-open .ax-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ax-navbar.menu-open .ax-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.ax-navbar.menu-open .ax-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ax-mobile-menu {
  display: none;
}

.ax-mobile-backdrop {
  display: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 1100px){

  .ax-nav-links{
    gap: 34px;
  }

  .ax-nav-center{
    gap: 34px;
  }

  .ax-brand-text{
    font-size: 28px;
  }
}

@media(max-width: 767px){

  .ax-navbar {
   
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    min-height: 78px;
  }

  .ax-menu-toggle {
    display: flex !important;
    margin-left: auto;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
  }

  .ax-menu-toggle span {
    width: 26px;
    height: 3px;
    background: #ffffff;
  }

  .ax-nav-links,
  .ax-nav-center{
    display: none;
  }

  .ax-navbar-inner{
    height: 78px;
    padding: 0 16px;
    gap: 0.75rem;
  }

  .ax-logo-wrap {
    width: auto;
    border-right: none;
  }

  .ax-logo {
    margin-left: 0;
  }

  .ax-logo-box {
    width: 74px;
    height: 74px;
    border-radius: 16px;
  }

  .ax-logo-img {
    width: 80px;
    height: 80px;
  }

  .liquid-btn{
    padding: 12px 18px;
    font-size: 14px;
    color:#011D26;
  }

   .liquid-btn .liquid-text{

        color:#011D26 !important;

        font-weight:700;
    }
}








/* =========================================
   ACTIVE MENU INDICATOR
========================================= */

.ax-nav-links a{
    position:relative;
}

/* Bottom spot line */
.ax-nav-links a.active::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-12px;

    transform:translateX(-50%);

    width:28px;
    height:4px;

    border-radius:20px;

    background:#ffffff;


    display:block;
}

/* Active text */
.ax-nav-links a.active{
    color:#fff300;
}







/* ==========================================================
   PROFESSIONAL MOBILE NAVBAR
========================================================== */

@media (max-width:767px){

    /* ===============================
       NAVBAR
    =============================== */

         .ax-navbar{

    background-color: transparent;

    background-image: none;

    backdrop-filter: blur(0px);

    -webkit-backdrop-filter: blur(0px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:none;

    transition:
        background-color .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


    

/* After Scroll */

 .ax-navbar.scrolled{
        transition:
            background 0.45s ease,
            backdrop-filter 0.45s ease,
            box-shadow 0.45s ease;
    }
    .ax-navbar-inner{

        position:relative;

        display:flex;
        align-items:center;
        justify-content:space-between;

        width:100%;
        height:78px;

        padding:0 18px;
    }

     
    
    /* ===============================
       LEFT LOGO
    =============================== */

    .ax-logo-wrap{

        width:auto;

        border:none;

        display:flex;
        align-items:center;

        z-index:30;
    }

    .ax-logo{

        margin:0;
    }

    .ax-logo-box{

        width:60px;
        height:60px;

        border-radius:14px;
    }

    .ax-logo-img{

        width:72px;
        height:auto;

        object-fit:contain;
    }

    /* ===============================
       CENTER BRAND
    =============================== */

    .ax-brand-right{

        position:absolute;

        left:50%;
        top:50%;

        transform:translate(-50%,-50%);

       display:none !important;

        justify-content:center;
        align-items:center;

        width:145px;

        z-index:20;
    }

    .ax-brand-logo{

        width:100%;

        display:flex;
        justify-content:center;
        align-items:center;
    }

    .ax-brand-logo-img{

        width:132px;

        height:auto;

        margin:0;

        object-fit:contain;

        transition:.3s ease;
    }

    /* ===============================
       MENU ICON
    =============================== */

    .ax-menu-toggle{

        display:flex !important;

        align-items:center;
        justify-content:center;

        width:46px;
        height:46px;

        margin-left:auto;

        padding:0;

        border:none;

        border-radius:14px;

        background:rgba(255,255,255,.10);

        backdrop-filter:blur(10px);

        border:1px solid rgba(255,255,255,.12);

        cursor:pointer;

        z-index:30;

        transition:.3s ease;
    }

    .ax-menu-toggle:hover{

        background:rgba(255,255,255,.16);
    }

    .ax-menu-toggle span{

        width:22px;

        height:2px;

        margin:3px 0;

        background:#ffffff;

        border-radius:30px;

        transition:.3s ease;
    }

    /* ===============================
       HIDE DESKTOP MENU
    =============================== */

    .ax-nav-center{

        display:none !important;
    }

    /* ===============================
       MOBILE DRAWER
    =============================== */

    /* ==========================================
   MOBILE DRAWER - OPEN FROM RIGHT
========================================== */

.ax-mobile-menu{

    position:fixed;

    top:0;
    right:0;
    left:auto !important;

    width:82%;
    max-width:330px;
    height:100vh;

    background:#071B22;

    display:flex;
    flex-direction:column;

    padding:28px 20px;

    transform:translateX(100%);

    transition:transform .35s ease;

    z-index:10001;

    overflow-y:auto;

    box-shadow:-18px 0 40px rgba(0,0,0,.35);
}
body.menu-open .ax-mobile-menu{

    transform:translateX(0);
}
    /* ===============================
       MOBILE LINKS
    =============================== */

    .ax-mobile-menu-links{

        display:flex;

        flex-direction:column;

        margin-top:40px;
    }

    .ax-mobile-menu-links a{

        color:#ffffff;

        text-decoration:none;

        font-size:20px;

        font-weight:600;

        padding:18px 0;

        border-bottom:1px solid rgba(255,255,255,.08);

        transition:.25s;
    }

    .ax-mobile-menu-links a:hover{

        color:#fff300;

        padding-left:10px;
    }

    .ax-mobile-menu-links a.active{

        color:#fff300;
    }

    /* ===============================
       CTA BUTTON
    =============================== */

    .ax-mobile-menu-footer{

        margin-top:auto;

        padding-top:35px;
    }

    /* ==========================================
   MOBILE CTA BUTTON
========================================== */

.ax-mobile-menu-footer .liquid-btn{

    width:100%;

    display:flex;

    align-items:center;
    justify-content:center;

    padding:15px 22px;

    border-radius:999px;

    background:#fff300;

    color:#000000 !important;

    font-size:16px;

    font-weight:700;

    text-decoration:none;
}

.ax-mobile-menu-footer .liquid-btn .liquid-text{

    color:#000000 !important;

    font-weight:700;
}

.ax-mobile-menu-footer .liquid-btn:hover{

    color:#000000 !important;
}

.ax-mobile-menu-footer .liquid-btn:hover .liquid-text{

    color:#000000 !important;
}
    /* ===============================
       CLOSE BUTTON
    =============================== */

    .ax-menu-close{

    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.10);

    color:#ffffff;

    font-size:26px;

    cursor:pointer;

    transition:.3s ease;
}
    .ax-menu-close:hover{

        background:#fff300;

        color:#011D26;
    }

    /* ===============================
       BACKDROP
    =============================== */

    .ax-mobile-backdrop{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:10000;
}

body.menu-open .ax-mobile-backdrop{

    opacity:1;
    visibility:visible;
}
}






/* ==========================================
   MOBILE CENTER BRAND
========================================== */

/* Hide by default (Desktop) */

.ax-mobile-brand{

    display:none;
}


/* Mobile */

@media (max-width:767px){

    .ax-mobile-brand{

        display:flex;

        position:absolute;

        left:50%;
        top:50%;

        transform:translate(-50%,-50%);

        align-items:center;
        justify-content:center;

        z-index:15;

        pointer-events:auto;
    }

    .ax-mobile-brand-logo{

        display:flex;

        align-items:center;
        justify-content:center;

        text-decoration:none;
    }

    .ax-mobile-brand-img{

        width:135px;

        height:auto;

        display:block;

        object-fit:contain;
    }

}