@import url("./public/font.css");
@import url("./public/reset.css");

body {
    background-color: #202020;
    font-size: 16px !important;
    font-family: iransans;
    color: #d9ae50;
    overflow-x: hidden !important;
}

/* scrollbar setting */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #434343;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #d9ae50;
}

/* scrollbar setting */

/* theme settings

.themeToggle {
    width: 55px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    top: 85%;
    right: 120px;
    background-color: #fff;
    outline: 2px solid #d9ae50;
    color: #d9ae50;
    border-radius: 50%;
}

.st-sunMoonThemeToggleBtn {
    position: relative;
    cursor: pointer;
}

.st-sunMoonThemeToggleBtn .themeToggleInput {
    opacity: 0;
    width: 100%;
    aspect-ratio: 1;
}

.st-sunMoonThemeToggleBtn svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    transform: rotate(40deg);
}

.st-sunMoonThemeToggleBtn svg .sunMoon {
    transform-origin: center center;
    transition: inherit;
    transform: scale(1);
}

.st-sunMoonThemeToggleBtn svg .sunRay {
    transform-origin: center center;
    transform: scale(0);
}

.st-sunMoonThemeToggleBtn svg mask>circle {
    transition: transform 0.64s cubic-bezier(0.41, 0.64, 0.32, 1.575);
    transform: translate(0px, 0px);
}

.st-sunMoonThemeToggleBtn svg .sunRay2 {
    animation-delay: 0.05s !important;
}

.st-sunMoonThemeToggleBtn svg .sunRay3 {
    animation-delay: 0.1s !important;
}

.st-sunMoonThemeToggleBtn svg .sunRay4 {
    animation-delay: 0.17s !important;
}

.st-sunMoonThemeToggleBtn svg .sunRay5 {
    animation-delay: 0.25s !important;
}

.st-sunMoonThemeToggleBtn svg .sunRay5 {
    animation-delay: 0.29s !important;
}

.st-sunMoonThemeToggleBtn .themeToggleInput:checked+svg {
    transform: rotate(90deg);
}

.st-sunMoonThemeToggleBtn .themeToggleInput:checked+svg mask>circle {
    transform: translate(16px, -3px);
}

.st-sunMoonThemeToggleBtn .themeToggleInput:checked+svg .sunMoon {
    transform: scale(0.55);
}

.st-sunMoonThemeToggleBtn .themeToggleInput:checked+svg .sunRay {
    animation: showRay1832 0.4s ease 0s 1 forwards;
}

@keyframes showRay1832 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}



.dark-mode {
    background-color: #202020 !important;
    color: #d9ae50 !important;
}

.light-mode {
    background-color: #f5f5f5;
    color: #202020 !important;
}

theme settings */

/* hover communication */

.hover-contact {
    position: fixed;
    top: 85%;
    right: 30px;
    background-color: #fff;
    color: #d9ae50;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    user-select: none;
    transition: all 0.5s ease;
}

.hover-contact:hover {
    height: 300px;
    border-radius: 30px;
    top: 45%;
}

.icons {
    display: none;
}

.icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 22px !important;
    margin: 6px 0;
    font-weight: bold;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-contact .bi-whatsapp {
    color: #25d366;
}

.hover-contact .bi-instagram {
    color: #dd2a7b;
}

.hover-contact .bi-envelope {
    color: #fbbc05;
}

.hover-contact .bi-chat-dots {
    color: #bc42f4;
}

.hover-contact .bi-telegram {
    color: #24a1ed;
}

.tooltip {
    width: 100px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    background-color: #fff;
    color: #d9ae50;
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.5s 0.2s ease;
    font-weight: bolder;
    text-align: left !important;
    z-index: -1 !important;
}

.icons div:hover .tooltip {
    opacity: 1;
    visibility: visible;
    left: -80px;
}


.hover-contact:hover .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.hover-contact:hover .burger {
    right: 50%;
    transform: translate(50%, 360%);
}

.burger {
    position: relative;
    width: 35px;
    height: 25px;
    background: transparent;
    cursor: pointer;
    display: block;
    top: 100%;
}

.hover-contact:hover .burger {
    margin-top: 40px !important;
}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: #d9ae50;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.hover-contact:hover .burger input~span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}

.hover-contact:hover .burger input~span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.hover-contact:hover .burger input~span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 25px;
    left: 5px;
}

.intro-1 {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    border-bottom: 4px solid #fff;
}

