* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Archivo Narrow', sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body {
    width: 100%;
    height: 95vh;
    color: rgb(241, 241, 241);
    background-color: rgb(37, 37, 38);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    zoom:0.97;
    cursor: url(../srcs/icons/srctools.png), auto;
}
hr {
    width: 100%;
    border-radius: 10px;
    border: 2.5px solid rgb(247, 154, 16);
}
ul {
    padding: 0 50px;
    text-align: left;
}
li {
    list-style-type: disc;
    font-size: 20px;
}
p{
    font-size: 20px;
}
input, textarea {
    -webkit-touch-callout: auto;
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
.src-container {
    width: 90%;
    max-width: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.src-tabs {
    flex-grow: 1;
    min-height: 500px;
    width: 100%;
    max-width: 1200px;
    max-height: 750px;
    background: rgb(47, 47, 48);
    border-radius: 10px;
    border: 5px solid rgb(247, 154, 16);
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(247, 154, 16, 0.25);
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}
.src-tab-header {
    width: 27%;
    padding: 30px;
    border-right: 5px solid rgb(247, 154, 16);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    max-height: 120vh;
    font-size: 1.7em;
    scrollbar-width:thin;
    scrollbar-color:rgb(247, 154, 16) transparent;
    font-size: clamp(0.5rem, 2.25vw, 1.4rem);
    transition: font-size 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.src-tab-header div {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 40px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
}
.src-tab-header div img {
    width: 35px;
    height: auto;
}
.src-tab-header div:hover,
.src-tab-header div.active {
    color: rgb(247, 154, 16);
    transform: scale(1.1);
    cursor: url(../srcs/icons/srctools.png), auto;
}
.src-tabs-content {
    flex-grow: 1;
    min-height: 500px;
    overflow-y: auto;
    width: 73%;
    height: auto;
    padding: 2.25rem;
    font-size: 1.5em;
    position:relative;
    scrollbar-width:thin;
    scrollbar-color:rgb(247, 154, 16) transparent;
}
.src-tabs .src-tabs-content::-webkit-scrollbar-track{
    background-color:rgb(47, 47, 48);
}
.src-tabs .src-tabs-content::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-thumb{
    border-radius:10px;
    -webkit-box-shadow:inset 5px 5px 5px 5px rgb(247, 154, 16);
}
.src-tab {
    display: none;
}
.src-tab.active {
    display: block;
}
.src-tabs-content::-webkit-scrollbar {
    width: 8px;
}
.src-tabs-content::-webkit-scrollbar-track {
    background: rgb(47, 47, 48);
}
.src-tabs-content::-webkit-scrollbar-thumb {
    background: rgb(247, 154, 16);
    border-radius: 10px;
}
.src-previews{
    position: relative; /* Add this line */
    width: 100%;
    height: 500px;
    display: flex;
    overflow: hidden;
    border-radius: 50px;
}
.src-previews .src-images {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.src-previews .src-images .src-image {
    max-width: 90%;
    max-height: 90%;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Default centering */
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out;
}
.src-arrows {
    align-items: center;
    text-align: center;
    justify-content: center;
}
.src-tab .src-previews .src-arrows span {
    top: 50%;
    transform: translateY(-50%); /* Add this to center vertically */
    width: 40px;
    height: 40px;
    font-size: 30px;
    position: absolute;
    text-align: center;
    border-radius: 100px;
    color: rgb(241, 241, 241);
    background-color: transparent;
    transition: 0.1s linear;
}
.src-previews .src-images .src-image:first-child{
    display:block;
}
.src-tab .src-previews .src-arrows span:hover{
    cursor:pointer;
    color:rgb(241, 241, 241);
    background-color:rgb(247, 154, 16);
}
.src-tab .src-previews .src-arrows .prev{
    left:0;
}
.src-tab .src-previews .src-arrows .next{
    right:0;
}
.src-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}
.src-modal .src-modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.src-modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgb(241, 241, 241);
    background-color: rgb(247, 154, 16);
    font-size: 30px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border: 5px groove rgb(241, 241, 241);
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
}
.close:hover,
.close:focus {
    color: rgb(247, 154, 16);
    background-color: transparent;
    border: 5px groove rgb(247, 154, 16);
    text-decoration: none;
    transform: scale(0.9);
}
.src-tabs-content > div.active{
    top:0;
}
.src-tab h4 {
    display: flex;
    position: relative;
    padding-right: 120px;
}
.src-tabs-content .src-tab h4 img {
    transform: translateY(-1%);
}
.src-tabs .src-tabs-content .src-static{
    pointer-events:none;
}
.src-tab h4 button {
    position: absolute;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
    font-size:0.85em;
    border:none;
    width:130px;
    height:40px;
    display:flex;
    cursor:pointer;
    text-align:center;
    align-items:center;
    border-radius:10px;
    justify-content:center;
    color:rgb(241, 241, 241);
    background-color:rgb(67, 67, 68);
    transition:transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), font-size 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.src-tab h4 button:hover{
    font-size:1.1em;
    background-color:rgb(247, 154, 16);
}
.src-tabs-content > div h4{
    margin-top:10px;
    text-align:left;
}
.src-tabs-content > div h4 img{
    transform:translate(10%, 30%);
}
.mobile-dropdown {
    display: none;
    width: 100%;
    padding: 10px;
    background: rgb(47, 47, 48);
    border-bottom: 3px solid rgb(247, 154, 16);
    text-align: center;
}
#dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgb(47, 47, 48);
    padding: 10px;
    border: none;
    font-size: 1.2rem;
    color: rgb(247, 154, 16);
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}
#dropdown-btn img {
    width: 25px;
    height: auto;
}
.dropdown-content {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the dropdown */
    width: 90%; /* Adjust width as needed */
    max-width: 400px;
    background: rgb(47, 47, 48);
    border: 2px solid rgb(247, 154, 16);
    text-align: center;
    padding: 10px;
    box-shadow: 0px 5px 15px rgba(247, 154, 16, 0.3);
    z-index: 999;
}
body.dropdown-active .src-tabs-content {
    display: none; /* Hide content when dropdown is open */
}
.dropdown-content div {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 15px;
    font-size: 1.2rem;
    transition: 0.3s;
}
.dropdown-content div img {
    width: 25px;
    height: auto;
}
.dropdown-content div:hover,
.dropdown-content div.active {
    background: rgba(247, 154, 16, 0.3);
    color: white;
}
.src-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.src-form {
    flex: 1;
}
.src-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.src-logos img {
    width: 70px;
    height: auto;
    transition:all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.src-logos img:hover {
    scale:1.2;
}
.src-tab .src-contact .src-form form input[type=text],input[type=email], textarea{
    width:100%;
    height:50px;
    resize:none;
    border:none;
    font-size: 20px;
    padding:10px 10px;
    border-radius:10px;
    color:rgb(241, 241, 241);
    background-color:rgb(67, 67, 68);
    transition:all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.src-tab .src-contact .src-form form textarea{
    width:100%;
    height:auto;
    height:300px;
    padding:10px 10px;
}
.src-tab .src-contact .src-form form input[type=submit]{
    width:100%;
    height:50px;
    border:none;
    cursor:pointer;
    font-size:25px;
    border-radius:10px;
    color:rgb(241, 241, 241);
    background-color:rgb(67, 67, 68);
    transition:all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.src-tab .src-contact .src-form form input[type=submit]:hover{
    font-size:30px;
    background-color:rgb(247, 154, 16);
}
.src-tab .src-contact .src-form form input[type=text]:focus,input[type=email]:focus, textarea:focus{
    outline:none;
    border:1px solid rgb(247, 154, 16);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 30px;
    color: rgb(241, 241, 241);
    background-color: rgba(247, 154, 16, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}
.modal-prev {
    left: 20px;
}
.modal-next {
    right: 20px;
}
.modal-prev:hover,
.modal-next:hover {
    background-color: rgb(247, 154, 16);
    transform: translateY(-50%) scale(1.1);
}
.src-modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.src-modal-content img {
    position: absolute;
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    transition: transform 300ms, opacity 300ms;
}
.src-modal-content img.active {
    display: block;
}

@media (max-width: 1200px) {
    .src-tabs-content {
        font-size: 21px;
    }
    .src-tab-header div img {
        width: 25px;
        height: auto;
    }
    .src-tab h4 button {
        width: 20%;
    }
}
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .src-tabs {
        flex-direction: column;
    }
    .src-tab-header {
        display: none;
    }
    .mobile-dropdown {
        display: block;
    }
    .src-tabs-content {
        width: 100%;
        max-height: 70vh;
        padding: 1em;
    }
    .src-tab h4 {
        flex-direction: column;
        align-items:center;
        padding-right: 0;
        font-size: 0.9em;
    }
    .src-tab h4 button {
        position: static;
        width: 100%;
        margin-top: 10px;
        transform: none;
    }
    li {
        font-size: 17px;
    }
    .src-contact {
        flex-direction: row;
        align-items: center;
    }
    .src-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .src-previews {
        height: 300px;
    }
    .src-tab .src-previews .src-arrows span {
        width: 30px;
        height: 30px;
        font-size: 20px;
        transform: translateY(-50%); /* Keep the centering */
    }
}
@media (max-width: 600px) {
    .modal-prev,
    .modal-next {
        width: 15px;
        height: 15px;
        font-size: 10px;
    }
    .close {
      font-size: 5vw;
      width: 40px;
      height: 40px;
      top: 10px;
      right: 10px;
    }
}