@import url("../fonts/vazirmatn/font-face.css");

:root {
    --wrapper--max-width: 1200px;

    --color--primary: #005385;
    --color--accent: #d25100;

    /* #8bc600; */
    /* #F5D400; */

    --box-shadow--primary: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
        rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

* {
    font-family: Vazirmatn;
    box-sizing: border-box;
    outline: none;
}
.margin-top {
    margin-top: 150px;
}
.container {
    width: 100%;
    margin-inline: auto;
    margin-top: 190px;
    margin-bottom: 37px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
/* استایل کارت‌ها */
.card_payment {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 20px;
}
/* بخش سبد خرید */
.cart-items {
    flex: 1;
    min-width: 300px;
}
.cart-item {
    display: flex;
    border-bottom: 1px solid #eee;
    padding-inline: 15px;
    align-items: center;
    border-radius: 10px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
        rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    margin-bottom: 26px;
}
.item-image {
    width: 60px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-left: 15px;
}
.item-details {
    flex-grow: 1;
}
.item-price {
    color: #e91e63;
    font-weight: bold;
}

.item-controls {
    display: flex;
    gap: 10px;
    margin-right: 15px;
}

.info-btn {
    background: #e8f4ff;
    color: #2196f3;
    border-color: #bbdefb;
}
.delete-btn,
.info-btn {
    background: #fff0f0;
    color: #f44336;
    border: 1px solid #ffcdd2;
    border-radius: 6px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}
.delete-btn:hover {
    background: #f44336;
    color: white;
    transform: scale(1.05);
}
.info-btn {
    background: #e8f4ff;
    color: #2196f3;
    border-color: #bbdefb;
}
.info-btn:hover {
    background: #2196f3;
    color: white;
    transform: scale(1.05);
}
.delete-btn i,
.info-btn i {
    font-size: 18px;
}
/* بخش خلاصه پرداخت */
.payment-summary {
    flex: 0.5;
    min-width: 300px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}
.total {
    font-size: 1.2em;
    font-weight: bold;
    color: #2196f3;
}
/* دکمه‌ها */
.btn:hover {
    background-color: #44af9d !important;
    color: #ffff !important;
}
.btn {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    /* margin-top: 20px; */
    background-color: #96c2bb;
    color: #fff;
    transition: all 0.3s;
}
.btn1 {
    width: fit-content;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--box-shadow--primary);
    /* border: 1px solid #bbb; */
    border: none;
    background-color: #96c2bb;
    color: #fff !important;
    align-items: center;
}
.btn-primary {
    background: #4caf50;
    color: white;
}
.btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}
.btn-primary:hover {
    background: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* هدر و تایتل */
.page-title {
    text-align: center;
    margin: 20px 0 40px;
    color: #2c3e50;
}
.section-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: #444;
}
/* ریسپانسیو */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .delete-btn {
        position: absolute;
        left: 10px;
        top: 10px;
    }
}
/* پاپ آپ اطلاعات */
.info-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    float: left;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #f44336;
}
.popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.popup-icon {
    width: 50px;
    height: 50px;
    background: #e8f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: #2196f3;
    font-size: 24px;
}

#popup-content {
    padding-right: 20px;
}

#popup-content p,
#popup-content div {
    position: relative;
    padding-right: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
}

#popup-content p::before,
#popup-content div::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #e8f5e9; /* پس‌زمینه سبز کم‌رنگ */
    border-radius: 50%;
    color: #4caf50; /* رنگ تیک */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    animation: tickAppear 0.5s ease; /* انیمیشن ظهور */
}
.fade-out {
    transform: translateY(-45px);
    opacity: 0;
    transition: all 1s ease-in;
}
.fade-out1 {
    transform: translateY(-10px);
    transition: transform 1s ease-in;
}

.fade-in {
    /* animation: fade-in 1s forwards; */
    transform: translateY(0px);
    opacity: 1;
    transition: all 1s ease-in;
}
.fade-in1 {
    transform: translateY(0px);
    transition: transform 1s ease-in;
}

