*,
*::before,
*::after{
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure,
figcaption{
    margin: 0;
}

.hero .right .subtitle,
.hero .right .description,
.hero .left .textbox .title,
.hero .left .textbox .description,
.aboutTissa .left .content .description,
.tissaFeature .right .content .description,
.tissaAchievement .right .achievement ul li.item .content .description,
.tissaContact .right .achievement ul li.item .content .description,
.tissaSupporters .content .description,
.tissaSupporters .supporters-header .description,
.footer .center{
    margin: 0;
}

address.description{
    margin: 0;
    font-style: inherit;
}

:root{
    --font-family: IRANSansX, Tahoma, Arial, sans-serif;
    --primary-color: #EEF3F7;
    --secondary-color: #0A308333;
    --title-color: #010190;
    --text-color: #637381;
    --sections-border-radius: 40px;
    --images-border-radius: 20px;
    --box-content-padding: 5%;
}
.flex{
    display: flex;
}
html,
body,
button,
input,
textarea,
select{
    font-family: var(--font-family);
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    margin: 0;
}
.container {
    width: 90%;
    position: relative;
}
.container .header{
    text-align: right;
    padding: 0 30px;
}
.container .header .logo img{
    width: 101px;
    height: 70px;
    margin: 17px 0;
}
.hero{
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap-reverse;
    /* background-color: var(--secondary-color); */
    gap: 10px;
    border-radius: var(--sections-border-radius);
    position: relative;
}
.hero .bg{
    z-index: -2;
    position: absolute;
    top: -72px;
    right: -3px;
    width: 100%;
    border-radius: 26px;
}
.hero .shape-svg {
    position: absolute;
    top: 3%;
    right: 15%;
    width: 10%;
    height: 30%;
    z-index: 0;
}
.hero .right{
    width: 45%;
    /*
    background-image: url(../img/Clip\ path\ group.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    position: relative;
    padding-right: var(--box-content-padding);
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/Clip\ path\ group.png);
    /* background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -2;
}

.hero .right .title{
    color: var(--title-color);
    font-size: 72px;
    font-weight: bolder;
}
.hero .right .subtitle{
    color: var(--title-color);
    font-size: 32px;
    font-weight: bold;
    padding: 16px 0;
}
.hero .right .description{
    color: var(--text-color);
    font-size: 16px;
    font-weight: normal;
    text-align: justify;
}
.hero .left{
    position: relative;
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}
/* کانتینر واحد تصویر + textbox + badge — همهٔ موقعیت‌ها درصدی نسبت به همین باکس */
.hero .hero-visual{
    position: relative;
    width: min(100%, 25rem);
    max-width: 100%;
    margin-inline: auto;
    line-height: 0;
    container-type: inline-size;
    container-name: hero-visual;
}
.hero .left .image{
    display: block;
    width: 100%;
    z-index: 1;
}
.hero .left .image img{
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 414;
    object-fit: contain;
    display: block;
    vertical-align: top;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}
.hero .left .image:hover img{
    transform: scale(1.08) translateY(-8px);
    filter: drop-shadow(0 15px 30px rgba(10, 48, 83, 0.2));
}
.hero .left .textbox{
    position: absolute;
    top: 0.5%;
    right: -30%;
    left: auto;
    width: 40%;
    min-width: 6.75rem;
    max-width: 10rem;
    height: auto;
    min-height: 21.7%;
    padding-bottom: 0.35rem;
    border-radius: clamp(10px, 4cqw, 16px);
    background-color: rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
    line-height: normal;
    box-sizing: border-box;
}
.hero .left .textbox .title{
    color: var(--title-color);
    font-size: clamp(0.875rem, 6.5cqw, 1.5rem);
    font-weight: bold;
    padding: 0.45rem clamp(0.5rem, 5cqw, 1.25rem) 0.2rem;
    margin: 0;
    line-height: 1.25;
}
.hero .left .textbox .description{
    color: var(--text-color);
    font-size: clamp(0.6875rem, 3.6cqw, 0.875rem);
    font-weight: normal;
    padding: 0  clamp(0.5rem, 5cqw, 1.25rem) 0.45rem;
    margin: 0;
    line-height: 1.45;
}
.hero .left .badge{
    position: absolute;
    top: 1%;
    left: 0%;
    width: 29.75%;
    max-width: 7.4375rem;
    z-index: 2;
    line-height: 0;
    cursor: pointer;
    will-change: transform;
    transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
    -webkit-tap-highlight-color: transparent;
}
.hero .left .badge img{
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    transition: transform 0.25s ease, filter 0.25s ease;
    transform-origin: center center;
}
.hero .left .badge:hover img{
    transform: scale(1);
    filter: none;
}
.hero .left .badge:active img{
    transform: scale(1);
    filter: none;
}
@media (prefers-reduced-motion: reduce){
    .hero .left .badge{
        transform: none;
    }
    .hero .left .badge:hover img,
    .hero .left .badge:active img{
        transform: none;
        filter: none;
    }
}
.aboutTissa{
    border-radius: var(--sections-border-radius);
    margin-top: 20%;
    align-items: center;
    gap: 15px;
    padding: 0 var(--box-content-padding);
    position: relative;
}
.aboutTissa .bg{
    z-index: -2;
    position: absolute;
    top: -75px;
    right: -3px;
    width: 100%;
    border-radius: 26px;
}
.aboutTissa .right{
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    /* padding-right: var(--box-content-padding); */
}
.aboutTissa .right .title{
    color: var(--title-color);
    font-size: 35px;
    font-weight: bold;
}
.aboutTissa .right .img img{
    width: 420px;
    height: 300px;
    margin: 25px -25px 25px 25px;
    border-radius: var(--images-border-radius);
}
.aboutTissa .left{
    flex-direction: column;
    margin-top: 45px;
    margin-bottom: 20px;
    width: 57%;
    padding-right: 30px;
}
.aboutTissa .left .content .title{
    color: var(--title-color);
    font-weight: 600;
    margin: 10px 0;
}
.aboutTissa .left .content .description{
    color: var(--text-color);
    text-align: justify;
    font-size: 14px;
}
.tissaProduct {
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../img/fa046a60bcca42659697c6a746e93f95ee1be135.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--sections-border-radius);
    padding: 0 var(--box-content-padding);
    margin-top: 17%;
    color: #fff;
}

@media (min-width: 1001px){
    .tissaProduct{
        height: 410px;
    }

    .tissaProduct .tab-panels{
        flex: 1;
        width: 100%;
        min-height: 0;
    }

    .tissaProduct .tab-panel{
        height: 100%;
        overflow-y: auto;
        padding-inline-end: 10px;
    }
}

.tissaProduct::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.543); /* 0.6 = 60% تیره */
    border-radius: inherit;
    z-index: 1;
}

