:root {
    --dark-blue: #17306D;
    --light-blue: #283C8B;
    --accent-blue: #6477b2;
    --accent-blue-2: #6b6d84;
    --accent-blue-3: #a8b5dd;
    --accent-dark-blue: #071f4f;
    --accent-dark-blue-2: #172A49;
    --red: #BC1E2A;
    --dark-red: #c0392b;
    --dark-grey: #7C7C7C;
    --light-grey: #CFD1D2;
    --accent-grey: #dadbda;
    --section-bg-color: #f0f0f1;
    --white: #FFFFFF;
}

@font-face {
    font-family: "MontSerratBlack";
    font-display: auto;
    src: url(../fonts/Montserrat-Black.ttf);
}

@font-face {
    font-family: "MontSerratBold";
    font-display: auto;
    src: url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: "MontSerratSemiBold";
    font-display: auto;
    src: url(../fonts/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: "MontSerratBoldItalic";
    font-display: auto;
    src: url(../fonts/Montserrat-BoldItalic.ttf);
}

@font-face {
    font-family: "MontSerratLight";
    font-display: auto;
    src: url(../fonts/Montserrat-Light.ttf);
}

@font-face {
    font-family: "MontSerratMedium";
    font-display: auto;
    src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: "MontSerratRegular";
    font-display: auto;
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: "MontSerratThin";
    font-display: auto;
    src: url(../fonts/Montserrat-Thin.ttf);
}

@font-face {
    font-family: "GESSTwoLight";
    font-display: auto;
    src: url(../fonts/GESSTwoLight-Light.otf);
}

.font-bold-italic {
    font-family: "MontSerratBoldItalic" !important;
}


.bg-primary {
    background-color: var(--light-blue) !important;
}

.btn-mis-red {
    background-color: var(--red);
    font-family: "MontSerratBold";
    border-radius: 2rem;
    font-size: 1rem;
    color: var(--white);
}

.btn-mis-red:hover {
    background-color: var(--dark-red);
    color: var(--white);
}

.btn-mis-blue {
    background-color: var(--dark-blue);
    font-family: "MontSerratBold";
    border-radius: 2rem;
    font-size: 1rem;
    color: var(--white);
}

.btn-mis-blue:hover {
    background-color: var(--light-blue);
    color: var(--white);
}

.w-15 {
    width: 15% !important;
}

.w-35 {
    width: 35% !important;
}

.nav-link {
    color: var(--white) !important;
    border-bottom: none;
    text-transform: uppercase;
    font-family: "MontSerratSemiBold";
    font-size: .9rem;
}

.collapse:not(.show) {
    display: flex;
    justify-content: flex-end;
}

.navbar {
    font-family: "MontSerratRegular" !important;
    padding: 1rem 4rem !important;
}

.nav-link-cta {
    background-color: var(--red);
    border-radius: 24px;
}

.navbar .dropdown-item {
    color: var(--dark-blue);
}

.navbar .dropdown-item:active {
    background-color: var(--dark-blue);
    color: var(--white);
}

.nav-item.active,
.nav-link.active,
.nav-link:hover {
    border-bottom: 1px solid var(--white);
    /* border-radius: .5rem; */
}

.nav-link-cta:hover,
.nav-link-cta.active {
    border-bottom: none;
    background-color: var(--white) !important;
    color: var(--dark-blue) !important;
}

.floatingButtonWrap {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.floatingButtonInner {
    position: relative;
}

.floatingButton {
    display: flex;
    width: 60px;
    height: 60px;
    background: var(--dark-blue);
    color: #fff;
    line-height: 50px;
    position: absolute;
    border-radius: 50% 50%;
    bottom: 0px;
    right: 0px;
    border: 5px solid var(--light-grey);
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.4s;
}

.floatingButton.open,
.floatingButton:hover,
.floatingButton:focus,
.floatingButton:active {
    opacity: 1;
    color: var(--white);
}

.floatingButton.open {
    transform: rotate(45deg);
}


.floatingButton .fa {
    transform: rotate(0deg);
    transition: all 0.4s;
}

.floatingButton.open .fa {
    transform: rotate(270deg);
}

.floatingMenu {
    position: absolute;
    bottom: 60px;
    right: 0px;
    display: none;
}

.floatingMenu li {
    width: 100%;
    float: right;
    list-style: none;
    text-align: right;
    margin-bottom: 5px;
}

.floatingMenu li a {
    padding: 8px 15px;
    display: inline-block;
    background: var(--dark-grey);
    color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s;
    -webkit-box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
    box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
}

.floatingMenu li a:hover {
    margin-right: 10px;
    text-decoration: none;
}

/* .carousel-indicators [data-bs-target] {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    margin-right: 2rem;
    background-color: var(--dark-grey) !important;
}

.carousel-indicators .active {
    background-color: var(--dark-blue) !important;
} */

.home-hero-mobile {
    display: none;
}

.hero-title {
    color: var(--white);
    width: 50%;
    text-align: center;
    text-transform: uppercase;
    font-family: "MontSerratSemiBold";
}

.hero-btn {
    font-size: 1rem;
    color: var(--dark-blue);
    border-radius: 2rem;
    padding: 0.6rem 1rem;
    font-family: 'MontSerratMedium';
    margin-top: .5rem;
    text-transform: uppercase;
    background-color: var(--white);
    text-decoration: none;
    z-index: 3;
}

.home-hero-1-title {
    color: var(--light-blue);
    width: 50%;
    text-transform: uppercase;
    font-family: "MontSerratSemiBold";
    text-align: start;
    font-size: 2rem;
}

.home-hero-1-subtitle {
    color: var(--dark-blue);
    font-family: "MontSerratRegular";
    width: 40%;
    text-align: start;
}

.home-hero-2-title {
    color: var(--white);
    width: 50%;
    text-transform: uppercase;
    font-family: "MontSerratSemiBold";
    text-align: center;
    margin: 1rem auto;
}

.home-hero-2-title.arabic-font {
    font-family: "GESSTwoLight" !important;
    max-width: 50ch;
    font-size: 3.5rem;
}

.home-hero-2-subtitle {
    color: var(--white);
    font-family: "MontSerratRegular";
    width: 50%;
    text-align: center;
    margin: 0 auto;
    font-size: 1.6rem;
}

.home-hero-3-title {
    color: var(--white);
    width: 40%;
    font-family: "MontSerratSemiBold";
    text-align: center;
    margin: 1rem auto;
}

.home-hero-3-subtitle {
    color: var(--white);
    width: 50%;
    font-family: "MontSerratSemiBold";
    text-align: center;
    margin: 1rem auto;
}

.home-hero-4-title {
    font-family: 'MontSerratSemiBold';
    text-align: left;
    width: 30%;
    color: var(--white);
}

.home-hero-4-subtitle {
    font-family: 'MontSerratRegular';
    text-align: left;
    width: 30%;
    color: var(--white);
    z-index: 10;
}

.slideshow {
    position: relative;
    width: 100vw;
    height: 90vh;
    overflow: hidden;
}

/* OPTION 2 */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    /* pointer-events: none; */
}

.slide.last-slide,
.slide.first-slide {
    justify-content: center;
    align-items: flex-start;
}

.slide.last-slide h2,
.slide.last-slide a,
.slide.last-slide .home-hero-4-subtitle,
.slide.first-slide h1,
.slide.first-slide h5 {
    margin-left: 5%;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

/* .curtains {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    z-index: 5;
    pointer-events: none;
}

.curtain-panel {
    flex: 1;
    background: #17306D;
    transform: translateY(-100%);
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
} */






.mis-section {
    padding: 4rem;
}

.grey-section {
    background-color: var(--section-bg-color);
}

.dark-grey-section {
    background-color: var(--dark-grey);
}

.dark-blue-section {
    background-color: var(--dark-blue);
}

.text-primary-mis {
    color: var(--dark-blue) !important;
}

.text-white-mis {
    color: var(--white) !important;
}

.text-grey-mis {
    color: var(--dark-grey) !important;
}

.mis-text-link-red {
    color: var(--red);
    text-transform: uppercase;
    text-decoration: none;
    font-size: .9rem;
    font-family: "MontSerratBold";
    transition: text-decoration .5s;
}

.mis-text-link-red.disabled,
.mis-text-link-red.disabled:hover {
    color: var(--accent-grey);
    cursor: not-allowed;
    opacity: .7;
    pointer-events: none;
    text-decoration: none !important;
}

.mis-text-link-blue {
    color: var(--dark-blue);
    text-transform: uppercase;
    text-decoration: none;
    font-size: .9rem;
    font-family: "MontSerratBold";
    transition: text-decoration .5s;
}

.mis-text-link-blue:hover,
.mis-text-link-red:hover {
    text-decoration: underline;
}

.text-mis-light {
    font-family: "MontSerratLight";
}

.text-mis-bold {
    font-family: "MontSerratBold";
}

.text-mis-semi-bold {
    font-family: "MontSerratSemiBold";
}

.text-mis-medium {
    font-family: "MontSerratMedium";
}

.form-control:focus,
.form-select:focus {
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 .25rem rgba(23, 48, 109, .25);
}

.splide__arrow {
    background-color: transparent !important;
}

.splide__arrow svg {
    fill: var(--red) !important;
    width: 2rem !important;
    height: 2rem !important;
}

#clientsSplide .splide__pagination {
    display: none !important;
}

#AchievementsSplide .splide__pagination__page {
    width: 20px !important;
    height: 20px !important;
    background-color: var(--light-blue);
    margin-right: 2rem;
}

