@import "./common-var.css";

a,
a:hover {
    text-decoration: none;
    outline: none;
}

input:focus {
    outline: none;
}


ul,
ol,
ul>li,
ol>li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media (min-width: 1680px) {
    .container {
        max-width: 1540px;
    }
}
.box-type1{
    background-color: var(--light-gray);
}
/**************
Common padding & Spacing 
**************/
.common-padding{
    padding: 100px 0;
    @media (max-width: 991px){
        padding: 80px 0;
    }
    @media (max-width: 576px){
        padding: 60px 0;
    }
}
.common-spacing{
    margin: 100px 0;
    @media (max-width: 1140px){
        margin: 80px 0;
    }
    @media (max-width: 576px){
        margin: 60px 0;
    }
}
.common-spacing1{
    margin: 60px 0;
    @media (max-width: 1140px){
        margin: 50px 0;
    }
    @media (max-width: 576px){
        margin: 40px 0;
    }
}
/**************
Common Text Colors
**************/
.blue-text {
    color: var(--primary-color) !important;
}

.text-default {
    color: var(--text-default-color);
}

/**************
Common CMS Text Type
**************/
.cms-text{
    color: var(--text-default-color);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    @media (max-width: 1140px) {
        font-size: 18px;
        line-height: 28px;
    }
    
    @media (max-width: 576px) {
        font-size: 16px;
        line-height: 24px;
    }
    &.white{
        color: var(--white);
    }
}