.tissaProduct > * {
    position: relative;
    z-index: 2;
}
.tissaProduct .title{
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}
.tissaProduct .tabs{
    border-radius: 30px;
    background-color: #0C2A537A;
    margin-top: 15px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}
.tissaProduct .tabs ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 2vw, 28px);
    flex-wrap: wrap;
    min-width: max-content;
}
.tissaProduct .tabs ul{
    margin: 0;
    padding: 8px 12px;
    list-style: none;
}
.tissaProduct .tabs ul li{
    margin: 0;
    padding: 0;
}
.tissaProduct .tabs button{
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: small;
    padding: 10px 16px;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.tissaProduct .accordion-toggle{
    display: none;
}
.tissaProduct .tabs button:hover{
    background-color: #ffffff20;
}
.tissaProduct .tabs button[aria-selected="true"],
.tissaProduct .tabs button.is-active{
    background-color: #fff;
    color: #010190;
}
.tissaProduct .tab-panels{
    width: 100%;
}
.tissaProduct .tab-panel{
    padding: 30px 0;
    font-size: small;
    text-align: justify;
    line-height: 1.9;
}
.tissaProduct .tab-panel[hidden]{
    display: none;
}
.tissaProduct .tab-panel p + p{
    margin-top: 1rem;
}

.tissaFeature{
    border-radius: var(--sections-border-radius);
    margin-top: 18%;
    align-items: center;
    gap: 11%;
    padding: 0 var(--box-content-padding);   
    padding: 30px;
    align-items: start;
    position: relative;
}
.tissaFeature .bg{
    z-index: -2;
    position: absolute;
    top: -125px;
    right: -3px;
    width: 100%;
    border-radius: 26px;
}
.tissaFeature .right{
    flex-direction: column;
    /* justify-content: center; */
    align-items: start;
    margin-top: -45px;
    /* gap: 20px; */
    /* padding-right: var(--box-content-padding); */
}
.tissaFeature .right .title-1{
    color: var(--title-color);
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    transform: translateY(-40px);
    margin-left: 15px;
}
.tissaFeature .right .img img{
    width: 420px;
    height: 300px;
    margin: 25px -25px 25px 25px;
    border-radius: var(--images-border-radius);
}
.tissaFeature .right .content .title{
    color: var(--text-color);
    font-size: 15px;
    font-weight: bold;
}
.tissaFeature .right .content .description{
    color: var(--text-color);
    font-size: 12px;
    text-align: justify;
    
}
.tissaFeature .left,
.tissaFeature .feature-cards-slider{
    display: block;
    flex: 0 0 50%;
    width: 50%;
    min-width: 300px;
    max-width: 54%;
}
.tissaFeature .right{
    flex: 0 0 46%;
    width: 46%;
    max-width: 520px;
}
.tissaFeature .feature-cards-slider{
    width: 100%;
    min-height: 340px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
}
.tissaFeature .feature-cards-slider::-webkit-scrollbar{
    display: none;
}
.tissaFeature .feature-cards-track{
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: max-content;
    min-width: 100%;
    flex-shrink: 0;
    padding: 4px 2px 8px;
}
.tissaFeature .feature-cards-track .cart,
.tissaFeature .feature-cards-track .cart-2{
    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: width 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
    cursor: pointer;
}
.tissaFeature .feature-cards-track .cart.is-active,
.tissaFeature .feature-cards-track .cart-2.is-active{
    width: 280px;
    filter: none;
    opacity: 1;
}
.tissaFeature .feature-cards-track .cart:not(.is-active),
.tissaFeature .feature-cards-track .cart-2:not(.is-active){
    width: 170px;
    filter: blur(2px);
    opacity: 0.85;
}
.tissaFeature .left .cart,
.tissaFeature .feature-cards-track .cart{
    border: 1px solid #0C2A531F;
    border-radius: 16px;
    text-align: center;
    color: var(--title-color);
    padding-bottom: 15px;
}
.tissaFeature .feature-cards-track .cart{
    border: 0;
}
.tissaFeature .left .cart .title{
    font-size: 15px;
    font-weight: bold;
}
.tissaFeature .left .cart .description{
    font-size: 12px;
    padding: 0 5px;
}
.tissaFeature .left .cart .img{
    box-shadow: 0 30px 50px rgba(255, 255, 255, 0.4), inset 0 -15px 30px rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: inline-block;
}
.tissaFeature .left .cart .img img{
    border-radius: 15px;
    width: 280px;
}
.tissaFeature .feature-cards-track .cart .img img,
.tissaFeature .feature-cards-track .cart-2 .img img{
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}
.tissaFeature .feature-cards-track .cart-2 .img img{
    max-width: 100%;
}
.tissaFeature .feature-cards-track .cart-2 .title{
    font-size: 14px;
}
.tissaFeature .feature-cards-track .cart-2 .description{
    font-size: 12px;
}
.tissaAchievement{
    /* background: linear-gradient(135deg, #000309 0%, #04226B 24%, #0194FE 53%, #012B5A 90.27%); */
    /* border-radius: var(--sections-border-radius); */
    position: relative;
    margin-top: 10%;
    justify-content: space-evenly;
    gap: 5%;
    /* padding: 30px var(--box-content-padding);    */
}
.tissaAchievement-main{
    gap: 20%;
}
.tissaAchievement .right .title{
    color: #fff;
    font-size: 35px;
    font-weight: bold;
}
.tissaAchievement .right{
    position: relative;
    padding: 5px var(--box-content-padding);
    border-radius: var(--sections-border-radius);
    overflow: hidden;
    background: transparent;
}
.tissaAchievement .bg{
    z-index: -2;
    position: absolute;
    top: -17px;
    right: 0%;
    width: 74%;
    border-radius: 26px;
}
.achievement{
    margin-top: 20px;
}
/* .tissaAchievement-main .right::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000309 0%, #04226B 24%, #1373b8 53%, #012B5A 90.27%);
    z-index: -1;
    border-radius: var(--sections-border-radius);
    clip-path:polygon(
        100% 0%,
    100% 100%,
    74% 197%,
    12% 94%,
    10% 89%,     
    9% 84%,
    5% 53%,    
    0% 14%,
    0% 5%,
    4% 0%,
    10% 0%
    )
} */

.tissaAchievement .right .achievement ul,
.tissaContact .right .achievement ul{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(12px, 10vw, 73px);
    row-gap: clamp(16px, 3vw, 24px);
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.tissaAchievement .right .achievement ul{
    margin-right: -40px;
}
.tissaAchievement .right .achievement ul li.item,
.tissaContact .right .achievement ul li.item{
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    min-width: 0;
}
.tissaAchievement .right .achievement ul li.item .icon{
    background-color: #ffffff20;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tissaAchievement .right .achievement ul li.item .content .title{
    font-size: large;
}
.tissaAchievement .right .achievement ul li.item .content .description{
    font-size: small;
    color: #fff;
}
.tissaContact .right .achievement ul{
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.tissaContact .right .achievement ul li.item .content{
    width: 100%;
    min-width: 0;
}

.tissaContact .right .achievement ul li.item .description + .description,
.tissaContact .right .achievement ul li.item address.description + address.description{
    margin-top: 5px;
}

.tissaContact .contact-link{
    color: inherit;
    text-decoration: none;
}
.tissaAchievement .left img{
    width: 350px;
    height: 250px;
    margin-top: -10px;
}
.tissaAchievement .left-contact-image img{
    width: 90%;
    height: 100%;
}
.tissaAchievement .mobile-achievement-image{
    display: none;
}
.tissaDownload{
    margin-top: 10%;
    width: 99.3vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: url('../img/tissaDownload/Frame 1000005968 (3).png') center bottom / cover no-repeat;
    overflow: hidden;
}
.download-scene{
    position: relative;
    width: 60%;
    max-width: 1400px;
    margin: 1.786% auto;
    aspect-ratio: 1400 / 820;
    container-type: inline-size;
    container-name: download;
}
.download-hub{
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: 28%;
    aspect-ratio: 1 / 1;
    padding: 3.2%;
    border-radius: 50%;
    background: #8d97a3;
    box-sizing: border-box;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.857cqw 2.857cqw rgba(0, 0, 0, 0.35);
}
.download-hub img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}
.download-orbit{
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: 35%;
    aspect-ratio: 1 / 1;
    z-index: 2;
}
.download-orbit-border{
    position: absolute;
    inset: 0;
    border: max(1px, 0.143cqw) solid var(--title-color);
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: 0 0 1.714cqw rgba(0, 145, 234, 0.25);
}
.download-node{
    width: 4cqw;
    height: 4cqw;
    border-radius: 50%;
    background: var(--title-color);
    border: max(1px, 0.143cqw) solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0.286cqw 1cqw rgba(0, 145, 234, 0.35);
}
.download-node img{
    width: 58%;
    height: 58%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.download-point{
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.714cqw;
    transform: translate(-50%, -50%);
    z-index: 4;
}
.download-tip{
    width: 35.714cqw;
    padding: 0.714cqw 0.857cqw;
    border-radius: 0.857cqw;
    background: #fff;
    box-shadow: 0 0.571cqw 1.571cqw rgba(0, 0, 0, 0.16);
}
.download-tip p{
    margin: 0;
    color: #1b2a4a;
    font-size: 2cqw;
    line-height: 1.65;
    font-weight: 600;
    text-align: center;
}
.download-point-1{
    left: 50%;
    top: -7%;
    flex-direction: column;
    transform: translate(-50%, calc(-50% - 0.571cqw));
}
.download-point-1 .download-tip{
    margin-bottom: 0.571cqw;
}
.download-point-2{
    left: 143%;
    top: 22%;
    flex-direction: row-reverse;
}
.download-point-3{
    left: -43%;
    top: 22%;
    flex-direction: row;
}
.download-point-4{
    left: 148%;
    top: 72%;
    flex-direction: row-reverse;
}
.download-point-5{
    left: -47%;
    top: 72%;
    flex-direction: row;
}
.download-chevron{
    position: absolute;
    width: 3cqw;
    height: 3cqw;
    transform: translate(-50%, -50%);
    z-index: 4;
    filter: drop-shadow(0 0 0.429cqw rgba(0, 145, 234, 0.5));
}
.download-chevron-1{
    left: 38%;
    top: 96%;
    transform: translate(-130%, -50%) rotate(245deg);
}
.download-chevron-2{
    left: 69%;
    top: 96%;
    transform: translate(-50%, -50%) rotate(206deg);
}
.download-actions{
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    width: 52%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.143cqw;
    z-index: 5;
}
.download-btn{
    flex: 1 1 0;
    min-height: 5.857cqw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.714cqw;
    padding: 0.714cqw 3.286cqw;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 1.6cqw;
    font-weight: 700;
    background: linear-gradient(90deg, #003b8f 0%, var(--title-color) 100%);
    box-shadow: 0 0.714cqw 1.714cqw rgba(0, 80, 180, 0.35);
    transition: transform 0.2s ease;
}
.download-btn:hover{
    transform: translateY(-0.143cqw);
}
.download-btn img{
    width: 2cqw;
    height: 2cqw;
    object-fit: contain;
    flex-shrink: 0;
}
.download-btn span{
    white-space: nowrap;
}
.tissaOrganization{
    border-radius: var(--sections-border-radius);
    padding: 5px var(--box-content-padding);
    margin-top: 24%;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
}
.tissaOrganization .bg{
    z-index: -2;
    position: absolute;
    top: -100px;
    right: -26px;
    width: 100%;
    border-radius: 26px;
}
.tissaOrganization .right{
    width: 60%;
}
.tissaOrganization .right .title{
    color: var(--title-color);
    font-size: 35px;
    font-weight: bold;
    margin: 20px 0;
}
.tissaOrganization .right .description{
    color: var(--text-color);
    font-size: small;
    margin: 7px 0;
}
.tissaOrganization .right .description ul{
    margin-right: -20px;
}
.tissaOrganization .left img{
    width: 420px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--images-border-radius);
}
.tissaSupporters{
    justify-content: center;
    align-items: center;
    margin: 10% 0;
    position: relative;
    min-height: clamp(480px, 58vw, 680px);
    width: 100%;
}
.tissaSupporters .orbit-ring{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 43%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}
.tissaSupporters .orbit-ring .border{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--title-color);
    border-radius: 50%;
    box-sizing: border-box;
}
.tissaSupporters .orbit-ring .arrow{
    position: absolute;
    width: clamp(22px, 2.8vw, 32px);
    height: clamp(22px, 2.8vw, 32px);
}
.tissaSupporters .orbit-ring .arrow-1{
    top: 0;
    left: 50%;
    transform: translate(-50%, -47%) rotate(44deg);
}
.tissaSupporters .orbit-ring .arrow-2{
    top: 50%;
    right: 0;
    left: auto;
    transform: translate(46%, -50%) rotate(132deg);
}
.tissaSupporters .orbit-ring .arrow-3{
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translate(-50%, 46%) rotate(225deg);
}
.tissaSupporters .orbit-ring .arrow-4{
    top: 50%;
    left: 0;
    transform: translate(-47%, -50%) rotate(317deg);
}
.tissaSupporters .brands{
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(92%, 850px);
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.tissaSupporters .brands-orbit{
    position: relative;
    width: 100%;
    height: 100%;
}
.tissaSupporters .brand-slot{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: rotate(var(--angle, 0deg)) translateY(calc(-1 * var(--orbit-radius, 180px)));
    transform-origin: 0 0;
}
.tissaSupporters .brand-slot[data-ring="inner"] .brand-card img{
    padding: 6px;
}
.tissaSupporters .brand-upright{
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(48px, 5.2vw, 68px);
    height: clamp(48px, 5.2vw, 68px);
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle, 0deg))) translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
    will-change: transform;
}
.tissaSupporters .brand-slot[data-ring="outer"] .brand-upright{
    width: clamp(52px, 5.6vw, 72px);
    height: clamp(52px, 5.6vw, 72px);
}
.tissaSupporters .brand-card{
    width: 100%;
    height: 100%;
}
.tissaSupporters .brand-card img{
    width: 100%;
    height: 100%;
    padding: 7px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(10, 48, 131, 0.14);
    object-fit: contain;
    box-sizing: border-box;
    display: block;
}
.tissaSupporters .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: #747F9433;
    border-radius: 50%;
    width: 30%;
    aspect-ratio: 1 / 1;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tissaSupporters .content .title{
    color: var(--title-color);
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}
.tissaSupporters .content .description{
    color: var(--text-color);
    font-size: 10px;
    text-align: justify;
    padding: 0 25px;
}
.tissaContact{
    position: relative;
}
.tissaContact .right .achievement{
    transform: translateX(-30px);
    margin-top: 10px;
}
.tissaContact .bg{
    z-index: -2;
    position: absolute;
    top: -23px;
    right: 24%;
    width: 74%;
    border-radius: 26px;
}
.tissaContact-11 .right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000309 0%, #04226B 24%, #1373b8 53%, #012B5A 90.27%);
    z-index: -1;
    border-radius: var(--sections-border-radius);
    clip-path: polygon(
        0% 5%,
        3% 0%,
        97% 0%,
        100% 5%,
        100% 95%,
        97% 100%,
        3% 100%,
        0% 95%,
        0% 5%
    );
}
.footer{
    justify-content: space-between;
    align-items: center;
    background-color: #021235;
    width: 99vw;
    /* margin-right: calc(50% - 50vw); */
    /* margin-left: calc(50% - 50vw); */
    padding: 5px var(--box-content-padding); 
    margin-top: 10%;
    margin-bottom: -8px;
    
}
.footer .right img{
    width: 70%;
}
.footer .center{
    color: #fff;
    text-align: center;
}
.footer .left{
    gap: 10px;
}
.footer .left img{
    width: 25px;
}