body.dark-mode {
    background: url("../images/patters14.png"), #333 !important;
    background-size: 100%;
    color: #e0f2fe;
}
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.hanging-system {
    position: relative;
    height: 100%;
    width: fit-content;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: 150px;
}

.string {
    position: absolute;
    top: 0;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #64748b, transparent);
    transform-origin: top center;
}
body.dark-mode .string {
    background: linear-gradient(to bottom, #021939, transparent);
}

.celestial-body {
    position: absolute;
    top: 80px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    transition: transform 0.5s ease,
        top 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sun {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #ff8c00;
    transform: translateY(-100px);
}

.moon {
    background: linear-gradient(135deg, #e0f2fe, #94a3b8);
    color: #e0f2fe;
    transform: translateY(0);
}

body.dark-mode .sun {
    transform: translateY(0);
}

body.dark-mode .moon {
    transform: translateY(-100px);
}

.celestial-body i {
    font-size: 28px;
    transition: all 0.5s ease;
}

.sun:hover {
    transform: translateY(-100px) scale(1.1) rotate(15deg);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.moon:hover {
    transform: translateY(0) scale(1.1) rotate(15deg);
    box-shadow: 0 0 30px rgba(224, 242, 254, 0.6);
}

body.dark-mode .sun:hover {
    transform: translateY(0) scale(1.1) rotate(15deg);
}

body.dark-mode .moon:hover {
    transform: translateY(-100px) scale(1.1) rotate(15deg);
    box-shadow: 0 0 30px rgba(224, 242, 254, 0.6);
}

/* Animation classes */
.sun.bouncing {
    animation: bounceUp 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.moon.swinging {
    animation: swingDown 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sun.swinging {
    animation: swingDown 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.moon.bouncing {
    animation: bounceUp 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceUp {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-120px);
    }
    70% {
        transform: translateY(-80px);
    }
    100% {
        transform: translateY(-100px);
    }
}

@keyframes swingDown {
    0% {
        transform: translateY(-100px) rotate(0deg);
    }
    30% {
        transform: translateY(20px) rotate(15deg);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
    70% {
        transform: translateY(5px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}
.c-black {
    color: #333;
}

html {
    scroll-behavior: smooth !important;
}

body {
    background: url("../images/patters13.png");
    background-size: 100%;
}
a {
    text-decoration: none;
}
.hide {
    display: none !important;
}

.bi::before,
[class*=" bi-"]::before,
[class^="bi-"]::before {
    vertical-align: -0.25em;
}

/* Header */

#header {
    display: block;
    width: 100%;
    height: fit-content;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    direction: rtl;
    /* border: 1px solid blue; */
}

#header__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: transparent;
    /* padding: 2rem 2rem 0; */
    /* border: 1px solid red; */
}
#header__top__items {
    display: flex;
    background-color: #0265a9;
    color: #fff !important;
    width: 83%;
    height: 45px;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
}
#header__top__items a {
    color: #fff !important;
}

#header__logo {
    display: block;
    width: fit-content;
    height: fit-content;
    margin-right: 10px;
}
.header__logo {
    display: none !important;
}

#header__logo__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    background-color: transparent;
    text-decoration: none;
    padding: 0;
    line-height: 0;
    width: 100px;
    height: auto;
    box-shadow: 0px 0px 10px 0px #f69785;
    border-radius: 100%;
}

#header__logo__link img {
    display: block;
    width: 100%;
    max-width: 165px;
    transform: scale(1.2);
    /* position: absolute;
    top: -50px;
    left: 44%; */
}

#header__special-btn {
    display: block;
    width: fit-content;
    height: fit-content;
    background-color: transparent;
}
.header__special-btn {
    width: it-contentf;
    height: fit-content;
    background-color: transparent;
    display: none !important;
}

#header__special-btn__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 30px;
    background: linear-gradient(to right, #fba26c, #c44a00);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--box-shadow--primary);
    border-radius: 1rem;
    padding: 0.85rem 1.25rem;
}

#header__special-btn__link i.bi {
    color: #fff;
    font-size: 1.5rem;
}

