/* 

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f5f5f5;
    color: #111;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}



header {
    border: 1px solid var(--tital);

}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 1000;

}



.header {
    position: sticky;
    max-width: 1500px;
    margin: auto;
}



.logo {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
}

.logo a {
    color: #fff;
    list-style: upper-alpha
}

.logo a:hover {
    color: #139dee;
    list-style: none;
}

.header-right-side {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-manu {
    display: flex;
    gap: 20px;
    right: 15px;
    align-items: center;
    border: 1px solid var(--headr-text);
}

.menu-toggle {
    font-size: 20px;
    cursor: pointer;
}

#navbar-mobile {
    display: none;
}

.menu-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 4px;
    background: var(--hfa-text, #e7e7e7);
    display: block;
}

.theme-toggle img {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    display: block;
}



.menu {
    display: flex;
    gap: 26px;
    align-items: center;
}

.menu a {
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    transition: .3s;
}

.menu a:hover::after {
    width: 100%;
}

.menu .btn {
    padding: 7px 18px;
    border-radius: 22px;
}

@media(max-width:1023px) {

    #navbar-mobile {
        position: absolute;
        top: 60px;
        width: 190px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        box-shadow: var(--box-shadow);
        height: 100vh;
        right: 0;
        background-color: var(--hfa-body, #000);
    }

    #navbar-mobile.show {
        display: block;
    }

    .navbar-mobile {
        list-style: none;
        padding: 0;
        margin: 0;
        height: 75vh;
        overflow: scroll;
    }

    #navbar-mobile li {
        margin: 18px 0;
    }


    #navbar-mobile a {
        text-decoration: none;
        padding: 11px 0;
        color: var(--hfa-text, #fff);
    }

    #navbar-mobile a:hover {
        color: var(--text-hover, #0499fddd);
    }

    .mobile-social {
        display: flex;
        justify-content: space-around;
        margin-top: 10px;
        font-size: 18px;
        overflow: scroll;
        width: 150px;
        gap: 25px;
        position: fixed;
        bottom: 15px;
    }

    .header {
        padding: 0px 15px;
        background-color: var(--hfa-body, #000);
        color: var(--hfa-text, #fff);
    }

    #langBtn {
        cursor: pointer;
    }
}

@media(min-width:1020px) {
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 1000px) {

    #navbar ul {
        flex-direction: column;
        gap: 0;
    }

    #navbar li {
        padding: 14px 20px;
    }
}



@media(max-width:768px) {
    .dots {
        display: block
    }

    .menu {
        position: absolute;
        top: 60px;
        right: 18px;
        width: 190px;
        flex-direction: column;
        gap: 14px;
        padding: 0 35px;
        border-radius: 14px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
        opacity: 0;
        transform: translateY(-10px) scale(.95);
        pointer-events: none;
        transition: .35s ease;
    }

    .menu.show {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .menu a {
        padding: 6px 0;
    }

    .menu .btn {
        text-align: center;
    }


}


.logo a {
    color: var(--tital);
}


.lap-manu-ul {
    display: flex;
    gap: 35px;
}

.lap-manu-ul li,
.lap-manu a {
    list-style: none;
    text-decoration: none;
    color: var(--headr-text);

}

.pages-dropdown a {
    text-decoration: none;
    color: var(--headr-text);

}

.lap-manu-ul a:hover {
    text-decoration: overline;
    text-decoration-color: var(--text-color);
    color: var(--tital);
}


@media (max-width:1023px) {
    .lap-manu {
        display: none;
    }

}

.menu-pages {
    position: relative;
}

.pages-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--headr-body, #0f172a);
    padding: 20px 10px;
    border-radius: 10px;
    min-width: 200px;
}

.pages-dropdown ul {
    gap: 30px;
}

.menu-pages:hover .pages-dropdown {
    display: block;
}

.menu-pages summary {
    list-style: none;
    cursor: pointer;
}

.menu-pages summary::-webkit-details-marker {
    display: none;
}



main {
    width: 1500px;
    min-height: 100vh;

    margin-left: auto;
    margin-right: auto;

    padding: 30px;
}

.main-wrapper {
    width: 100%;
    padding-left: 250px;
    margin-top: 50px;
}


footer {
    margin-left: 250px;

    padding: 25px;

    background: #111;
    color: #fff;

    text-align: center;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: #000000;
    border-right: 1px solid #878787b9;
    padding: 20px 10px 0 20px;
    color: white;
}



.sidebar-nav {
    overflow: auto;
    height: 80vh;
    padding: 0 1px 101px;
    scrollbar-width: thin;
    scrollbar-color: #777777c2 transparent;
}

.sidebar-footer {
    position: fixed;
    bottom: 0px;
    z-index: 999;
    padding-bottom: 18px;
    width: 250px;
    left: 0;
    padding-left: 20px;
    overflow-y: auto;
    background-color: var(--bga, #000000);
    padding-top: 22px;
}

.sidebar-footer a {
    font-size: 24px;
}


.sidebar-brand {
    margin-bottom: 30px;
}

.brand-title {
    font-weight: bold;
    text-transform: lowercase;
}

.brand-tagline {
    font-size: 18px;
    opacity: 0.9;
    margin-top: 20px;
    margin-top: 60px;
}

.sidebar-nav {
    flex: 1;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    padding: 10px 0;
    cursor: pointer;
    font-size: 15px;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-item a {
    color: var(--hfa-text, #000000);
    text-decoration: none;
    color: #ffffff;

}



.nav-item:hover {
    color: #bc1be7;
}

.nav-item a:hover {
    color: #bc1be7;
}

.has-submenu {
    margin-top: 10px;
}

.submenu {
    list-style: none;
    padding-left: 15px;
    margin-top: 8px;
}

.submenu li {
    padding: 6px 12px;
    opacity: 0.9;
    cursor: pointer;
}

.submenu li:hover {
    color: #bc1be7;
    opacity: 1;
}

.submenu a:hover {
    color: #bc1be7;
    opacity: 1;
}

.sidebar-footer hr {
    border: none;
    border-top: 2px solid rgba(0, 123, 255, 0.808);
    margin: 20px 0;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
    overflow: auto;
    width: 195px;
    scrollbar-width: none;
}

.social-links li,
.social-links a {
    cursor: pointer;
    opacity: 0.9;
    color: var(--hfa-text, #000000);
    text-decoration: none;
    font-weight: 700;
}

.social-links li:hover {
    color: #bc1be7;
    opacity: 1;
}

.social-links a:hover {
    color: #bc1be7;
    opacity: 1;
}

.staky-card {
    position: relative;
}

.staky-card:hover {
    background-color: #d8e1ff;
}

.icon {
    border: 1px solid;
    padding: 0px 6px;

}

.icon:hover {
    color: #ff3a3a;
}

.card-wrapper {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    height: 130px;
    justify-content: space-evenly;
}

.staky-card {
    width: 340px;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);

    transform: translateY(-80%);
}

.staky-card .name {
    font-weight: 600;
    margin-bottom: 4px;
}

.staky-card .desc {
    font-size: 14px;
}



@media (max-width: 1800px) {

    main {
        width: 100%;
    }
}



@media screen and (max-width: 1500px) and (max-width: 1280px) {

    .sidebar {
        width: 220px;
        height: 100vh;
    }


    .sidebar-footer {
        width: 220px;
    }

    .main-wrapper {
        padding-left: 220px;
    }

    footer {
        margin-left: 220px;
    }
}


@media (max-width: 1279px) {

    body {
        flex-direction: column;
    }

    .sidebar {
        display: none;
    }

    .main-wrapper {
        padding-left: 0;
    }

    .footer {
        margin-left: 0;
    }

}


@media (max-width: 1023px) {


    main {
        padding: 15px;
    }

}





 */




