/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: ltr;
    text-align: left;
}

/* First Banner */
.first-banner {
    background-color: rgba(41, 42, 45, 1);
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 12.31px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.first-banner .banner-content {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 12px;
    font-weight: 600;
    font-size: 12.31px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: rgba(255, 192, 7, 1);
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(41, 42, 45, 1);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-radius: 4px;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sign-now {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sign-now-content {
    position: relative;
    z-index: 2;
    /* background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none; /* Lets clicks pass through */

}

.company-name {
    background: transparent;
}

.date-range {
    background: transparent;
}
.sign-now {
    position: relative;
}

.sign-now .company-name {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.sign-now .company-name .company-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sign-now .company-name .img-holder {
    width: 41px;
    height: 41px;
    border-radius: 8.66px;
    overflow: hidden;
    border: 0.29px solid #292a2d26;
    background-color: #292a2d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign-now .media-btns {
    display: block !important;
    margin: 0 !important;
    max-width: 316px;
    pointer-events: auto;
}

.company-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.company-details h2 {
    font-weight: 800;
    font-size: 9px;
    line-height: 17px;
    letter-spacing: 0px;
    color: #292a2d;
    text-transform: uppercase;
}

.company-details span {
    font-weight: 600;
    font-size: 9px;
    line-height: 17px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #292a2d;
}

.date-range {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.date-range .date-holder {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.date-range .date {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.date-range .date .date-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1px;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        margin-top: 5px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sign-now {
        height: auto;
        min-height: 400px;
    }

    .sign-now-content {
        padding: 15px;
    }
    .date-range {
        margin-top: 20px;
        flex-direction: column;
    }
    .date-range .sign-btn {
        margin-top: 20px;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: none;
    }
}

.dropdown-menu a {
    color: rgba(255, 255, 255, 1);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 192, 7, 0.1);
    color: rgba(255, 192, 7, 1);
    padding-left: 25px;
}

.dropdown-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: rgba(255, 192, 7, 1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover::after {
    transform: scaleY(1);
}

/* RTL Support */
[dir='rtl'] .dropdown-menu {
    left: auto;
    right: 0;
}

[dir='rtl'] .dropdown-menu a:hover {
    padding-left: 20px;
    padding-right: 25px;
}

[dir='rtl'] .dropdown-menu a::after {
    left: auto;
    right: 0;
}

/* Flag Icon */

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}

/* RTL Considerations */
[dir='rtl'] .row {
    flex-direction: row-reverse;
}

[dir='rtl'] [class*='col-'] {
    padding-right: 15px;
    padding-left: 15px;
}

[dir='rtl'] .dropdown-menu {
    left: auto;
    right: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .first-banner {
        height: auto;
        padding: 10px 0;
    }

    .first-banner .banner-content {
        width: 100%;
        padding: 0;
        justify-content: center;
        gap: 30px;
    }

    .first-banner .contact-info {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .first-banner .contact-info img {
        width: 16px;
        height: 16px;
    }

    /* Hide header dropdowns on mobile */
    .first-banner .dropdown {
        display: none;
    }
}

/* Navigation Bar Styles */
.navbar {
    background-color: white !important;
    position: sticky;
    top: 0;
    height: 90px;
    z-index: 1000;
    border-bottom: 1px solid rgba(41, 42, 45, 0.25);
}

.navbar-content {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    padding-top: 4px;
}

.logo img {
    height: 40px;
    width: 141px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {

    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(41, 42, 45, 1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
            90deg,
            rgba(255, 192, 7, 1),
            rgba(255, 192, 7, 0.8)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: rgba(255, 192, 7, 1);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: right;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        background-color: rgba(41, 42, 45, 1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links {
        padding: 1.5rem;
        background: rgba(41, 42, 45, 1);
    }

    .nav-link {
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        margin: 4px 0;
        color: rgba(255, 255, 255, 1);
    }

    .nav-link:hover {
        color: rgba(255, 192, 7, 1);
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(8px);
    }

    [dir='rtl'] .nav-link:hover {
        transform: translateX(-8px);
    }

    /* Hide header dropdowns on mobile */
    .first-banner .dropdown {
        display: none;
    }
}

.nav-buttons {
    display: flex;
    gap: 5px;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 3.59px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s ease;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0px;
    padding: 11px 28px;
}

.btn-join {
    background-color: rgba(255, 192, 7, 1);
    color: rgba(41, 42, 45, 1);
    border: 1px solid transparent;
}

.btn-join:hover {
    background-color: transparent;
    color: rgba(255, 192, 7, 1);
    border-color: rgba(255, 192, 7, 1);
}

.btn-member {
    background-color: rgba(41, 42, 45, 1);
    color: rgba(255, 255, 255, 1);
    border: 1px solid transparent;
}

.btn-member:hover {
    background-color: transparent;
    color: rgba(41, 42, 45, 1);
    border-color: rgba(41, 42, 45, 1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
        background: rgba(41, 42, 45, 1);
    }
    .nav-links.active a {
        color: rgba(255, 255, 255, 1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-buttons {
    }

    .mobile-menu-toggle {
        display: block;
    }

    .navbar-content {
        position: relative;
    }
}

/* RTL Support */
/* [dir='rtl'] .nav-links {
    flex-direction: row-reverse;
} */

/* [dir='rtl'] .nav-buttons {
    flex-direction: row-reverse;
} */

@media (max-width: 768px) {
    [dir='rtl'] .nav-links {
        flex-direction: column;
    }
}

/* Your custom styles will go here */

/* Footer Styles */
/* Pricing/Plans Section */
.advertise-intro {
    margin-top: 30px !important;
    text-align: center;
    margin: 0 auto 48px auto;
}
.advertise-label {
    display: inline-block;
    background: rgba(255, 192, 7, 0.05);
    color: #FFC007;
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px;
    padding: 7px 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    border:0.5px solid rgba(255, 192, 7, 0.45);

}
.advertise-title {
    font-size: 36px;
    font-weight: 700;
    color: #292A2D;
    margin-bottom: 20px;
    line-height: 54px;
    text-align: center;
}
.advertise-desc {
    color: #717171;
    font-size: 22px;
    margin-bottom: 38px;
    line-height: 32px;
    font-weight: 400;
    text-align: start;

}
.plans-wrapper {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.plan-box {
    background: #fff;
    border-radius: 8.5px;
    padding: 11px 18px;
    min-width: 516px;
    max-width: 422px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #e9e9e9c6;
}
.text-holder {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.basic-word {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: #292A2D;
    text-transform: uppercase;

}
.plan-word {
    font-weight: 700;
    font-size: 23px;
    line-height: 25px;
    color: #292A2D;
    text-transform: uppercase;
}
.hint {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: start;
    margin-top: -24px;

}
.hint i {
    width: 17px;
    height: 17px;
}
.hint p {
    color: #00000080;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3%;
    line-height: 25px;


}
.plan-box.advanced {
    position: relative;
    z-index: 1;
}
.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 45px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9e9e9b9;
}
.plan-type {
    font-size: 14px;
    font-weight: 700;
    color: #292A2D;
    text-transform: uppercase;
}
.plan-price {
    font-size: 38px;
    font-weight: 700;
    color: #FFC007;
    list-style: 70px;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}
.plan-features li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 25px;
}
.plan-features li span {
    font-weight: 400;
}
.plan-features li strong {
    font-weight: 800 !important;
    color: #232323;
}
.plan-features li > * + * {
    margin-left: 0.25em;
}
[dir='rtl'] .plan-features li > * + * {
    margin-left: 0;
    margin-right: 0.25em;
}


.icon-check {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}
.plan-btn {
    width: 100%;
    background: #FFD233;
    color: #292A2D;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    padding: 13px 0;
    margin-top: auto;
    cursor: pointer;
    transition: background 0.2s;
}
.plan-btn:hover {
    background: #FFC700;
}
.plan-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.advanced-form .form-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 0;
    width: 100%;
}
.advanced-form label {
    font-size: 14px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 2px;
}
.custom-select-wrapper {
    position: relative;
    width: 100%;
}
.plan-form label {
    color: #00000080 !important;
    font-size: 12px !important;
}
.btns-duration-holder {
    justify-content: space-between;
    flex-basis: 50%;
    display: flex;
    border-radius: 12px;
    gap: 8px;
    padding: 2px 2px;
    border: 1px solid #c6c6c6b3;}
.custom-select {
    width: 100%;
    /*padding: 16px 12px;*/
    border: 1px solid #c6c6c6b3;
    border-radius: 12px;
    background-color: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #313144;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: border 0.2s;
}
.custom-select:focus {
    border-color: #FFC007;
}
.custom-arrow {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 2;
}
[dir='rtl'] .custom-arrow {
    left: 14px;
    right: auto;
}
[dir='ltr'] .custom-arrow {
    right: 14px;
    left: auto;
}
.custom-arrow .dropdown-arrow-svg {
    display: block;
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}
.custom-arrow.open .dropdown-arrow-svg {
    transform: rotate(180deg);
}


/* Loader for upload box */
.custom-loader {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* Upload cancel button */
.upload-cancel-btn {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #CECECE;
    border-radius: 8px;
    padding: 4px 12px;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #292a2d;

    transition: background 0.2s, color 0.2s;
}
.upload-cancel-btn:hover {
    background: #ffc007;
    color: #292a2d;
}

/* Uploaded file list */
.uploaded-files-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.uploaded-file-item {
    background: transparent;
    border: 1px solid rgba(211, 211, 211, 0.707);
    border-radius: 8px;
    padding: 0px 16px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #292a2d;
}
.uploaded-file-name {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 180px;
}
.cancel-icon-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(128, 128, 128, 0.72);
    border-radius: 50%;
    width: 24px;
    height: 24px;

}
.cancel-icon-holder  {
    background: transparent;
    color: rgba(128, 128, 128, 0.72);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}
.uploaded-file-remove:hover {
    color: rgb(128, 128, 128);
}

/* height: 18px; */
/* pointer-events: none; */
/* transform: translateY(-50%); */
/* background: url('assets/icons/Vector.svg') no-repeat center/contain; */


.duration-toggle-group {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.input-duration-holder {
    display: flex;
    justify-content: start;
    flex-basis: 50%;
    padding: 16px 12px;
    border: 1px solid #c6c6c6b3;
    border-radius: 12px;
    background-color: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #313144;
    outline: none;
    margin-right: 0;
}
.duration-input {
    width: 100%;
    border-radius: 12px;
    background-color: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #313144;
    outline: none;
    margin-right: 0;
    border: none;
}
.toggle-btn {
    padding: 14px 38px;
    border-radius: 8px;
    background: #FFFDF5;
    border: none;
    color: #292A2D;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-left: 0;
}
.toggle-btn.active, .toggle-btn:active {
    background: #FFC007;
    color: #292A2D;
    border-color: #FFC00700;
}
.upload-box {
    width: 100%;
    margin-top: 0;
}
.upload-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    border: 1.5px dashed #FFD233;
    border-radius: 8px;
    background: #FFFDF5;
    padding: 20px 18px;
    cursor: pointer;
    min-height: 70px;
}
.icon-upload img {
    display: block;
}
.upload-text {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: #292A2D;
    font-weight: 500;
}
.upload-helper {
    font-size: 12px;
    color: #A0A0A0;
    font-weight: 400;
    margin-top: 2px;
}
@media (max-width: 700px) {
    .plan-box {
        min-width: unset;
        max-width: 100%;
        padding: 12px 5vw;
    }
    .advanced-form .form-group {
        gap: 12px;
    }
    .upload-label {
        padding: 16px 8px;
    }
}
.form-group {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}
.form-group label,
.form-group select,
.form-group input {
    font-size: 14px;
    color: #292A2D;
    font-weight: 500;
}
.form-group input[type="number"] {
    width: 60px;
    padding: 6px 8px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    outline: none;
}
.plan-duration-label {
    margin: 0 6px;
    color: #292A2D;
    font-weight: 500;
}
.upload-box {
    justify-content: flex-start;
}
.upload-label {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 16px;
    border: 1.5px dashed #ffc107ae;
    border-radius: 8px;
    background: transparent;
    color: #292A2D;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}
.icon-upload {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .plans-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    .plan-box {
        max-width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #292A2D;
    padding: 80px 0;
}

.faq-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #323335f5, #292a2dee);

}

.faq-question {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
.faq-item.active .faq-question::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 27px;
    height: 1px;
    background-color: #FFFFFF40;
    width: 93%;
}

.faq-item.active .faq-question {
    font-weight: 700;
    font-size: 18px;
}

.faq-icon {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: center;
    display: inline-block;
    line-height: 1;
    flex-shrink: 0;
}



.faq-answer {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-question:hover {
    /* background: linear-gradient(to left, #FFFFFF90, #292A2D90); */
}

.footer {
    background-color: rgba(41, 42, 45, 1);
    padding-top: 99px;
    padding-bottom: 60px;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 10px;
}

.footer-description {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 12px;
    line-height: 28px;
    letter-spacing: 0px;
    max-width: 380px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-inline-start: 124px;
    margin-top: -3px;
}

.social-link img {
    width: 12px;
    height: 12px;
}

.social-link {
    width: 27.2px;
    height: 27.2px;
    border-radius: 17px;
    background-color: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 192, 7, 1);
    transform: translateY(-3px);
}

.footer-title {
    font-family: Cairo;
    font-weight: 700;
    font-size: 14px;
    line-height: 21.65px;
    letter-spacing: 0;
    color: rgba(255, 192, 7, 1);
    text-align: start;
    margin-bottom: 13px;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 12px;
    line-height: 28px;
    letter-spacing: 0px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: rgba(255, 192, 7, 1);
    transform: translateX(5px);
}

.content-holder {
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-holder span {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 600;
    font-size: 12px;
    line-height: 28px;
    letter-spacing: 0px;
}

.download-app {
    display: flex;
    gap: 17px;
    margin-top: -20px;
}

.footer-bottom {
    background-color: rgba(33, 33, 36, 1);
    padding: 22px 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    text-align: center;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 21.65px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
}

/* Responsive Footer */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* RTL Support */
[dir='rtl'] .contact-item i {
    margin-right: 0;
    margin-left: 1rem;
}

[dir='rtl'] .footer-title::after {
    left: auto;
    right: 0;
}

[dir='rtl'] .footer-links a:hover {
    transform: translateX(-5px);
}

/* Footer Dropdown Styles */
.footer-column .dropdown-toggle {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
    padding: 0;
}

.footer-column .dropdown-icon {
    display: none;
    margin-left: 10px;
}

.footer-column .dropdown-icon img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.footer-column.active .dropdown-icon img {
    transform: rotate(180deg);
}

.footer-column .footer-links-wrapper {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.footer-column.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .download-app {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-column {
        padding: 15px 0;
    }

    .footer-column h3 {
        border-bottom: 2px solid rgba(255, 255, 255, 1);
        padding-bottom: 15px !important;
        color: rgba(255, 255, 255, 1);
        transition: color 0.3s ease;
    }

    .footer-column.active h3 {
        color: rgba(255, 192, 7, 1);
    }

    .social-links {
        margin-inline-start: 0;
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-column-border {
        border-bottom: 2px solid rgba(255, 255, 255, 1);
    }

    .footer-column .dropdown-icon {
        display: block;
    }

    .footer-column .footer-links-wrapper {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer-column.active .footer-links-wrapper {
        max-height: 1000px;
        margin-top: 15px;
    }

    /* RTL Support */
    [dir='rtl'] .footer-column .dropdown-toggle {
        padding-right: 0;
        padding-left: 20px;
    }

    [dir='rtl'] .footer-column .dropdown-icon {
        margin-left: 0;
        margin-right: 10px;
    }

    [dir='rtl'] .footer-column .dropdown-icon img {
        transform: rotate(180deg);
    }

    [dir='rtl'] .footer-column.active .dropdown-icon img {
        transform: rotate(0deg);
    }
}

/* Mobile Dropdowns in Navigation */
.mobile-dropdowns {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: rgba(41, 42, 45, 1);
    margin: -15px -15px 15px -15px;
}

.mobile-dropdowns .dropdown {
    width: 100%;
}

.mobile-dropdowns .dropdown-toggle {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.mobile-dropdowns .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdowns .dropdown-toggle .flag-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.mobile-dropdowns .dropdown-menu {
    width: 100%;
    margin-top: 5px;
    background: rgba(41, 42, 45, 1);
    border-radius: 4px;
    overflow: hidden;
}

.mobile-dropdowns .dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.mobile-dropdowns .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.navigate-bar {
    padding-bottom: 26px;
}

.navigate-bar ul {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: center;
}

.navigate-bar ul li {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgba(41, 42, 45, 0.25);
}

.navigate-bar ul .active-nav {
    color: rgba(41, 42, 45, 1);
}

section .main-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    color: rgba(41, 42, 45, 1);
    margin-bottom: 11px;
}

section .secandey-title {
    font-weight: 300;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    color: rgba(41, 42, 45, 1);
}

section .media-btns {
    margin-top: 20px;
    margin-bottom: 14px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

section .media-btns button,
.sign-btn {
    width: 49.5%;
    border-radius: 10px;
    border: none;
    padding: 20px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 38.01px;
    letter-spacing: 0px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

section .media-btns .active,
.sign-btn {
    background-color: rgba(255, 192, 7, 1);
    color: rgba(41, 42, 45, 1);
}

section .media-btns .inactive {
    background-color: rgba(41, 42, 45, 1);
    color: rgba(255, 255, 255, 1);
}

section .banner {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
    height: 210px;
    border-radius: 10px;
    background-image: url('assets/images/image1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

section .banner .active {
    font-weight: 700;
    font-family: Cairo;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #292a2db2;
    z-index: 1;
    border-radius: 10px;
}

.banner .first-content,
.banner .second-content {
    text-wrap: nowrap;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: Cairo;
    font-size: 33px;
    line-height: 50px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 400;
    width: 45%;
    text-align: center;
}

section .share-social {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

section .share-social .author {
    display: flex;
    align-items: center;
    gap: 18px;
}

section .share-social .author .author-details {
    display: flex;
    flex-direction: column;
}

section .share-social .author .author-details strong {
    font-weight: 700;
    font-size: 16px;
    line-height: 30.4px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #292a2d;
}

section .share-social .author .author-details span {
    font-weight: 600;
    font-size: 16px;
    line-height: 30.4px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #d9d9d9;
}

section .share-social .author .logo-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 71px;
    height: 71px;
    border-radius: 15px;
    border: 0.5px solid #292a2d26;
}

section .share-social .share-links ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

section .share-social .share-links ul li {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 0.5px solid #292a2d26;
    transition: all 0.3s ease;
}

section .share-social .share-links ul li:hover {
    background-color: rgba(255, 192, 7, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 192, 7, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section .share-social .share-links ul li img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

section .share-social .share-links ul li:hover img {
    transform: scale(1.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        padding: 0 15px;
    }

    .mobile-dropdowns {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        background: rgba(41, 42, 45, 1);
    }

    .nav-links .mobile-dropdowns {
        order: -1;
    }

    /* RTL Support */
    [dir='rtl'] .mobile-dropdowns .dropdown-toggle {
        flex-direction: row-reverse;
    }

    [dir='rtl'] .mobile-dropdowns .dropdown-toggle .flag-icon {
        margin-left: 0;
        margin-right: 10px;
    }
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    border-radius: 12.38px;
    background-color: #292a2d80;
}

.swiper-pagination-bullet {
    background: #ffc007;
}

.swiper-pagination-bullet-active {
    background: #ffc007;
}

/* Thumbs Gallery Styles */
.thumbs-gallery {
    width: 100%;
    margin-bottom: 20px;
}

.thumbsSwiper {
    width: 100%;
    height: 660px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #292a2d1a;
    position: relative;
}

.thumbsSwiper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #292a2d80;
    z-index: 2;
    border-radius: 10px;
}

.thumbsSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.thumbsSwiper .swiper-slide img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbsSwiperThumbs {
    height: 163px;
    box-sizing: border-box;
    padding: 10px 0;
}

.thumbsSwiperThumbs .swiper-slide {
    width: 163px !important;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.thumbsSwiperThumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.thumbsSwiperThumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbsSwiper .swiper-button-next,
.thumbsSwiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: #292a2d80;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.thumbsSwiper .swiper-button-next {
    right: 20px;
    left: auto !important;
}

.thumbsSwiper .swiper-button-prev {
    left: 20px;
    right: auto !important;
}

/* Ensure buttons maintain position in RTL */
[dir='rtl'] .thumbsSwiper .swiper-button-next {
    right: 20px !important;
    left: auto !important;
}

[dir='rtl'] .thumbsSwiper .swiper-button-prev {
    left: 20px !important;
    right: auto !important;
}

/* Triangle shape for buttons */
.thumbsSwiper .swiper-button-next::after,
.thumbsSwiper .swiper-button-prev::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.thumbsSwiper .swiper-button-next::after {
    border-width: 13px 0 13px 23px;
    border-color: transparent transparent transparent #ffc007;
}

.thumbsSwiper .swiper-button-prev::after {
    border-width: 13px 23px 13px 0;
    border-color: transparent #ffc007 transparent transparent;
}

/* Ensure triangle direction is correct in RTL */
[dir='rtl'] .thumbsSwiper .swiper-button-next::after {
    border-width: 13px 0 13px 23px;
    border-color: transparent transparent transparent #ffc007;
}

[dir='rtl'] .thumbsSwiper .swiper-button-prev::after {
    border-width: 13px 23px 13px 0;
    border-color: transparent #ffc007 transparent transparent;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .thumbsSwiper {
        height: 560px;
    }

    .thumbsSwiperThumbs {
        height: 140px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 140px !important;
    }
}

@media (max-width: 1200px) {
    .thumbsSwiper {
        height: 480px;
    }

    .thumbsSwiperThumbs {
        height: 120px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 120px !important;
    }
}

@media (max-width: 992px) {
    .thumbsSwiper {
        height: 400px;
    }

    .thumbsSwiperThumbs {
        height: 100px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 100px !important;
    }
}

@media (max-width: 768px) {
    .thumbsSwiper {
        height: 350px;
    }

    .thumbsSwiperThumbs {
        height: 80px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 80px !important;
    }

    .thumbsSwiper .swiper-button-next,
    .thumbsSwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .thumbsSwiper {
        height: 300px;
    }

    .thumbsSwiperThumbs {
        height: 60px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 60px !important;
    }

    .thumbsSwiper .swiper-button-next,
    .thumbsSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .thumbsSwiper .swiper-button-next:after,
    .thumbsSwiper .swiper-button-prev:after {
        border-width: 8px 0 8px 14px;
    }
}

/* Responsive Section Styles */
@media (max-width: 1400px) {
    section {
        padding: 50px 0;
    }

    section .main-title,
    section .secandey-title {
        font-size: 32px;
        line-height: 36px;
    }

    section .media-btns {
        margin-top: 20px;
    }

    section .media-btns button {
        padding: 20px 18px;
        font-size: 18px;
        line-height: 34px;
    }
}

@media (max-width: 1200px) {
    section {
        padding: 45px 0;
    }

    section .main-title,
    section .secandey-title {
        font-size: 28px;
        line-height: 32px;
    }

    .navigate-bar ul li {
        font-size: 14px;
    }

    section .media-btns {
        margin-top: 20px;
    }

    section .media-btns button {
        padding: 18px 16px;
        font-size: 16px;
        line-height: 30px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 40px 0;
    }

    section .main-title,
    section .secandey-title {
        font-size: 24px;
        line-height: 28px;
    }

    .navigate-bar {
        padding-bottom: 20px;
    }

    .navigate-bar ul {
        gap: 10px;
    }

    .navigate-bar ul li {
        font-size: 13px;
    }

    section .media-btns {
        margin-top: 20px;
        margin-bottom: 12px;
    }

    section .media-btns button {
        padding: 16px 14px;
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 35px 0;
    }

    section .main-title,
    section .secandey-title {
        font-size: 20px;
        line-height: 24px;
    }

    .navigate-bar {
        padding-bottom: 15px;
    }

    .navigate-bar ul {
        gap: 8px;
    }

    .navigate-bar ul li {
        font-size: 12px;
    }

    section .media-btns {
        margin-top: 20px;
        margin-bottom: 10px;
        gap: 8px;
    }

    section .media-btns button {
        padding: 14px 12px;
        font-size: 14px;
        line-height: 26px;
        width: 48%;
    }
}

@media (max-width: 576px) {
    /* section .share-social .author .logo-holder {
        width: 60px;
        height: 60px;
    }
    section .share-social .author .logo-holder img {
        width: 30px;
        height: 30px;
    } */
    section .share-social {
        flex-direction: column;
        gap: 20px;
    }

    section .share-social .author {
        gap: 10px;
    }

    section .share-social .author .author-details {
    }

    section .share-social .author .author-details strong {
        font-weight: 700;
        font-size: 13px;
        line-height: 25.4px;
    }

    section .share-social .author .author-details span {
        font-weight: 700;
        font-size: 13px;
        line-height: 25.4px;
    }

    section {
        padding: 30px 0;
    }

    section .main-title,
    section .secandey-title {
        font-size: 18px;
        line-height: 22px;
    }

    .navigate-bar {
        padding-bottom: 12px;
    }

    .navigate-bar ul {
        gap: 6px;
    }

    .navigate-bar ul li {
        font-size: 11px;
    }

    section .media-btns {
        margin-top: 20px;
        margin-bottom: 8px;
        gap: 6px;
    }

    section .media-btns button {
        padding: 12px 10px;
        font-size: 13px;
        line-height: 24px;
        width: 48%;
    }
}

@media (max-width: 400px) {
    section .media-btns button {
        padding: 10px 8px;
        font-size: 12px;
        line-height: 22px;
        width: 48%;
    }
}

/* Responsive Banner Styles */
@media (max-width: 1400px) {
    section .banner {
        height: 190px;
        padding: 18px;
    }

    .banner .first-content,
    .banner .second-content {
        font-size: 31px;
        line-height: 46px;
        gap: 8px;
        width: 45%;
    }
}

@media (max-width: 1200px) {
    section .banner {
        height: 170px;
        padding: 16px;
    }

    .banner .first-content,
    .banner .second-content {
        font-size: 28px;
        line-height: 42px;
        gap: 7px;
        width: 45%;
    }
}

@media (max-width: 992px) {
    section .banner {
        height: 150px;
        padding: 14px;
    }

    .banner .first-content,
    .banner .second-content {
        font-size: 22px;
        line-height: 38px;
        gap: 6px;
        width: 45%;
    }
}

@media (max-width: 768px) {
    section .banner {
        height: 180px;
        padding: 12px;
        flex-direction: column;
        gap: 15px;
    }

    .banner .first-content,
    .banner .second-content {
        font-size: 20px;
        line-height: 34px;
        gap: 5px;
        width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    section .banner {
        height: 200px;
        padding: 10px;
        gap: 20px;
    }

    .banner .first-content,
    .banner .second-content {
        font-size: 16px;
        line-height: 30px;
        gap: 4px;
        width: 100%;
        padding: 0 8px;
    }
}



/* Video Content Styles */
section .video-content {
    position: relative;
    width: 100%;
    height: 660px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

section .video-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #292a2d80;
    z-index: 1;
}

section .video-content .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/video.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

section .content {
    padding-inline-end: 150px;
    padding-top: 36px;
    padding-bottom: 44px;
}

section .content .title {
    margin-bottom: 44px;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #292a2d;
}

section .content .p {
    font-weight: 400;
    font-size: 24px;
    line-height: 46px;
    letter-spacing: 0px;
    color: #292a2d;
}

/* Play Button */
section .video-content .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #292a2d80;
    border-radius: 10px;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

section .video-content .play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 0 13px 23px;
    border-color: transparent transparent transparent #ffc007;
    margin-left: 4px;
}

/* Hover Effects */
section .video-content .play-button:hover {
    background: #292a2d;
    transform: translate(-50%, -50%) scale(1.05);
    transition: all 0.3s ease;
}

/* Responsive Video Content */
@media (max-width: 1400px) {
    section .video-content {
        height: 560px;
    }
}

@media (max-width: 1200px) {
    section .video-content {
        height: 480px;
    }
}

@media (max-width: 992px) {
    section .video-content {
        height: 400px;
    }
}

@media (max-width: 768px) {
    section .video-content {
        height: 350px;
    }

    section .video-content .play-button {
        width: 50px;
        height: 50px;
    }

    section .video-content .play-button::after {
        border-width: 12px 0 12px 20px;
    }
}

@media (max-width: 576px) {
    section .video-content {
        height: 300px;
    }

    section .video-content .play-button {
        width: 40px;
        height: 40px;
    }

    section .video-content .play-button::after {
        border-width: 10px 0 10px 16px;
    }
}

/* Media Buttons Styles */
.media-btns {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.media-btns button {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.media-btns button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-btns button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.media-btns button.active {
    background-color: #ffc007;
    color: #292a2d;
    box-shadow: 0 4px 12px rgba(255, 192, 7, 0.3);
}

.media-btns button.inactive {
    background-color: #292a2d;
    color: #ffffff;
}

.media-btns button:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.media-btns button:active {
    transition: transform 0.1s ease;
}
.related {
    margin-top: 20px;
}
.related h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 54px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}
.related .items-holder {
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: space-between;
}
.related .items-holder .item {
    display: flex;
    flex-direction: column;
    flex-basis: 24%;
    min-height: 450px;
    border: 0.5px solid #292a2d40;
    border-radius: 16.28px;
    padding: 15px;
    overflow: hidden;
}
.related .items-holder .item img {
    border-radius: 15px;
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    object-fit: cover;
}
.related .items-holder .item .title {
    font-weight: 700;
    font-size: 16px;
    line-height: 40.45px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #000000cc;
    margin-bottom: 7px;
    min-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related .items-holder .item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #000000cc;
    margin-bottom: 15px;
    flex-grow: 1;
    min-height: 57px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.related .items-holder .item button {
    width: 100%;
    font-size: 16px;
    line-height: 21.65px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #292a2d;
    border-radius: 9px;
    padding: 15px 30px;
    cursor: pointer;
    border: none;
    margin-top: auto;
    transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.related .items-holder .item button:hover {
    background-color: #3a3b3f;
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Content Visibility */
.photo-content,
.video-content {
    transition: opacity 0.3s ease;
}

.photo-content[style*='display: none'],
.video-content[style*='display: none'] {
    opacity: 0;
}

.photo-content[style*='display: block'],
.video-content[style*='display: block'] {
    opacity: 1;
}

/* Responsive Styles */
/* 1400px and below */
@media (max-width: 30000px) {
    section .content {
        padding-inline-end: 100px;
        padding-top: 30px;
        padding-bottom: 36px;
    }

    section .content .title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 36px;
    }

    section .content .p {
        font-size: 20px;
        line-height: 40px;
    }

    .thumbsSwiper {
        height: 560px;
    }

    .thumbsSwiperThumbs {
        height: 140px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 140px !important;
    }

    section .video-content {
        height: 560px;
    }

    .related .items-holder {
        gap: 15px;
    }

    .related .items-holder .item {
        min-height: 450px;
        padding: 12px;
    }

    .related .items-holder .item img {
        height: 180px;
    }

    .related .items-holder .item .title {
        font-size: 15px;
        line-height: 36px;
        min-height: 36px;
    }

    .related .items-holder .item p {
        font-size: 13px;
        line-height: 18px;
        min-height: 54px;
    }

    .related .items-holder .item button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* 1200px and below */
@media (max-width: 1200px) {
    section .content {
        padding-inline-end: 80px;
        padding-top: 24px;
        padding-bottom: 30px;
    }

    section .content .title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    section .content .p {
        font-size: 18px;
        line-height: 36px;
    }

    .thumbsSwiper {
        height: 480px;
    }

    .thumbsSwiperThumbs {
        height: 120px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 120px !important;
    }

    section .video-content {
        height: 480px;
    }

    .related .items-holder {
        flex-wrap: wrap;
        gap: 15px;
    }

    .related .items-holder .item {
        flex-basis: calc(33.333% - 10px);
        min-height: 460px;
    }

    .related .items-holder .item img {
        height: 160px;
    }

    .related .items-holder .item .title {
        font-size: 14px;
        line-height: 32px;
        min-height: 32px;
    }

    .related .items-holder .item p {
        font-size: 12px;
        line-height: 16px;
        min-height: 48px;
    }
}

/* 992px and below */
@media (max-width: 992px) {
    section .content {
        padding-inline-end: 60px;
        padding-top: 20px;
        padding-bottom: 24px;
    }

    section .content .title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    section .content .p {
        font-size: 16px;
        line-height: 32px;
    }

    .thumbsSwiper {
        height: 400px;
    }

    .thumbsSwiperThumbs {
        height: 100px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 100px !important;
    }

    section .video-content {
        height: 400px;
    }

    .related .items-holder {
        flex-wrap: wrap;
    }

    .related .items-holder .item {
        flex-basis: calc(50% - 10px);
        min-height: 440px;
    }

    .related .items-holder .item img {
        height: 180px;
    }

    .related .items-holder .item .title {
        font-size: 14px;
        line-height: 30px;
        min-height: 30px;
    }

    .related .items-holder .item p {
        font-size: 12px;
        line-height: 16px;
        min-height: 48px;
    }

    .related .items-holder .item button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    section .content {
        padding-inline-end: 40px;
        padding-top: 16px;
        padding-bottom: 20px;
    }

    section .content .title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    section .content .p {
        font-size: 14px;
        line-height: 28px;
    }

    .thumbsSwiper {
        height: 350px;
    }

    .thumbsSwiperThumbs {
        height: 80px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 80px !important;
    }

    .thumbsSwiper .swiper-button-next,
    .thumbsSwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    section .video-content {
        height: 350px;
    }

    section .video-content .play-button {
        width: 50px;
        height: 50px;
    }

    section .video-content .play-button::after {
        border-width: 12px 0 12px 20px;
    }

    .related .items-holder {
        gap: 12px;
    }

    .related .items-holder .item {
        min-height: 420px;
        padding: 10px;
    }

    .related .items-holder .item img {
        height: 150px;
        margin-bottom: 10px;
    }

    .related .items-holder .item .title {
        font-size: 13px;
        line-height: 28px;
        min-height: 28px;
        margin-bottom: 5px;
    }

    .related .items-holder .item p {
        font-size: 11px;
        line-height: 15px;
        min-height: 45px;
        margin-bottom: 10px;
    }

    .related .items-holder .item button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 576px and below */
@media (max-width: 576px) {
    section .content {
        padding-inline-end: 20px;
        padding-top: 12px;
        padding-bottom: 16px;
    }

    section .content .title {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    section .content .p {
        font-size: 14px;
        line-height: 24px;
    }

    .thumbsSwiper {
        height: 300px;
    }

    .thumbsSwiperThumbs {
        height: 60px;
    }

    .thumbsSwiperThumbs .swiper-slide {
        width: 60px !important;
    }

    .thumbsSwiper .swiper-button-next,
    .thumbsSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    /* Next button (▶) */
    .thumbsSwiper .swiper-button-next:after {
        border-width: 8px 0 8px 14px; /* Points right */
    }

    /* Prev button (◀) */
    .thumbsSwiper .swiper-button-prev:after {
        border-width: 8px 14px 8px 0; /* Points left */
    }

    section .video-content {
        height: 300px;
    }

    section .video-content .play-button {
        width: 40px;
        height: 40px;
    }

    section .video-content .play-button::after {
        border-width: 10px 0 10px 16px;
    }

    .related .items-holder {
        gap: 15px;
    }

    .related .items-holder .item {
        flex-basis: 100%;
        min-height: 400px;
    }

    .related .items-holder .item img {
        height: 200px;
    }

    .related .items-holder .item .title {
        font-size: 14px;
        line-height: 32px;
        min-height: 32px;
    }

    .related .items-holder .item p {
        font-size: 12px;
        line-height: 16px;
        min-height: 48px;
    }

    .related .items-holder .item button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
.hide-en {
    display: none;
}
.thumbsSwiperThumbs .swiper-slide {
    opacity: 1 !important; /* Force full opacity */
    filter: none !important; /* Remove any filters */
    background: none !important; /* Remove backgrounds */
}

/* Reset thumbnail images */
.thumbsSwiperThumbs .swiper-slide-thumb-active {
    opacity: 1 !important;
    border: 2px solid #ffc007 !important;
}
.animated-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Video Popup Styles */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-popup.active {
    display: block;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1000px;
    background-color: #292a2d;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.video-popup.active .popup-content {
    transform: translate(-50%, -50%) scale(1);
}

.popup-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.popup-close:hover {
    transform: scale(1.1);
}

.popup-close img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Video Controls */
video::-webkit-media-controls-panel {
    background-color: rgba(41, 42, 45, 0.8);
}

video::-webkit-media-controls-play-button {
    background-color: #ffc007;
    border-radius: 50%;
}

video::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    margin-left: 10px;
    margin-right: 10px;
}

video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    color: #ffc007;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 15px;
    }

    .popup-close {
        top: -35px;
        right: 0;
    }

    .popup-close img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .popup-content {
        padding: 10px;
    }

    .popup-close {
        top: -30px;
    }

    .popup-close img {
        width: 18px;
        height: 18px;
    }

    .icon-check:before {
        content:"" !important;
    }
}