#AchievementsSplide .splide__pagination__page.is-active {
    transform: none !important;
    background-color: var(--red) !important;
}

.section-title {
    font-family: "MontSerratBold";
    text-transform: uppercase;
}

.section-subtitle {
    font-family: "MontSerratBold";
    text-transform: uppercase;
}

.section-content {
    text-align: justify;
    font-family: "MontSerratMedium";
    font-size: 1.2rem;
}

.about-founder .content p {
    font-family: "MontSerratMedium";
    font-size: 1rem;
}

.about-founder .section-content.section-content-bold {
    font-family: "MontSerratBold";
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 2rem 4rem;
}

.footer-cta-left-section {
    width: 60vw;
}

.footer-cta-title {
    font-size: 2.2rem;
    font-family: "MontSerratBold";
    margin: 0;
    margin-bottom: .5rem;
}

.footer-cta-content {
    font-size: 1rem;
    font-family: "MontSerratMedium";
    margin: 0;
}

.footer {
    padding: 3rem 4rem 0.5rem 4rem;
}

.footer-members {
    font-family: "MontSerratSemiBold";
    font-size: 1rem;
    margin-top: 1rem;
}

.footer-contact {
    color: var(--white);
    font-family: "MontSerratMedium";
    font-size: 0.93rem;
    margin-bottom: 1rem;
}