/* hover communication end */

/* header start */

header {
    position: relative;
    z-index: 33;
    user-select: none;
}

.c-header-bottom {
    width: 100%;
    height: 85px;
    background-color: #161616;
    color: #d9ae50;
    box-shadow: 0px 0px 10px 4px #d9ae50;
    position: relative;
    border-radius: 15px;
}

.c-header-nav {
    user-select: none;
}

.c-header-nav ul {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 17px;
}

.c-header-nav ul li a {
    color: #d9ae50;
    transition: 0.5s all;
    cursor: pointer;
}

.c-header-nav ul li a:hover {
    color: #f5f5f5;
}

.logo {
    max-width: 100%;
    height: 80px;
    position: relative;
}

.offcanvason {
    transform: translateX(-100%) !important;
}

.offcanvasoff {
    width: 200px !important;
    height: 1000px;
    background-color: #434343;
    position: absolute;
    left: 100%;
    transition: all 0.8s;
    border-radius: 20px 0 0 20px;
    padding: 20px 0;
    z-index: 34;
    user-select: none;
}

.offcanvasoff ul li {
    width: 95%;
    height: 50px;
    padding: 10px;
    background-color: #434343;
    border: 1px solid #d9ae50;
    text-align: center;
    cursor: pointer;
}

.offcanvasoff ul li:hover {
    background-color: #202020;
    color: #fff;
    border: 1px solid #fff;
}

/* .header2 {
    width: 100%;
    height: 85px;
    background-color: #161616;
    color: #d9ae50;
    box-shadow: 0 2px 10px 4px #d9ae50;
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    border-radius: 0px;
    z-index: 34;
} */

/* header end */

/* main start */

/* section one start */

.about_index {
    border: 3px solid #fff;
    width: 87%;
    height: auto;
    background-color: #161616;
    padding: 15px;
    text-align: justify;
    line-height: 30px;
    border-radius: 10px;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    margin: 0 0 50px 0;
}

.about_index span {
    margin: 10px 0;
}

/* .about_index span.title-3 {
    font-size: 24px;
    color: #d9ae50;
    text-shadow: 0 0 7px #d9ae50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 15px 0;
    font-family: iransansbold;
} */

.about_index span b {
    font-family: iransansbold;
    color: #e8ca89;
}

/* section one end */

/* section two start */

.title_3 {
    text-align: center !important;
    font-size: 23px;
    color: #d9ae50;
}

.resume-nav {
    z-index: 3;
    position: relative;
}

.resume-nav ul {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap;
}

.resume-nav ul li {
    width: 30% !important;
    height: 250px;
    background-color: #202020;
    border: 1px solid #d9ae50;
    border-radius: 15px;
    box-shadow: 0 0 5px 2px #d9ae50;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resume-nav ul li img {
    width: 369px !important;
    height: 235px !important;
    border-radius: 15px;
}

.pre {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background-color: transparent !important;
}

.pre a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 70px;
    border: none !important;
    color: #d9ae50;
    background-color: #202020;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 0 5px 2px #d9ae50;
}

.pre a:active {
    background-color: #d9ae50;
    color: #202020;
    box-shadow: 1px 1px 3px 3px #fff;
}


/* section two end */

/* section three start */

.title_2 {
    text-align: center;
    font-size: 23px;
    color: #d9ae50;
}

