/********************** CSS Reset *********************/
 html,body,div,span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, sidebar, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
     margin: 0;
     padding: 0;
     border: 0;
     outline: 0;
     font-size: 100%;
     vertical-align: baseline;
}
 body {
     line-height: 1;
}
 article, sidebar, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
     display: block;
}
 ul {
     list-style: none;
}
 blockquote, q {
     quotes: none;
}
 blockquote:before, blockquote:after, q:before, q:after {
     content: none;
}
 a {
     margin: 0;
     padding: 0;
     font-size: 100%;
     color: inherit;
     vertical-align: baseline;
     text-decoration: none;
}
 del {
     text-decoration: line-through;
}
 hr {
     display: block;
     height: 1px;
     border: 0;
     border-top: 1px solid #663b3b;
     margin: 1em 0;
     padding: 0;
}
 input, select {
     vertical-align: middle;
}
 * {
     box-sizing: border-box;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     -o-box-sizing: border-box;
}
 :focus {
     outline: 0;
}
 html {
     scroll-behavior: smooth;
}
 iframe {
     max-width: 100%;
     margin: 0 auto;
     border-radius: 16px;
     display: flex;
}
 @font-face {
     font-family: 'YekanBakhFaNum-VF';
     src: url('../fonts/YekanBakhFaNum-VF.woff2?v=1.0') format('woff2-variations');
     font-weight: 100 1000;
     font-display: swap;
}
 :root {
     --YekanBakh: 'YekanBakhFaNum-VF', tahoma;
     --fontWeight200: "wght" 200, "dots" 1;
     --fontWeight300: "wght" 300, "dots" 1;
     --fontWeight400: "wght" 400, "dots" 1;
     --fontWeight500: "wght" 500, "dots" 1;
     --fontWeight600: "wght" 600, "dots" 1;
     --fontWeight700: "wght" 700, "dots" 1;
     --header-desktop-width: 84px;
     --menu-panel-width: 320px;
     --mobile-topbar-height: 72px;
     --white: #fff;
     --black: #0D1922;
     --body: #f1f1f1;
     --header: rgba(0, 0, 0, 0.4);
     --primary-text-color: #50555B;
     --secondary--text-color: #94989B;
    /*rgba(14,66,138,1)*/
     --primary-color: #0E428A;
    /*rgba(0,171,201,1)*/
     --secondary-color: #00ABC9;
    /*rgba(255,128,49,1)*/
     --tertiary-color: #FF8031;
     --bg-main: #121212;
     --bg-panel: #151515;
     --bg-sidebar: #1b1b1b;
     --border-color: rgba(255, 255, 255, 0.20);
     --menu-transition: 0.42s cubic-bezier(0.77, 0, 0.175, 1);
     --fade-transition: 0.24s ease;
}
 html {
     scroll-behavior: smooth;
}
 body {
     color: #fff;
     overflow-x: hidden;
     font-family: var(--YekanBakh);
}
 .container {
     max-width: 100%;
     padding-right: 15px;
     padding-left: 15px;
     margin-right: auto;
     margin-left: auto;
}
 a {
     color: inherit;
     text-decoration: none;
}
 ul {
     list-style: none;
}
 .img-fluid {
     width: 100%;
     max-width: 100%;
     height: 100%;
     max-height: 100%;
     object-fit: cover;
}
 h2 {
     font-family: var(--YekanBakh);
     font-weight: 500;
     font-variation-settings: var(--fontWeight500);
     font-size: 22px;
     line-height: 30px;
     text-align: right;
}
 p {
     font-family: var(--YekanBakh);
     font-weight: 400;
     font-variation-settings: var(--fontWeight400);
     font-size: 16px;
     line-height: 28px;
}
 .mb-8 {
     margin-bottom: 8px;
}
 .mb-16 {
     margin-bottom: 16px;
}
/********************** HEADER *********************/
 header {
     width: 100%;
     height: 64px;
     position: fixed;
     top: 0;
     right: 0;
     left: 0;
     z-index: 300;
     transition: background-color 0.45s ease, backdrop-filter 0.45s ease;
}
/********************** HAMBURGER *********************/
 .navbar__btn {
     width: 28px;
     height: 22px;
     padding: 0;
     border: none;
     background: transparent;
     cursor: pointer;
     position: relative;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}
 .navbar__btn span {
     display: block;
     width: 100%;
     height: 3px;
     background: #fff;
     border-radius: 999px;
     transition: transform 0.35s ease, opacity 0.25s ease;
     transform-origin: center;
}
 .navbar__btn span:not(:last-child) {
     margin-bottom: 4px;
}
/* حالت open */
 .navbar__btn.open span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
}
 .navbar__btn.open span:nth-child(2) {
     opacity: 0;
     transform: scaleX(0);
}
 .navbar__btn.open span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
}
/********************** MOBILE HAMBURGER *********************/
 .navbar__mobile {
     width: 100%;
     padding: 22px 20px;
     background: rgba(0, 0, 0, 0.2);
     backdrop-filter: blur(8px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.6);
     position: fixed;
     display: flex;
     justify-content: space-between;
     z-index: 99;
}
/********************** DESKTOP STATIC SIDE *********************/
 .sidebar-menu__desktop {
     display: none;
     position: fixed;
     top: 0;
     right: 0;
     width: var(--header-desktop-width);
     height: 100vh;
     padding: 28px 0 24px;
     background: rgba(0, 0, 0, 0.2);
     backdrop-filter: blur(2px);
     border-left: 1px solid 1px solid rgba(255, 255, 255, 0.6);
     z-index: 3100;
     flex-direction: column;
     align-items: center;
     gap: 18px;
}
 .sidebar-menu__text {
     padding-bottom: 70px;
     color: #fff;
     font-size: 16px;
     font-family: Georgia, 'Times New Roman', Times, serif;
     font-weight: 400;
     letter-spacing: 1.6px;
     white-space: nowrap;
     margin-top: 4px;
     writing-mode: vertical-lr;
     transform: rotate(0deg);
     position: relative;
}
.sidebar-menu__text::before {
     content: "";
     width: 2px;
     height: 50px;
     background: #fff;
     position: absolute;
     bottom: 0;
     right: 50%;
     transform: translate(-50%, 0);
}
.sidebar-menu__social {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 18px;
     width: 100%;
     margin-top: 8px;
}
.sidebar-menu__item{
    position: relative;
}
.sidebar-menu__link {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.sidebar-menu__link--eng{
    direction: ltr;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.sidebar-menu__item--tooltip{
    display: none;
}
/********************** SLIDE MENU *********************/
 .sidebar-menu {
     position: fixed;
     top: 0;
     right: 0;
     left: 0;
     width: 100%;
     z-index: 3050;
}
 .menu-list__wrapper {
     position: fixed;
     top: 0;
     right: 0;
     width: 220px;
     height: 100vh;
     padding: 82px 20px 18px;
     background: rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(8px);
     border-right: 0;
     border-left: 2px solid rgba(255, 255, 255, 0.6);
     border-bottom: 0;
     border-radius: 20px 0 0 20px;
     overflow: hidden;
     transform: translateX(100%);
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transition: transform var(--menu-transition), opacity var(--fade-transition), visibility 0s linear 0.42s;
}
/* hide inside when it's not open */
 .menu-list__wrapper * {
     opacity: 0;
     transition: opacity 0.18s ease;
}
 .sidebar-menu.sidebar-menu--open .menu-list__wrapper {
     transform: translateX(0);
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
     transition: transform var(--menu-transition), opacity var(--fade-transition), visibility 0s linear 0s;
}
 .sidebar-menu.sidebar-menu--open .menu-list__wrapper * {
     opacity: 1;
     transition-delay: 0.14s;
}
/********************** MENU ITEMS *********************/
 .menu-list {
     display: flex;
     flex-direction: column;
     flex-wrap: wrap;
     justify-content: center;
     align-items: start;
     gap: 14px 20px;
}
 .menu-link {
     display: block;
     font-family: var(--YekanBakh);
     font-weight: 400;
     font-variation-settings: var(--fontWeight400);
     font-size: 18px;
     line-height: 28px;
     color: var(--white);
     transition: color 0.25s ease, transform 0.25s ease;
}
 .menu-link:hover, .menu-link.active {
     color: var(--secondary-color);
     transform: translateX(-4px);
}
/********************** MOBILE SOCIAL LINKS *********************/
 .sidebar-menu__social--mobile {
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     gap: 8px;
     margin: 26px 0;
     position: absolute;
     bottom: 0;
     right: 0;
     left: 0;
}
 .sidebar-menu__social--mobile .sidebar-menu__item {
     width: auto;
}
 .sidebar-menu__social--mobile .sidebar-menu__link {
     width: 38px;
     height: 38px;
}
/********************** Sections *********************/
 .sections-container {
     width: 100%;
}
 .section {
     position: relative;
     width: 100%;
     height: auto;
     overflow: hidden;
     padding: 0;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .section__background {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     overflow: hidden;
}
 .section__background video {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
 .section__media {
     display: block;
     width: 100%;
     height: 100%;
     object-fit: cover;
}
.section-nav{
    display: none;
}
/********************** Section 1 *********************/
 #section1 {
     height: 520px;
}
 #section1 .section__background {
     background: #111;
}
 #section1 .section__background::after {
     content: "";
     position: absolute;
     right: 0;
     bottom: 0;
     left: 0;
     background: linear-gradient(180deg, rgba(35, 35, 51, 0) 0%, #232333 100%);
     pointer-events: none;
     height: 60%;
}
 .section__content {
     width: 100%;
     height: 100%;
     position: relative;
     padding: 0;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     z-index: 99;
}
/********************** Section 2 *********************/
 #section2 {
     padding-top: 26px;
     padding-bottom: 60px;
}
 #section2 .section__background {
     background: #232333;
}
 #section2 .section__background::after {
     content: "";
     position: absolute;
     right: 0;
     bottom: 0;
     left: 0;
     background: linear-gradient(180deg, rgba(133, 133, 147, 0) 0%, rgba(246, 248, 250, 0.13) 16.71%, rgba(246, 248, 250, 0.28) 32.69%, rgba(246, 248, 250, 0.45) 49.04%, rgba(246, 248, 250, 0.63) 65.87%, rgba(246, 248, 250, 0.85) 81.25%, rgba(246, 248, 250, 0.91) 86.38%, rgba(246, 248, 250, 0.97) 93.07%, rgba(246, 248, 250, 0.99) 96.56%, #F6F8FA 100%, rgba(246, 248, 250, 0.71) 100%);
     pointer-events: none;
     height: 60%;
}
 .section2__title{
     text-align: center;
}
 .two-grid {
     display: grid;
     grid-template-columns: 1fr;
     justify-content: center;
     align-items: start;
     gap: 30px;
}
 .two-grid .grid-item:nth-child(1) {
     order: 2;
}
 .two-grid .grid-item:nth-child(2) {
     order: 1;
}
 .honor__list {
     margin-top: 40px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 16px 0;
}
 .honor__item {
     width: 50%;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 16px;
}
 .honor__item--number {
     direction: ltr;
     font-family: var(--YekanBakh);
     font-weight: 500;
     font-variation-settings: var(--fontWeight500);
     font-size: 32px;
     line-height: 48px;
     color: #E7ECF3;
     position: relative;
}
 .honor__item--number::before{
     content: "+";
}
 .honor__item--text {
     font-family: var(--YekanBakh);
     font-weight: 400;
     font-variation-settings: var(--fontWeight400);
     font-size: 18px;
     line-height: 28px;
     color: #161C24;
}
/********************** Section 3 *********************/
 .body-section-3 header,.body-section-3 .menu-list__wrapper{
     background-color: #232333;
     backdrop-filter: blur(8px);
}
 #section3 {
     padding-bottom: 64px;
}
 #section3 .section__background {
     background: #F6F8FA;
}
 .logo__list {
     width: 100%;
     padding: 16px;
     margin-bottom: 24px;
     background: var(--white);
     display: grid;
     grid-template-columns: 1fr 1fr;
     justify-content: center;
     align-items: center;
     gap: 16px;
}
 .logo__item {
     width: 100%;
     height: 100%;
     padding: 26px;
     background: #F6F8FA;
     border: 1px solid #E7ECF3;
     border-radius: 4px;
     display: grid;
     justify-content: center;
     align-items: center;
}
 .logo__item:nth-child(1) {
     grid-column: 1/-1;
}
 .logo__item--img {
     max-width: 100%;
     height: auto;
     grid-column: 1;
     grid-row: 1;
     justify-self: center;
     align-self: center;
     z-index: 1;
}
 .logo__item--text{
     font-family: var(--YekanBakh);
     font-weight: 500;
     font-variation-settings: var(--fontWeight500);
     font-size: 18px;
     line-height: 28px;
     text-align: center;
     color: var(--black);
     grid-column: 1;
     grid-row: 1;
     justify-self: center;
     align-self: center;
     z-index: 2;
}
 .section-title {
     margin-bottom: 16px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
}
 .section-title__heading {
     font-family: var(--YekanBakh);
     font-weight: 500;
     font-variation-settings: var(--fontWeight500);
     font-size: 16px;
     line-height: 30px;
     text-align: center;
     color: var(--black);
}
 .section-title__span--secondary {
     color: var(--secondary-color) !important;
}
 .section-text {
     font-family: var(--YekanBakh);
     font-weight: 400;
     font-variation-settings: var(--fontWeight400);
     font-size: 14px;
     line-height: 26px;
     text-align: center;
     color: #919EAB;
}
 .service__list {
     display: grid;
     grid-template-columns: 1fr 1fr;
     justify-content: center;
     align-items: center;
     gap: 8px 0;
}
 .service__item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 16px;
}
 .service__item img {
     max-width: 100%;
}
 .service__item--title {
     font-family: var(--YekanBakh);
     font-weight: 400;
     font-variation-settings: var(--fontWeight400);
     font-size: 14px;
     line-height: 26px;
     text-align: center;
     color: #454F5B;
}
/********************** Section 4 *********************/
 #section4{
     padding: 64px 0;
}
 #section4 .section__background::after {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     background: rgba(35, 35, 51, 0.9);
     pointer-events: none;
     width: 100%;
     height: 100%;
}
 #section4 .section-title__span {
     color: var(--white);
}
 #section4 .section-text {
     color: var(--white);
}
 .family-section__wrapper{
     display: grid;
     grid-template-columns: 100%;
     align-items: end;
     gap: 40px;
}
 .family-section__ceo{
     padding-bottom: 5px;
     display: grid;
     grid-template-columns: 1fr;
     align-items: end;
}
 .family-section__ceo--img{
     width: 100%;
     max-width: 180px;
     height: auto;
     margin: 0 auto;
}
 .family-section__ceo--content{
     padding: 12px;
     background: #232333;
     border-radius: 4px;
}
 .family-section__ceo--title{
     font-family: var(--YekanBakh);
     font-weight: 500;
     font-variation-settings: var(--fontWeight500);
     font-size: 18px;
     line-height: 28px;
}
 .family-section__ceo--subtitle{
     margin-bottom: 8px;
     font-family: var(--YekanBakh);
     font-weight: 400;
     font-variation-settings: var(--fontWeight400);
     font-size: 14px;
     line-height: 28px;
}
 .family-section__ceo--text{
     font-family: var(--YekanBakh);
     font-weight: 400;
     font-variation-settings: var(--fontWeight400);
     font-size: 12px;
     line-height: 22px;
}
 .team__carousel{
     padding-right: 0;
}
 .team__carousel .swiper-wrapper{
     align-items: end;
}
 .team__carousel img{
     width: 100%;
     max-width: 100%;
     height: auto;
     object-fit: contain;
}
 .team__carousel .swiper-button{
     display: none;
}
 .team__carousel .swiper-button-next{
     top: initial;
     right: 60px;
     bottom: 5px;
     left: initial;
}
 .team__carousel .swiper-button-prev{
     top: initial;
     right: 20px;
     bottom: 5px;
     left: initial;
}
 .team__carousel .swiper-button-next, .team__carousel .swiper-button-prev {
     width: 30px;
     height: 30px;
     background: transparent;
     border: 1px solid #c7c7c7;
     border-radius: 4px;
}
 .team__carousel .swiper-button-next::after, .team__carousel .swiper-button-prev::after {
     font-size: 12px;
     font-weight: 700;
     color: var(--white);
}
/********************** Section 5 *********************/
 #section5{
     padding: 64px 0;
}
 .body-section-5 header,.body-section-5 .menu-list__wrapper{
     background-color: #232333;
     backdrop-filter: blur(8px);
}
 #section5 .section__background{
     background: #F6F8FA;
}
 .partner__group{
     width: 100%;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
}
 .partner__item{
     padding: 11px;
     background: var(--white);
     border: 1px solid #E7ECF3;
     border-radius: 4px;
     opacity: 0.6;
     transition: 0.4s all;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .partner__item:hover{
     opacity: 1;
}
 .partner__img{
     height: 70px;
     object-fit: contain;
}
 .partner__carousel.swiper{
     padding-bottom: 50px;
}
 .partner__carousel .swiper-pagination{
     bottom: 0;
}
 .swiper-pagination-bullet{
     width: 16px;
     height: 16px;
     background: transparent;
     border: 1px solid var(--secondary-color);
     border-radius: 50%;
}
 .swiper-pagination-bullet-active{
     position: relative;
}
 .swiper-pagination-bullet-active::after{
     content: "";
     width: 10px;
     height: 10px;
     background: var(--secondary-color);
     position: absolute;
     top: 2px;
     right: 2px;
     border-radius: 50%;
}
/********************** Section 6 *********************/
 #section6{
     padding: 64px 0 170px;
}
 #section6 .section__background {
     background: #232333;
}
 #section6 .section__background::after {
     content: "";
     position: absolute;
     right: 0;
     top: 0;
     left: 0;
    background: linear-gradient(0, rgba(133, 133, 147, 0) 0%, rgba(246, 248, 250, 0.07) 12.46%, rgba(246, 248, 250, 0.15) 22.71%, rgba(246, 248, 250, 0.25) 32.69%, rgba(246, 248, 250, 0.33) 40.74%, rgba(246, 248, 250, 0.42) 49.04%, rgba(246, 248, 250, 0.6) 65.87%, rgba(246, 248, 250, 0.81) 81.25%, rgba(246, 248, 250, 0.87) 86.38%, rgba(246, 248, 250, 0.95) 93.07%, rgba(246, 248, 250, 0.98) 96.56%, #F6F8FA 100%, rgba(246, 248, 250, 0.71) 100%);
     pointer-events: none;
     height: 60%;
}
.contact-wrapper {
    padding: 16px;
    border-radius: 16px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.contact-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px
}
.contact-item{
    padding: 8px 16px;
    border: 1px solid #DFE3E8;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.contact-item__title{
     font-family: var(--YekanBakh);
     font-weight: 500;
     font-variation-settings: var(--fontWeight500);
     font-size: 14px;
     line-height: 26px;
     color: #637381;
}
.contact-item__text{
     font-family: var(--YekanBakh);
     font-weight: 400;
     font-variation-settings: var(--fontWeight400);
     font-size: 16px;
     line-height: 28px;
     color: #212B36;
}
.contact-map__right{
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
}
.contact-map__heading{
    padding: 8px 16px;
    background: #342F2C;
    border-radius: 6px;
    font-family: var(--YekanBakh);
    font-weight: 400;
    font-variation-settings: var(--fontWeight400);
    font-size: 16px;
    line-height: 32px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}