/* ——— Hero responsive ——— */
@media (max-width: 1280px){
    .hero .right .title{
        font-size: 58px;
    }
    .hero .right .subtitle{
        font-size: 28px;
    }
    .hero .hero-visual{
        width: min(100%, 21.25rem);
    }
}

@media (max-width: 1024px){
    .hero .right .title{
        font-size: 50px;
    }
    .hero .right .subtitle{
        font-size: 24px;
    }
    .hero .hero-visual{
        width: min(100%, 18.75rem);
    }
}

@media (max-width: 1000px){ 
    /* 992 */
    .header .logo{
        display: flex;
        justify-content: center;
    }
    .hero{
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 24px;
        padding: 28px 20px 32px;
        background: linear-gradient(180deg, #eaf1ff 0%, #dde9ff 100%);
    }
    .tissaOrganization{
        background-color: #fff;
    }
    .tissaFeature{
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 12%;
        padding: 24px 16px;
        background-color: #fff;
        text-align: center;
    }
    .tissaFeature .right{
        flex: none;
        width: 100%;
        max-width: 720px;
        align-items: center;
        text-align: center;
    }
    .tissaFeature .right .title-1{
        margin-left: 0;
        transform: none;
        text-align: center;
        width: 100%;
    }
    .tissaFeature .right .content{
        text-align: justify;
    }
    .tissaFeature .left,
    .tissaFeature .feature-cards-slider{
        flex: none;
        width: 100%;
        max-width: 640px;
        min-width: 0;
        margin: 0 auto;
    }
    .tissaFeature .feature-cards-slider{
        direction: ltr;
        min-height: 300px;
    }
    .tissaFeature .feature-cards-track .cart{
        width: min(78vw, 300px);
    }
    .tissaFeature .feature-cards-track .cart-2{
        width: min(64vw, 240px);
    }
    .tissaFeature .feature-cards-track .cart,
    .tissaFeature .feature-cards-track .cart-2{
        scroll-snap-align: center;
        filter: none;
        opacity: 1;
    }
    .tissaFeature .bg{
        display: none;
    }
    .hero .bg{
        display: none;
    }
    .aboutTissa{
        background-color: #fff;
    }
    .aboutTissa .bg{
        display: none;
    }
    .tissaProduct .tabs{
        display: none;
    }
    .tissaProduct .tab-panels{
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px 0 24px;
    }
    .tissaProduct .tab-panel{
        display: block;
        padding: 0;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 16px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        overflow: hidden;
    }
    .tissaProduct .tab-panel p,
    .tissaProduct .tab-panel ul{
        max-height: 0;
        opacity: 0;
        margin: 0;
        padding: 0 16px;
        overflow: hidden;
        text-align: right;
        transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.35s ease, padding 0.35s ease;
    }
    .tissaProduct .tab-panel ul{
        padding-right: 24px;
        padding-left: 16px;
    }
    .tissaProduct .tab-panel .accordion-toggle{
        display: flex;
        width: 100%;
        border: 0;
        background: transparent;
        color: #fff;
        direction: ltr;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        font: inherit;
        font-weight: 700;
        cursor: pointer;
    }
    .tissaProduct .tab-panel .accordion-toggle-label{
        flex: 1;
        min-width: 0;
        text-align: right;
        direction: rtl;
    }
    .tissaProduct .tab-panel .accordion-toggle::before{
        content: "+";
        font-size: 20px;
        line-height: 1;
        flex-shrink: 0;
    }
    .tissaProduct .tab-panel.is-active .accordion-toggle::before{
        content: "−";
    }
    .tissaProduct .tab-panel.is-active p,
    .tissaProduct .tab-panel.is-active ul{
        max-height: 1000px;
        opacity: 1;
        margin-top: 10px;
        padding: 0 16px 12px;
        text-align: right;
    }
    .tissaSupporters .orbit-ring,
    .tissaSupporters .brands,
    .tissaSupporters .content{
        display: none;
    }
    .hero .left{
        order: 1;
    }
    .hero .right{
        order: 2;
    }
    .hero .left{
        order: -1;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        padding: 0;
    }
    .hero .right{
        order: 0;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }
    .hero .right .description{
        text-align: justify;
    }
    .hero .hero-visual{
        width: min(78vw, 17.5rem);
    }
}
@media (max-width: 992px){
    .tissaFeature .right .title-1 {
        transform: translateY(-15px);
    }
    .tissaAchievement .right{
        /* transform: translateY(-53px); */
    }
    .tissaAchievement .right .achievement .flex .item .content .title {
        /* transform: translateY(25px); */
        margin-bottom: 16px;
    }
    .tissaAchievement .right .achievement ul li.item .content .title{
        font-size: 12px;
    }
    .tissaAchievement .right .achievement ul li.item .content .description{
        font-size: 11px;
    }
    .tissaAchievement .right .achievement ul li.item .icon{
        width: 40px;
        height: 35px;
    }
    .tissaContact .bg{
        right: 26%;
        width: 74%;
    }
    .tissaAchievement .bg{
        top: 4px;
    }
    .tissaAchievement .right .title{
        font-size: 30px;
    }
    .tissaAchievement .right .achievement .flex .address_item{
        width: 45%;
    }
    .tissaContact .right .title {
        font-size: 27px;
        margin: 4px 0;
    }
}

@media (max-width: 768px){
    .hero{
        padding: 22px 16px 28px;
        gap: 20px;
    }
    .hero .right{
        text-align: right;
        margin-inline: 0;
        max-width: 100%;
    }
    .hero .right .title,
    .hero .right .subtitle{
        text-align: right;
    }
    .hero .right .title{
        font-size: 40px;
    }
    .hero .right .subtitle{
        font-size: 20px;
        padding: 12px 0;
    }
    .hero .right .description{
        font-size: 15px;
        text-align: justify;
    }
    .hero .left .badge{
        display: none;
    }
    .hero .hero-visual{
        width: min(82vw, 15rem);
    }
    .download-scene{
        margin: 10.786% auto;
    }
    .download-point-2{
        left: 120%;
        top: 22%;
        flex-direction: row-reverse;
    }
    .download-point-3{
        left: -20%;
        top: 22%;
        flex-direction: row;
    }
    .download-point-4{
        left: 124%;
        top: 72%;
        flex-direction: row-reverse;
    }
    .download-point-5{
        left: -24%;
        top: 72%;
        flex-direction: row;
    }
}

@media (max-width: 480px){
    .hero{
        padding: 18px 12px 24px;
        gap: 16px;
    }
    .hero .right .title{
        font-size: 32px;
        line-height: 1.15;
    }
    .hero .right .subtitle{
        font-size: 17px;
    }
    .hero .right .description{
        font-size: 14px;
    }
    .hero .left{
        max-width: 100%;
    }
    .hero .hero-visual{
        width: min(88vw, 12.5rem);
    }
    .download-actions{
        flex-direction: column;
        bottom: -13%;
    }
    .download-orbit , .download-hub{
        top: 30%;
    }
}

/* ===== Responsive refresh ===== */
*,
*::before,
*::after{
    box-sizing: border-box;
}

img{
    max-width: 100%;
    height: auto;
}

.container{
    width: min(90%, 1200px);
    margin: 0 auto;
}


.aboutTissa .right .img img,
.tissaOrganization .left img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.tissaAchievement .left img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Tablet: 769px – 1000px (شامل portrait) */
@media (min-width: 769px) and (max-width: 1000px){
    .hero .left{
        width: 100%;
        max-width: 20rem;
        margin-inline: auto;
        padding: 0;
    }

    .hero .hero-visual{
        width: 100%;
    }

    .aboutTissa .right .img img{
        width: min(100%, 360px);
        height: auto;
        max-height: 240px;
        margin: 16px auto;
        object-fit: cover;
    }

    .tissaOrganization .left img{
        width: min(100%, 360px);
        height: auto;
        max-height: 240px;
    }

    .tissaAchievement .left img,
    .tissaAchievement .left .Achievement-image img{
        width: clamp(180px, 28vw, 300px);
        height: auto;
        max-height: clamp(150px, 22vw, 224px);
        object-fit: contain;
        transform: translate(-55px, 10px);
    }
    .tissaAchievement{
        justify-content: center;
        gap: 0%;
    }

    .tissaContact .left img{
        width: min(100%, 280px);
        height: auto;
        max-height: 245px; 
        object-fit: cover;
        transform: translateY(16px);
    }

    .tissaFeature .right .img img{
        width: min(100%, 320px);
        height: auto;
        max-height: 220px;
        margin: 12px auto;
        object-fit: cover;
    }

    .tissaAchievement .bg{
        width: 78%;
        right: 2%;
    }

    .tissaContact .bg{
        width: 75%;
        right: 25%;
    }
    .tissaAchievement .right .achievement {
        margin-top: 8px;
    }
    .tissaAchievement .right .achievement .flex .item .content .title {
        /* transform: translateY(25px); */
        margin-bottom: 6px;
    }

    .tissaAchievement .right .achievement ul{
        margin-right: -16px;
        column-gap: 10px;
        row-gap: 14px;
    }

    .tissaAchievement .right .achievement ul li.item .icon{
        width: 35px;
        height: 35px;
    }

    .tissaAchievement .right .achievement ul li.item .icon img{
        width: 22px;
        height: auto;
    }
}

.footer{
    width: 100%;
    /* margin-right: calc(50% - 50vw); */
    /* margin-left: calc(50% - 50vw); */
    border-radius: 20px 20px 0 0;
}

.footer-col h3{
    margin: 0 0 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.tissaSupporters{
    margin-top: 10%;
    border-radius: var(--sections-border-radius);
    padding: 32px 24px;
    background: transparent;
    border: 0;
}

.tissaSupporters .supporters-header{
    text-align: center;
    margin-bottom: 24px;
}

.tissaSupporters .supporters-header .title{
    color: #0f172a;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
}

.tissaSupporters .supporters-header .description{
    color: #64748b;
    font-size: 14px;
    line-height: 1.9;
    max-width: 920px;
    margin: 12px auto 0;
}

.supporters-slider{
    width: 100%;
    overflow: hidden;
    direction: ltr;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.supporters-slider.is-manual-scroll{
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
}
.supporters-slider.is-manual-scroll:active{
    cursor: grabbing;
}
.supporters-slider.is-manual-scroll::-webkit-scrollbar{
    display: none;
}
.supporters-slider.is-manual-scroll .supporters-track{
    animation: none;
}
@media (max-width: 1000px){
    .supporters-slider{
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        cursor: grab;
        touch-action: pan-x;
    }
    .supporters-slider:active{
        cursor: grabbing;
    }
    .supporters-slider::-webkit-scrollbar{
        display: none;
    }
    .supporters-slider .supporters-track{
        animation: none;
    }
}

@media (min-width: 1000px){
    .tissaSupporters{
        justify-content: center;
        align-items: center;
        margin: 15% 0;
        position: relative;
        min-height: clamp(520px, 62vw, 720px);
        width: 100%;
        background: transparent;
        border: 0;
        padding: 0;
    }
    .tissaSupporters .orbit-ring{
        width: 46%;
    }
    .tissaSupporters .content{
        width: 32%;
    }

    .tissaSupporters .supporters-header,
    .tissaSupporters .supporters-slider{
        display: none;
    }
}

.supporters-track{
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    will-change: transform;
    animation: supporters-scroll var(--supporters-duration, 60s) linear infinite;
}

.card-logo{
    width: 118px;
    min-width: 118px;
    height: 78px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #d9dee7;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.08);
}

.card-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes supporters-scroll{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(calc(-1 * var(--scroll-distance, 50%)));
    }
}

/* ===== Hero Image Animations ===== */
@keyframes badge-click-scale {
    0% {
        transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px)) scale(1);
    }
    50% {
        transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px)) scale(1.25);
    }
    100% {
        transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px)) scale(1);
    }
}

