::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--forge-dim);
}

::-webkit-scrollbar-track {
    background: var(--black);
}

/* ─── NAV ─── */
nav {
    background-color: #09080652;
    position: fixed;
    top: 25;
    left: 0;
    right: 0;
    z-index: 200;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    transition: background .3s, border-color .3s;
    border-bottom: 1px solid transparent
}

nav.scrolled {
    background: rgba(9, 8, 6, .97);
    border-color: rgba(232, 81, 10, .12);
    backdrop-filter: blur(8px);
     position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.n-logo {
    font-family: var(--display);
    font-size: 26px;
    letter-spacing: 5px;
    color: var(--white);
    display: flex;
    align-items: center;

}

.n-logo img {
    width: 45px;
    /* padding-top: 15px; */
}

.n-logo em {
    font-style: normal;
    color: var(--forge)
}

.n-links {
    display: flex;
    list-style: none;
    gap: 36px
}

.n-links a {
    font-family: var(--cond);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color .2s
}

.n-links a:hover {
    color: var(--ember)
}

.n-cta {
    font-family: var(--cond);
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--black);
    border: none;
    padding: 9px 22px;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}

.n-cta:hover {
    background: #FF7030;
}

nav .n-logo {
    display: flex !important;
    align-items: center !important;
}

/*  dropdown menu css start*/

.header-links .submenu.list-item-children {
    position: relative;
}

.header-links .submenu.list-item-children {
    display: none;
    min-width: 300px;
    list-style: none;
    background: var(--surface);
    padding: 15px 15px;
    position: absolute;
    /* top: 100%; */
    left: auto;
    z-index: 999;

}

.header-links>li.list-item-children:hover .submenu.list-item-children {
    display: block;
}

/* shivam dropdown menu css start*/

.header-links li.submenu.list-item-children .submenu.list-item-children {
    position: relative;
}

.header-links li.list-item-children .submenu.list-item-children {
    display: none;
    min-width: 300px;
    list-style: none;
    background: black;
    padding: 15px 15px;
    position: absolute;
    top: 100%;
    left: auto;
    z-index: 999;
}


.hamburger:hover {
    cursor: pointer;
}

.hamburger .line {
    width: 35px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mobile-menu {
    display: none;
}

body.is-active #hamburger-1 .line:nth-child(2) {
    opacity: 0;
}

body.is-active #hamburger-1 .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}

body.is-active #hamburger-1 .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}

#hamburger-1 {
    display: none;
}

li.list-item-has-children.active>a {
    color: var(--ember);
}

/* media query responsive  */

@media(max-width:900px) {
    nav .n-links {
        display: none
    }
}

@media(min-width:1024px) {
    .header-links>li.list-item-children {
        padding: 22px 0;
    }

    .header-links>li.list-item-children:hover .submenu.list-item-children {
        display: block;
    }

}

@media screen and (max-width:1240px) {
    .header-menu-bar .n-links {
        gap: 30px;
    }
}

@media screen and (max-width:1024px) {
    .mobile-menu {
        display: block;
    }

    .mobile-menu .header-links .submenu.list-item-children {
        position: static;
    }

    .mobile-menu {
        position: absolute;
        width: 100%;
        max-width: 50%;
        height: 150vh;
        background: black;
        left: -100%;
        top: 100%;
        padding: 50px 50px 50px 50px;
        transition: left .5s ease-in-out;
    }

    .mobile-menu .header-links {
        display: flex;
        flex-direction: column;
    }

    .header-menu-bar {
        display: none;
    }

    #hamburger-1 {
        display: block;
    }

    nav .n-cta {
        display: none;
    }

    /* new css */

    .new-class {
        width: 20px;
        height: 20px;
        position: absolute;
        right: 10px;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu ul>li.list-item-children {
        /* display: flex; */
        position: relative;
    }
.mobile-menu ul li.list-item-children .submenu.list-item-children {
        display: none !important;
    }
    .mobile-menu ul li.list-item-children.menu-open .submenu.list-item-children {
        display: block !important;
        position: static;
    }

    body.is-active .mobile-menu {
        left: 0;
    }

    .mobile-menu ul li.list-item-children.menu-open {
        transition: all .3s linear;
    }

    .mobile-menu ul li.list-item-children.menu-open .new-class .fa {
        transform: rotate(180deg);
        transition: all .3s linear;
    }

    nav {
        height: 68px;
        padding: 0 50px;
        background-color: #000;
    }

    .header-links li.list-item-children .submenu.list-item-children {
        width: 100%;
        position: static;
    }
}

@media(max-width:767px) {
    .mobile-menu {
        max-width: 100%;
    }

    .sec-head.reveal.on {
        flex-wrap: wrap;
    }

    section {
        padding: 50px 30px;
    }

    nav {
        padding: 0 30px;
    }

    .mobile-menu {
        padding: 50px 30px;
    }
}



/* footer css */

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    border-top: 1px solid rgba(138, 130, 120, .1);
    padding: 72px 64px 36px
}

.foot-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 56px
}

.foot-brand {
	/*
    font-family: var(--display);
    font-size: 32px;
    letter-spacing: 5px;
    margin-bottom: 16px
	*/
}

.foot-brand img {
    width: 45px;
}

.foot-brand em {
    font-style: normal;
    color: var(--forge)
}

.foot-tagline {
    font-size: 18px;
    color: var(--steel);
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 20px
}

.foot-anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px
}

.foot-anchor {
    font-family: var(--cond);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    background: var(--surface);
    color: var(--steel)
}

.foot-col-ttl {
    font-family: var(--cond);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--forge);
    margin-bottom: 20px
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.foot-links a {
    font-size: 16px;
    color: var(--steel);
    text-decoration: none;
    transition: color .2s;
    text-transform: capitalize !important;
}

.foot-links a:hover {
    color: var(--white)
}

.foot-contact-row {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.foot-contact-item {
    font-family: var(--cond);
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--steel)
}

.foot-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color .2s
}

.foot-contact-item a:hover {
    color: var(--forge)
}

.foot-contact-label {
    font-size: 16px;
    letter-spacing: 2px;
    color: #8C3108;
    display: block;
    margin-bottom: 3px
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(138, 130, 120, .08);
    padding-top: 28px; justify-content:center;
}

.foot-copy {
    font-family: var(--cond);
    font-size: 14px;
    letter-spacing: 2px;
    /* color: rgba(138, 130, 120, .4); */
    color: #8a8278;
}

.foot-bottom .foot-copy {
    text-align: center;
}

.foot-cert-strip {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.foot-cert {
    font-family: var(--cond);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* color: rgba(138, 130, 120, .4) */
    color: #8a8278;
}

.split-body {
    font-size: 18px;
    width: 100%;
    max-width: 100%;
}

.foot-contact-item>li {
    list-style: none;
}

.foot-links li {
    font-family: var(--body);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: normal !important;
}

.foot-links li a:hover {
    color: var(--white);
}

.foot-links li a {
    font-family: 'Barlow', sans-serif;
    color: #8A8278;
}


@media(max-width:1024px) {
    footer {
        padding: 50px;
    }

    .foot-bottom {
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        justify-content: center;
    }

    .fcta-step-dot {
        display: none;
    }

    .fcta-steps {
        gap: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .foot-grid {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    footer {
        padding: 50px 30px;
    }
}

@media (max-width: 640px) {
    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}

@media (max-width: 600px) {

    footer {
        flex-direction: column;
        align-items: flex-start;
    }
}