﻿/* Research Institute CSS */

/* Main sections */
.section-title {
    color: #154c79;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    padding-right: 15px;
    border-right: 4px solid #154c79;
}

/* Institute Header */
.institute-header {
    padding: 2rem 0;
}

.institute-description {
    line-height: 1.8;
    text-align: justify;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    display: block;
}

.image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Research Members */
.research-members {
    padding: 2rem 0;
}

.member-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    background: #f8f9fa;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    color: #154c79;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-expertise {
    color: #666;
    font-style: italic;
    margin-top: auto;
}

/* Gradient backgrounds for member cards */
.gradient-01 { border-top: 4px solid #4285f4; }
.gradient-02 { border-top: 4px solid #ea4335; }
.gradient-03 { border-top: 4px solid #fbbc05; }
.gradient-04 { border-top: 4px solid #34a853; }
.gradient-05 { border-top: 4px solid #8d43b7; }
.gradient-06 { border-top: 4px solid #1976d2; }
.gradient-07 { border-top: 4px solid #26a69a; }
.gradient-08 { border-top: 4px solid #ff9800; }
.gradient-09 { border-top: 4px solid #e91e63; }
.gradient-10 { border-top: 4px solid #9c27b0; }

/* Research Achievements */
.research-achievements {
    padding: 2rem 0;
}

.achievement-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-image {
    height: 180px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-content {
    padding: 1.5rem;
}

.achievement-content h3 {
    color: #154c79;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Research Projects */
.research-projects {
    padding: 2rem 0;
}

.project-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.project-table th {
    background: #154c79;
    color: #fff;
    text-align: right;
    padding: 1rem;
}

.project-table td {
    padding: 1rem;
    vertical-align: middle;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.تکمیل-شده { background-color: #d4edda; color: #155724; }
.در-حال-اجرا { background-color: #fff3cd; color: #856404; }
.برنامه-ریزی-شده { background-color: #d1ecf1; color: #0c5460; }

/* Forms and Regulations */
.forms-regulations {
    padding: 2rem 0;
}

.form-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
}

.form-icon {
    font-size: 2rem;
    color: #154c79;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.form-content {
    flex-grow: 1;
}

.form-content h3 {
    color: #154c79;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.btn-download {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #154c79;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn-download:hover {
    background: #0d3a5f;
    color: #fff;
}

/* News Section */
.news-section {
    padding: 2rem 0;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card.featured {
    border: none;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(21, 76, 121, 0.8);
    color: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    border-top-left-radius: 4px;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: #e9ecef;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.news-content h3 {
    color: #154c79;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.news-tabs .nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.news-tabs .nav-link {
    color: #495057;
    font-weight: 500;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    margin-bottom: -2px;
}

.news-tabs .nav-link.active {
    color: #154c79;
    background-color: transparent;
    border-bottom: 2px solid #154c79;
}

.news-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Publications Section */
.publications {
    padding: 2rem 0;
}

.publication-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.publication-card:hover {
    transform: translateY(-5px);
}

.publication-image {
    height: 250px;
    overflow: hidden;
}

.publication-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publication-content {
    padding: 1.5rem;
}

.publication-content h3 {
    color: #154c79;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.publication-year {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Cooperation Section */
.cooperation {
    padding: 2rem 0;
}

.cooperation-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.cooperation-image {
    flex: 0 0 40%;
    overflow: hidden;
}

.cooperation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cooperation-content {
    flex: 0 0 60%;
    padding: 1.5rem;
}

.cooperation-content h3 {
    color: #154c79;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #154c79;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #0d3a5f;
    color: #fff;
}

.research-institute__primary-typography {
    font-size: 1.2rem;
    font-weight:700;
    color: #2c3e50;
    letter-spacing: -0.03em;
    display: block;
    justify-content:center;
    text-align:center;
}

.research-institute__secondary-typography {
    color: #34495e;
    opacity: 0.96;
    display: block;
    text-align:center;
}
.research-institute__typography-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width:60%;
}

.research-institute__identity-display {
    text-align: center;
    display: flex;
    justify-content: center;
}
.research-institute-video-container{
    position:relative;
}
.research-institute-video, .research-institute-video2 {
    left: 50%;
    position: absolute;
    max-width: 30%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 2rem 0;
}

    .research-institute-video img ,.research-institute-video2 img {
        width: 100%;
    }

.research-institute-video-shadow {
    left: 50%;
    position: absolute;
    max-width: 28%;
    top: 3.1rem;
    transform: translateX(-50%);
    background-color:rgb(232,207,117);
}

.research-institute-video::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-2rem);
    width: 90%;
    height: 10px;
    background: #e8cf75;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.research-institute-video2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,calc(10px - 2rem));
    width: 80%;
    height: 10px;
    background: rgba(232,207,117,0.32);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
@media (max-width: 768px) {
    .research-institute__primary-typography {
        font-size: 5.2vw;
    }

    .research-institute__secondary-typography {
        font-size: 4.8vw;
    }

    .research-institute__primary-structure {
        width: 90%;
        height: 38%;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
.research-institute-root {
    background-color: #fffae7;
    min-height: 100vh;
    padding: 2rem;
    margin-top: -2rem;
    border-radius:20px;
}

.research-institute-cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Card Styles */
.research-institute-card {
    width: min(320px, 90%);
    flex:1 1 calc( 20% - 8rem);
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Card Styles */
.research-institute-card {
    width: min(320px, 90%);
    flex:1 1 calc( 20% - 8rem);
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
@media(max-width:450px) {
    .research-institute-card {
        width: min(320px, 90%);
        flex: 1 1 100%;
        background: white;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
}
.research-institute-gradient-a {
    height: 200px;
    background: radial-gradient(circle, #fff 0%, #e8cf75 100%);
}

.research-institute-gradient-b {
    height: 200px;
    background: radial-gradient(circle, #fff 0%, #30d5c8 100%);
}
.research-institute-gradient-a img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* یا `contain` برای نمایش کامل تصویر */
}

.research-institute-gradient-b img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* یا `contain` برای نمایش کامل تصویر */
}

.research-institute-details {
    padding: 1.5rem;
    color: #323232;
}

.research-institute-name {
    margin-bottom: 0.5rem;
    text-align: center;
}

.research-institute-specialty {
    color: #6f6d6d;
    text-align: center;
}

/* Navigation Styles */
.research-institute-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.research-institute-nav-button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(232, 207, 117, 0.26);
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
    justify-content:center;
    align-items:center;
    display:flex;
}

    .research-institute-nav-button:hover {
        transform: scale(1.05);
    }

.research-institute-nav-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.research-institute-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b0b0b0;
    cursor: pointer;
}

    .research-institute-dot.active {
        background: #545454;
    }

/* Arrow Styles */
.research-institute-arrow {
    position: absolute;
    width: 15px;
    height: 15px;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.research-achievements-title{
    font-size:1.5rem;
    text-align:center;
    position:relative;
}

.research-achievements-title-container{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.research-achievements-container {
    padding: 1.5rem;
    flex: 1; /* Take available space */
    min-height: 100%; /* Base height on parent */
    text-align: -webkit-right;
}

.research-achievements-title-line {
    width: 120px; /* Line width matching Arabic text width */
    height: 3px;
    background: #58c5c7; /* Professional blue color */
}

.research-achievements-container p{
    width:50%;
    text-align:right;
    line-height:2;
}

.license-img {
    max-width: 10rem;
}
.institute-projects-approveds {
    background: #58c5c7;
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.content-container {
    flex: 1;
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.text-panel {
    background: #fff;
    border-radius: 12px;
    flex: 2;
    padding: 2rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.paragraph-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.text-line {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.stats-panel {
    flex: 1;
    display: flex;
    position: relative;
}

.panel-divider {
    border-right: 2px solid rgba(112,112,112,0.15);
    height: 100%;
    margin-right: 2rem;
}

.statistics-group {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    flex: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stat-heading {
    color: #9a9a9a;
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-value {
    color: #2a2a2a;
    font-size: 1.3rem;
    margin-left: 0.8rem;
}

.stat-label {
    color: #4a4a4a;
    font-size: 0.95rem;
}

.decorative-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.vertical-divider {
    width: 1px;
    height: 55%;
    background: rgba(112,112,112,0.12);
    right: 28%;
    top: 22%;
}

    .vertical-divider.secondary {
        right: 38%;
        height: 50%;
    }

.horizontal-divider {
    position: absolute;
    width: 42%;
    height: 1px;
    background: rgba(112,112,112,0.12);
    top: 48%;
    left: 12%;
}

@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
    }

    .panel-divider {
        display: none;
    }

    .statistics-group {
        align-items: center;
        text-align: center;
    }

    .stat-item {
        align-items: center;
    }
}

.institute-projects-approveds-main-container {
    background-color: #58c5c7;
    display:flex;
    color:white;
}
.institute-projects-approveds-main-container p{
    color: white;
    margin-top:1rem;
    text-align:end;
    width:70%;
}
.institute-projects-approveds-title{
    font-size:1.5rem;
    color:white;
    text-align:end;
    width:100%;
    display:inline-block;
}
.institute-projects-approveds-left {
    padding: 3rem;
    text-align: -webkit-right;
    text-align: -moz-right;
}

.institute-projects-approveds-rigth {
    padding: 3rem;
    text-align: -webkit-right;
    text-align: -moz-right;
}

.institute-projects-approveds-table-container {
    margin-top: -90px;
    background-color: white;
    color: black;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-collapse: collapse; /* ادغام حاشیه سلولها */
    border-radius: 0.5rem;
    padding:1.5rem;
}
.institute-projects-approveds-table-container table{
    width:100%;
}
    .institute-projects-approveds-main-container table td, .institute-projects-approveds-main-container table th {
        padding: 15px 20px; /* بالا-پایین | چپ-راست */
        text-align:center;

    }
.institute-projects-approveds-separator{

}


.institute-projects-approveds-table-container {
    overflow-x: auto;
}

.institute-projects-approveds-table-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

/* استایل سرستون‌ها */
    .institute-projects-approveds-table-container thead tr {
        border-top-width: 0;
        border-bottom: 2px solid #dee2e6;
    }

/* استایل سلول‌های وسط */
.institute-projects-approveds-table-container td:nth-child(2),
.institute-projects-approveds-table-container th:nth-child(2) {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

/* استایل سطرهای میانی */
.institute-projects-approveds-table-container tbody tr:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
}

/* استایل ستون چپ */
.institute-projects-approveds-table-container td:first-child,
.institute-projects-approveds-table-container th:first-child {
    border-left-width: 0;
}

/* حذف بوردر راست برای ستون آخر */
.institute-projects-approveds-table-container td:last-child,
.institute-projects-approveds-table-container th:last-child {
    border-right: none;
}

/* پدینگ و تراز متن */
.institute-projects-approveds-table-container th,
.institute-projects-approveds-table-container td {
    padding: 1.2rem 1.5rem;
    text-align: right;
}

/* رنگ‌بندی سرستون‌ها */
.institute-projects-approveds-table-container th {
    background-color: #f8f9fa;
    color: #2a2a2a;
    font-weight: 600;
}

/* حالت هاور سطرها */
.institute-projects-approveds-table-container tbody tr:hover {
    background-color: #f8f9fa;
}

.forms-regulations-wrapper {
    padding: 2rem;
    background: white;
}

.main-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content:end;
    font-size:1.5rem;
    padding-right:3rem;
}

.blue-line {
    height: 8px;
    width: 143px;
    background: #58c5c7;
    border-radius: 4px;
}

.main-title {
    font-size:1.5rem;
    color: #323232;
}

.content-grid {

}

.form-box {
    background: #f9f9f9;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    padding: 1rem;
    /* min-height: 150px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s;
    width: 30%;
}

    .form-box:hover {
        transform: translateY(-5px);
    }

.form-text {
    color: #2e2e2e;
    line-height: 1.4;
}

.description-section {
    color: #6f6d6d;
    line-height: 2.5;
    max-width: 800px;
    margin: 0 auto 0;
    text-align: justify;
    padding: 3rem 3rem 3rem 6rem;
    text-align: end;
}

.decorative-shape {
    /* این بخش برای المان دکوراتیو SVG خالی گذاشته شده */
    display: none;
}

.ml-auto{
    margin-left:auto;
}
.mr-auto{
    margin-right:auto;
}
.me-10 {
    margin-right: 10rem;
}
.ms-10 {
    margin-left: 10rem;
}


.research-news-container {
    padding: 20px;
    width:100%;
}

.research-news-tabs {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8cf75;
    direction: rtl;
}

.research-news-tab {
    font-weight: 400;
    color: #909090;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.research-news-tab--active {
    font-weight: 700;
    color: #58c5c7;
    background-color: rgba(88, 197, 199, 0.1);
}

.research-news-content {
    margin-top: 20px;
}
.research-news-table {
    display: none;
}

.research-news-table--active {
    display: block;
}
.research-news-wrapper{
    padding:3rem;
    display:flex;
    width:100%;
}

.forms-regulations {

    color: #353535;
}

    .forms-regulations .main-container {
        background: #fcfcfc;
        min-height: 100vh;
        padding: 2rem;
        position: relative;
    }

    .forms-regulations .grid-pattern {
        opacity: 0.06;
        display: grid;
        grid-template-columns: repeat(auto-fill, 3.948px);
        grid-auto-rows: 3.948px;
        gap: 17px 21px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        pointer-events: none;
    }

        .forms-regulations .grid-pattern::before {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background: currentColor;
        }

    .forms-regulations .title-section {
        text-align: center;
        margin: 2rem 0;
    }

    .forms-regulations .main-title {
        color: #323232;
        margin-bottom: 1rem;
    }


    .forms-regulations .nav-tabs {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    .forms-regulations .tabs-container {
        display: flex;
        gap: 1rem;
        width: 100%; /* یا عرض مشخص */
    }

    .forms-regulations .tab-item {
        padding: 0.8rem 1.5rem;
        border: 2px solid #58c5c7;
        border-radius: 0.563rem;
        color: #7d7d7d;
        cursor: pointer;
        transition: all 0.3s ease;



        flex: 1; /* هر تب به اندازه مساوی از فضا استفاده می‌کند */
        text-align: center;
    }

    .forms-regulations .active-tab {
        background: #fff;
        color: #503d3d;
        font-weight: 700;
    }

    .forms-regulations .view-all {
        color: #58c5c7;
    }

    .forms-regulations .content-wrapper {
        background: white;
        border: 1px solid #e8e8e8;
        border-radius: 0.625rem;
        padding: 1.5rem;
    }

    .forms-regulations .content-section {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
    }

    .forms-regulations .news-column {
        flex: 1;
        padding-right: 1rem;
        border-right: 1px solid rgba(112, 112, 112, 0.12);
    }

    .forms-regulations .news-item {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        display:flex;
        justify-content:space-between;
    }

    .forms-regulations .vertical-divider {
        border-left: 1px solid #d1d1d1;
        height: 28.75rem;
        margin: 0 2.5rem;
    }

    .forms-regulations .main-content {
        flex: 2;
    }

    .forms-regulations .text-content {
        color: #707070;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .forms-regulations .image-placeholder {
        width: 22rem;
        aspect-ratio: 1;
        background: #f0f0f0;
        border-radius: 0.75rem;
        flex-shrink: 0;
    }

    .forms-regulations .read-more {
        background: #58c5c7;
        color: white;
        padding: 0.8rem 2.5rem;
        border-radius: 0.688rem;
        border: none;
        cursor: pointer;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .forms-regulations .content-section {
        flex-wrap: wrap;
    }

    .forms-regulations .vertical-divider {
        display: none;
    }

    .forms-regulations .image-placeholder {
        width: 100%;
    }
}

.nav-tabs{
    border-bottom-width:0
}

/* CSS */
.hidden {
    display: none !important;
}

.tab-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tab-item.active-tab {
        background: #fff;
        color: #503d3d;
        font-weight: 700;
    }

.tab-content {
    transition: opacity 0.3s ease;
    padding: 20px 50px 20px ;
    border-radius: 8px;
    margin-top: 15px;
}

.news-item img{
    max-width:30%;
}
.publications{
    padding: 0 calc(3.5rem + 50px);
}

.img-container {
    width: 20%;
    aspect-ratio: 1 / 1; /* Ensure height equals width */
    overflow: hidden;
}

    .img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

#dynamic-height-image {
    width: 100%;
    height: auto; /* Height will be set dynamically by JavaScript */
}

.notification-action {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #80b022;
    color: #fff;
    cursor: pointer;
}
.expand {
    transform: rotate(90deg);
    transition:all 0.2s ease;
}