* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

* footer {
    background-color: #0074C2;
    font-family: iran_y;
}

/* جلوگیری از تغییر رنگ لینک‌ها */
a {
    color: inherit; /* از رنگ متن والد استفاده می‌کند */
    text-decoration: none; /* خط زیرین لینک حذف می‌شود */
}

/* تغییرات هنگام هاور (اختیاری) */
a:hover {
    color: inherit; /* رنگ لینک هنگام هاور نیز تغییر نمی‌کند */
    text-decoration: none; /* هیچ خطی هنگام هاور اضافه نمی‌شود */
}

/* جلوگیری از تغییر رنگ لینک‌ها */
* a {
    color: inherit; /* از رنگ متن والد استفاده می‌کند */
    text-decoration: none; /* خط زیرین لینک حذف می‌شود */
}

/* تغییرات هنگام هاور (اختیاری) */
* a:hover {
    color: inherit; /* رنگ لینک هنگام هاور نیز تغییر نمی‌کند */
    text-decoration: none; /* هیچ خطی هنگام هاور اضافه نمی‌شود */
}

/*---------------------------------------------------------------------fonts---------------------------------------------------------------------*/

@font-face {
    font-family: iran_y;
    src: url(../fonts/irany/Qs_Iranyekan.ttf);
}

@font-face {
    font-family: iran_B;
    src: url(../fonts/irany/Qs_Iranyekan\ extrabold.ttf);
}

@font-face {
    font-family: arial-black;
    src: url(../fonts/arial_black.ttf);
}

@font-face {
    font-family: vazir;
    src: url(../fonts/Vazir.ttf);
}

@font-face {
    font-family: vazir-B;
    src: url(../fonts/Vazir-Bold.ttf);
}

@font-face {
    font-family: sahel;
    src: url(../fonts/Sahel.ttf);
}

@font-face {
    font-family: sahel-B;
    src: url(../fonts/Sahel-Bold.ttf);
}

/*-----------------------------------------------------------------end of fonts----------------------------------------------------------------*/

/*-----------------------------------------------------------------navigation------------------------------------------------------------------*/

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    height: 60px;
}

.navbar {
    position: fixed;
    top: 0; /* فاصله از بالای صفحه */
    left: 0; /* فاصله از چپ */
    width: 100%;/*تنضیم عرض*/
    height: 75px;/*تنضیم طول*/
    /*background-color: #0074c2;*/
    background-image: linear-gradient(to right, #6d6d6d, #858585,#858585 , #dfd8d8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 0 20px;*/
    z-index: 1000;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.7);
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: black;
    text-align: center;
    font-family: iran-B; 
}

.nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;/*ایجاد فاصله بین در باکس*/
    font-family: iran_B; 
    display: flex;
}

.nav-item {
    padding: 8px;
    font-size: 20px;
    font-weight: 400;
    color: #1E1E1E;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item:hover {
    /*background-color: #1bc91b;*/ /* رنگ سبز روشن */
    background-color: #9b9b9b;
    color: #000; /* رنگ متن در هنگام hover */
    transition: all 0.55s ease;
    border-radius: 8px;
    width: 150px;
    justify-content: center;
    align-items: center;
}

.nav-item:hover a {
    color: #000; /* رنگ متن در هنگام hover */
    transition: all 0.25s ease;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    text-shadow: 0px 2px 0px rgb(187, 187, 187);/*ایجاد سایه*/
}

.nav-item.active:hover {
    color: #000; /* رنگ متن در هنگام hover */
    transition: all 0.25s ease;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    background-color: #9b9b9b;
}

.menu a{
    color: #bdbdbd; /* رنگ دلخواه برای متن لینک */
    text-shadow: 0 4px 3px rgb(0, 0, 0);/*ایجاد سایه*/
}

.nav-item.active {
    background-color: #666c79;
    /*background-color: #0EC6DF;*/
    color: black;
    /*opacity: 0.5;*/
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 52px;
    right: 0;
    background-color: #9c9c9c;
    border: 1px solid #9c9c9c;
    border-radius: 8px;
    padding: 1px;
    width: 200px; /* افزایش عرض منو */
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    direction: rtl;
    font-family: vazir; 
}

.wide-menu {
    width: 470px; /* عرض اختصاصی */
}

.wide-menuB {
    width: 210px; /* عرض اختصاصی */
}

.dropdown-item {
    padding: 6px; /* افزایش ارتفاع padding برای هر آیتم */
    background-color: #9c9c9c;
    border-radius: 4px;
    border-bottom: 1px solid #000; /* اضافه کردن خط سیاه */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.active-menu{
    background-color: #0EC6DF;
    color: #0EC6DF;
}

.dropdown-item:last-child {
    border-bottom: none; /* حذف خط زیر آخرین آیتم */
}

.nav-item:hover .dropdown-item {
    opacity: 1;
    transform: translateY(0);
}

.delay-600 {
    transition-delay: 0.1s;
}

.delay-800 {
    transition-delay: 0.2s;
}

.delay-1000 {
    transition-delay: 0.3s;
}

.delay-1200 {
    transition-delay: 0.4s;
}

.delay-1400 {
    transition-delay: 0.5s;
}

.delay-1600 {
    transition-delay: 0.6s;
}

.delay-1800 {
    transition-delay: 0.7s;
}

.dropdown-item:hover {
    background-color: #b6b2b2;
}

.nav-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #bfff00;
    border-radius: 50%;
    position: relative;
    margin-left: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.icon-box {
    width: 50px;
    height: 50px;
}

.icon-logo{
    width: 400px;
    height: auto;
    margin-right: 18px;
}

.img{
    max-width: 100%;
    max-height: 100%;
    mix-blend-mode: multiply;
    border-radius: 100px;
}

.imgB{
    max-width: 100%;
    max-height: 100%;
    /*mix-blend-mode: multiply;*/
}

.nav-item i {
    margin-right:2px; /* فاصله بین متن و آیکون */
    color: #1E1E1E; /* رنگ آیکون */
    font-size: 12px; /* اندازه آیکون */
    margin-top: 3px;
}
.nav-item .fas {
    font-weight: 900; /* بولد کردن آیکون */
    margin-left: 5px; /* فاصله از متن خدمات */
    font-size: 11px;  /* سایز آیکون */
    transition: transform 0.3s ease;
}