.footer-quick-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-quick-links a {
    color: var(--white);
    text-decoration: none;
    font-family: "MontSerratMedium";
}

.footer-copyright {
    margin-top: 3rem;
    text-align: center;
    color: var(--white);
    font-family: "MontSerratLight";
    font-size: .9rem;
}

.circular-diagram-container {
    position: relative;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    overflow: hidden;
    margin: 50px auto;
    background-color: var(--white);
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background-color: var(--accent-blue-3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5em;
    font-weight: bold;
    z-index: 2;
    font-family: "MontSerratRegular";
    border: 10px solid var(--white);
}

.quadrant {
    position: absolute;
    width: 50%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    color: var(--white);
    font-size: 0.9em;
    border: 5px solid var(--white);
}

.quadrant p {
    max-width: 180px;
    font-size: .9rem;
    font-family: "MontSerratMedium";
    margin: 0;
    line-height: 1.4;
}

.top-left {
    top: 0;
    left: 0;
    background-color: var(--accent-blue-2);
    border-top-left-radius: 100%;
    transform-origin: 100% 100%;
    transform: rotate(0deg);
    align-items: flex-end;
    padding-bottom: 0;
}

.top-right {
    top: 0;
    left: 50%;
    background-color: var(--light-blue);
    border-top-right-radius: 100%;
    transform-origin: 0% 100%;
    transform: rotate(0deg);
    align-items: flex-start;
    padding-bottom: 0;
}

.bottom-left {
    top: 50%;
    left: 0;
    background-color: var(--dark-blue);
    border-bottom-left-radius: 100%;
    transform-origin: 100% 0%;
    transform: rotate(0deg);
    align-items: flex-end;
    padding-top: 0;
}

.bottom-right {
    top: 50%;
    left: 50%;
    background-color: var(--accent-blue);
    border-bottom-right-radius: 100%;
    transform-origin: 0% 0%;
    transform: rotate(0deg);
    align-items: flex-start;
    padding-top: 0;
}

.top-left p {
    text-align: right;
}

.top-right p {
    text-align: left;
}

.bottom-left p {
    text-align: right;
}

.bottom-right p {
    text-align: left;
}

.icon-placeholder {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: var(--white);
}

.icon-placeholder img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.our-approach-mobile {
    display: none;
}

.our-approach-card-item {
    width: 250px;
    height: 300px;
    padding: 3rem 1rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#approach-item-1 {
    background-color: var(--light-blue);
}

#approach-item-2 {
    background-color: var(--accent-blue);
}

#approach-item-3 {
    background-color: var(--dark-blue);
}

#approach-item-4 {
    background-color: var(--accent-blue-2);
}

.our-approach-card-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 2rem;
}

.our-approach-card-item h6 {
    font-family: "MontSerratMedium";
    color: var(--white);
    font-size: .8rem;
    text-align: center;
}

.our-services-mobile {
    display: none;
}

.mis-promise-diagram {
    position: relative;
    width: 900px;
    height: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 0 2rem;
}