/* ---------------------------------------------------------------- */






























/*===============
 new hero
================*/
.btn-box {
    display: flex;
    gap: 16px;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    margin-top: 30px;
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 160px 60px; */
    gap: 40px;
    margin-bottom: 150px;
}



.hero-left {
    max-width: 520px;
}

.hero-left h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 12px 28px;
    background: #bc1be7;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.hero-btn:hover {
    background: #a214cc;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-box {
    width: 100%;
    background: rgb(201, 191, 191);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-box svg {
    width: 500px;
    height: 300px;

}



.hero-svg {
    cursor: pointer;
}

.draw-path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 3s ease-in-out infinite;
    transition: stroke 0.3s, stroke-width 0.3s;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 800;
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.4;
    }
}

.hero-svg:hover .draw-path {
    stroke: #080a0a;
    stroke-width: 4;
}

.svg-text {
    font-family: Arial, sans-serif;
    font-size: 18px;
    fill: blue;
    opacity: 0;
    animation: textFade 3s infinite;
}

/* =============== */
.card-wrapper {
    display: flex;
    gap: 20px;
    background: #f8f9fc;
    height: 130px;
    justify-content: space-evenly;
}

.staky-card {
    position: relative;
    color: #000000;
}

.staky-card:hover {
    background-color: #d8e1ff;
}

.staky-card {
    background: #eee;
    width: 340px;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-80%);
}

.staky-card .name {
    font-weight: 600;
    margin-bottom: 4px;
}

.staky-card .desc {
    font-size: 14px;
    color: #555;
}



.t1 {
    animation-delay: 0.6s;
}

.t2 {
    animation-delay: 1.2s;
}

.t3 {
    animation-delay: 1.8s;
}

.t4 {
    animation-delay: 2.4s;
}

@keyframes textFade {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.hero-svg:hover .svg-text {
    fill: #000000;
}


@media (max-width: 768px) {


    .hero-left h1 {
        font-size: 34px;
    }

}





@media (max-width:1279px) and (min-width:1023px) {

    .hero {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 40px;
    }

    .hero-box svg {
        width: 275px !important;
        height: 247px !important;
    }
}


@media (max-width: 1000px) {

    .main-content {
        margin-left: 0;
        padding: 0px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-left {
        max-width: 100%;
        margin-top: 60px;
    }

    .hero-left h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero-right {
        width: 100%;
        margin-top: 30px;
        display: none;
    }

    .hero-box {
        height: 260px;
    }

    .staky-card {
        width: 100%;
        transform: translateY(0);
    }



    .hero-box svg {
        width: 100%;
    }

    .card-wrapper {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
}