.nav-item:hover .fas {
    transform: rotate(180deg); /* چرخش آیکون هنگام hover */
}

/*-----------------------------------------------------------------end of navigation------------------------------------------------------------------*/

/*---------------------------------------------------------------------footer-------------------------------------------------------------------------*/

* footer {
    background-color: #0074C2;
    font-family: iran_y;
}

footer {
    background-color: #333333;
    color: #fff;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex-basis: 25%;
    padding: 10px;
}

.footer-section h2 {
    margin-bottom: 20px;
}

.footer-section p, .footer-section ul {
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #f1c40f;
}

.footer-section .social a {
    margin-right: 15px;
}

.footer-section .social a img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
}


.img-i{
    max-width: 100%;
    max-height: 100%;
    border-radius: 100px;
    max-width: 60px;
}

.footer-section a {
    display: inline-block;
    z-index: 100000; /* مطمئن شوید که این مقدار مناسب است */
}

.footer-section .social a img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-section .social a img:hover {
    transform: scale(1.1); /* افزایش اندازه در هاور */
}

.aaa{
    z-index: 1;
}

.footer-container h2{
    color: #00d9ff;
    text-align: right;
}


/*-------------------------------------------------------------------end of footer--------------------------------------------------------------------*/

/*-----------------------------------------------------------------loading------------------------------------------------------------------*/
/* استایل برای لودینگ اسکرین */
/*#loading-screen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 9999; /* اطمینان از اینکه لودینگ بالاتر از تمام المان‌های دیگر نمایش داده شود *//*
}

/* استایل دایره چرخان (لـودینگ) */
/*.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

/* انیمیشن چرخش */
/*@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}*/

/*-----------------------------------------------------------------end of loading------------------------------------------------------------------*/

/*-------------------------------------------------------------------home page---------------------------------------------------------------------*/

body {
    font-family: 'Inter', sans-serif;
    background-color: rgb(228, 228, 228);
    margin: 0;
    padding: 0; 
}

.intro-container {
    margin: 50px auto;
    padding: 20px;
    max-width: 1200px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1em;
    direction: rtl;
    font-family: iran_y;
}

.intro-container h2 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 15px;
    font-family: iran_b;
}

.intro-container li {
    list-style: none; /* حذف نقطه پیش‌فرض */
    position: relative;
    padding-right: 20px; /* فاصله دادن متن از نقطه */
    text-align: right; /* راست‌چین کردن متن */
}

.intro-container li::after {
    content: "•"; /* افزودن نقطه به صورت سفارشی */
    color: #001aff; /* رنگ نقطه */
    font-size: 35px; /* اندازه نقطه */
    position: absolute;
    right: 0; /* قرار دادن نقطه در سمت راست */
    top: -13px; /* پایین بردن نقطه */
}

menu{
    margin-right: 0px;
}