#header__nav-menu-btn,
#header__nav-close-btn {
    display: none;
}

#header__nav {
    display: block;
    width: calc(150px * 7);
    height: 65px;
    background-color: #ffff;
    filter: drop-shadow(0px 4px 14px #00000012);
    /* box-shadow: var(--box-shadow--primary); */
    border-radius: 15rem;
    padding: 1rem;
    margin-inline: auto;
    position: relative;
    z-index: 10;
}

#header__nav__items {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid blue; */

    /* margin-inline: auto; */
}

#header__nav__items .nav-item {
    display: block;
    color: #333;
    text-decoration: none;
    border: none;
    padding: 0.35rem 1rem;
    border-radius: 5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

#header__nav__items .nav-item:hover {
    background-color: #efefef;
}

#header__nav__items .nav-item.style--active {
    background-color: var(--color--accent);
    color: #ffffff;
}

#header__nav__items .nav-item.style--active .bi {
    color: #ffffff;
}

.box-active {
    width: 268px;
    height: 368px;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    border-radius: 1rem;
    position: absolute;
    top: 7rem;
    left: 5rem;
}
.box-active .title_profile {
    width: 100%;
    display: flex;
    gap: 30px;
    /* border: 1px solid red; */
}
.box-active .larg-image {
    width: 50px;
    height: 50px;
}
.box-active .name-profile {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-card {
    background: #ffff;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
    transition: all 0.3s ease;
    border-top: 5px solid #0265a9;
    display: flex;
    flex-direction: column;
    height: fit-content;
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card-detail.renew:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(248, 150, 30, 0.4);
}
.card-icon {
    font-size: 2.8rem;
    color: #0265a9;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}
.card-title {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 10px;
    font-weight: 500;
}
.card-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0265a9;
    text-shadow: 0 3px 6px rgba(67, 97, 238, 0.15);
    margin-bottom: 10px;
}
.card-detail {
    font-size: 0.9rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    transition: var(--transition);
}
.card-detail.renew {
    background: linear-gradient(to right, #fba26c, #c44a00);
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(248, 150, 30, 0.3);
}
/* Pages Layout */

#page {
    margin-top: 8rem;
    min-height: calc(100vh - 10rem - 2.025rem);
    /* margin-bottom: 20rem; */
}
.page__wrapper {
    margin-bottom: 2rem;
    width: 100%;
    height: 90%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    border-radius: 1rem;
}
#page__wrapper .image {
    width: 100%;
    height: 100%;
}
#page__wrapper .image img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

/* Index Page : Content Boxes */

.box {
    width: 100%;
    margin-bottom: 5rem;
}

.box .box__wrapper:not(.box.style--first) {
    width: 100%;
    max-width: var(--wrapper--max-width);
    margin: auto;
}

.box.style--first {
    position: relative;
    background-color: transparent;
    width: 100%;
    margin-top: 14rem;
    padding: 0 55vw 0 0;
    margin-bottom: 6rem;
}

.box.style--first .box__wrapper {
    width: 100%;
}

.box.style--first .box__bg-cover {
    position: absolute;
    top: -18rem;
    right: 0rem;
    width: 50rem;
    height: 50rem;
    z-index: -1;
    /* opacity: 0.8; */
}

/* Index Page : Top Introduction Content */

.introduction__logo {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    width: 370px;
}

.introduction__text--md {
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 0 1rem;
}

.introduction__text--lg {
    font-weight: 900;
    font-size: 4rem;
}

/* Index Page : Section Title */

.section-title {
    display: block;
    width: 100%;
    margin-bottom: 3rem;
}

.section-title__line {
    display: block;
    width: 7rem;
    height: 0.65rem;
    border-radius: 2rem;
    margin: 0 auto 1rem auto;
    background-color: #701c1c;
}