.center-content {
    position: relative;
    width: 400px;
    height: 400px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    border: 3px solid var(--light-blue);
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.center-content h2 {
    color: var(--dark-blue);
    font-family: "MontSerratBold";
    font-size: 1.8em;
    margin-bottom: 15px;
}

.center-content p {
    color: var(--dark-blue);
    font-family: "MontSerratMedium";
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more-button {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.read-more-button:hover {
    background-color: var(--dark-red);
}

.about-who-we-are p {
    width: 57vw;
    text-align: justify;
}

.about-who-we-are p a {
    color: var(--dark-blue);
    font-family: "MontSerratMedium";
}

.mis-list,
.what-we-do-list {
    list-style: none;
}

ul.mis-list li {
    background: url(../images/list-icon.png) no-repeat left center;
    background-size: 16px auto;
    padding-left: 24px;
    margin-bottom: 8px;
    font-family: "MontSerratMedium";
    color: var(--dark-blue);
}

.what-we-do-list li {
    font-family: "MontSerratMedium";
    color: var(--dark-blue);
}

.what-we-do-item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.what-we-do-item p {
    margin: 0;
    color: var(--dark-blue);
    font-family: "MontSerratMedium";
}

.about-our-achievements {
    background-color: var(--dark-blue);
    padding: 0 !important;
}

.achievement-item {
    padding: 3rem;
    cursor: grab;
}

.achievement-number {
    color: var(--light-grey);
    font-family: "MontSerratSemiBold";
    border-bottom: 10px solid var(--light-blue);
    font-size: 4rem;
    text-align: center;
    margin-bottom: 2rem;
}

.achievement-text {
    color: var(--white);
    font-family: "MontSerratSemiBold";
}

.outer-circles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.service-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border: 10px solid var(--dark-blue);
    color: var(--dark-blue);
    font-family: "MontSerratRegular";
    font-size: 0.8em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-circle:hover,
.service-circle.active {
    cursor: pointer;
    transform: scale(1.1);
    border-color: var(--accent-blue);
    background-color: var(--accent-blue);
    color: var(--white);
}

.service-circle p {
    margin: 0;
    font-family: "MontSerratSemiBold";
}

/* Icon Placeholder - similar to previous example */
.icon-placeholder {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
}

.icon-placeholder .img-white {
    opacity: 0;
    display: none;
    z-index: 1;
}

.icon-placeholder .img-blue {
    opacity: 1;
    display: block;
    z-index: 1;
}

.service-circle:hover .icon-placeholder .img-white {
    opacity: 1;
    display: block;
}

.service-circle:hover .icon-placeholder .img-blue {
    opacity: 0;
    display: none;
}

.service-circle {
    position: absolute;

    /* margin-left: -60px;
    margin-top: -60px; */
}

/* .service-circle::after {
    content: "";
    width: 30px;
    height: 24px;
    position: absolute;
    border-left: 3px solid var(--dark-blue);
} */

.service-circle:nth-child(1) {
    /* Real Estate (Top-left) */
    top: 60px;
    left: 120px;
}

/* .service-circle:nth-child(1)::after {
    top: 116px;
    left: 157px;
    transform: rotate(-51deg);
} */

.service-circle:nth-child(2) {
    /* Corporate & Commercial (Top-right) */
    top: 60px;
    left: 610px;
}

/* .service-circle:nth-child(2)::after {
    top: 147px;
    left: -10px;
    transform: rotate(51deg);
} */

.service-circle:nth-child(3) {
    /* Dispute Resolution (Mid-right) */
    top: 266px;
    left: 680px;
}

/* .service-circle:nth-child(3)::after {
    top: 75px;
    left: -43px;
    transform: rotate(90deg);
} */

.service-circle:nth-child(4) {
    /* Alternative Dispute Resolution (Bottom-right) */
    top: 470px;
    left: 620px;
}

/* .service-circle:nth-child(4)::after {
    top: -20px;
    left: -20px;
    transform: rotate(-51deg);
} */

.service-circle:nth-child(5) {
    /* Workplace Relations (Bottom-center) */
    top: 570px;
    left: 360px;
    /* Slightly off-center for 7 circles */
}

.service-circle:nth-child(6) {
    /* Intellectual Property (Bottom-left) */
    top: 470px;
    left: 120px;
}

.service-circle:nth-child(7) {
    /* Company Formation (Mid-left) */
    top: 265px;
    left: 50px;
}

.counter-item {
    padding: 3rem;
    width: 300px;
    transition: transform .5s ease-in-out;
}

.counter-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.counter-text {
    color: var(--white);
    font-family: "MontSerratMedium";
    font-size: .8rem;
    text-align: center;
}

.counter-number {
    font-family: "MontSerratBold";
    font-size: 1rem;
}

.counter-title {
    color: var(--white);
    font-family: "MontSerratBold";
    text-transform: uppercase;
    font-size: .8rem;
    text-align: center;
    margin-bottom: 0;
}

.counter-item:hover {
    transform: scale(1.2);
}

/* .testimonial-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
} */

.testimonial-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 3rem;
    width: 400px;
    margin: 0 auto;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.testimonial-content,
.testimonial-item p {
    color: var(--dark-blue) !important;
    font-family: "MontSerratRegular" !important;
}

.testimonial-client {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-grey);
    width: 100%;
}

.testimonial-logo {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    object-fit: cover;
}

.client-name {
    color: var(--dark-blue);
    font-family: "MontSerratMedium" !important;
    margin: 0;
}

.client-designation {
    color: var(--dark-blue);
    font-family: "MontSerratRegular";
    margin: 0;
    font-size: .8rem;
}

.testimonial-read-more-btn {
    background-color: transparent;
    color: var(--dark-blue);
    font-family: "MontSerratMedium";
    font-size: .9rem;
    margin: 0;
    padding: 0;
    border: none;
    text-decoration: none;
}

.excpect-card {
    border: 10px solid var(--accent-grey);
    border-radius: 2rem;
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    width: 300px;
    height: 500px;
}

.excpect-card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 3rem 0;
}

.excpect-card img {
    /* max-width: 30%; */
    margin-bottom: 1.5rem;
    z-index: 999;
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.excpect-card .excpect-card-title {
    text-transform: uppercase;
    font-family: "MontSerratSemiBold";
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
    z-index: 999;
}

.excpect-card .excpect-card-text {
    color: var(--dark-blue);
    font-family: "MontSerratMedium";
    text-align: center;
    z-index: 999;
}

.excpect-card-wrapper-top .excpect-card:nth-child(2)::after {
    content: "";
    width: 300px;
    height: 251px;
    border: 10px solid var(--light-blue);
    background-color: transparent;
    border-bottom: none;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 2rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: -10px 0;
    z-index: 1;
}

.excpect-card-wrapper-top .excpect-card:nth-child(2) .excpect-card-title,
.excpect-card-wrapper-top .excpect-card:nth-child(2) .excpect-card-text {
    color: var(--light-blue);
}

.excpect-card-wrapper-top .excpect-card:nth-child(3) {
    margin-left: -9.9px;
}

.excpect-card-wrapper-top .excpect-card:nth-child(3)::after {
    content: "";
    width: 300px;
    height: 251px;
    border: 10px solid var(--accent-blue);
    border-top: none;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 2rem;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
    margin: 0 -10px -10px -10px;
    z-index: 1;
}

.excpect-card-wrapper-top .excpect-card:nth-child(3) .excpect-card-title,
.excpect-card-wrapper-top .excpect-card:nth-child(3) .excpect-card-text {
    color: var(--accent-blue);
}

.excpect-card-wrapper-top .excpect-card:nth-child(2),
.excpect-card-wrapper-top .excpect-card:nth-child(3),
.excpect-card-wrapper-bottom .excpect-card:nth-child(2) {
    border-right: none;
}

.excpect-card-wrapper-top .excpect-card:nth-child(4) {
    margin-left: -10px;
}

.excpect-card-wrapper-top .excpect-card:nth-child(4)::after {
    content: "";
    width: 300px;
    height: 251px;
    border: 10px solid var(--accent-blue-2);
    border-bottom: none;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 2rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: -10px;
    z-index: 1;
}

.excpect-card-wrapper-top .excpect-card:nth-child(4) .excpect-card-title,
.excpect-card-wrapper-top .excpect-card:nth-child(4) .excpect-card-text {
    color: var(--accent-blue-2);
}

.excpect-card-wrapper-bottom .excpect-card:nth-child(2)::after {
    content: "";
    width: 300px;
    height: 251px;
    border: 10px solid var(--dark-blue);
    border-top: none;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 2rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin: -10px;
    z-index: 1;
}

.excpect-card-wrapper-bottom .excpect-card:nth-child(2) .excpect-card-title,
.excpect-card-wrapper-bottom .excpect-card:nth-child(2) .excpect-card-text {
    color: var(--dark-blue);
}

.excpect-card-wrapper-bottom .excpect-card:nth-child(3) {
    margin-left: -10.4px;
}

.excpect-card-wrapper-bottom .excpect-card:nth-child(3)::after {
    content: "";
    width: 300px;
    height: 251px;
    border: 10px solid var(--accent-dark-blue);
    background-color: transparent;
    border-bottom: none;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 2rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: -10px;
    z-index: 1;
}

.excpect-card-wrapper-bottom .excpect-card:nth-child(3) .excpect-card-title,
.excpect-card-wrapper-bottom .excpect-card:nth-child(3) .excpect-card-text {
    color: var(--accent-dark-blue);
}

.features-text {
    text-align: center;
    color: var(--dark-blue);
    font-family: "MontSerratSemiBold";
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 50%;
    margin: 1rem auto;
}

.service-item {
    background-color: var(--section-bg-color);
    padding: 2rem;
    border-radius: 3rem;
    position: relative;
    margin-bottom: 3rem;
}

.service-item .service-title {
    color: var(--light-blue);
    margin-bottom: 0;
    font-family: "MontSerratBold";
    text-transform: uppercase;
    text-align: left;
}

.service-item .service-subtitle {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--red);
    font-family: "MontSerratLight";
    text-transform: uppercase;
}

.mis-divider {
    border-top: 3px solid var(--light-blue);
    margin: 1rem 0;
    padding: 0;
}

.mis-small-divider {
    border-color: var(--red);
    border-width: 5px;
    width: 100px;
    border-radius: 2rem;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.service-item .service-content {
    color: var(--light-blue);
    font-family: "MontSerratBold";
    margin: 0;
    margin-bottom: 1rem;
}

.service-item .service-content::before {
    content: "";
    border: 2px solid var(--light-blue);
    margin-right: 0.5rem;
}

.service-description {
    color: var(--dark-blue);
    font-family: "MontSerratMedium";
    width: 80%;
    margin-left: 5%;
}

.service-list {
    font-family: "MontSerratRegular";
    color: var(--dark-blue);
}

.service-item img {
    /* background-image: url(../images/services/corporate-and-commercial-blue.png);
    background-repeat: no-repeat;
    background-size: 100px; */
    position: absolute;
    z-index: 999;
    width: 5%;
    height: auto;
    bottom: 10%;
    left: 90%;
}

/* 
.dispute-resolution::after {
    content: "";
    background-image: url(../images/services/dispute-resolution-blue.png);
    background-repeat: no-repeat;
    background-size: 100px;
    position: absolute;
    z-index: 999;
    width: 100px;
    height: 100%;
    top: 70%;
    left: 90%;
}

.alternative-dispute-resolution::after {
    content: "";
    background-image: url(../images/services/alternative-dispute-resolution-blue.png);
    background-repeat: no-repeat;
    background-size: 100px;
    position: absolute;
    z-index: 999;
    width: 100px;
    height: 100%;
    top: 70%;
    left: 90%;
}

.workplace-relations::after {
    content: "";
    background-image: url(../images/services/workspace-relations-blue.png);
    background-repeat: no-repeat;
    background-size: 100px;
    position: absolute;
    z-index: 999;
    width: 100px;
    height: 100%;
    top: 70%;
    left: 90%;
}

.intellectual-property::after {
    content: "";
    background-image: url(../images/services/intellectual-property-blue.png);
    background-repeat: no-repeat;
    background-size: 100px;
    position: absolute;
    z-index: 999;
    width: 100px;
    height: 100%;
    top: 60%;
    left: 90%;
}

.company-formation::after {
    content: "";
    background-image: url(../images/services/company-formation-blue.png);
    background-repeat: no-repeat;
    background-size: 100px;
    position: absolute;
    z-index: 999;
    width: 100px;
    height: 100%;
    top: 60%;
    left: 90%;
}

.real-estate::after {
    content: "";
    background-image: url(../images/services/real-estate-blue.png);
    background-repeat: no-repeat;
    background-size: 100px;
    position: absolute;
    z-index: 999;
    width: 100px;
    height: 100%;
    top: 60%;
    left: 90%;
} */


.service-diagram-item {
    border: 15px solid;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-diagram-item .service-name {
    text-align: center;
    font-size: 1rem;
    font-family: "MontSerratSemiBold";
    color: var(--dark-blue);
    width: 70%;
}

.services-about #diagram-corporate-and-commercial-service {
    border-color: var(--accent-dark-blue-2);
}

.services-about #diagram-dispute-resolution-service {
    border-color: var(--dark-blue);
}

.services-about #diagram-alternative-dispute-resolution-service {
    border-color: var(--light-blue);
}

