
@font-face {
    font-family: 'Ejaxon';
    src: url('IRANSansXV.woff') format('woff-variations'),
    /* will be the standard and works in Safari now */
    url('IRANSansXV.woff') format('woff');
    /* for the other supporting browsers */
    font-weight: 100 1000;
    font-display: fallback;

}


body {
    font-family: 'Ejaxon', tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: justify;
}

#language-dropdown {
    font-family: 'EJAXON';
}

::selection {
    color: #09436b;
    background-color: #6be7d921;  }

a {
    text-decoration: none;
}

article {
    padding: 60px 10px 10px 10px;
}

.tel a {
    color: #333;
    font-weight: 600;
    background-color: #6be7d921;
    padding: 3px;
}

.logo a {
    color: #f9f9f9;

}
.logo {
    font-size: 28px;
}
.logo img{
    max-height: 40px;
    vertical-align: -15px;

}


div.head {
    background: rgb(49,122,138);
    background: linear-gradient(90deg, rgba(49,122,138,1) 0%, rgba(0,20,44,1) 35%, rgba(0,62,100,1) 100%);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header {
     /*background-color: #2a9d8f; */
    color: white;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1400px;
}


nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    transition: max-height 0.5s ease;
    overflow: hidden;
}

nav ul.show {
    max-height: 500px;
}

nav ul.hide {
    max-height: 0;
}

nav ul li {
    margin: 10px 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: rgb(49,122,138);
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 10px 0 10px;
    transition: all 0.3s ease;
}

.language-switcher {
    margin: 0 20px;
}

.language-switcher select {
    padding: 5px 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #eaf9ff;
    color: #09436b;
}

.language-switcher select option {
    background-color: white;
    color: black;
}

  

.banner {
      
    /*background-color: #264653;*/
    color: white;
    padding: 60px 20px;
    text-align: center;
    background-image: url('banner.jpg');
    min-height: 500px ;
    background-size: cover;
    background-position: left;
    position: relative;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
}

.banner h1 {
    
    font-size: 42px;
    margin: 0;
    padding-bottom: 20px;
}

.banner p {
    font-size: 0.8em;
    color: #e9c46a;
}

main{
    background-color: #003e64;
}

section {
padding: 40px 20px 20px 20px;
}

.content-section {
    padding: 40px 20px;
    margin: 20px 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
}

.content-section h2 {
    margin-top: 0;
    color: #264653;
    font-size: 1.2em;
}

.content-section h3 {
    color:  rgb(49,122,138);
    font-size: 1.2em;
    margin-bottom: 0;
}

.content-section p, .content-section ul {
    font-size: 0.9em;
    line-height: 1.6;
    color: #555;
    margin-top: 18px;
}

.content-section ul {
    padding: 30px;
}

#desc-wraper {
    display: flex;  
    flex-direction: row;
    position:relative;

}

#description{
    width: 60%;
}

#descriptionimg{
    width: 50%;
    background-image: url('home-hero.png') ;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}




footer {
    background: linear-gradient(0deg, rgb(31, 93, 116) 0%, rgba(0,62,100,1) 100%);
    color: white;
    text-align: center;
    padding: 35px 0;
    font-size: 14px;
}

@media (max-width: 1024px) {
    nav ul {
        display: flex;
        flex-direction: column;
        background: linear-gradient(90deg, rgba(49,122,138,1) 0%, rgba(0,20,44,1) 35%, rgba(0,62,100,1) 100%);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: 0;
    }

    .banner{
        min-height: 200px;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        order: 1;
        margin: 0;
    }

    .language-switcher {
        order: 2;
    }
}

@media (max-width: 768px) {

    #desc-wraper {
        flex-direction: column-reverse;
    
    }
    
    #description{
        width: 100%;
    }
     
    #descriptionimg{
        width: 100%;
        height: 250px;
        margin-bottom: 25px;
        background-position: center;


    }
    

    .banner{
        min-height: 100px;
    }


    .language-switcher {
        flex-direction: column;
        align-items: flex-start;
        width: 100px;
    }

    .language-switcher select {
        /* width: 100%; */
    }
}

html[lang="en"], html[lang="ru"] {
    direction: ltr;
    text-align: left;
}

html[lang="fa"] {
    direction: rtl;
    text-align: right;
}











/* Reset some styles for a clean slate */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section.accordion-section{
    padding: 0 !important;
}

.accordion {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border-bottom: 1px solid #f5f5f5;
}

.accordion-item:last-child {
    border-bottom: none;
}

/* Accordion header */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ebebeb;
    color: white;
    padding: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #18465a;
}
.accordion-header:hover h3{
    color: #fff;
}
.accordion-header:hover  .material-icons{
    color: #fff;
}
.accordion-header.open h3{
    color: #fff;
}

.accordion-header .material-icons {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-content {
    display: block;
    height: 0; /* Start with collapsed content */
    overflow: hidden;
    padding: 0 16px;
    background-color: #f9f9f9;
    transition: height 0.5s ease, padding 0.5s ease;
}

/* Icon rotation for open state */
.accordion-header.open .material-icons {
    transform: rotate(270deg);
    transition: transform 0.5s ease; /* حرکت نرم */
    color: #fff;


}
 .material-icons {
    color: #003e64;
    transform: rotate(90deg);
    transition: transform 0.5s ease; /* حرکت نرم */
}


/* Accordion item open state */
.accordion-item.open .accordion-content {
    height: auto; /* Automatically adjusts to the content */
    padding: 16px;
}

.accordion-header.open {
    background-color: #00796b;
}

.accordion-header h3 {
    color: #4b4b4b;
    font-size: 1em !important;
}

h4 {
    color: rgb(49, 122, 138);
    margin-bottom: 0;
    display: block;
    font-size: 1.1em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

div#first{
    border-radius: 8px 8px 0 0 ;
}
div#last{
    border-radius: 0 0 8px 8px  ;
}

.accordion-header.open {
    border-radius: 0px !important  ;
    transition: border-radius 0.8s ease;
}





  /* Comment-out to have the button continue to pulse on mouseover */

.pulsingButton {
    width: 220px;
    text-align: center;
    white-space: nowrap;
    display: block;
    margin: 50px auto 90px auto;
    padding: 10px;
    box-shadow: 0 0 0 0 #18465ac5;
    border-radius: 10px;
    background-color: #18465a;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-size: 18px;
    font-weight: normal;
    text-decoration: none !important;
    color: #ffffff;
    transition: all 300ms ease-in-out;
  }
  
  
  /* Comment-out to have the button continue to pulse on mouseover */
  
  a.pulsingButton:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
    color: #ffffff;
  }
  
  
  /* Animation */
  
  @-webkit-keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  @-moz-keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  @-ms-keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  @keyframes pulsing {
    to {
      box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
  }
  
  
  
  
  
  .overflow-table{
    overflow-x: scroll;
}
table {
  border-collapse: collapse;
  width: 100%;
  
}

td, th {
  border: 1px solid #efefef;
  text-align: center;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #efefef;
}