.anime2 {
    cursor: pointer;
    user-select: none;
    width: 2250px;
    transform: translateX(-30%);
    animation: animate2 30s 2s linear infinite;
    animation-play-state: running;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anime2:hover {
    animation-play-state: paused;
}

.anime2 li {
    background-color: #fff;
    margin: 0 12px;
    width: 200px;
    height: 120px;
    border-radius: 10px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anime2 li:hover {
    border-color: #1a1a1a;
    box-shadow: 0 0 12px #a9a9a9;
}

.anime2 li img {
    width: 200px;
    height: 120px;
    border-radius: 10px;
    padding: 10px;
}

@keyframes animate2 {
    0% {
        transform: translateX(-35%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* section three end */

/* section four start */

.services ul {
    width: 95%;
    border-radius: 20px;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    background-color: #434343;
    color: #d9ae50;
    user-select: none;
}

.services ul li {
    width: 25% !important;
    height: auto;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.services ul li span {
    font-family: iransansbold !important;
    margin: 15px 0 0 0;
    font-size: 18px;
}

.services ul li i {
    width: 120px;
    height: 120px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    text-shadow: 0 0 7px #d9ae50;
    cursor: pointer;
}

/* section four end */

/* section five start */

.form_direct {
    width: 100%;
    background-color: #434343;
    color: #d9ae50 !important;
    height: 200px;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    margin: 40px 0;
}

.form_direct span {
    text-shadow: 0px 0px 12px #d9ae50;
    font-size: 30px;
    line-height: 20px;
}

.form_direct button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #202020;
    box-shadow: 0px 6px 14px 0px #d9ae5052;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.form_direct button:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: #d9ae50;
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.form_direct button:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.form_direct button a {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 18px 25px;
    color: #fff;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.form_direct button:hover a {
    color: #202022;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* section five end */

/* section six start */

.partners {
    margin-top: 80px;
}

.partners span {
    margin: 40px 0;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    font-size: 30px;
    line-height: 20px;
    z-index: 10;
}

.partners ul {
    width: 95%;
    border-radius: 20px;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    height: 400px;
    background-color: #434343;
    color: #d9ae50;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 90px 0;
}

.partners ul li {
    width: 250px;
    height: 250px;
    border: 1px solid #fff;
    background-color: #202020;
    margin: 15px;
    border-radius: 50%;
}

/* section six end */

/* main end */

/* footer start */

footer {
    margin-top: 50px;
}

footer section.c-footer_1,
footer section.c-footer_2 {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #434343;
    color: #d9ae50;
    border-top: 1px solid #d9ae50;
    user-select: none;
}

footer section.c-footer_1 {
    height: 380px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -3px 15px 1px #d9ae50;
    padding: 7px;
    display: flex;
}

footer section.c-footer_2 {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
}

footer section.c-footer_2 p {
    margin: 0 35px;
}

footer .c-footer_2 a {
    color: #fff;
    text-decoration: underline !important;
    transition: all 0.5s;
}

footer .c-footer_2 a:hover {
    color: #d9ae50;
}

footer .soton-1 {
    height: 380px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    margin: 0 5px;
}

footer div.col-4 {
    height: 380px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
}

footer .soton-1 li {
    margin: 20px 0;
    font-size: 18px;
}

footer .soton-1 li i {
    margin: 0 10px;
    font-size: 22px !important;
}

footer .title_4 {
    font-size: 25px;
    margin: 10px;
    text-shadow: 0px 0px 5px #d9ae50;
}

footer li {
    transition: all 0.3s;
}

footer li:nth-child(n+2):hover {
    color: #fff;
}

footer .rating {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


.radio {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.radio>input {
    position: absolute;
    appearance: none;
}

.radio>label {
    cursor: pointer;
    font-size: 30px;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.radio>label>i {
    color: #666;
    transition: fill 0.3s ease;
}

.radio>label::before,
.radio>label::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #ff9e0b;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
    animation: particle-explosion 1s ease-out;
}

.radio>label::before {
    top: -15px;
    left: 50%;
    transform: translateX(-50%) scale(0);
}

.radio>label::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) scale(0);
}

.radio>label:hover::before,
.radio>label:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1.5);
}

.radio>label:hover {
    transform: scale(1.2);
    animation: pulse 0.6s infinite alternate;
}

.radio>label:hover>i {
    color: #ff9e0b;
    filter: drop-shadow(0 0 15px rgba(255, 158, 11, 0.9));
    animation: shimmer 1s ease infinite alternate;
}

.radio>input:checked+label>i {
    color: #ff9e0b;
    filter: drop-shadow(0 0 15px rgba(255, 158, 11, 0.9));
    animation: pulse 0.8s infinite alternate;
}

.radio>input:checked+label~label>i,
.radio>input:checked+label>i {
    color: #ff9e0b;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes particle-explosion {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes shimmer {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 158, 11, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(255, 158, 11, 1));
    }
}

.radio>input:checked+label:hover,
.radio>input:checked+label:hover~label {
    fill: #e58e09;
}

.radio>label:hover,
.radio>label:hover~label {
    fill: #ff9e0b;
}

.radio input:checked~label i {
    color: #ffa723;
}

.card {
    width: 260px;
    background-color: #f5f5f5;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 3px #d9ae50;
}

.chat-header {
    background-color: #434343;
    color: #d9ae50;
    padding: 10px;
    font-size: 18px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.chat-input {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.message-input {
    border: none;
    outline: none;
    border-radius: 10px;
    margin: 0 5px;
    padding: 5px;
    font-size: 14px;
    background-color: #d9ae50;
    color: #434343;
    width: 180px;
}

.message-input:focus {
    background-color: #434343;
    color: #d9ae50;
}

.message-input::placeholder {
    color: #434343;
}

.message-input:focus::placeholder {
    color: #d9ae50;
}

.send-button {
    border: none;
    outline: none;
    background-color: #434343;
    color: #d9ae50;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
}

.send-button:hover {
    background-color: #d9ae50;
    color: #434343;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}

.logo_footer {
    position: relative;
}

.logo_footer .logo_down {
    width: 100px;
    height: 100px;
    margin: 10px 0;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #d9ae50;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.logo_footer .logo_down img {
    width: 96%;
    height: auto;
}

.top-go {
    width: 35px;
    height: 35px;
    padding: 3px;
    background-color: #202020;
    color: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 70%;
    left: 20%;
}

.btn4 {
    border: 1px solid #434343;
    border-radius: 15px;
    transition: .2s all;
}

.btn4:hover {
    border: 1px solid #d9ae50;
}

/* footer end */

.burger-menu {
    color: #d9ae50;
    display: none !important;
    transition: all 0.3s;
}

.burger-menu i {
    font-size: 60px;
}

/* responsive mode start */

@media only screen and (max-width: 600px) {
    .intro-1 {
        position: relative;
        z-index: 0;
        width: 100%;
        height: auto;
        border-bottom: 4px solid #fff;
    }

    .hover-contact {
        display: none !important;
    }

    /* header start */
    header {
        width: 93%;
    }

    .c-header-nav ul li {
        display: none;
    }

    .burger-menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        right: 60%;
        transform: translateX(60%);
        cursor: pointer;
    }

    .burger-menu i {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .burger-menu:hover {
        color: #f5f5f5;
    }

    .logo {
        height: 60px;
    }

    /* header end */

    /* main start */

    .about_index {
        width: 95%;
        right: 50%;
        transform: translateX(50%);
    }

    .about_index span b {
        font-family: iransansbold;
        color: #e8ca89;
    }

    .resume-nav ul li {
        width: 85% !important;
    }

    .resume-nav ul li img {
        width: 80% !important;
        height: 90% !important;
    }

    .pre a {
        position: relative;
        top: -40%;
    }

    .pre a:active {
        background-color: #d9ae50;
        color: #202020;
        box-shadow: 1px 1px 3px 3px #fff;
    }

    .services ul {
        flex-wrap: wrap;
    }

    .services ul li {
        width: 45% !important;
        margin: 10px 0;
    }

    .form_direct {
        flex-direction: column;
    }

    .form_direct span {
        text-shadow: none;
        font-size: 14px;
        margin-bottom: 9px;
    }

    .form_direct button {
        box-shadow: none;
    }

    .partners {
        display: none !important;
    }

    .workwith {
        display: none !important;
    }

    /* main end */

    /* footer start */

    footer .c-footer_2 {
        width: 100% !important;
        font-size: 16px;
        flex-direction: column;
    }

    footer section.c-footer_2 p {
        margin: 10px 0;
    }

    footer section.c-footer_1 {
        flex-direction: column !important;
        height: auto;
    }

    footer section.c-footer_1>div {
        width: 100%;
        display: flex;
        align-items: flex-start;
        height: auto;
    }

    footer .soton-1 {
        display: flex;
        margin: 0 5px;
        direction: ltr;
    }

    footer .soton-1 li {
        margin: 20px 0;
        font-size: 18px;
    }

    .number-footer {
        direction: rtl;
    }

    .bi-arrow-right-circle-fill::before,
    .bi-caret-right-fill::before {
        transform: rotate(180deg) !important;
    }

    footer .soton-1 li i {
        margin: 0 10px;
        font-size: 22px !important;
    }

    footer .rating {
        display: none;
    }

    .logo_footer .logo_down {
        left: 0;
    }

    .top-go {
        width: 35px;
        height: 35px;
        position: relative;
        right: 90%;
        margin-top: 20px;
    }

    .btn4 {
        border: 1px solid #434343;
        border-radius: 15px;
        transition: .2s all;
    }

    .btn4:hover {
        border: 1px solid #d9ae50;
    }

    /* footer end */
}

/* responsive mode end */