.services-about #diagram-workplace-relations-service {
    border-color: #5570A0;
}

.services-about #diagram-intellectual-property-service {
    border-color: #7b8db2;
}

.services-about #diagram-company-formation-service {
    border-color: #91a9c6;
}

.services-about #diagram-real-estate-service {
    border-color: #9fa9b7;
}

.services-about p.services-subtitle {
    font-size: 1.2rem;
    width: 50%;
    margin: 1rem auto 2rem auto;
}

.team-card {
    margin-bottom: 2rem;
}

.team-card:hover {
    cursor: pointer;
}

.team-card .member-photo {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px;
    height: 300px;
    border-radius: 2rem;
    margin: 0 auto;
}

.team-card .member-details .member-name {
    font-family: "MontSerratBold";
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 0;
    margin-top: .5rem;
    font-size: .9rem;
}

.member-details {
    width: 50%;
    margin: 0 auto;
}

.team-card .member-details .member-designation {
    font-family: "MontSerratMedium";
    color: var(--dark-blue);
    text-align: center;
    font-size: .9rem;
}

.member-top-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 2px solid var(--dark-blue);
    padding-bottom: 1rem;
}

.member-name-designation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.member-name {
    color: var(--dark-blue);
    font-family: "MontSerratBold";
    margin-bottom: 0;
}