.hero .left .badge.badge-click-animation {
    animation: badge-click-scale 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes click-pop {
    0% {
        transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0px) scale(1);
    }
    35% {
        transform: perspective(900px) rotateX(8deg) rotateY(-12deg) translateZ(12px) scale(1.08);
    }
    65% {
        transform: perspective(900px) rotateX(-6deg) rotateY(8deg) translateZ(6px) scale(0.97);
    }
    100% {
        transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0px) scale(1);
    }
}

.hero .left .image.click-animation {
    animation: click-pop 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .left .image {
    transform-style: preserve-3d;
    transition: transform 0.16s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .left .image.mouse-move-animation {
    transform: perspective(900px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateZ(var(--translate-z, 0px)) scale(var(--hover-scale, 1));
}

@media (min-width: 1001px){
    .tissaFeature .feature-cards-track .cart:not(.is-active) .img img,
    .tissaFeature .feature-cards-track .cart-2:not(.is-active) .img img{
        max-width: 180px;
    }
    .tissaFeature .feature-cards-track .cart:not(.is-active) .title,
    .tissaFeature .feature-cards-track .cart-2:not(.is-active) .title{
        font-size: 10px;
    }
    .tissaFeature .feature-cards-track .cart:not(.is-active) .description,
    .tissaFeature .feature-cards-track .cart-2:not(.is-active) .description{
        font-size: 8px;
    }
}

@media (min-width: 1001px){
    .hero{
        flex-direction: row;
        flex-wrap: wrap-reverse;
    }

    .hero .right,
    .hero .left{
        width: 45%;
    }
}

@media (min-width: 769px){
    .aboutTissa,
    .tissaFeature,
    .tissaOrganization,
    .tissaAchievement,
    .tissaContact,
    
    .tissaProduct,
    .tissaSupporters,
    .footer{
        max-width: 100%;
    }

    .tissaOrganization .mobile-section-title{
        display: none;
    }
}

@media (max-width: 768px){
    .container{
        width: 94%;
    }

    .hero{
        flex-direction: column;
        padding: 24px 16px;
        gap: 22px;
    }

    .hero .right,
    .hero .left{
        width: 100%;
        padding: 0;
        justify-content: center;
    }

    .hero .right .title{
        font-size: 40px;
    }

    .aboutTissa,
    .tissaOrganization{
        flex-direction: column;
        gap: 18px;
        padding: 24px 16px;
    }

    .aboutTissa .right{
        display: flex;
        flex-direction: column;
    }

    .aboutTissa .right .title{
        order: 1;
        font-size: 22px;
        text-align: center;
        width: 100%;
    }

    .aboutTissa .right .img{
        order: 2;
    }

    .aboutTissa .left{
        order: 3;
    }

    
    .aboutTissa .left,
    .tissaOrganization .right,
    .tissaOrganization .left{
        width: 100%;
    }

    .aboutTissa .right .img img{
        margin: 0;
        width: 100%;
        max-height: 280px;
    }

    .tissaOrganization .mobile-section-title{
        display: block;
        width: 100%;
        font-size: 28px;
        font-weight: 800;
        color: var(--title-color);
        order: 1;
        text-align: center;
    }

    .download-scene{
        width: 100%;
    }
    .download-orbit{
        width: 40%;
    }

    .tissaOrganization .right .title{
        display: none;
    }

    .tissaOrganization .left{
        order: 2;
        display: flex;
        justify-content: center;
    }
    .tissaOrganization .left img{
        width: 100%;
        max-width: 420px;
        height: auto;
        max-height: 280px;
        margin: 0;
    }
    .tissaOrganization .bg{
        display: none;
    }

    .tissaOrganization .right{
        order: 3;
    }

    

    .tissaFeature{
        align-items: center;
        text-align: center;
    }
    .tissaFeature .left,
    .tissaFeature .feature-cards-slider{
        flex: none;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        min-height: 280px;
        margin: 0 auto;
    }
    .tissaFeature .feature-cards-track{
        padding-inline: max(12px, calc((100% - min(82vw, 300px)) / 2));
    }
    .tissaFeature .feature-cards-track .cart,
    .tissaFeature .feature-cards-track .cart-2{
        scroll-snap-align: center;
        filter: none;
        opacity: 1;
    }
    .tissaFeature .feature-cards-track .cart{
        width: min(82vw, 300px);
    }
    .tissaFeature .feature-cards-track .cart-2{
        width: min(72vw, 260px);
    }
    .tissaFeature .feature-cards-slider{
        order: 2;
        direction: ltr;
    }

    .tissaFeature .right{
        display: contents;
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .tissaFeature .right .title-1{
        order: 1;
        width: 100%;
        margin: 0 auto 12px;
        transform: none;
        text-align: center;
        font-size: 22px;
        line-height: 1.45;
    }
    .tissaFeature .right .content{
        order: 3;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        text-align: justify;
    }

    .tissaAchievement{
        flex-direction: column;
        align-items: center;
        gap: 14px;
        background: transparent;
        border-radius: var(--sections-border-radius);
        padding: 16px 12px;
    }
    .tissaAchievement .mobile-achievement-image{
        display: block;
        order: 1;
        width: 50%;
        margin: 0 auto;
    }
    .tissaAchievement .mobile-achievement-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
        display: block;
    }
    .tissaContact{
        flex-direction: column;
        align-items: center;
        gap: 14px;
        background: transparent;
        border-radius: var(--sections-border-radius);
        padding: 16px 12px;
    }

    .tissaAchievement .bg,
    .tissaContact .bg{
        display: none;
    }
    .tissaAchievement .left{
        display: none;
    }
    .tissaContact .left{
        display: block;
        order: 1;
        width: 50%;
        margin: 0 auto;
        min-height: 260px;
        height: 417px;
        background-image: url('../img/Frame 2087327723.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 18px;
        overflow: hidden;
    }
    .tissaContact .left img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
        display: block;
        opacity: 0;
    }

    .tissaAchievement .right,
    .tissaContact .right{
        width: 100%;
        padding: 0;
    }
    .tissaAchievement .right{
        order: 2;
        width: 50%;
        margin: 0 auto;
        background-image: url('../img/Frame 2087327722.svg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: local;
        border-radius: 20px;
        padding: 16px 14px;
        transform: translateY(-88px);
    }
    .tissaAchievement .right .title{
        color: #fff;
        font-size: 22px;
    }
    .tissaAchievement .right .main-contact-title{
        transform: translateY(100px);
    }
    .tissaAchievement .right .achievement ul li.item .content .description{
        color: #fff;

    }
    .tissaContact .right{
        order: 2;
        width: 50%;
        margin: 0 auto;
        background-image: url('../img/Frame 2087327722.svg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: local;
        border-radius: 20px;
        padding: 16px 14px;
        transform: translateY(-88px);
    }
    .tissaContact .right .title{
        color: #fff;
        font-size: 22px;
    }
    .tissaContact .right .main-title , .tissaAchievement .right .main-title{
        transform: translateY(90px);
    }
    .tissaContact .right .achievement ul li.item .content .description{
        color: #fff;
    }

    .tissaAchievement .right .achievement ul,
    .tissaContact .right .achievement ul{
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin: 10px 0 0;
        padding: 0;
        margin-top: 40%;
    }
    .tissaAchievement .right .achievement ul li.item,
    .tissaContact .right .achievement ul li.item{
        width: 100%;
        max-width: 100%;
    }
    .tissaAchievement .right .achievement ul{
        margin-right: 0;
    }

    .tissaSupporters{
        padding: 24px 12px;
    }

    .supporters-slider{
        margin-top: 16px;
    }

    .download-tip{
        width: clamp(80px, 22cqw, 130px);
        padding: 0.5cqw 0.6cqw;
    }
    .download-tip p{
        font-size: clamp(7px, 2cqw, 10px);
        line-height: 1.45;
    }
    .download-btn{
        min-height: 7.2cqw;
        padding: 0.5cqw 5cqw;
        font-size: clamp(5px, 3cqw, 10px);
    }
    .download-btn img{
        width: 4.6cqw;
        height: 4.6cqw;
    }
    .download-btn span{
        white-space: nowrap;
        line-height: 1.3;
    }

    .footer{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
        padding: 18px 16px;
    }

    .footer .left{
        justify-content: center;
    }
}

@media (max-width: 500px){
    
    .tissaContact .left , .tissaAchievement .right , .tissaAchievement .mobile-achievement-image{
        width: 100%;
    }
    .tissaAchievement .right .achievement .flex .item .content,
    .tissaContact .right .achievement .flex .item .content{
        width: auto;
        min-width: 0;
    }
    .tissaAchievement .right , .tissaContact .right{
        /* transform: translateY(-140px); */
    }
    .tissaAchievement .right .main-contact-title , .tissaContact .right .main-contact-title{
        transform: translateY(70px);
        margin-top: 50px;
    }
    .tissaAchievement .right .main-title , .tissaContact .right .main-title{
        /* margin-top: 12%; */
    }

    .tissaContact .right .achievement {
        transform: translateX(0px);
    }
}