.section-title__text {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Index Page : Section Button */

.section-btn {
    display: block;
    width: fit-content;
    height: auto;
    text-decoration: none;
    margin: auto;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color--primary);
    border: 3px solid var(--color--primary);
    border-radius: 5rem;
    padding: 1rem 3rem;
    background-color: #fff;
}

.section-btn:hover {
    background-color: var(--color--primary);
    color: #fff;
}

/* Index Page : shopping Section */

.shopping {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid blue; */
}
.shopping .shopping-wrapper {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    border-radius: 1rem;
    /* border: 1px solid red; */
}
.shopping .shopping-wrapper__icon {
    width: 80px;
    height: 80px;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    margin-inline: auto;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: var(--box-shadow--primary);
}
.shopping .no-shodow {
    box-shadow: none !important;
}
.shopping .shopping-wrapper__text {
    width: 100%;
    /* border: 1px solid red; */
    font-size: 0.9rem;
    text-wrap: nowrap;
}
.shopping .shopping-wrapper__topic {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    align-items: center;
    /* margin-top: 20px; */
}

.shopping .shopping-wrapper__text ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.shopping .shopping-wrapper__text .topic {
    font-size: 1.2rem;
    font-weight: 800;
}
.shopping .shopping-wrapper__text li {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
}
.shopping .shopping-wrapper__text .price {
    border-top: 2px solid #c44a00;
    border-radius: 10px;
    padding: 7px;
}
.shopping .shopping-wrapper__price {
    width: fit-content;
    /* background-color: #c44a00; */
    font-size: 0.9rem;
    border-radius: 7px;
    line-height: 40px;
    margin-inline: auto;
    font-weight: 900;
    text-align: center;
    padding: 0 0.5rem;
}
.shopping .shopping-wrapper__btn {
    width: 100%;
    height: 50px;
    background-color: #0067a5;
    box-shadow: var(--box-shadow--primary);
    font-size: 0.9rem;
    border-radius: 0.6rem;
    margin-inline: auto;
    text-align: center;
    margin-top: 5px;
}

/* Index Page : Features Section */

.features-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 0px;
    background-color: #0067a5;
    border-radius: 20px;
}

.features-title {
    width: 20%;
    margin-left: 30px;
    margin-top: 100px;
    color: #fff;
    text-align: center;
}

.features-title h5 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.features-title h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );
    border-radius: 2px;
}

.features-title p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.slider-container {
    width: 80%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 40px;
}

.slider {
    width: 90%;
    display: flex;
    flex-direction: row-reverse;
    transition: transform 0.8s cubic-bezier(0.16, 0.77, 0.39, 0.98);
    height: 350px;
    gap: 15px;
    align-items: center;
    margin-inline: 20px;
}

.slide {
    min-width: 34%;
    max-height: 260px;
    padding: 25px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 15px;
}

.slide-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.slide h2 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.slide p {
    max-width: 90%;
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #9ca6ab;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background-color: #d1d5db;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    transform: scale(1.3);
}