.member-designation {
    font-family: "MontSerratMedium";
    color: var(--dark-blue);
}

.member-info-section {
    padding-top: 1rem;
}

.member-info-section-title {
    color: var(--dark-blue);
    font-family: "MontSerratBold";
    margin: 0;
    margin-bottom: .5rem;
}

.member-info-section-title::before {
    content: "";
    border: 2px solid var(--dark-blue);
    margin-right: 0.5rem;
}

.member-info-section p,
.member-bio p,
.member-bio span {
    color: var(--dark-blue) !important;
    font-family: "MontSerratMedium" !important;
}

.member-qualifications,
.member-experience,
.member-languages,
.member-bio,
.member-practice-areas {
    margin-bottom: 1.5rem;
}

.practice-areas-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.practice-area-item {
    background-color: var(--dark-blue);
    padding: 1.5rem;
    border-radius: 1rem;
    width: 250px;
    height: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.practice-area-item h6 {
    color: var(--white);
    font-family: "MontSerratMedium";
    font-size: 1.1rem;
    margin: 0;
}

.our-team-contact .section-title.page-title {
    font-size: 2rem;
}

.our-team-contact .form-control,
.our-team-contact .form-select {
    background-color: var(--white) !important;
}

.our-team-contact-info {
    background-color: var(--light-blue);
    padding: 3rem;
    border-radius: 2rem;
    height: 90%;
}

.our-team-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.our-team-contact-info h5 {
    text-transform: uppercase;
    font-family: "MontSerratBold";
    margin-bottom: .5rem;
    color: var(--white);
}

.contact-contact-section {
    height: 100%;
}

.our-team-contact-info-item {
    background-color: var(--white);
    font-size: 1rem;
    color: var(--dark-blue);
    padding: .5rem;
    border-radius: .5rem;
    font-family: "MontSerratSemiBold";
}

.our-team-contact-details,
.our-team-location,
.our-team-social {
    width: 100%;
}

.article-item {
    height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.article-item a {
    text-decoration: none;
}

.article-item .article-image img {
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.article-item .article-date,
.single-article.article-date {
    text-transform: uppercase;
    color: var(--red);
    font-family: "MontSerratLight";
}

.article-item .article-title {
    color: var(--dark-grey);
    font-family: "MontSerratRegular";
}

.single-article.article-title {
    color: var(--dark-blue);
    font-family: "MontSerratMedium";
}

.single-article-content {
    font-family: "MontSerratRegular";
}

.single-article-content p, .single-article-content h2, .single-article-content h3, .single-article-content li {
    color: var(--dark-blue) !important;
    font-family: "MontSerratRegular" !important;
}

.single-article-content h2, .single-article-content h2 span, .single-article-content h3{
    font-family: "MontSerratMedium" !important;
}

.single-article-image-mobile {
    display: none;
}

.contact-contact-info {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 2rem;
}

.form-control,
.form-select {
    background-color: var(--section-bg-color);
    color: var(--dark-grey);
}

.form-control,
.form-select,
.form-control::placeholder,
.form-select::placeholder,
label {
    border-radius: 1rem;
    font-family: "MontSerratRegular";
}

.join-the-team-text {
    width: 50%;
    font-family: "MontSerratMedium";
    font-size: 1.2rem;
    color: var(--dark-blue);
    text-align: center;
    margin: 1.2rem auto;
    margin-top: 0;
}

.join-the-team-text:nth-child(3) {
    font-family: "MontSerratBold";
}

.join-the-team-form {
    width: 50%;
    margin: 2rem auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 2rem;
}

@media (max-width: 768px) {
    .home-hero {
        display: none !important;
    }

    .home-hero-mobile {
        display: block !important;
        height: 290px;
    }

    .home-hero-mobile .swiper.mobile-carousel {
        width: 430px;
        height: 290px;
    }

    .home-hero-mobile .swiper.mobile-carousel img {
        width: 100% !important;
        height: 100%;
        object-fit: contain !important;
    }

    .first-swiper-slide {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        padding-left: 8%;
    }

    .home-hero-1-title {
        font-size: 1rem;
    }

    .home-hero-1-subtitle {
        font-size: .6rem;
    }

    .home-hero-2-title,
    .home-hero-3-title,
    .home-hero-3-subtitle,
    .home-hero-4-title,
    .home-hero-4-subtitle {
        font-size: 1rem !important;
        margin-bottom: .5rem !important;
        margin-right: unset;
        margin-left: unset;
        width: 80%;
        text-align: center;
    }

    .home-hero-3-title,
    .home-hero-4-title {
        width: 60%;
    }

    .home-hero-2-title.arabic-font {
        font-size: 1.5rem;
    }

    .home-hero-3-subtitle {
        margin-top: .5rem;
    }

    .hero-btn {
        font-size: .8rem;
        padding: .3rem .6rem;
    }

    .home-services p {
        font-size: .7rem;
    }

    .mis-section {
        padding: 4rem 1rem;
    }

    .circular-diagram-container {
        display: none;
    }

    .join-the-team-form,
    .join-the-team-text {
        width: 100%;
    }

    .practice-area-item {
        margin: 1rem auto;
    }

    .our-services-services-section {
        display: none !important;
    }

    .services-about p.services-subtitle {
        width: 90%;
    }

    .mis-promise-diagram {
        display: none;
    }

    .our-services-mobile {
        display: block;
    }

    .our-approach-mobile {
        display: block;
    }

    .testimonial-item {
        width: 100%;
        height: 450px;
    }

    .counter-item {
        margin: 0 auto;
    }

    .footer-cta {
        flex-wrap: wrap;
    }

    .footer-cta-left-section {
        width: 100vw;
    }

    .footer-cta-left-section .footer-cta-title {
        font-size: 1.5rem;
    }

    .footer-cta a {
        text-align: left !important;
        margin-top: 2rem;
    }

    .footer .col-sm-12 {
        padding: 0 !important;
    }

    .footer .row {
        padding: 2rem 0 0;
    }

    .footer-members-logos {
        padding-top: 0 !important;
        margin-bottom: 3rem;
    }

    .services-about.mis-section,
    .achievement-item {
        padding: 1rem;
    }

    .achievement-item .achievement-number {
        font-size: 2rem;
    }

    .home-mis-numbers-wrapper {
        flex-wrap: wrap !important;
    }

    .practice-areas-wrapper {
        justify-content: flex-start;
    }

    .hero-title {
        width: 90% !important;
        font-size: 1.6rem !important;
    }

    .our-team-contact .section-title {
        font-size: 1.5rem;
    }

    .btn-mis-red {
        width: 100% !important;
    }

    .about-founder-wrapper {
        flex-wrap: wrap !important;
    }

    .about-founder-wrapper img {
        max-width: 100% !important;
        margin-bottom: 2rem;
    }

    #who-we-are img {
        position: relative !important;
        width: 100% !important;
    }

    .about-who-we-are p {
        width: 100% !important;
    }

    .about-who-we-are.mis-section {
        padding-bottom: 0;
    }

    .excpect-card-wrapper-top .col,
    .excpect-card-wrapper-bottom .col {
        display: none;
    }

    .excpect-card {
        margin: 1rem auto !important;
    }

    .features-text {
        width: 90%;
    }

    #AchievementsSplide .splide__pagination {
        bottom: -1.5rem !important;
    }

    .services-about p {
        width: 90%;
    }

    .service-item .service-title {
        width: 85% !important;
        font-size: 1.4rem !important;
    }

    .service-item .service-subtitle {
        width: 80%;
        margin: 0;
    }

    .service-item img {
        width: 15%;
        bottom: unset !important;
        left: unset !important;
        top: 5% !important;
        right: 5% !important;
    }

    .navbar {
        padding: 1rem !important;
    }

    .collapse:not(.show) {
        display: none;
        text-align: center;
    }

    #navbarNavAltMarkup.show {
        text-align: center;
    }

    .single-article-image {
        display: none;
    }

    .single-article-image-mobile {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 2rem;
    }
}

@media (max-width: 1440px) {

    /* .excpect-card-wrapper-top .excpect-card:nth-child(3){
        margin: -9.2px !important;
    }

    .excpect-card-wrapper-top .excpect-card:nth-child(2)::after {
        margin: -9.6px;
    } */

    /* .excpect-card-wrapper-bottom .excpect-card:nth-child(2)::after {
        margin: -8px;
    } */
}






.flip-card {
    background-color: transparent;
    width: 300px;
    height: 400px;
    perspective: 1000px;
    margin: 1rem auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 2rem;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-front {
    background-color: var(--white);
}

.flip-card-back {
    background-color: var(--white);
    transform: rotateY(180deg);
    text-align: center;
    padding: 2rem 1rem;
}

.flip-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.flip-card.flipped .flip-toggle {
    transform: rotate(45deg);
}

.service-icon img {
    width: 60%;
    margin: 0 auto;
    display: block;
}

.service-title {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    font-family: "MontSerratSemiBold";
    color: var(--dark-blue);
}

.service-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: "MontSerratMedium";
    color: var(--dark-blue);
}

.read-more {
    background-color: var(--red);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: "MontSerratSemiBold";
}