.contact-map iframe{
    width: 100%;
}
/********* Contact Form *********/
#contact-form {
    padding: 16px;
    background: #F6F8FA;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
#contact-form .formcontrol {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#contact-form .formcontrol:nth-child(5) {
    grid-column: 1 / -1;
}

#contact-form .formcontrol__label {
    font-family: var(--YekanBakh);
    font-weight: 500;
    font-variation-settings: var(--fontWeight500);
    font-size: 14px;
    line-height: 24px;
    color: #637381;
}
#contact-form .formcontrol__input {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid #DFE3E8;
    border-radius: 8px;
    background: var(--white);
    font-family: var(--YekanBakh);
    font-weight: 400;
    font-variation-settings: var(--fontWeight400);
    font-size: 14px;
    line-height: 24px;
    color: #212B36;
    text-align: right;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#contact-form .formcontrol__input::placeholder {
    color: #919EAB;
}
#contact-form .formcontrol__input:focus {
    border-color: #00ABC9;
    box-shadow: 0 0 0 3px rgba(0, 171, 201, 0.12);
}
#contact-form textarea.formcontrol__input {
    min-height: 140px;
    resize: vertical;
}
#contact-form select.formcontrol__input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23637381' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
}
#contact-form button[type="submit"] {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #1B2430 0%, #0D1922 100%);
    color: var(--white);
    font-family: var(--YekanBakh);
    font-weight: 600;
    font-variation-settings: var(--fontWeight600);
    font-size: 16px;
    line-height: 28px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, opacity 0.2s ease;
}
#contact-form button[type="submit"]:hover {
    opacity: 0.92;
}
#contact-form button[type="submit"].is-loading {
    opacity: 0.7;
    cursor: wait;
}
#contact-form button[type="submit"].is-success {
    background: linear-gradient(180deg, #22C55E 0%, #16A34A 100%);
    opacity: 1;
    cursor: default;
}
#contact-form button[type="submit"].is-error {
    background: linear-gradient(180deg, #EF4444 0%, #DC2626 100%);
    opacity: 1;
}
#contact-form button[type="submit"]:disabled {
    pointer-events: none;
}
 .section-footer{
     width: 100%;
     display: flex;
     justify-content: center;
     background: #232333;
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     opacity: 1;
     z-index: 100;
}
 .section-footer__wrapper{
     padding: 24px 0;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 10px;
}
 .section-footer__text{
     font-family: var(--YekanBakh);
     font-weight: 400;
     font-variation-settings: var(--fontWeight400);
     font-size: 14px;
     line-height: 26px;
     text-align: center;
     color: #919EAB;
}
 .section-footer__link{
     padding: 11px 27px;
     background: var(--secondary-color);
     box-shadow: 0px -10px 8.8px -3px rgba(0, 0, 0, 0.29) inset, 0px -4px 1.7px -2px rgba(0, 0, 0, 0.59) inset, 0px 9px 8.7px -8px rgba(255, 255, 255, 0.59) inset, 0px 1px 3px 0px rgba(255, 255, 255, 0.22) inset;
     border-radius: 7px;
     font-family: var(--YekanBakh);
     font-weight: 500;
     font-variation-settings: var(--fontWeight500);
     font-size: 14px;
     line-height: 26px;
     color: var(--white);
}
/********************** Breakpoints *********************/
 @media only screen and (min-width: 576px) {
     .container {
         max-width: 540px;
    }
    #contact-form {
        height: 100%;
        padding: 24px;
        border-radius: 12px;
        grid-template-columns: 1fr 1fr;
    }
}
 @media only screen and (min-width: 768px) {
     .container {
         max-width: 720px;
    }
     .family-section__ceo{
         grid-template-columns: 1fr 1.5fr;
    }
     .family-section__ceo--img{
         max-width: 241px;
    }
}
 @media only screen and (min-width: 992px) {
     html, body {
         width: 100%;
         height: 100%;
         overflow: hidden;
    }
     .container {
         width: calc(100% - 84px);
         max-width: 960px;
         margin-left: 0;
         margin-right: 84px;
    }
     header {
         left: auto;
         width: var(--header-desktop-width);
         height: 100vh;
    }
     .navbar__mobile {
         display: none;
    }
     .sidebar-menu__desktop {
         display: flex;
         flex-direction: column;
         gap: 10px;
         justify-content: space-between;
         align-items: center;
    }
     .sidebar-menu__desktop--bottom {
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         gap: 10px;
    }
     .sidebar-menu {
         left: auto;
         width: calc(var(--header-desktop-width) + var(--menu-panel-width));
         height: 100vh;
         pointer-events: none;
    }
     .sidebar-menu__desktop, .sidebar-menu {
         /* pointer-events: auto; */
    }
     .menu-list__wrapper {
         width: var(--menu-panel-width);
         height: 100vh;
         min-height: 100vh;
         padding: 34px 24px 24px;
         background: rgba(0, 0, 0, 0.3);
         backdrop-filter: blur(2px);
         border-right: 1px solid #fff;
         border-left: 1px solid var(--border-color);
         border-bottom: none;
         border-radius: 0;
         transform: translateX(100%);
    }
     .sidebar-menu.sidebar-menu--open .menu-list__wrapper {
         transform: translateX(calc(-1 * var(--header-desktop-width)));
    }
     .sidebar-menu.sidebar-menu--open .menu-list__wrapper * {
         transition-delay: 0.16s;
    }
     .menu-list {
         gap: 22px;
         margin-top: 18px;
    }
     .sidebar-menu__social--mobile {
         display: none;
    }
     .sidebar-menu__social {
         gap: 22px;
    }
    .sidebar-menu__link {
        width: 42px;
        height: 42px;
        transition: width 0.3s ease, background 0.3s;
        z-index: 1;
    }
    .sidebar-menu__item--tooltip {
        direction: ltr;
        width: 0;
        padding: 15px 0;
        background: #232333;
        border-radius: 4px;
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        opacity: 0;
        overflow: hidden;
        white-space: nowrap;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        color: var(--white);
        transition: width 0.3s cubic-bezier(.2,.8,.2,1), opacity 0.2s ease, transform 0.3s cubic-bezier(.2,.8,.2,1), padding 0.3s ease;
        pointer-events: none;
    }
    .sidebar-menu__item:hover .sidebar-menu__item--tooltip {
        width: auto;
        padding: 15px 40px 15px 10px;
        opacity: 1;
        transform: translateY(-50%);
    }
     .sections-container {
         position: fixed;
         top: 0;
         right: 0;
         left: 0;
         width: 100%;
         height: 100vh;
         overflow: hidden;
         background: var(--bg-main);
    }
     .section {
         position: absolute;
         inset: 0;
         width: 100%;
         height: 100vh;
         padding: 0;
         border-bottom: none;
         transform: translate3d(0, 100%, 0);
         transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
         will-change: transform;
    }
    .section-nav{
        height: 80%;
        position: absolute;
        z-index: 999;
        left: 1%;
        display: flex;
        flex-direction: column;
    }
    .section-nav__btn{
        width: 40px;
        height: 40px;
        background: none;
        border: 0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s all;
    }
    .section-nav__btn:hover{
        background: var(--white);
    }
    .section-nav__btn--prev{
        position: absolute;
        top: 0;
        left: 40px;
    }
    .section-nav__btn--next{
        position: absolute;
        bottom: 0;
        left: 40px;
    }
     #section1 {
         height: initial;
    }
     #section2{
         padding-top: 0;
    }
     .section2__title{
         text-align: start;
    }
     .two-grid {
         grid-template-columns: 1fr 1fr;
         justify-content: center;
         align-items: center;
         gap: 64px;
    }
     .two-grid .grid-item:nth-child(1) {
         order: 1;
    }
     .two-grid .grid-item:nth-child(2) {
         order: 2;
    }
     #section2 {
         padding-bottom: 0;
    }
     .honor__list {
         margin-top: 80px;
         align-items: center;
    }
     .honor__item {
         width: 20%;
         display: flex;
         flex-direction: row;
         justify-content: flex-start;
         align-items: center;
         gap: 10px;
    }
     .logo__list {
         margin-bottom: 40px;
         grid-template-columns: repeat(3, 1fr);
    }
     .logo__item:nth-child(1) {
         grid-column: 1/2;
    }
     .section-title {
         margin-bottom: 40px;
    }
     .section-title__heading {
         font-size: 20px;
    }
     #section3{
         padding: 0;
    }
     #section4{
         padding: 0;
    }
     .service__list {
         grid-template-columns: repeat(5, 1fr);
         gap: 24px;
    }
     .family-section__wrapper{
         grid-template-columns: 40% 60%;
    }
     #section5{
         padding: 0;
    }
     .partner__group{
         grid-template-columns: repeat(4,1fr);
         gap: 24px;
    }
     .partner__item{
         padding: 22px;
    }
    #section6{
         padding: 0 0 100px;
    }
    .contact-wrapper{
        padding: 40px;
        grid-template-columns: 1fr 1fr;
    }
    .contact-right .section-title{
        align-items: flex-start;
    }
    .contact-list{
        grid-template-columns: 1fr 1fr;
    }
    .contact-item{
        padding: 21px 16px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        text-align: start;
    }
    .contact-map__right{
        flex-direction: row;
    }
    .contact-map__heading{
        width: 48px;
        padding: 8px 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }
    .contact-map iframe{
        width: calc(100% - 64px);
    }
    .contact-map__heading--text{
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }
     .section-footer__wrapper{
        justify-content: space-between;
    }
}
 @media only screen and (min-width: 1200px) {
     .container {
         max-width: 1140px;
    }
     .team__carousel{
         padding-right: 100px;
    }
     .team__carousel .swiper-button{
         display: initial;
    }
}
 @media only screen and (min-width: 1400px) {
     .container {
         max-width: 1340px;
    }
}
 @media only screen and (min-width: 1600px) {
     .container {
         max-width: 1540px;
    }
}