.back{
    margin-top: 76px;
    background-image: url(../images/back-img.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.containerb {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* ارتفاع 100% صفحه نمایش */
}

.header-box-index{
    text-align: center;
}

.text-index{
    font-size: 5rem; /* اندازه فونت را بر اساس نیاز تنظیم کنید */
    font-family: iran_y ;
    margin-top: 200px;
}

.text-indexB{
    font-size: 3rem; /* اندازه فونت را بر اساس نیاز تنظیم کنید */
    font-family: iran_y ;
    margin-bottom: 500px;
}

.text-h{
    padding-right: 22px;
    padding-top : 20px;
    padding-left: 20px;
    font-family: iran_y;
    line-height: 2;
    font-size: 26px;
}

/*-----------------------------------------------------------------end of home page----------------------------------------------------------------*/

/*-------------------------------------------------------------------services page-----------------------------------------------------------------*/

.serv-container {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
    font-size: 1.0rem;
    direction: rtl;
    font-family: iran_y;
    height: 100% ;
}

.serv-container- {
    padding: 15px;
    background-color: #f9f9f9;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
    font-size: 1.0rem;
    direction: rtl;
    font-family: iran_y;
    height: 100% ;
    margin-right: 18%;
    margin-left: 18%;
    column-count: 2;
}

.serv-container- h1 {
    color: #001aff;
    margin-right: 30%;
}

.serv-container- li {
    list-style: none; /* حذف نقطه پیش‌فرض */
    position: relative;
    padding-right: 20px; /* فاصله دادن متن از نقطه */
    text-align: right; /* راست‌چین کردن متن */
}

.serv-container- li::after {
    content: "•"; /* افزودن نقطه به صورت سفارشی */
    color: #001aff; /* رنگ نقطه */
    font-size: 35px; /* اندازه نقطه */
    position: absolute;
    right: 0; /* قرار دادن نقطه در سمت راست */
    top: -11px; /* پایین بردن نقطه */
}

.serv-container h1 {
    color: #001aff;
    margin-right: 9%;
}

.serv-container li {
    list-style: none; /* حذف نقطه پیش‌فرض */
    position: relative;
    padding-right: 20px; /* فاصله دادن متن از نقطه */
    text-align: right; /* راست‌چین کردن متن */
}

.serv-container li::after {
    content: "•"; /* افزودن نقطه به صورت سفارشی */
    color: #001aff; /* رنگ نقطه */
    font-size: 35px; /* اندازه نقطه */
    position: absolute;
    right: 0; /* قرار دادن نقطه در سمت راست */
    top: -11px; /* پایین بردن نقطه */
}

.three-column{
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    margin-right: 80px;
    margin-left: 80px;  
}

.full {
    flex: 1 1 29%; /* هر باکس حدود 30 درصد از عرض کل را می‌گیرد */
    box-sizing: border-box;
    margin-bottom: 100px ;
}

.main-content {
    margin-top: 85px; /* به اندازه ارتفاع ناوبار */
}

.serv-img {
    width: 150px; /* اندازه‌ی تصویر */
    height: 150px; /* اندازه‌ی تصویر */
    border-radius: 50%; /* تصویر گرد */
    margin-left: 20px; /* فاصله از متن */
    object-fit: cover; /* برای اطمینان از پر شدن دایره */
}

.container-serv-t{
    display: flex;
    align-items: center;
}

.header-text-d{
    margin-bottom: 50px;
    margin-top: 150px;
    margin-left: 160px;
    margin-right: 160px;
    border-radius: 42px;
    padding-bottom: 96px;
    text-align: justify;
    flex: 1; /* برای پر کردن فضا */
    padding-right: 10px; /* فاصله از سمت راست */
    border-right: 2px solid #ccc; /* خط عمودی در سمت راست متن */
    /*background-color: #FF8800;*/
}

.headline{
    align-items: center;
    background-color: #001aff;
    margin-left: 18%;
    margin-right: 18%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 10px;
}

.headline-{
    align-items: center;
    text-align: center;
}



/*-----------------------------------------------------------------end of services page------------------------------------------------------------*/

/*---------------------------------------------------------------------event page------------------------------------------------------------------*/

/*.container-e {
    display: flex;
    /*justify-content: center;
    /*align-items: center;*/
    /*height: 100vh; 
}

.button{
    width: 50px;
    height: 100px;
    border-radius: 1000px;
    background-color: #000;
    align-items: center;
    justify-content: center;
    margin-top: 400px;
}

.images{
    margin-top: 100px;
    align-items: center;
    justify-content: center;
    max-width: 1800px;
    width: auto;
    height: auto;
    background-color: #000;
    flex: 1 1 30%; 
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-right: 80px;
    margin-left: 80px;
}

.images img{
    max-width: 400px;
    width: fit-content;
    border-radius: 2px;
    height: 350px;
}*/

.container-e {
    display: flex;
    justify-content: center; /* مرکزچین کردن اسلایدر */
    align-items: center;
    /*height: 100vh;*/
    direction: rtl;
    margin-top: 100px ;
}

.slider-container {
    position: relative;
    width: 1350px; /* عرض ثابت اسلایدر */
    height: 400px; /* ارتفاع ثابت اسلایدر */
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 1350px; /* عرض دلخواه اسلایدر */
    height: 400px;
    position: relative;
}

.slide-text {
    position: absolute;
    bottom: 20px; /* فاصله از پایین */
    right: 20px; /* فاصله از چپ */
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    font-family: iran_B;
    font-size: 1.6rem;
    text-shadow: 0px 2px 3px #000000;
    /*background-color: rgba(0, 0, 0, 0.178); *//* پس‌زمینه نیمه‌شفاف */
    padding: 10px;
    border-radius: 5px;
    text-align: justify;
    margin-right: 15px;
    margin-left: 55px;
    direction: rtl;
    z-index: 2;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    z-index: 1;
}


.slide img {
    width: 440px; /* عرض تصویر بدون فاصله */
    height: 400px; /* ارتفاع تصویر */
    object-fit: cover;
    margin-right: 10px; /* فاصله بین تصاویر */
    transition: transform 0.5s ease;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    transition: background-color 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* استایل برای کل بخش اخبار */
.news-section {
    width: 1350px;
    margin: 0 auto;
    direction: rtl;
    padding-top: 10px;
    margin-bottom: 100px; 
    font-family: iran_y;
}

/* تنظیم عنوان اخبار تازه */
.news-title {
    font-size: 24px;
    font-weight: bold;
    text-align: right;
    margin-bottom: 10px;
}

/* استایل برای محتوا */
.news-content {
    display: flex;
    align-items: stretch; /* اینجا را تغییر دادیم تا همه بخش‌ها هم‌ارتفاع شوند */
    text-align: right;
    margin-left: 3px; /* فاصله 3 پیکسل از تصویر */
}

/* بخش اخبار تازه در سمت راست */
.news-boxes {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    height: 125px;
    padding: 10px;
    box-sizing: border-box;
    position: relative; /* برای استفاده از موقعیت‌دهی مطلق */
    border-radius: 5px;
}   

.news-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    margin-right: 150px;
}

.news-box-title {
    font-size: 16px;
    font-weight: bold;
}

.news-description {
    font-size: 14px;
    color: #555;
}

.news-image {
    width: 125px;
    height: 125px;
    background-color: #001aff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute; /* استفاده از موقعیت‌دهی مطلق */
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* خط جدا کننده بین آرشیو و اخبار */
.separator {
    width: 10px;
    background-color: #008a5c;
    margin: 0 10px;
}

/* بخش آرشیو ها در سمت چپ */
.archives-section {
    width: 30%;
    font-size: 18px;
    background-color: #c5c5c5;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 5px;
}

.archives-title {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    padding: 15px
}

.archives-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.archive-description {
    font-size: 14px;
    color: #555;
}

.archive-title {
    font-size: 16px;
    font-weight: bold;
}

/*--------------------------------------------------end of event page---------------------------------------------------------------------*/
/*--------------------------------------------------contactus page------------------------------------------------------------------------*/

/* تنظیمات کلی بخش ارتباط با ما */
/* تنظیمات کلی */
.contact-section {
    max-width: 400px;
    min-width: 200px;
    padding: 30px;
    direction: rtl;
    font-family: 'IRANSans', sans-serif;
    /*background-color: #f0f0f0;*/
    column-gap: 40px;
    font-family: iran_y;
}

.m-text {
    right: 10px;
    left: 100px;
}

.sec-cont{
    margin-top: 100px;
    margin-left: 100px;
    margin-right: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containercont{
    height: 20vh; /* ارتفاع 100% صفحه نمایش */
    font-family: iran_y;
    margin-bottom: 10px;
}

.three-column{
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    column-count: 3;
}   

.contact-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

/* اطلاعات تماس */
.contact-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 24px;
    color: #007bff;
}

.info-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* شبکه‌های اجتماعی */

.social-media- {
    text-align: center;
}

.social-media {
    margin-top: 0px;
    text-align: center;
}

.social-media h3 {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;

}

.social-icon-h{
    width: 100px ;
    height: 10000px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon img {
    width: 100%;
    height: 100%;
    border-radius: 1000px;
}

.social-icon- img {
    width: 100%;
    height: 100%;
    border-radius: 1000px;
}


.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.instagram {
    background-color: #e4405f;
}

.social-icon.telegram {
    background-color: #0088cc;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/*.map{
}*/
.form-title {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
}

.font{
    font-family: iran_y;
    direction: rtl;
}

.consultation-form {
    background-color: #b3b3b3;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    max-width: 100%;
}
  
.consultation-form {
    width: 100%;
    height: 100%;
    /*width: 90%;*/
    /*max-width: 400px;*/
} 

.consultation-form h1 {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    z-index: 10;
}

/* Create two equal columns that floats next to each other */
.column1 {
    float: left;
    width: 45%;
    padding: 10px;
    height: 710px; /* Should be removed. Only for demonstration */
}
  
.column2 {
    float: left;
    width: 55%;
    padding: 10px;
    height: 710px; /* Should be removed. Only for demonstration */
}

.column3 {
    display: none;
    width: 100%;
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 100px;
    z-index: 1;
    height: 400px; /* Should be removed. Only for demonstration */
}
  
  /* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.row {
    margin-right: 250px;
    margin-left: 250px;
}

.map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.form-c {
    margin-left: 100px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    grid-column: span 1;
}


.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    font-family: iran_y;
}

textarea {
    resize: none;
    grid-column: span 2;
}

.button-13 button{
    grid-column: span 2;
    padding: 10px;
    background-color: #706b6b; /* رنگ طوسی روشن */
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    font-family: iran_y;
    width: 100%;
}

button:hover {
    background-color: #8f6060;
}

.line-line {
    padding: 2px;
    background-color: #000000;
    margin-bottom: 25px;
}

.containerc {
    width: 100%;
    height: 100vh;
    background-color: rgb(228, 228, 228);
    position: relative;
}

.containerh {
    width: 100%;
    height: 100vh;
    background-color: rgb(228, 228, 228);
    position: relative;
    display: flex;
}

.orange-box {
    width: 28%;
    max-width: 552px;
    height: 78%;
    max-height: 800px;
    background: #FF7A00;
    border-radius: 100px;
    border: 1px solid;
    position: absolute;
    left: 50%;
    top: 15%;
    transform: translateX(-50%);
}
  
.form-title {
    font-size: 30px;
    color: #00B2FF;
    text-align: center;
    margin-bottom: 30px;
}
  
.form-field {
    margin-bottom: 16px;
}
  
.form-field label {
    display: block;
    font-size: 16px;
    color: #1E1E1E;
    margin-bottom: 8px;
}

/*--------------------------------------------------end of contactus page------------------------------------------------------------------------*/

/*------------------------------------------------------aboutus page----------------------------------------------------------------------------*/

.container-about {
    position: relative;
    width: 90%;
    height: 100vh;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: rgb(228, 228, 228);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 50px auto;
    padding: 0 20px;
    gap: 20px;
    font-family: iran_y;
    top: 100vh;
    z-index: 10;
}

.x{
    margin-top: 122px;
    margin-right: 10000000px;
    margin-left: 100px;
}

.member {
    position: relative;
    text-align: center;
    max-width: 400px;
}
  
.photo {
    width: 100%;
    max-width: 250px;
    height: 250px;
    margin: 0 auto;
    background-color: #d9d9d9;
    border-radius: 40px;
}

.name {
    font-size: 30px;
    margin-top: 20px;
}

.role {
    font-size: 22px;
    margin-top: 10px;
}

.education,
.experience {
    font-size: 20px;
    margin-top: 5px;
}

.experience {
    text-align: center;
}

.connector {
    position: absolute;
    width: 5px;
    background-color: #d9d9d9;
    top: 300px;
    height: 550px;
    left: calc(25% - 2.5px);
}

.divider {
    width: 5px;
    height: 550px;
    background-color: #868686;
    margin-top: 10px ;
    margin-bottom: 10px ;
}

/*second section*/
.container-t {
    position: relative;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 100px;
    background-color: #000;
    width: 100%;
    height: 100vh;
}

.box-large, .box-small {
    position: absolute;
    border-radius: 13px;
}

.box-large {
    width: 55%;
    height: 290px;
    margin-top: -970px;
    left: 30%;
    /*background: #f5f5f5;*/
    z-index: 10;
}

.box-small {
    width: 55%;
    height: 170px;
    margin-top: -400px;
    left: 30%;
    /*background: #f5f5f5;*/
}

.title-t{
    position: absolute;
    border-radius: 13px;
    direction: rtl;
    font-family: iran_b;
    font-size: 1.8em;
    margin-top: -90px;
    right: 0%;
}

.circle {
    position: fixed;
    border-radius: 50%;
    z-index: 10;
}

.line {
    position: absolute;
    background: #D9D9D9;
}

.line1 {
    width: 80%;
    height: 8px;
    margin-top : -1020px;
    left: 10%;
}

.line2 {
    width: 34%;
    height: 9px;
    top: 590px;
    left: 56%;
}

.text-box {
    position: absolute;
    text-align: right;
    color: black;
    word-wrap: break-word;
}

.title {
    font-size: 40px;
    font-weight: 400;
    line-height: 64px;
    width: 316px;
    top: 73px;
    left: 70%;
}

.content1 {
    font-size: 29px;
    font-weight: 400;
    line-height: 46.4px;
    width: 55%;
    top: 755px;
    left: 30%;
}

.content2 {
    font-size: 29px;
    font-weight: 400;
    line-height: 46.4px;
    width: 55%;
    top: 134px;
    left: 30%;
    z-index: 1516;
    margin-top: 1000px;
}

.profile-image {
    position: absolute;
    width: 40%;
    max-width: 520px;
    height: auto;
    top: 250px;
    left: 27%;
    border-radius: 50%;
}

.targets-text {
    font-family: iran_y;
    font-size: 1.5em;
    margin-right: 10px;
    line-height: 1.7;
}

.full-text-t{
    margin-top: 60px;
}

/*------------------------------------------------------end of aboutus page----------------------------------------------------------------------------*/
.box-d{
    background-color: #008a5c;
}

.text-main {
    font-size: 102px;
    text-align: start;
}

.containercc {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 0;
}



.form{
    z-index: 100;
}

.container {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 0;
}

* h3 {
    color: #008a5c;
    padding-right: 50px;
    margin-top: 10px;
}

.back h1 {
    color: #ffffff;
    text-shadow: 0PX 6px 0px rgb(0, 0, 0);/*ایجاد سایه*/
}

i {
    color: #0074C2;
    font-size: 9.7px;
    margin-left: 5px;
}

/*-----------------------------------------------------------------------------------------------------------*/

.checkmark {
    width: 30px; /* عرض پایه برای خط اصلی */
    height: 60px; /* ارتفاع پایه برای خط اصلی */
    border-bottom: 8px solid white; /* ضخامت و رنگ خط پایین */
    border-right: 8px solid white; /* ضخامت و رنگ خط راست */
    transform: rotate(45deg); /* چرخاندن برای ایجاد حالت تیک */
    position: relative;
  }
  
  .checkmark::before {
    content: "";
    position: absolute;
    width: 12px; /* عرض پایه برای خط فرعی */
    height: 24px; /* ارتفاع پایه برای خط فرعی */
    border-bottom: 8px solid white; /* ضخامت و رنگ خط پایین */
    transform: rotate(-45deg); /* چرخاندن برای قرارگیری در بخش دوم تیک */
    left: -12px; /* فاصله به سمت چپ برای قرار گرفتن درست */
    top: 18px; /* فاصله به سمت بالا برای قرار گرفتن درست */
}

/*-----------------------------------------------------------------------------------------------------------*/

.header-box{
    margin-top: 120px;
    margin-bottom: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    padding-right: 6px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: #0EC6DF;
    border-radius: 10px;
}


.text-box{
    background-color: #bbe1fa;
    border-radius: 70px;
    width: auto;
    height: auto;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 25px;
}
  
.input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
}
  
.input {
    flex: 1;
    font-size: 16px;
    color: #1E1E1E;
}
  
.dropdown-icon {
    width: 16px;
    height: 16px;
    border: 1.6px solid #1E1E1E;
}
  
.description-input {
    height: 140px;
}
  
.submit-button {
    width: 100%;
    max-width: 282px;
    margin: 0 auto;
    background: #2BE132;
    border-radius: 100px;
    padding: 10px;
    text-align: center;
    color: black;
    font-size: 14px;
}
  
.logo-box {
    width: 100px;
    height: 100px;
    background: #D9D9D9;
    border-radius: 32px;
    position: absolute;
    top: 40%;
    left: 93%;
    transform: translateX(-50%);
}
  
.inner-logo {
    width: 15px;
    height: 15px;
    border: 1px solid #B3B3B3;
    margin: 25px auto;
}
  
.header {
    width: 100%;
    height: 75px;
    background: #0074C2;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*__________________________________________________________________login____________________________________________________________________________*/

.tab-container {
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 170px;
    margin-left: 40%;
    margin-bottom: 200px;
}

/* Tabs */
.tabs {
    display: flex;
    background-color: #4CAF50;
}

.tab-button {
    flex: 1;
    padding: 15px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    border: none;
    background-color: inherit;
    transition: background-color 0.3s;
}

.tab-button:hover,
.tab-button.active {
    background-color: #45a049;
}

/* Form box */
.form-box {
    padding: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #333333;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    width: 210%;
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
}

/* برای تنظیم درست reCAPTCHA */
.g-recaptcha {
    margin: 15px 0;
    transform: scale(1);
    transform-origin: 0 0;
    width: 100% !important;
}

form#register button {
    width: 100%;
}

/*---------------------------------------------news php--------------------------------------------------*/

/* تنظیمات پایه */
.bodynews {
    font-family: iran_y;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* رنگ پس‌زمینه آرامش‌بخش */
    color: #333; /* رنگ متون خوانا */
    line-height: 1.6;
}

/* تنظیم برای نمایش کلی خبر */
.news-detail {
    max-width: 60%; /* محدود کردن عرض به 60 درصد */
    margin: 30px auto; /* فاصله از بالا و مرکزیت */
    background-color: #fff; /* رنگ سفید برای پس‌زمینه خبر */
    border-radius: 10px; /* لبه‌های گرد */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* سایه زیبا */
    padding: 20px; /* فضای داخلی */
    overflow: hidden; /* جلوگیری از بیرون‌زدگی محتوا */
    margin-top: 100px;
    height: 100vh;
}

/* عنوان خبر */
.news-detail h1 {
    font-size: 2rem;
    color: #2c3e50; /* رنگ آبی تیره برای تیتر */
    border-bottom: 2px solid #3498db; /* خط پایین جذاب */
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* متن خبر */
.news-detail p {
    font-size: 1.2rem;
    color: #555; /* متن با رنگ خاکستری */
    text-align: justify; /* تراز متن */
    margin-bottom: 25px;
    line-height: 1.8; /* افزایش فاصله بین خطوط */
    padding-bottom: 20px;
    border-bottom: 2px solid #3498db; /* خط پایین جذاب */
}

/* تصاویر خبر */
.news-detail img {
    max-width: 100%; /* محدود کردن عرض تصاویر */
    height: auto; /* حفظ نسبت تصویر */
    display: block;
    margin: 20px auto; /* فاصله اطراف و مرکزیت */
    border-radius: 8px; /* لبه‌های گرد تصاویر */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* سایه تصاویر */
}

/* لینک‌های اضافی */
/*a {
    /*color: #3498db; /* رنگ آبی زیبا */
    /*text-decoration: none;
}

/*a:hover {
   /* text-decoration: underline; /* تغییر ظاهر لینک در حالت هاور */
/*}




/*________________________________________________________________________________________________________________________*/

@media screen and (max-width: 1080px) {
    .nav-item {
        padding: 0px;
        font-size: 15px;
        width: 120px;    
    }    
    .nav-item:hover {
        /*background-color: #1bc91b;*/ /* رنگ سبز روشن */
        background-color: #f0f0f0;
        color: #000; /* رنگ متن در هنگام hover */
        transition: all 0.25s ease;
        border-radius: 8px;
        width: 108px;
        justify-content: center;
        align-items: center;
    }
    .icon-logo{
        visibility: hidden;
    }
    /*.nav-item {
        padding: 8px;
        font-size: 20px;
        font-weight: 400;
        color: #1E1E1E;
        border-radius: 8px;
        cursor: pointer;
        position: relative;
        width: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }*/
}

@media screen and (max-width: 900px) {
    .nav-item {
        padding: 0px;
        font-size: 15px;
        width: 108px;    
    }    
    .nav-item:hover {
        /*background-color: #1bc91b;*/ /* رنگ سبز روشن */
        background-color: #f0f0f0;
        color: #000; /* رنگ متن در هنگام hover */
        transition: all 0.25s ease;
        border-radius: 8px;
        width: 108px;
        justify-content: center;
        align-items: center;
    }
    .icon-logo{
        visibility: hidden;
    }
    /*.nav-item {
        padding: 8px;
        font-size: 20px;
        font-weight: 400;
        color: #1E1E1E;
        border-radius: 8px;
        cursor: pointer;
        position: relative;
        width: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }*/
}

@media only screen and (max-width: 768px) {
    .navbar {
        height: 80px;
        padding: 0 15px;
    }

    .intro-container {
        padding: 15px;
        font-size: 1em;
        margin: 20px;
    }

    .nav-item .active{
        background-color: #00ff4c;
    }

    .text-index{
        font-size: 4em;
    }

    .text-indexB{
        font-size: 2em;
    }

    .logo {
        font-size: 22px;
        font-weight: 400;
    }

    .hamburger-menu {
        display: flex;
        direction: rtl;
    }
    
    .nav-items {
        display: none;
        flex-direction: column-reverse;
        gap: 10px;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #6b6b6b;
        padding: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-radius: 10px;
        margin-right: 12px;
        gap: 0px;
    }
  
    .nav-item {
        padding: 1px;
        border-bottom: 0.1px solid #ccc;
        text-align: center;
        border-radius: 0px;
    }

    .icon-box{
        left: 0%;
    }

    .icon-logo{
        width: 200px;
        visibility: visible;
    }

    .nav-items.show {
        display: flex;
    }

    .dropdown-menu {
        right: 0;
        left: auto; /* منوی کشویی به سمت چپ باز شود */
        top: 40px;
    }

    h1 {
        font-size: 1.5rem; /* برای صفحات کوچک‌تر اندازه فونت را کاهش می‌دهیم */
    }

    .logo-box {
        visibility: hidden;
    }
      
    .inner-logo {
        visibility: hidden;
    }

    .footer-section {
        flex-basis: 100%;
        text-align: center;
    }

    .container {
        flex-direction: column;
    }

    .news-box {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .news-content {
        width: 100%;
    }

    .news-image {
        width: 80px;
        height: 80px;
        margin-top: 10px;
    }

    /*services*/

    .text-h{
        font-size: 0.8em;
        line-height: 1.4;
        width: 100%;
        text-align: center;
        align-items: center;
        margin: 0%;
    }

    .header-text-d{
        text-align: right;
        width: 100%;
        margin-top: 10px;
        border: none;
        margin: 0%;
    }

    .container-serv-t{
        text-align: center;
        width: 100%;
        margin: 0%;
    }

    .text-serv{
        margin-bottom: 10px;
    }

    .headline-{
        font-size: 1.5em;
        margin-bottom: 11px;
    }

    .serv-container {
        padding: 15px;
        background-color: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        line-height: 1.5;
        direction: rtl;
        font-family: iran_y;
        height: 100% ;
        font-size: 0.5em;
        margin: 10px;
    }

    .serv-container li{
        margin-bottom: 10px;
    }

    .three-column{
        display: inline;
    }

    .full {
        box-sizing: border-box;
        margin-bottom: 100px ;
    }

    .serv-container-{
        padding: 15px;
        background-color: #f9f9f9;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        line-height: 1.7;
        font-size: 0.56rem;
        direction: rtl;
        font-family: iran_y;
        height: 100% ;
        margin-right: 7%;
        margin-left: 7%;
        column-count: 2;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .serv-container- li{
        margin-bottom: 10px;
    }

    .headline{
        align-items: center;
        background-color: #001aff;
        margin-left: 7%;
        margin-right: 7%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        color: #ffffff;
        text-align: center;
        padding-bottom: 10px;
        font-size: 0.7em;
        padding-top: 10px;
        font-family: iran_B;
    }

    /*-----------------------------footer----------------------------*/

    .footer-section {
        text-align: center;
    }
    
    .footer-container h2{
        align-items: center;
        text-align: center;
    }

    /*----------------------------event-------------------------------*/

    .container-e {
        display: flex;
        justify-content: center; /* مرکزچین کردن اسلایدر */
        align-items: center;
        height: 100vh;
        width: 100%;
        direction: rtl;
        margin-top: 0px ;
        margin-bottom: 0px;
        top: 0%;
    }
    
    .slider-container {
        position: relative;
        width: 300px; /* عرض ثابت اسلایدر */
        height: 300px; /* ارتفاع ثابت اسلایدر */
        overflow: hidden;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        margin-left:1%;
        top: 0%;
        margin-top: 0%;
    }
    
    .slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 400px; /* عرض دلخواه اسلایدر */
        height: 400px;
        position: relative;
    }
    
    .slide-text {
        position: absolute;
        bottom: 150px; /* فاصله از پایین */
        right: 50px; /* فاصله از چپ */
        color: #ffffff;
        font-size: 1em;
        font-weight: bold;
        font-family: iran_B;
        text-shadow: 0px 2px 3px #000000;
        /*background-color: rgba(0, 0, 0, 0.178); *//* پس‌زمینه نیمه‌شفاف */
        padding: 10px;
        border-radius: 5px;
        text-align: justify;
        margin-right: 15px;
        margin-left: 55px;
        direction: rtl;
        z-index: 2;
    }
    
    .slide {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .slide::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
        z-index: 1;
    }
    
    
    .slide img {
        width: 400px; /* عرض تصویر بدون فاصله */
        height: 400px; /* ارتفاع تصویر */
        object-fit: cover;
        margin-right: 10px; /* فاصله بین تصاویر */
        transition: transform 0.5s ease;
        object-fit: cover;
        border-radius: 3px;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }
    
    .prev-btn, .next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.7);
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 1;
        transition: background-color 0.3s;
    }
    
    .prev-btn:hover, .next-btn:hover {
        background-color: rgba(0, 0, 0, 0.9);
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .news-section {
        width: 90%;
        direction: rtl;
        padding-top: 10px;
        margin-bottom: 18px; 
        font-family: iran_y;
    }

    /* تنظیم عنوان اخبار تازه */
    .news-title {
        font-size: 24px;
        font-weight: bold;
        text-align: right;
        margin-bottom: 10px;
    }

    /* استایل برای محتوا */
    .news-content {
        display: flex;
        align-items: stretch; /* اینجا را تغییر دادیم تا همه بخش‌ها هم‌ارتفاع شوند */
        text-align: right;
        margin-left: 3px; /* فاصله 3 پیکسل از تصویر */
    }

    /* بخش اخبار تازه در سمت راست */
    .news-boxes {
        width: 70%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .news-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #f0f0f0;
        height: 60px;
        padding: 10px;
        box-sizing: border-box;
        position: relative; /* برای استفاده از موقعیت‌دهی مطلق */
        border-radius: 5px;
    }   

    .news-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 70%;
        margin-right: 80px;
        line-height: 135%;
    }

    .news-box-title {
        font-size: 16px;
        font-weight: bold;
    }

    .news-description {
        font-size: 14px;
        color: #555;
    }

    .news-image {
        width: 125px;
        height: 125px;
        background-color: #001aff;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute; /* استفاده از موقعیت‌دهی مطلق */
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        border-radius: 5px;
    }
    
    .news-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* خط جدا کننده بین آرشیو و اخبار */
    .separator {
        width: 10px;
        background-color: #008a5c;
        margin: 0 10px;
    }

    /* بخش آرشیو ها در سمت چپ */
    .archives-section {
        width: 30%;
        font-size: 18px;
        background-color: #c5c5c5;
        padding: 10px;
        box-sizing: border-box;
        text-align: center;
        border-radius: 5px;
    }

    .archives-title {
        font-weight: bold;
        margin-bottom: 10px;
        text-align: center;
        font-size: 0.8em ;

    }

    .archives-box {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        padding: 10px;
        background-color: #f0f0f0;
        border-radius: 5px;
    }

    .archive-description {
        font-size: 14px;
        color: #555;
    }

    .archive-title {
        font-size: 0.5em;
        font-weight: bold;
    }

    .archiveT {
        font-size: 0.001em;
    }

    /*----------------aboutus---------------*/

    .container-about {
        position: relative;
        width: 100%;
        height: 100vh;
        margin: 0 auto;
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background-color: rgb(228, 228, 228);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 50px auto;
        padding: 0 20px;
        font-family: iran_y;
        top: 100vh;
        z-index: 10;
    }
    
    .x{
        margin-top: 0px;
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 0px;
    }
    
    .member {
        position: relative;
        text-align: center;
        max-width: 400px;
    }
      
    .photo {
        width: 80px;
        /*max-width: 250px;*/
        height: 80px;
        margin: 0 auto;
        background-color: #d9d9d9;
        border-radius: 22px;
    }
    
    .name {
        font-size: 1em;
        margin-top: 20px;
    }
    
    .role {
        font-size: 0.7em;
        margin-top: 10px;
    }
    
    .education,
    .experience {
        font-size: 0.6em;
        margin-top: 5px;
    }
    
    .experience {
        text-align: center;
    }
    
    .connector {
        position: absolute;
        width: 5px;
        background-color: #d9d9d9;
        top: 300px;
        height: 550px;
        left: calc(25% - 2.5px);
    }
    
    .divider {
        width: 5px;
        height: 550px;
        background-color: #868686;
        margin-top: 10px ;
        margin-bottom: 10px ;
    }
    
    /*second section*/
    .container-t {
        position: relative;
        margin-left: 100px;
        background-color: #000;
        width: 100%;
        height: 100vh;
    }
    
    .box-large, .box-small {
        position: absolute;
        border-radius: 13px;
    }
    
    .box-large {
        width: 85%;
        height: 290px;
        margin-top: -570px;
        left: 10%;
        /*background: #f5f5f5;*/
        z-index: 10;
    }
    
    .box-small {
        width: 85%;
        height: 170px;
        margin-top: -250px;
        left: 10%;
        /*background: #f5f5f5;*/
    }
    
    .title-t{
        position: absolute;
        border-radius: 13px;
        direction: rtl;
        font-family: iran_b;
        font-size: 1.8em;
        margin-top: -50px;
        right: 0%;
    }
    
    .circle {
        position: fixed;
        border-radius: 50%;
        z-index: 10;
    }
    
    .line {
        position: absolute;
        background: #D9D9D9;
        display: none;
    }
    
    .line1 {
        width: 80%;
        height: 8px;
        margin-top : -1020px;
        left: 10%;
        display: none;
    }
    
    .line2 {
        width: 34%;
        height: 9px;
        top: 590px;
        left: 56%;
        display: none;
    }
    
    .text-box {
        position: absolute;
        text-align: right;
        color: black;
        word-wrap: break-word;
    }
    
    .title {
        font-size: 40px;
        font-weight: 400;
        line-height: 64px;
        width: 316px;
        top: 73px;
        left: 70%;
    }
    
    .content1 {
        font-size: 29px;
        font-weight: 400;
        line-height: 46.4px;
        width: 55%;
        top: 755px;
        left: 30%;
    }
    
    .content2 {
        font-size: 29px;
        font-weight: 400;
        line-height: 46.4px;
        width: 55%;
        top: 134px;
        left: 30%;
        z-index: 1516;
        margin-top: 1000px;
    }
    
    .profile-image {
        position: absolute;
        width: 35%;
        max-width: 520px;
        height: auto;
        top: 332px;
        left: 10%;
        border-radius: 50%;
    }
    
    .targets-text {
        font-family: iran_y;
        font-size: 0.7em;
        margin-right: 10px;
        line-height: 1.75;
    }
    
    .full-text-t{
        margin-top: 0px;
    }

    /*----------------------contatctus------------------------*/
    
    /* تنظیمات کلی بخش ارتباط با ما */
    /* تنظیمات کلی */
    .contact-section {
        max-width: 400px;
        min-width: 0px;
        padding: 30px;
        direction: rtl;
        font-family: 'IRANSans', sans-serif;
        /*background-color: #f0f0f0;*/
        column-gap: 40px;
        font-family: iran_y;
    }

    .m-text {
        right: 10px;
        left: 100px;
    }

    .sec-cont{
        margin-top: 100px;
        margin-left: 100px;
        margin-right: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .containercont{
        height: 100vh; /* ارتفاع 100% صفحه نمایش */
        font-family: iran_y;
        margin-bottom: 450px;
    }

    .three-column{
        display: inline;
        flex-wrap: none;
        gap: 0px;
        column-count: 1;
    }   

    .contact-title {
        font-size: 28px;
        color: #333;
        margin-bottom: 20px;
        font-weight: bold;
    }

    /* اطلاعات تماس */
    .contact-info {
        margin-bottom: 30px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .info-item i {
        font-size: 24px;
        color: #007bff;
    }

    .info-item h3 {
        font-size: 18px;
        color: #333;
        margin-bottom: 5px;
    }

    .info-item p {
        font-size: 14px;
        color: #555;
        margin: 0;
    }

    /* شبکه‌های اجتماعی */

    .social-media- {
        text-align: center;
    }

    .social-media {
        margin-top: 0px;
        text-align: center;
    }

    .social-media h3 {
        font-size: 18px;
        color: #444;
        margin-bottom: 15px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        font-size: 0.7em;
    }

    .social-icon-h{
        width: 100px ;
        height: 10000px;
    }

    .social-icon {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 50px;
        text-align: center;
        font-size: 20px;
        border-radius: 50%;
        transition: transform 0.3s, background-color 0.3s;
    }

    .social-icon img {
        width: 100%;
        height: 100%;
        border-radius: 1000px;
    }

    .social-icon- img {
        width: 100%;
        height: 100%;
        border-radius: 1000px;
    }


    .social-icon.facebook {
        background-color: #3b5998;
    }

    .social-icon.instagram {
        background-color: #e4405f;
    }

    .social-icon.telegram {
        background-color: #0088cc;
    }

    .social-icon.linkedin {
        background-color: #0077b5;
    }

    .social-icon:hover {
        transform: scale(1.1);
        opacity: 0.9;
    }
    
    .full {
        flex:none;
        box-sizing: border-box;
        margin-bottom: 0px ;
    }

    .central{
        margin-right: 0%;
    }

    /*map*/

    .form-title {
        font-size: 24px;
        color: #000;
        margin-bottom: 20px;
    }

    .font{
        font-family: iran_y;
        direction: rtl;
    }

    .consultation-form {
        background-color: #b3b3b3;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 400px;
        max-width: 100%;
    }
    
    .consultation-form {
        width: 100%;
        height: 100%;
        /*width: 90%;*/
        /*max-width: 400px;*/
    } 

    .consultation-form h1 {
        text-align: center;
        color: #000;
        margin-bottom: 20px;
        z-index: 10;
    }

    /* Create two equal columns that floats next to each other */
    .column1 {
        display: none;
        float: none;
        width: 100%;
        padding: 10px;
        margin-top: 700px;
        height: 400px; /* Should be removed. Only for demonstration */
    }
    
    .column2 {
        float: none;
        width: 120%;
        padding: 10px;
        margin-top: -600px;
        margin-bottom: 0px;
        margin-right: 3%;
        height: 710px; /* Should be removed. Only for demonstration */
    }
    
    .column3 {
        display: inline;
        width: 92%;
        padding: 10px;
        margin-top: 230px;
        margin-bottom: 0px;
        margin-right: 3%;
        z-index: 10;
        height: 300px; /* Should be removed. Only for demonstration */
    }

    .morespace{
        width: 100px;
        background-color: #001aff;
        height: 10vh;
    }
    
    /* Clear floats after the columns */
    .row:after {
        content: "";
        display: table;
        clear: both;
    }

    .row {
        margin-right: 0px;
        margin-left: 0px;
        display: grid;
        align-items: center;
    }

    .map {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .form-c {
        margin-left: 100px;
    }

    .column2 form {
        display:inline;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        grid-column: span 1;
    }


    .form-group.full-width {
        grid-column: span 2;
    }

    .form-group label {
        margin-bottom: 5px;
        font-size: 14px;
        color: #000;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        font-family: iran_y;
    }

    textarea {
        resize: none;
        grid-column: span 2;
    }

    .button-13 button{
        grid-column: span 2;
        width: 100%;
        padding: 10px;
        background-color: #706b6b; /* رنگ طوسی روشن */
        color: #000;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        text-align: center;
        font-family: iran_y;
    }

    button:hover {
        background-color: #8f6060;
    }

    .line-line {
        padding: 2px;
        background-color: #000000;
        margin-bottom: 25px;
    }

    .containerc {
        width: 100%;
        height: 100vh;
        background-color: rgb(228, 228, 228);
        position: relative;
    }

    .containerh {
        width: 100%;
        height: 100vh;
        background-color: rgb(228, 228, 228);
        position: relative;
        display: flex;
    }

    .orange-box {
        width: 28%;
        max-width: 552px;
        height: 78%;
        max-height: 800px;
        background: #FF7A00;
        border-radius: 100px;
        border: 1px solid;
        position: absolute;
        left: 50%;
        top: 15%;
        transform: translateX(-50%);
    }
    
    .form-title {
        font-size: 30px;
        color: #00B2FF;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .form-field {
        margin-bottom: 16px;
    }
    
    .form-field label {
        display: block;
        font-size: 16px;
        color: #1E1E1E;
        margin-bottom: 8px;
    }

    /*--------------------------login---------------------------------*/

    .tab-container {
        width: 90%;
        max-width: 400px;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-top: 200px;
        margin-left: 5%;
        margin-bottom: 150px;
        align-items: center;
    }
    
    /* Tabs */
    .tabs {
        display: flex;
        background-color: #4CAF50;
    }
    
    .tab-button {
        flex: 1;
        padding: 15px;
        color: white;
        cursor: pointer;
        font-weight: bold;
        text-align: center;
        border: none;
        background-color: inherit;
        transition: background-color 0.3s;
    }
    
    .tab-button:hover,
    .tab-button.active {
        background-color: #45a049;
    }
    
    /* Form box */
    .form-box {
        padding: 20px;
    }
    
    h2 {
        text-align: center;
        margin-bottom: 15px;
        color: #333333;
    }
    
    label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }
    
    input[type="text"],
    input[type="password"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #cccccc;
        border-radius: 4px;
        font-size: 16px;
    }
    
    button {
        width: 210%;
        padding: 10px;
        background-color: #4CAF50;
        border: none;
        border-radius: 4px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    button:hover {
        background-color: #45a049;
    }
    
    .remember-me {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .remember-me input[type="checkbox"] {
        margin-right: 8px;
    }

}

@media (max-width: 480px) {

    .news-title {
        font-size: 18px;
    }

    .news-image {
        width: 60px;
        height: 60px;
    }

}

.nav-open .nav-items {
    display: flex; 
}