.slider-dot.active {
    background: linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );
    transform: scale(1.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.slider-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prev {
    left: 20px;
}

.next {
    right: 12px;
}

@media (min-width: 426px) and (max-width: 768px) {
    .features-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .slider-container {
        width: 95%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .features-title {
        width: 100%;
        position: static;
        text-align: center;
    }

    .features-title h1::after {
        right: 50%;
        transform: translateX(50%);
    }

    .slider {
        height: 250px;
    }

    .slide {
        min-width: 50%;
    }

    .slide-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .slide h2 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .slide p {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}
@media (max-width: 425px) {
    .features-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .slider-container {
        width: 95%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .features-title {
        width: 100%;
        position: static;
        text-align: center;
    }

    .features-title h1::after {
        right: 50%;
        transform: translateX(50%);
    }

    .slider {
        height: 250px;
    }

    .slide {
        min-width: 95%;
    }

    .slide-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .slide h2 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .slide p {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

.slide h4 {
    color: #c44a00;
}

.mask2 {
    mask-image: linear-gradient(to right, black 99%, rgba(0, 0, 0, 0));
}

/* Index Page : Customers Section */

.customer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.customer .customer-topic {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.5;
    background-color: #ffff;
    padding-inline: 20px;
    /* border: 1px solid red; */
}

.customer .customer-wrapper {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    padding: 1rem 0.5rem;
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.customer .customer-wrapper__image {
    display: block;
    width: 100%;
    max-width: 128px;
    height: auto;
}

.customer:hover .customer-wrapper {
    transform: scale(1.035);
}

/* Index Page : Download Section */

.download {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.download .download-wrapper {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    padding: 1.35rem;
    border-radius: 0.75rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
}
.download_boxSize .download-wrapper {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    padding: 1.35rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    /* justify-content: center; */
    align-items: center;
    position: relative;
}
.download_boxSize .download-app {
    width: 80%;
    /* border: 1px solid red; */
    display: flex;
    gap: 10px;
}
.download_boxSize .download-app .app {
    width: 50%;
    /* background-color: #701c1c; */
}
.download_boxSize .app .DBox {
    width: 90%;
    display: flex;
    gap: 5px;
    font-size: 0.8rem;
    background-color: aqua;
    text-align: center;
    align-items: center;
    justify-content: center;
    /* text-wrap: nowrap; */
}
.download_boxSize .app .DBox span {
    line-height: 23px;
    height: 20px;
    color: #fff;
}

.download .download-wrapper__icon {
    display: block;
    width: fit-content;
    /* text-align: center; */
}

.download .download-wrapper__icon i.bi {
    font-size: 3rem;
    color: var(--color--primary);
    line-height: 100px;
}

.download .download-wrapper__text,
.download_boxSize .download-wrapper__text {
    display: block;
    width: fit-content;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color--primary);
    text-decoration: underline;
}
.download_boxSize .text {
    text-decoration: none;
    font-size: 0.8rem;
    color: var(--color--primary);
}

.download:hover .download-wrapper__text {
    color: var(--color--accent);
}

.download:hover .download-wrapper__icon i.bi {
    color: var(--color--accent);
}
.download-wrapper .download-icon {
    width: 100px;
    height: 100px;
    /* border: 1px solid red; */
    box-shadow: var(--box-shadow--primary);
    border-radius: 30%;
    background: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download_boxSize {
    height: fit-content;
}
/* Index Page : Contact Us Section */

.contact-us {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.contact-us .contact-us-wrapper {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    padding: 2rem;
    border-radius: 0.75rem;
    display: block;
}

.contact-us .contact-us-wrapper__image {
    display: block;
    width: 100%;
    max-width: 128px;
    margin: auto;
}

.contact-us .contact-us-wrapper__title {
    display: block;
    width: 100%;
    font-weight: 900;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 1rem;
}

.contact-us .contact-us-wrapper__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    margin: auto;
}

.contact-us .contact-us-wrapper__item i.bi {
    color: var(--color--accent);
    font-size: 1.5rem;
    line-height: 0;
}

.contact-us .contact-us-wrapper__item a {
    text-decoration: none;
    color: var(--color--primary);
}

@media screen and (max-width: 768px) {
    .contact-us .contact-us-wrapper__item {
        width: 100%;
    }
}

/* Index Page : Profile Section */

.profile {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.back {
    background-color: hsl(202.55deg 100% 32.35%);
    color: #fff !important;
    margin-left: 10px;
    font-size: 0.85rem;
}
#profileItem {
    position: absolute;
    top: 0;
    z-index: 2000;
    right: -900px;
    transition: right 0.4s ease-in-out;
}
.topbar {
    background: white;
    padding: 5px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 15px;
}
.menu-toggle {
    background: #0067a5;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
}
.menu_active {
    top: 20px !important;
    right: 0px !important;
}

.expanded {
    height: 400px !important;
}

.profile .profile-wrapper {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    /* padding: 2rem; */
    padding-inline: 0.7rem;
    color: #737789;
    border-radius: 0.75rem;
    display: block;
    border-bottom-left-radius: 10px;
}
.profile .profile-wrapper__top {
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #dddee0;
    /* align-items: center; */
}
.profile .profile-wrapper__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* border: 1px solid blue; */
    align-items: center;
}
.profile .profile-wrapper__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}
.profile .profile-wrapper__list li:hover {
    background-color: #ffa873;
    cursor: pointer;
}
.profile .profile-wrapper__list a {
    color: #55768b !important;
}
.profile .profile-wrapper__list li {
    display: flex;
    gap: 15px;
    margin-right: 7px;
    border-radius: 7px;
    color: #55768b !important;
}
/* Index Page : ticket part */

.ticket {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.ticket .ticket-wrapper {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    /* padding: 2rem; */
    /* padding-inline: 0.7rem; */
    color: #737789;
    border-radius: 0.75rem;
    display: block;
    border-bottom-left-radius: 10px;
    position: relative;
}
.ticket .ticket-wrapper .noti {
    text-align: center;
    margin-top: 9rem;
}
.ticket .ticket-holder {
    height: 100%;
    /* border: 1px solid red; */
    /* overflow-y: scroll; */
}
.ticket .ticket-container {
    min-height: 334px;
    height: auto;
    /* border: 1px solid blue; */
}
.ticket .ticket-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    margin-right: 0;
    /* border: 1px solid black; */
}

.ticket .ticket-item .card-radio {
    width: 120px;
    height: 127px;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    /* padding: 2rem; */
    /* padding-inline: 0.7rem; */
    color: #737789;
    border-radius: 0.75rem;
    display: block;
    cursor: pointer;
}
.ticket .ticket-item input:checked + .card-radio {
    color: #0067a5;
}
.ticket .ticket-items {
    width: 100%;
    height: fit-content;
    color: #55768b;
    display: flex;
}
.ticket .ticket-items .item {
    font-size: 15px;
}
.ticket .ticket-item .ticket-form {
    height: 175px;
    overflow: hidden;
    transition: height 0.6s ease-out;
}
.ticket .ticket-item .ticket-form .file {
    border-radius: 10px;
    background-color: rgba(1, 104, 160, 0.2);
    color: rgb(49, 141, 193);
}

.ticket .ticket-items .circle {
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    width: 21px;
    height: 21px;
    line-height: 23px;
    text-align: center;
    color: rgba(85, 118, 139, 1);
    background-color: rgba(49, 140, 193, 0.615);
}

.ticket .ticket-btn {
    width: 90%;
    /* border: 1px solid black; */
    display: flex;
    justify-content: end;
    position: absolute;
    bottom: 0;
    left: 1rem;
}
.ticket .ticket-answer {
    width: fit-content;
    height: fit-content;
    /* border: 1px solid black; */
    box-shadow: var(--box-shadow--primary);
    border-radius: 10px;
}
.ticket .ticket-Subject {
    width: 100%;
    height: fit-content;
    background-color: #ffa873;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* border-radius: 10px; */
}

.ticket .ticket-top {
    color: #55768b;
    width: 100%;
    /* border: 1px solid red; */
    border: none;
}
.ticket .ticket-top .topic-table {
    width: 100%;
    font-size: 15px;
    /* border: 1px solid red; */
}
.ticket .ticket-top .right {
    width: 45%;
    /* border: 1px solid red; */
    font-size: 20px;
    color: #55768b;
}
.ticket .ticket-top .searchbox {
    /* overflow: hidden; */
    width: 25px;
    /* border: 1px solid red; */
    transition: width 0.8s ease-in;
}

.ticket .ticket-top .searchbox.active {
    overflow: hidden;
    width: 200px;
    border-radius: 0.5rem;
    border: 1px solid rgba(9, 30, 66, 0.25);
    /* box-shadow: 0 5px 8px -4px rgba(9, 30, 66, 0.25),
    0 1px 0 0 rgba(9, 30, 66, 0.08); */
    background-color: white;
    transition: width 0.8s ease-out;
}
.ticket .ticket-top .searchbox .searh {
    border: none;
    font-size: 13px;
}
.ticket .ticket-top .left {
    /* position: absolute;
    right: 540px; */
    width: 55%;
    font-weight: 600;
    color: #55768b;
    font-size: 20px;
    /* border: 1px solid blue; */
    text-align: right;
}
.ticket .header {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 0px 8px -2px,
        rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    background: linear-gradient(to right, #fba26c, #c44a00);
    border-bottom: 1px solid #ccc;
    border-radius: 0.75rem;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    position: relative;
    height: 40px;
    color: #ffff;
}
.ticket .header .item {
    position: absolute;
    left: 15px;
}
.ticket .chat-area {
    height: 400px;
    padding: 20px;
    overflow-y: auto;
    /* background: #f5f8fe; */
    border-bottom: 1px solid #f5f8fe;
    /* position: absolute; */
    /* top: 50px; */
    left: 15px;
}
.ticket .chat-area .message {
    background: #f5f8fe;
    width: fit-content;
    max-width: 50%;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 0px 8px -2px,
        rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    animation: fadeIn 0.5s ease;
    display: flex;
    flex-direction: column;
}

.ticket .chat-area .Answer {
    background: #0067a5;
    width: fit-content;
    max-width: 50%;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 0px 8px -2px,
        rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    color: #ffff;
    animation: fadeIn 0.5s ease;
    margin-top: 2rem;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}
.ticket .chat-area .Answer a {
    color: #fff !important;
}
.ticket .chat-area .messageContainer {
    width: 100%;
    /* display: flex;
    flex-direction: row-reverse;
    justify-content: space-between; */
}
.table-container {
    background: #ffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}
thead {
    background: linear-gradient(to right, #fba26c, #c44a00);
    color: white;
}
thead th {
    padding: 18px 15px;
    text-align: right;
    font-weight: 600;
    font-size: 1.1rem;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}
tbody td {
    padding: 16px 15px;
    text-align: right;
    font-size: 1rem;
}
.cell {
    width: 10px; /* عرض ثابت */
    height: 50px; /* ارتفاع ثابت */
}
.server-name {
    font-weight: 700;
    display: flex;
    align-items: center;
}
.server-id {
    font-weight: 500;
    color: #7f8c8d;
    font-size: 0.9rem;
}
.specs {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-active {
    background: rgba(46, 204, 113, 0.15);
    color: #388e3c;
}

.status-indicator {
    margin-left: 8px;
    color: red;
    background: rgba(231, 76, 60, 0.15);
}
.status-Under_review {
    color: rgb(252, 170, 103);
    background-color: rgba(252, 170, 103, 0.08);
}
.link-chat {
    border-radius: 10px;
    padding: 4px 7px;
    width: fit-content;
    background-color: #d7e8f5;
    color: #318dc1;
    font-size: 1rem;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ticket .chat-area .timestamp {
    text-align: left;
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

.card {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 2rem;
}
.card .card-wrapper {
    width: 100%;
    height: 100%;
    background-color: #ffff;
    box-shadow: var(--box-shadow--primary);
    color: #737789;
    display: block;
}
.card .card-titile {
    color: #fff;
    font-weight: 700;
    box-shadow: var(--box-shadow--primary);
}

.card .card-container {
    width: 100%;
    /* background: #eef4fc; */
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.card .card-video {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.card .card-colors-selection {
    position: absolute;
    top: 30%;
    z-index: 999;
}

.color-selection-item {
    list-style: none;
    margin-bottom: 1rem;
    border: 2px solid #4980e0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}
.color .color-selection {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4980e0;
    margin: 2px;
}
.color .card-video-item {
    width: 100%;
}

/* Free Consulting Page */

#page.consulting .big-image {
    display: block;
    width: 100%;
    height: auto;
    align-self: center;
    max-width: 512px;
    margin: auto;
}

#page.consulting .form-box {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    box-shadow: var(--box-shadow--primary);
    padding: 2rem;
    border-radius: 0.75rem;
}

#page.consulting .big-title {
    display: block;
    width: 100%;
    color: #333;
    font-weight: 900;
    font-size: 2rem;
    position: relative;
    margin-bottom: 2.5rem;
}

#page.consulting .big-title::before {
    content: "";
    display: block;
    position: absolute;
    height: 65%;
    width: 45%;
    background-color: #ffc107;
    z-index: -1;
    right: 0;
    top: 55%;
}

/* End Footer */

#end {
    display: block;
    width: 100%;
    background-color: #3a3a3a;
    padding: 0.5rem;
}

#end a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 0.7rem;
    color: #ccc !important;
}
.color-c {
    color: #c5c5c5;
    font-size: 15px;
}
.color-f {
    color: #ffff;
    font-size: 15px;
}
.color-fc {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
}
.active {
    background-color: #ffa873;
    border-radius: 7px;
}

@media screen and (max-width: 1100px) {
    #header__top__items {
        width: 96%;
    }
    #header__nav {
        width: calc(150px * 6);
    }
    #header__special-btn__link {
        width: 112px;
        font-size: 0.65rem;
    }
    #header__nav__items .nav-item {
        font-size: 0.76rem;
    }
    .hanging-system {
        top: 130px;
        left: 50px;
    }
    .celestial-body {
        width: 55px;
        height: 55px;
    }
    .introduction__logo {
        width: 250px;
        top: 80px;
        right: 70px;
    }
}
@media screen and (max-width: 992px) {
    #page {
        margin-top: 8rem;
        min-height: calc(100vh - 8rem - 2.025rem);
    }
    .box.style--first {
        margin-top: 7rem;
        padding: 0;
    }

    .box.style--first .box__wrapper {
        width: fit-content !important;
        margin: auto !important;
    }

    .box.style--first .box__bg-cover {
        display: none;
    }
    .introduction__logo {
        margin: auto;
    }

    .introduction__text--lg {
        text-align: center;
    }
    #header__top__items {
        display: none;
    }
    #header__logo {
        display: block;
    }
    #header__wrapper {
        padding: 1rem 1rem 0;
    }

    #header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        padding: 0.5rem;
        display: none;
    }

    #header__nav__items .nav-item {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
    }

    #header__nav-menu-btn {
        display: block;
        padding: 0.5rem;
        border-radius: 0.5rem;
    }

    #header__nav-menu-btn i.bi {
        line-height: 0;
        font-size: 2rem;
        color: #fff !important;
    }

    #header__nav-close-btn {
        display: flex;
        justify-content: flex-end;
    }

    #header__nav.style--open {
        display: block;
        margin: 0 !important;
    }

    #header__nav.style--open #header__nav__items {
        display: block;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .margin-top {
        margin-top: 30px;
    }
    .container-slider-p {
        flex-direction: column;
    }
    .container-slider-p .slider-title {
        width: 100%;
        /* margin-right: 0; */
        padding-right: 0;
        margin: 0;
    }
    .container-slider-p .slider {
        width: 100%;
    }
    .container-slider-p .slider-item {
        width: 18%;
    }
    .hanging-system {
        display: none;
    }
    .profileItem {
        display: none;
    }
    #profileItem {
        display: block;
    }
    #header__logo {
        display: none;
    }
    #header__special-btn {
        display: none;
    }
    .header__special-btn {
        display: block !important;
    }
    .introduction__logo {
        width: 200px;
    }
    .introduction__logo {
        width: 300px;
        top: 0;
        right: 0;
    }
}

@media (max-width: 450px) {
    .ticket-items {
        display: none !important;
    }
}