.cms-text1{
    color: var(--text-default-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    @media (max-width: 991px) {
        font-size: 16px;
        line-height: 26px;
    }
    
    @media (max-width: 576px) {
        font-size: 14px;
        line-height: 24px;
    }
}
/**************
Common heading types
**************/
.hd-type1 {
    color: var(--text-default-color);
    font-family: var(--font-type2);
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    /* text-transform: capitalize; */
    margin: 0 0 24px 0;
    @media (max-width: 1140px){
        font-size: 50px;    
        line-height: 50px;
    }
    @media (max-width: 991px){
        font-size: 40px;    
        line-height: 40px;
    }
    @media (max-width: 576px){
        font-size: 30px;    
        line-height: 30px;
    }
}

.hd-type2 {
    color: var(--white);
    font-family: var(--font-type2);
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    margin: 0 0 24px 0;
    @media (max-width: 1140px){
        font-size: 50px;    
        line-height: 50px;
    }
    @media (max-width: 991px){
        font-size: 40px;    
        line-height: 40px;
    }
    @media (max-width: 576px){
        font-size: 30px;    
        line-height: 30px;
    }
}
.hd-type3 {
    font-family: var(--font-type2);
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    margin: 0 0 24px 0;
    @media (max-width: 991px){
        font-size: 20px;
        line-height: 30px;
    }
    @media (max-width: 576px){
        font-size: 18px;
        line-height: 28px;
    }
}

.hd-type4 {
    color: var(--primary-color);
    font-family: var(--font-type2);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    margin: 0 0 24px 0;
    @media (max-width: 991px){
        font-size: 20px;
        line-height: 32px;
    }
    @media (max-width: 576px){
        font-size: 18px;
        line-height: 28px;
    }
}

.hd-type5 {
    color: var(--primary-color);
    font-family: var(--font-type2);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    margin: 0 0 20px 0;
    @media (max-width: 991px){
        font-size: 20px;
        line-height: 32px;
    }
    @media (max-width: 576px){
        font-size: 18px;
        line-height: 28px;
    }
}



/**************
Common button types
**************/
.btn-type1 {
    background-color: transparent;
    padding: 20px 30px;
    cursor: pointer;
    color: var(--primary-color);
    font-family: var(--font-type2);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    width: auto;
    max-width: fit-content;
    text-align: center;
    transition: all 0.3s ease;
    @media(max-width:1140px){
        padding: 15px 20px;
        font-size: 17px;
        list-style: 20px;
    }
}

.btn-type1:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-type2 {
    background-color: transparent;
    padding: 20px 30px;
    cursor: pointer;
    color: var(--white);
    font-family: var(--font-type2);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    border-radius: 10px;
    border: 2px solid var(--white);
    width: auto;
    max-width: fit-content;
    text-align: center;
    transition: all 0.3s ease;
    @media(max-width:1140px){
        padding: 15px 20px;
        font-size: 17px;
        list-style: 20px;
    }
}

.btn-type2:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.btn-type3 {
    background-color: var(--secondary-color);
    padding: 10px 15px;
    cursor: pointer;
    color: var(--white);
    font-family: var(--font-type2);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border-radius: 200px;
    width: auto;
    max-width: fit-content;
    transition: all 0.3s ease;
    height: 57px;
    display: inline-block;
    @media(max-width:1140px){
        font-size: 17px;
        list-style: 20px;
    }
}

.btn-type3:hover {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-type4 {
    background-color: var(--primary-color);
    padding: 20px 30px;
    cursor: pointer;
    color: var(--white);
    font-family: var(--font-type2);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 5px;
    border: none;
    width: 340px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;

    @media (max-width: 576px) {
        min-width: 280px;
        height: 70px;
        padding: 15px 20px;
        font-size: 17px;
    }

    svg {
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
}

.btn-type4:hover {
    background-color: #1D0DB5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 19, 234, 0.3);
    transition: all 0.3s ease;

    svg {
        transform: translateX(5px);
    }
}

/* RTL Support for btn-type4 */
[dir="rtl"] .btn-type4 {
    svg {
        transform: rotate(180deg);
    }
}

[dir="rtl"] .btn-type4:hover svg {
    transform: rotate(180deg) translateX(5px);
}

/**************
Common list 
**************/
ul.list-type1{
    li{
        position: relative;
        padding-left: 15px;
        line-height: 34px;
        &::before{
            content:'';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background-color: #000000;
            border-radius: 50%;
        }
    }
}
[dir="rtl"] ul.list-type1{
    li{
        padding-left: 0;
        padding-right: 15px;
        &::before{
            left: auto;
            right: 0;
        }
    }
}
/**************
Common tab types
**************/
.tab-type1{
    position: relative;
    &:after{
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 88px;
        border-bottom: 1px solid #dbdbdb;
    }
}
.tab-type1>.nav-tabs {
    /* border-bottom: 1px solid #dbdbdb; */
    border:0px;
    gap: 40px;
    overflow: auto;
    flex-wrap: nowrap;
}

.tab-type1>.nav-tabs>.nav-item>.nav-link {
    margin: 0;
    color: var(--text-default-color);
    border: none;
    border-radius: 0;
    border-bottom: 3px inset transparent;
    font-family: var(--font-type2);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: max-content;
    min-height: 88px;

}
.inner-tab{
        &:after{ display: none;}
        >.nav-tabs>.nav-item>.nav-link{
            min-height: 58px;
        }
    }
.tab-type1>.nav-tabs>.nav-item>.nav-link.active {
    color: var(--text-default-color);
    border-bottom: 3px inset var(--text-default-color);
}

/* .tab-type1>.tab-content>.tab-pane {
    padding: 75px 0 75px 0;
} */


.tab-type2>.nav-tabs {
    border: none;
    gap: 18px;
}

.tab-type2>.nav-tabs>.nav-item {
    flex: 1;
}

.tab-type2>.nav-tabs>.nav-item>.nav-link {
    margin: 0;
    color: var(--text-default-color);
    text-align: center;
    font-family: var(--font-type2);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    padding: 16px 20px;
    border-radius: 6px;
    border: 1px solid #9F9F9F;
    background: var(--white);
    width: 100%;
}

.tab-type2>.nav-tabs>.nav-item>.nav-link.active {
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--white);
}

.tab-type2>.tab-content>.tab-pane {
    padding: 45px 0 0 0;
}

.tab-type3>.nav-tabs {
    border: none;
    gap: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.tab-type3>.nav-tabs>.nav-item {
    flex: 1;
}

.tab-type3>.nav-tabs>.nav-item>.nav-link {
    margin: 0;
    color: var(--text-default-color);
    text-align: center;
    font-family: var(--font-type2);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 16px 22px;
    border-radius: 6px;
    border: 1px solid #9F9F9F;
    background: var(--white);
    width: 100%;
    transition: all 0.3s ease;
    height: 100%;
}

.tab-type3>.nav-tabs>.nav-item>.nav-link.active {
    border: none;
    background: var(--primary-color);
    color: var(--white);
}

.tab-type3>.nav-tabs>.nav-item>.nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-type3>.nav-tabs>.nav-item>.nav-link.active:hover {
    color: var(--white);
}

@media (max-width: 991px) {
    .tab-type3>.nav-tabs {
        gap: 12px;
    }

    .tab-type3>.nav-tabs>.nav-item>.nav-link {
        font-size: 16px;
        padding: 14px 18px;
    }
}

@media (max-width: 576px) {
    .tab-type3>.nav-tabs {
        gap: 8px;
        flex-direction: column;
    }

    .tab-type3>.nav-tabs>.nav-item>.nav-link {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/**************
Common Points Types
**************/
.points-type1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.points-type1 li {
    color: var(--text-default-color);
    font-family: var(--font-type1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 10px;
    padding-left: 26px;
    position: relative;
}

.points-type1 li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    transform: rotate(-45deg);
    flex-shrink: 0;
}

[dir="rtl"] .points-type1 li {
    padding-left: 0;
    padding-right: 26px;
}

[dir="rtl"] .points-type1 li:before {
    left: auto;
    right: 0;
}

@media (max-width: 991px) {
    .points-type1 li {
        font-size: 15px;
        line-height: 22px;
        padding-left: 24px;
    }

    [dir="rtl"] .points-type1 li {
        padding-right: 24px;
    }
}

@media (max-width: 576px) {
    .points-type1 li {
        font-size: 14px;
        line-height: 20px;
        padding-left: 22px;
    }

    [dir="rtl"] .points-type1 li {
        padding-right: 22px;
    }
}

/**************
Reusable Section Styles
**************/
/* Individual pillar styling */
.pillar-item {
    display: flex;
    flex-direction: column; 
    .pillar-icon {
        /* width: 213px;
        height: 155px; */
        padding: 43px 0;
        border-radius: 75px 75px 75px 25px;
        background-color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        @media (max-width: 576px) {     
            margin: 0 auto 20px;
        }
        
        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(45, 19, 234, 0.3);
        }
        
        img, svg {
            width: 68px;
            height: 68px;
            
            @media (max-width: 1200px) {
                width: 56px;
                height: 56px;
            }
            
            @media (max-width: 768px) {
                width: 48px;
                height: 48px;
            }
        }
    }
    
    .pillar-title {
        color: var(--white);
        font-family: var(--font-type2);
        font-size: 18px;
        font-weight: 400;
        line-height: 20px;
        margin: 0;
        max-width: 194px;

        @media (max-width: 768px) {
            font-size: 15px;
            line-height: 18px;
        }

        @media (max-width: 576px) {
            max-width: 100%;
        }
    }
}
[dir="rtl"] .pillar-item .pillar-icon {
    border-radius: 75px 75px 25px 75px;
}
/**************
Investment Section Styles
**************/
.investment-section {
    background: var(--white);
}

.investment-item {
    align-items: center;
    margin-bottom: 80px;

    @media (max-width: 991px) {
        margin-bottom: 60px;
    }

    @media (max-width: 576px) {
        margin-bottom: 40px;
    }

    &:last-child {
        margin-bottom: 0;
    }
    .person-details{
        font-size: 20px;
        line-height: 28px;
        .name{
            font-family: var(--font-type2);
            color: var(--primary-color);
        }
    }
}

.investment-content {
    padding-left: 40px;
    
    @media (max-width: 991px) {
        padding-left: 0px;
    }

    @media (max-width: 576px) {
        padding-left: 0px;
        text-align: center;
    }

}
.order-2 .investment-content{
    padding-right: 40px; padding-left: 0;
    @media (max-width: 991px) {
        padding-right: 0px;
    }
    @media (max-width: 576px) {
        text-align: center;
    }

}
.order-1{
    .investment-image{
        display: flex;
        justify-content: flex-end;
    }
    .investment-video{
        display: flex;
        justify-content: flex-end;
        @media (max-width: 576px){
            flex-direction: column;
        }
    }
}
[dir="rtl"] .order-1{
    .investment-image{
        justify-content: flex-start;
    }
}
.investment-image {
    width: 100%;
    @media (max-width: 991px){
        margin-bottom: 30px;
    }
    img {
        width: 100%;
        max-width: 700px;
        height: 512px;
        object-fit: cover;
        border-radius: 256px 245px 245px 84px;

        @media (max-width: 1200px) {
            height: 400px;
            border-radius: 200px 190px 190px 65px;
        }

        @media (max-width: 991px) {
            height: 350px;
            border-radius: 175px 167px 167px 56px;
        }

        @media (max-width: 768px) {
            height: 320px;
            border-radius: 150px 144px 144px 48px;
        }

        @media (max-width: 576px) {
            height: 280px;
            border-radius: 125px 120px 120px 40px;
        }
    }
}

/**************
Investment Section RTL Support
**************/
[dir="rtl"] .investment-content {
    text-align: right;
    padding-left: 0px;
    padding-right: 40px;
    @media(max-width:991px){
         padding-left: auto;
         padding-right: 30px;
    }
    @media (max-width: 991px) {
        padding-right: 0 ;
    }
    @media (max-width: 576px) {
        text-align: center;
    }
}

[dir="rtl"] .investment-item {
    direction: rtl;
}

.investment-video {
    width: 100%;
    position: relative;
    padding-bottom: 25px;
    @media(max-width:991px){
        margin-bottom: 70px;
    }
    @media(max-width:576px){
        margin-bottom: 20px;
    }
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 512px;
    border-radius: 256px 245px 245px 84px;
    overflow: hidden;
    background: var(--secondary-color);
    
    @media (max-width: 1200px) {
        height: 400px;
        border-radius: 200px 190px 190px 65px;
    }
    
    @media (max-width: 991px) {
        height: 350px;
        border-radius: 175px 167px 167px 56px;
    }
    
    @media (max-width: 768px) {
        height: 300px;
        border-radius: 150px 144px 144px 48px;
    }
    
    @media (max-width: 576px) {
        height: 250px;
        border-radius: 125px 120px 120px 40px;
        margin: 0 auto;
    }
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.video-pause-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;

    &:hover {
        transform: scale(1.1);
    }
}

.video-pause-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;

    &:hover {
        transform: scale(1.1);
    }
}

.annual-report-button {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    
    @media (max-width: 576px) {
        position: static;
        transform: none;
        margin-top: 10px;
        .btn-type4{
            width: 100%;
        }
    }
}

/* RTL Support */
/* [dir="rtl"] .video-container {
    border-radius: 245px 256px 84px 245px;

    @media (max-width: 1200px) {
        border-radius: 190px 200px 65px 190px;
    }

    @media (max-width: 991px) {
        border-radius: 167px 175px 56px 167px;
    }

    @media (max-width: 768px) {
        border-radius: 144px 150px 48px 144px;
    }

    @media (max-width: 576px) {
        border-radius: 120px 125px 40px 120px;
    }
} */



/**************
Form Elements
**************/
.custom-select {
    display: inline-flex;
    height: 52px;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    border: 1px solid #DADADA;
    background: var(--white);
    color: var(--text-default-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.031 9.53068L12.531 17.0307C12.4614 17.1004 12.3787 17.1557 12.2876 17.1935C12.1966 17.2312 12.099 17.2506 12.0004 17.2506C11.9019 17.2506 11.8043 17.2312 11.7132 17.1935C11.6222 17.1557 11.5394 17.1004 11.4698 17.0307L3.96979 9.53068C3.82906 9.38995 3.75 9.19907 3.75 9.00005C3.75 8.80103 3.82906 8.61016 3.96979 8.46943C4.11052 8.32869 4.30139 8.24963 4.50042 8.24963C4.69944 8.24963 4.89031 8.32869 5.03104 8.46943L12.0004 15.4397L18.9698 8.46943C19.0395 8.39974 19.1222 8.34447 19.2132 8.30676C19.3043 8.26904 19.4019 8.24963 19.5004 8.24963C19.599 8.24963 19.6965 8.26904 19.7876 8.30676C19.8786 8.34447 19.9614 8.39974 20.031 8.46943C20.1007 8.53911 20.156 8.62183 20.1937 8.71288C20.2314 8.80392 20.2508 8.9015 20.2508 9.00005C20.2508 9.0986 20.2314 9.19618 20.1937 9.28722C20.156 9.37827 20.1007 9.46099 20.031 9.53068Z' fill='%23515151'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 229px;

    &:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(45, 19, 234, 0.1);
    }

    &:hover {
        border-color: var(--primary-color);
    }

    option {
        padding: 10px;
        background: var(--white);
        color: var(--text-default-color);
    }
}

.form-select {
    @extend .custom-select;
}

/* RTL Support for forms */
[dir="rtl"] .custom-select,
[dir="rtl"] .form-select {
    background-position: left 12px center;
    padding-right: 12px;
    padding-left: 50px;
}
/**************
Common Table Type 1 - Rating Agency and Financial Tables
**************/
.table-type1 {
    border: 0;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0;


    thead {
        th {
            background-color: var(--primary-color);
            color: var(--white);
            font-family: var(--font-type2);
            font-size: 18px;
            font-weight: 400;
            line-height: 28px;
            padding: 12px 30px;
            border: none;
            text-align: center;
            vertical-align: middle;

            @media (max-width: 991px) {
                padding: 16px 20px;
                font-size: 16px;
                line-height: 24px;
            }

            @media (max-width: 576px) {
                padding: 12px 15px;
                font-size: 14px;
                line-height: 20px;
            }

            &:first-child {
                text-align: left;
                width: 355px;

                @media (max-width: 991px) {
                    width: auto;
                    min-width: 200px;
                }

                @media (max-width: 576px) {
                    min-width: 150px;
                }
            }
        }
    }

    tbody {
        td {
            background-color: var(--white);
            color: var(--text-default-color);
            font-family: var(--font-type1);
            font-size: 18px;
            font-weight: 400;
            line-height: 28px;
            padding: 20px 30px;
            border-bottom: 1px solid #EBEBEB;
            text-align: center;
            vertical-align: middle;

            @media (max-width: 991px) {
                padding: 16px 20px;
                font-size: 16px;
                line-height: 24px;
            }

            @media (max-width: 576px) {
                padding: 12px 15px;
                font-size: 14px;
                line-height: 20px;
            }

            &:first-child {
                text-align: left;

            }
        }

    }
}

/* Rating Info Header - for date/time display above tables */
.rating-info-header {
    margin-bottom: 10px;

    .date-time-info {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;

        @media (max-width: 576px) {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .date-time-label {
            color: var(--text-default-color);
            font-family: var(--font-type1);
            font-size: 18px;
            font-weight: 400;
            line-height: 34px;

            @media (max-width: 991px) {
                font-size: 16px;
                line-height: 28px;
            }

            @media (max-width: 576px) {
                font-size: 14px;
                line-height: 24px;
            }
        }

        .date-time-details {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;

            span {
                color: var(--text-default-color);
                font-family: var(--font-type1);
                font-size: 18px;
                font-weight: 400;
                line-height: 34px;

                @media (max-width: 991px) {
                    font-size: 16px;
                    line-height: 28px;
                }

                @media (max-width: 576px) {
                    font-size: 14px;
                    line-height: 24px;
                }
            }
        }
    }
}

/* RTL Support for table-type1 */
[dir="rtl"] .table-type1 {
    thead th:first-child,
    tbody td:first-child {
        text-align: right;


    }
}

[dir="rtl"] .rating-info-header .date-time-info {
    @media (max-width: 576px) {
        align-items: flex-end;
    }
}

/**************
Common Accordion Type 1 - Evolution Section
**************/
.accordion-type1 {
    .accordion-item {
        border: none;
        margin-bottom: 20px;
        border-radius: 5px;
        overflow: hidden;

        @media (max-width: 991px) {
            margin-bottom: 15px;
        }

        @media (max-width: 576px) {
            margin-bottom: 12px;
        }
    }

    .accordion-header {
        margin-bottom: 0;
    }

    .accordion-button {
        background-color: #F9F9F9;
        border: none;
        border-radius: 5px;
        padding: 24px 30px;
        color: var(--primary-color);
        font-family: var(--font-type2);
        font-size: 40px;
        font-weight: 400;
        line-height: 42px;
        position: relative;
        text-align: left;
        box-shadow: none;

        @media (max-width: 1200px) {
            font-size: 32px;
            line-height: 36px;
            padding: 20px 24px;
        }

        @media (max-width: 991px) {
            font-size: 25px;
            line-height: 30px;
            padding: 18px 20px;
        }

        @media (max-width: 576px) {
            font-size: 20px;
            line-height: 25px;
            padding: 16px 18px;
        }

        &:not(.collapsed) {
            background-color: #F9F9F9;
            color: var(--primary-color);
            box-shadow: none;
        }

        &:focus {
            box-shadow: none;
            border: none;
        }

        &::after {
            content: '';
            width: 44px;
            height: 44px;
            background-image: url("data:image/svg+xml,%3csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.668 22H29.3346' stroke='%232D13EA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M21.9993 40.3327C32.1245 40.3327 40.3327 32.1245 40.3327 21.9993C40.3327 11.8741 32.1245 3.66602 21.9993 3.66602C11.8741 3.66602 3.66602 11.8741 3.66602 21.9993C3.66602 32.1245 11.8741 40.3327 21.9993 40.3327Z' stroke='%232D13EA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            flex-shrink: 0;
            margin-left: auto;

            @media (max-width: 991px) {
                width: 36px;
                height: 36px;
            }

            @media (max-width: 576px) {
                width: 32px;
                height: 32px;
            }
        }

        &.collapsed::after {
            background-image: url("data:image/svg+xml,%3csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.666 21.9993H21.9993M21.9993 21.9993H29.3327M21.9993 21.9993V14.666M21.9993 21.9993V29.3327' stroke='%232D13EA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M21.9993 40.3327C32.1245 40.3327 40.3327 32.1245 40.3327 21.9993C40.3327 11.8741 32.1245 3.66602 21.9993 3.66602C11.8741 3.66602 3.66602 11.8741 3.66602 21.9993C3.66602 32.1245 11.8741 40.3327 21.9993 40.3327Z' stroke='%232D13EA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
        }
    }

    .accordion-collapse {
        border: none;
    }

    .accordion-body {
        padding: 30px 0 0;
        background-color: var(--white);

        @media (max-width: 991px) {
            padding: 25px 0 0;
        }

        @media (max-width: 576px) {
            padding: 20px 0 0;
        }
    }
}

/* RTL Support for accordion-type1 */
[dir="rtl"] .accordion-type1 {
    .accordion-button {
        text-align: right;

        &::after {
            margin-left: 0;
            margin-right: auto;
        }
    }
}

/**************
Modal CSS
**************/
.modal-content{
    border-radius: 0;
    .modal-header{ 
        padding: 0;
        .btn-close {
            position: absolute;
            right: 0px;
            top: -44px;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #f2f3f8;
            margin: 0;
            cursor: pointer;
            font-size: 12px;
            padding: 0;
            opacity: 1;
            z-index: 1015;
        }
    }
}
.videoModal{
    .modal-body{
        line-height: 0;
        margin-top: -1px;
    }
}

[dir="rtl"] .modal-content .modal-header .btn-close {
    right: auto;
    left: 0;
}
