@font-face {
    font-family: "GESS-B";
    src: url("../assets/Fonts/GE\ SS\ Two\ Bold.otf");
}

@font-face {
    font-family: "GESS-M";
    src: url("../assets/Fonts/GE\ SS\ Two\ Medium.otf");
}

@font-face {
    font-family: "GESS-L";
    src: url("../assets/Fonts/GE\ SS\ Two\ Light.otf");
}

* {
    --bold-primary-font: "GESS-B";
    --medium-primary-font: "GESS-M";
    --light-primary-font: "GESS-L";
    --primary-color: #000064;
    --primary-color-opacity:#00006480;
    --primary-color-opacity-snd:#00006450;
    --second-color: #1c75bc;
    --primary-text-color: #000;
    --second-text-color: #fff;
    --gray-color: #BFBFBF;
    --gray-text-color: #5a5757;
    --primary-radius: 25px;
    --second-radius: 15px;
    --main-padding: 30px;
    --table-border-radius: 5px;
    --table-row-height: 30px;
    --table-background:#BFBFBF;
    --table-header-background:#fff;
    --table-secondary-background:#eee;
    --table-padding:10px;
    --Shadow-box: 0 .5rem 1rem rgba(0, 0, 0, .15);
    --border-radius: 10px;
    --fontsize-header:16px;
    --navbar-height: 120px;
    /* For default Font  */
    
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    list-style: none;
    /* For default Font  */
    font-family: "GESS-L";
    font-weight: 400;
}

html{
    scroll-behavior:smooth;
}

#contact {
    transition: all 0.5s ease-in-out;
  }
  
a {
    text-decoration: none;
    color: var(--gray-color);
}


/* start client page theme  */

/* start header client theme */
.header-client {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--second-text-color);
    box-shadow: var(--Shadow-box);
    width: 100%;
    height: var(--navbar-height);
    z-index: 10000;
}

.header-client .nav-menu,
.header-client .nav-menu.mobile-open
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    background-color: var(--primary-color);
    height: var(--navbar-height);
    width: 100%;
    box-shadow: var(--Shadow-box);
    border-bottom-left-radius: 20px;
    z-index: 90;
    position: relative;
    transition: 0.5s ease; /* animate right */
}

.header-client .nav-menu a{
    color: var(--gray-color);
    font-size: 18px;
}

.header-client .logo{
    margin: 10px;
    width:45%;
    max-width: 350px;
}

.header-client .logo img{
    width: 350px;
}

.header-client .side-menu{
    margin-right: 20px;
    margin-top: 20px;
    display: none;
}

.side-menu-btn{
    display: none;
}

.side-menu-btn:hover{
    cursor:pointer;
}

.header-client a:hover {
    color: var(--second-color);
    transition: .5s;
}


/* end header client theme */

/* start container */
.container {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    direction: rtl;
    padding: 140px 0 50px 0;
    min-height: 55vh;
}
/* end container */

/* start  footer client theme */

.clientFooter {
    position: relative; /* or 'fixed' if you want it always visible */
    bottom: 0;
    padding-top: 10px;
    z-index: 100; /* ensures footer stays above other content */
    color: var(--gray-color);
}

.clientFooter .footer-content {
    display: flex;
    flex-direction: column;
}

.clientFooter .upperfooter {
    display: flex;
}

.clientFooter .section-left,
.section-right {
    padding: 30px;
}

.clientFooter .section-left {
    flex: 8;
    font-size: 10px;
    background-color: var(--primary-color);
    border-radius: 0px 15px 0px 0px;
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: row-reverse;
    justify-content: end;
    gap: 30px;
}

.content-page ul li {
    font-size: 20px;
    font-weight: bold;
    text-align: right;
    margin: 10px 0;
}


.social {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.clientFooter .footer-col h2 {
    margin-bottom: 0.75rem;
}

.clientFooter .page-and-link {
    width: 120px;
}


.clientFooter .section-right {
    flex: 2;
    border-radius: 0px 15px 0px 0px;
}

.clientFooter .lowerfooter {
    height: 40px;
    background-color: var(--primary-color);
    align-content: center;
    border-top: 1px solid var(--second-text-color);
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.4);
}

.clientFooter .lowerfooter p {
    font-size: 14px;
    text-align: center;
}

.clientFooter .logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.clientFooter h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.clientFooter p {
    margin: 5px 0;
    font-size: 14px;
}

.clientFooter .social {
    margin-top: 20px;
}

.social a img {
    height: 30px;
    width: 30px;
}


.contact {
    width: 100%;
    margin-top: 10px;
    justify-content: space-between;
}

.contact div {
    align-items: center;
}

.contact div img {
    margin-right: 10px;
}

.contact div h5 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    margin-bottom: 5px;
}

.flex {
    display: flex;
}

.flex-reverse {
    display: flex;
    flex-direction: row-reverse;
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--primary-color);
    border: none;
    outline: none;
    color: var(--second-text-color);
    height: 45px;
    width: 100%;
    border-radius: 8px;
    font-family: var(--medium-primary-font);
}


.footer-col {
    position: relative;
    overflow: hidden;
    width: 100%;

  }
  
  iframe {
    border-radius: 10px;    
    width: 100%;
    border: 0;
  }

/*Media queries*/

@media  screen and (max-width: 970px ) {

    .header-client .nav-menu{
        position: absolute;
        top: 0;
        transform: translateX(110%); /* Hidden to right */
        transition: transform 0.5s ease-in-out;
    }

    /* Menu open state */
    .header-client .nav-menu.mobile-open {
        position: absolute;
        gap:40px;
        transform: translateX(0%); /* Hidden to right */
        transition: transform 0.5s ease-in-out;
    }

    .header-client .nav-menu a,
    .header-client .nav-menu.mobile-open a{
        font-size: 15px;
    }

    .header-client .side-menu{
        display: block;
    }

    .side-menu-btn#btnOpenMenu{
        display: inline;
        position: absolute;
        top:40px;
        right: 10px;
    }

    .nav-menu.mobile-open .side-menu-btn#btnCloseMenu{
        display: block;
        position: relative;
    }

    .clientFooter .upperfooter {
        flex-direction: column-reverse;
        height: unset;
    }

    .clientFooter .upperfooter .section-right{
        display: none;
    }

    .clientFooter .upperfooter .section-left{
        flex-direction: column;
    }

    .clientFooter .upperfooter .section-left .footer-col .social{
        flex-direction: row;
        justify-content: center;
        gap: 30px
    }

    .clientFooter .page-and-link{
        width: unset;
    }

}

@media  screen and (max-width: 400px ) {

    .header-client .logo img{
        width: 240px;
    }

    .header-client .nav-menu.mobile-open,
    .header-client .nav-menu {
        height: 100%;
        gap: 10px;
    }
    
  .header-client .nav-menu a, .header-client .nav-menu.mobile-open a {
    font-size: 12px;
  }
}