@font-face {
    font-family: 'IRANYekan';
    src: url('/assetsPortal/webfonts/iranyekan/IRANYekanXVF.woff') format('woff-variations'),
        url('/assetsPortal/webfonts/iranyekan/IRANYekanXVF.woff') format('woff');
    font-weight: 100 1000;
    font-display: fallback;
}

@font-face {
    font-family: 'Dana';
    src: url('/assetsPortal/webfonts/dana/DanaVF.woff') format('woff-variations'),
        url('/assetsPortal/webfonts/dana/DanaVF.woff') format('woff');
    font-weight: 100 1000;
    font-display: fallback;
}

@font-face {
    font-family: Vazir;
    src: url('/assetsPortal/webfonts/vazir/Vazir.eot');
    src: url('/assetsPortal/webfonts/vazir/Vazir.eot?#iefix') format('embedded-opentype'),
        url('/assetsPortal/webfonts/vazir/Vazir.woff2') format('woff2'),
        url('/assetsPortal/webfonts/vazir/Vazir.woff') format('woff'),
        url('/assetsPortal/webfonts/vazir/Vazir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Vazir;
    src: url('/assetsPortal/webfonts/vazir/Vazir-Bold.eot');
    src: url('/assetsPortal/webfonts/vazir/Vazir-Bold.eot?#iefix') format('embedded-opentype'),
        url('/assetsPortal/webfonts/vazir/Vazir-Bold.woff2') format('woff2'),
        url('/assetsPortal/webfonts/vazir/Vazir-Bold.woff') format('woff'),
        url('/assetsPortal/webfonts/vazir/Vazir-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: Vazir;
    src: url('/assetsPortal/webfonts/vazir/Vazir-Black.eot');
    src: url('/assetsPortal/webfonts/vazir/Vazir-Black.eot?#iefix') format('embedded-opentype'),
        url('/assetsPortal/webfonts/vazir/Vazir-Black.woff2') format('woff2'),
        url('/assetsPortal/webfonts/vazir/Vazir-Black.woff') format('woff'),
        url('/assetsPortal/webfonts/vazir/Vazir-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: Vazir;
    src: url('/assetsPortal/webfonts/vazir/Vazir-Medium.eot');
    src: url('/assetsPortal/webfonts/vazir/Vazir-Medium.eot?#iefix') format('embedded-opentype'),
        url('/assetsPortal/webfonts/vazir/Vazir-Medium.woff2') format('woff2'),
        url('/assetsPortal/webfonts/vazir/Vazir-Medium.woff') format('woff'),
        url('/assetsPortal/webfonts/vazir/Vazir-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Vazir;
    src: url('/assetsPortal/webfonts/vazir/Vazir-Light.eot');
    src: url('/assetsPortal/webfonts/vazir/Vazir-Light.eot?#iefix') format('embedded-opentype'),
        url('/assetsPortal/webfonts/vazir/Vazir-Light.woff2') format('woff2'),
        url('/assetsPortal/webfonts/vazir/Vazir-Light.woff') format('woff'),
        url('/assetsPortal/webfonts/vazir/Vazir-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: Vazir;
    src: url('/assetsPortal/webfonts/vazir/Vazir-Thin.eot');
    src: url('/assetsPortal/webfonts/vazir/Vazir-Thin.eot?#iefix') format('embedded-opentype'),
        url('/assetsPortal/webfonts/vazir/Vazir-Thin.woff2') format('woff2'),
        url('/assetsPortal/webfonts/vazir/Vazir-Thin.woff') format('woff'),
        url('/assetsPortal/webfonts/vazir/Vazir-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'IranNastaliq';
    src: url('/assetsPortal/webfonts/IranNastaliq/IranNastaliq.ttf') format('truetype');
    font-weight: 100 1000;
    font-display: fallback;
}

:root {
    --main-bg: #f0f4ff;
    --titles: #393838;
    --sub-title: #393838;
    --descriptions: #5B5B5B;
    --blue1: #0C3A94;
    --blue2: #3D84FF;
    --blue3: #0C3A94;
    --red1: #ff0936;
    --text-color: #393838;
    --menu-width: 280px;
    --transition-speed: 0.4s;
    --footer-bg: linear-gradient(145deg, #0a2e7a, #0C3A94);
    --main-font: 'Vazir';
    --font-iranNastaliq: 'IranNastaliq';
    --alt-font: 'Dana';
    --alt2-font: 'IRANYekan';
}

* {
    font-family: var(--main-font), var(--alt-font);
    box-sizing: border-box;
}

body {
    background-color: var(--main-bg);
}

a {
    text-decoration: none;
}

.red {
    color: var(--red1) !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.max-width-unset {
    max-width: unset !important;
}

.container-main {
    padding: 15px 30px;
}

button {
    border: none;
    background-color: unset;
}

input:focus,
textarea:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
}

button:active {
    opacity: 80%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-end{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.flex-start{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* -------------top header starts-------------- */
.container-header {
    margin-bottom: 20px;
}

.container-header .portal-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.portal-header-right h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700 !important;
    color: var(--blue1);
    margin-bottom: 0 !important;
}

.portal-header-right img {
    width: 50px;
    height: 50px;
}

.header-left-box {
    box-shadow: var(--shadow);
    background-color: #fff;
    border-radius: 15px;
    height: 40px;
    padding: 0 12px;
}

.header-left-box i {
    color: var(--descriptions);
}

.header-left-box h1 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.container-header .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}

.container-header .download-link {
    background-color: var(--blue2);
    cursor: pointer;
}

.container-header .download-link h1 {
    color: #ffffff !important;
    font-weight: 600;
}

.container-header .download-link i {
    color: #ffffff !important;
}

/* -------------top header ends-------------- */

/* -------------container menu starts-------------- */
/* ======= mega menu starts ======= */
.mega-menu {
    position: absolute;
    top: 20%;
    right: 50%;
    transform: translateX(50%) scaleY(0);
    transform-origin: top center;
    width: 90%;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    z-index: 10000000;
    transition: all 0.3s ease-out;
    border: 1px solid #eee;
    text-align: right;
    direction: rtl;
}

.mega-menu-trigger {
    cursor: pointer;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) scaleY(1);
}

.mega-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #0d00ff38;
}

.mega-menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.mega-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.mega-menu-close:hover {
    color: #333;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.mega-menu-column {
    padding: 0 1rem;
}

.mega-menu-column-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.7rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list a {
    display: flex;
    align-items: center;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    padding: 0.5rem 0;
}

.mega-menu-list a:hover {
    color: #0066cc;
    transform: translateX(-5px);
}

.mega-menu-list i {
    margin-left: 10px;
    color: #0066cc;
    font-size: 0.9rem;
}

.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .mega-menu {
        width: 95%;
        padding: 1.5rem;
    }

    .mega-menu-content {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .mega-menu {
        width: 98%;
        padding: 1rem;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
    }

    .mega-menu-column {
        padding: 0;
    }
}
/* ======= mega menu ends ======== */
.container-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-color: #ffffff;
    border-radius: 15px;
    width: 74%;
    height: 60px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    position: relative;
    z-index: 100;
}

.main-menu .menu-items {
    width: fit-content;
    min-width: 80px;
    padding: 0px 10px;
    height: 45px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu .menu-items p {
    color: var(--sub-title);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
}

.main-menu .menu-items i {
    color: var(--blue3);
    font-size: 14px;
    transition: all 0.3s ease;
}

.main-menu .menu-items.active i {
    color: #ffffff;
}

.main-menu .menu-items.active p {
    color: #ffffff;
}

.menu-items.active {
    background-color: var(--blue2);
}

/* Modern Hover Effects */
.main-menu .menu-items:hover {
    background-color: rgba(0, 119, 182, 0.1);
    transform: translateY(-2px);
}

.main-menu .menu-items:hover p {
    color: var(--blue2);
}

.main-menu .menu-items:hover i {
    color: var(--blue2);
    transform: scale(1.1);
}

/* Dropdown Styles */
.menu-items.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    padding: 10px 0;
    margin-top: 5px;
}

.menu-items.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: rgba(0, 119, 182, 0.05);
    color: var(--blue2);
    border-left: 3px solid var(--blue2);
    padding-right: 25px;
}

.dropdown-content i {
    margin-left: 10px;
    color: var(--blue3);
    font-size: 14px;
}

/* Arrow indicator */
.menu-items.dropdown::after {
    content: "";
    display: inline-block;
    margin-right: 8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--blue3);
    transition: all 0.3s ease;
    transform: translateY(2px);
}

.menu-items.dropdown:hover::after {
    transform: rotate(180deg) translateY(-2px);
}

.left-btns-container-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    background-color: #ffffff;
    border-radius: 15px;
    width: 24%;
    height: 60px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    gap: 1rem;
}

.left-btns-container-menu .round-btn {
    border-radius: 50%;
    background-color: var(--main-bg);
    padding: 12px;
}

.left-btns-container-menu .search-box-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65%;
}

.left-btns-container-menu .search {
    height: 40px;
}

.left-btns-container-menu .search-input {
    background-color: var(--main-bg);
    font-size: 13px;
    font-weight: 400;
    color: var(--descriptions);
    border-radius: 0 10px 10px 0;
}

.left-btns-container-menu .search-span {
    background-color: var(--main-bg);
    border-radius: 10px 0 0 10px;
}

.left-btns-container-menu i {
    font-size: 17px;
    color: var(--blue3);
}

/* -------------container menu ends-------------- */

/* =====================section 1 starts======================== */

.section1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* ------------- main news slider starts --------------*/
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
}

.section1 .news-slider-container {
    max-width: 1300px;
    width: 74%;
    position: relative;
}

.section1 .news-slider-container .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
}

.section1 .news-slider-container .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
}

.section1 .swiper-button-next:after,
.section1 .swiper-button-prev:after {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #ffffff;
}

/* .section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -18px;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
  border-radius: 4px;
} */

.section1 .swiper {
    width: 100%;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.section1 .swiper-slide {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.section1 .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.1);
    will-change: transform;
}

.section1 .swiper-slide-active .slide-image {
    transform: scale(1.03);
}

.section1 .slide-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    opacity: 0.8;
}

.section1 .slide-content {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.section1 .swiper-slide-active .slide-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.section1 .slide-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.section1 .slide-category {
    background: var(--blue2);
    padding: 4px 15px;
    border-radius: 20px;
    margin-left: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.section1 .slide-date {
    display: flex;
    align-items: center;
}

.section1 .slide-date i {
    margin-left: 5px;
}

.section1 .slide-title {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section1 .slide-description {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section1 .read-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section1 .read-more:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.section1 .read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.section1 .read-more:hover i {
    transform: translateX(5px);
}

.section1 .swiper-pagination {
    bottom: 30px !important;
}

.section1 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section1 .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.3);
    border-color: transparent;
}

.section1 .swiper-button-next,
.section1 .swiper-button-prev {
    color: white;
    background: var(--glass-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section1 .swiper-button-next::after,
.section1 .swiper-button-prev::after {
    font-size: 1.5rem;
}

.section1 .swiper-button-next:hover,
.section1 .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.section1 .swiper-button-next {
    left: 30px;
    right: auto;
}

.section1 .swiper-button-prev {
    right: 30px;
    left: auto;
}

/* Fade in animation for slides */
@keyframes fadeIn {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

.section1 .swiper-slide-active {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section1 .swiper {
        height: 480px;
    }

    .section1 .slide-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .section1 .swiper {
        height: 420px;
    }

    /* .section-title {
    font-size: 2.2rem;
  } */

    .section1 .slide-content {
        padding: 30px;
    }

    .section1 .slide-title {
        font-size: 1.6rem;
    }

    .section1 .slide-description {
        font-size: 1rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 576px) {
    .section1 .swiper {
        height: 380px;
        border-radius: 12px;
    }

    .section1 .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .section1 .slide-content {
        padding: 20px;
    }

    .section1 .slide-title {
        font-size: 1.4rem;
    }

    .section1 .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .section1 .swiper-button-next,
    .section1 .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

/* ------------- main news slider ends --------------*/

/* -------------section 1 left starts---------------- */
.section1-left {
    width: 24%;
}

:root {
    --card-shadow: 0 10px 30px rgba(12, 58, 148, 0.1);
    --news-item-bg: rgba(255, 255, 255, 0.7);
}

.section1-left .news-list-container {
    background: white;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.section1-left .news-list-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 58, 148, 0.02), rgba(61, 132, 255, 0.03));
    z-index: 0;
}

.section1-left .news-list-header {
    background: linear-gradient(135deg, var(--blue1), var(--blue3));
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.section1-left .news-list-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: cover;
    z-index: 0;
}

.section1-left .news-list-header h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.section1-left .news-list-header h3 i {
    margin-left: 10px;
}

.section1-left .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section1-left .news-item {
    padding: 20px;
    display: flex;
    border-bottom: 1px solid rgba(91, 91, 91, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: var(--news-item-bg);
    backdrop-filter: blur(5px);
}

.section1-left .news-item:last-child {
    border-bottom: none;
}

.section1-left .news-item:hover {
    background: white;
    transform: translateX(-5px);
    box-shadow: 5px 0 15px rgba(61, 132, 255, 0.1);
}

.section1-left .news-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: var(--blue2);
    transition: all 0.4s ease;
}

.section1-left .news-item:hover::before {
    height: 100%;
}

.section1-left .news-item-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-left: 15px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section1-left .news-item:hover .news-item-img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section1-left .news-item-content {
    flex: 1;
}

.section1-left .news-item-title {
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--titles);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.section1-left .news-item:hover .news-item-title {
    color: var(--blue1);
}

.section1-left .news-item-desc,
.section1-left span {
    font-size: 0.6rem;
    color: var(--descriptions);
    line-height: 1.7;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section1-left .news-item-date {
    font-size: 0.75rem;
    color: var(--descriptions);
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.section1-left .news-item-date i {
    margin-left: 5px;
    font-size: 0.7rem;
}

.section1-left .news-item-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--red1);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.section1-left .news-item:hover .news-item-badge {
    background: var(--blue1);
    color: white;
    transform: translateY(-3px);
}

.section1-left .news-list-footer {
    padding: 15px 20px;
    text-align: center;
    background: var(--blue2);
}

.section1-left .view-all-btn {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.section1-left .view-all-btn i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.section1-left .view-all-btn:hover {
    color: var(--blue2);
    transform: translateX(-5px);
}

.section1-left .view-all-btn:hover i {
    transform: translateX(5px);
}

/* Animation for news items */
.section1-left .news-item {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.section1-left .news-item.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Hover effect for the entire list */
.section1-left .news-list-container:hover .news-item:not(:hover) {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .section1-left .news-list-container {
        max-width: 100%;
        margin: 5px 0;
        border-radius: 12px;
    }

    .section1-left .news-item {
        padding: 15px;
        flex-direction: column;
    }

    .section1-left .news-item-img {
        width: 100%;
        height: 120px;
        margin-left: 0;
        margin-bottom: 12px;
    }

    .section1-left .news-item-badge {
        top: 10px;
        left: 10px;
    }
}

/* Scrollbar styling */
.section1-left .scrollable-news {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--blue2) rgba(240, 244, 255, 0.5);
}

.section1-left .scrollable-news::-webkit-scrollbar {
    width: 6px;
}

.section1-left .scrollable-news::-webkit-scrollbar-track {
    background: rgba(240, 244, 255, 0.5);
    border-radius: 10px;
}

.section1-left .scrollable-news::-webkit-scrollbar-thumb {
    background-color: var(--blue2);
    border-radius: 10px;
}

/* ----------------section 1 left ends---------------- */

/* =====================section 1 ends======================== */

/* =====================section 2 starts======================== */
.section2 {
    margin-bottom: 25px;
}

/* ----------------members slider starts----------------- */
.members-slider-container {
    margin: 0 auto;
    padding: 20px 20px;
    direction: ltr !important;
    max-width: 1200px;
}

.slider-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.slider-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    border-radius: 3px;
}

.slider-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.members-slider {
    padding: 20px 0 50px;
    overflow: hidden;
}

.members-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.members-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.members-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.members-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.members-card:hover .members-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%);
    z-index: 1;
}

.members-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to right, #2563eb, #7c3aed);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.members-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.members-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    line-height: 1.3;
    text-align: right;
}

.members-excerpt {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
    text-align: right;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.read-more span {
    margin-left: 5px;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.read-more:hover {
    color: #7c3aed;
}

.read-more:hover span {
    transform: translateX(3px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    color: #2563eb;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #94a3b8;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.swiper-pagination-bullet-active {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    opacity: 1;
    transform: scale(1.2);
}

.section2 .swiper-button-next,
.section2 .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    color: rgb(0, 0, 0);
    background: var(--glass-bg);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section2 .swiper-button-next:after,
.section2 .swiper-button-prev:after {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: var(--blue3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-title {
        font-size: 2rem;
    }

    .slider-subtitle {
        font-size: 1rem;
    }

    .members-image-container {
        height: 180px;
    }

    .members-title {
        font-size: 1.2rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .slider-title {
        font-size: 1.8rem;
    }

    .members-image-container {
        height: 150px;
    }

    .members-content {
        padding: 15px;
    }

    .members-title {
        font-size: 1.1rem;
    }

    .members-excerpt {
        font-size: 0.85rem;
    }
}

/* ----------------members slider ends----------------- */
/* =====================section 2 ends======================== */

/* =====================section 3 starts======================== */

/* =====================section 3 ends======================== */
.section3 .news-card {
    background: white !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    width: 100%;
    max-width: 380px;
    border: none;
    display: contents;
}

.section3 .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(12, 58, 148, 0.25);
}

/* .section3 .news-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 58, 148, 0.03), rgba(61, 132, 255, 0.03));
    z-index: 0;
} */

.section3 .card-header {
    background: linear-gradient(135deg, var(--blue1), var(--blue3));
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.section3 .card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: cover;
    transform: rotate(15deg);
    z-index: 0;
}

.section3 .card-header * {
    position: relative;
    z-index: 1;
}

.section3 .card-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section3 .card-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: var(--blue2);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.section3 .card-subtitle {
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.section3 .card-body {
    padding: 25px;
    position: relative;
    border-radius: 0 0 10px 10px;
}

.section3 .card-text {
    color: var(--descriptions);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.section3 .card-category {
    display: inline-block;
    background: rgba(61, 132, 255, 0.1);
    color: var(--blue1);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.section3 .card-category:hover {
    background: var(--blue1);
    color: white;
    transform: translateY(-2px);
}

.section3 .card-date {
    display: flex;
    align-items: center;
    color: var(--descriptions);
    font-size: 0.85rem;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(91, 91, 91, 0.2);
}

.section3 .card-date i {
    margin-left: 8px;
    color: var(--blue1);
}

.section3 .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--blue1);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: 15px;
}

.section3 .read-more i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.section3 .read-more:hover {
    color: var(--blue2);
    transform: translateX(-5px);
}

.section3 .read-more:hover i {
    transform: translateX(5px);
}

.section3 .card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--blue2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(61, 132, 255, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 132, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(61, 132, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(61, 132, 255, 0);
    }
}

.section3 .card-icon {
    position: absolute;
    bottom: 20px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: rgba(61, 132, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue1);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.section3 .news-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    opacity: 1;
    background: var(--blue1);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .section3 .news-card {
        max-width: 100%;
        margin: 20px 10px;
    }

    .section3 .card-title {
        font-size: 1.2rem;
    }

    .section3 .card-body {
        padding: 20px;
    }
}

/* Hover effect for the entire card */
.section3 .news-card:hover .card-title::after {
    width: 70px;
    background: white;
}

/* Ripple effect for click */
.section3 .ripple {
    position: relative;
    overflow: hidden;
}

.section3 .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* =====================footer starts======================== */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(12, 58, 148, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    z-index: 0;
}

.footer * {
    position: relative;
    z-index: 1;
}

.footer-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--blue2);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: right;
}

.footer-title:hover::after {
    width: 100px;
    background: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-links li:hover {
    transform: translateX(-8px);
    opacity: 1;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--blue2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-right: 15px;
}

.footer-links a:hover::before {
    right: 0;
    opacity: 1;
}

.footer-links a i {
    margin-left: 10px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(-3px);
}

.footer-contact-info {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-contact-info:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.footer-contact-info i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.footer-contact-info:hover i {
    background: var(--blue2);
    transform: rotate(10deg);
    box-shadow: 0 5px 15px rgba(61, 132, 255, 0.3);
}

.footer-contact-info span {
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.footer-social a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--blue2);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-5px) rotate(5deg);
    color: white;
    box-shadow: 0 8px 20px rgba(61, 132, 255, 0.3);
}

.footer-social a:hover::after {
    transform: scale(1);
}

.footer-social a i {
    transition: all 0.3s ease;
}

.footer-social a:hover i {
    transform: scale(1.2);
}

.footer-newsletter {
    margin-top: 25px;
    position: relative;
}


.footer-newsletter button {
    background: var(--blue2);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    width: 100%;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(61, 132, 255, 0.3);
}

.footer-newsletter button::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    transform: translateX(-100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.footer-newsletter button:hover {
    color: var(--blue2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 132, 255, 0.4);
}

.footer-newsletter button:hover::after {
    transform: translateX(0);
}

.footer-newsletter button i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover i {
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo:hover {
    transform: scale(1.05) rotate(-2deg);
    opacity: 0.9;
    filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.2));
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    margin: 5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.footer-badge:hover {
    background: var(--blue2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(61, 132, 255, 0.3);
    border-color: transparent;
    color: white;
}

.footer-badge i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.footer-badge:hover i {
    transform: rotate(10deg) scale(1.2);
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Wave animation */
@keyframes wave {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"></path><path fill="rgba(255,255,255,0.1)" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5"></path><path fill="rgba(255,255,255,0.1)" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"></path></svg>');
    background-size: cover;
    animation: wave 60s linear infinite;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-col {
        margin-bottom: 40px;
    }

    .footer {
        padding: 60px 0 0;
    }
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 1.2rem;
    }

    .footer-title::after {
        width: 50px;
        height: 2px;
    }

    .footer-title:hover::after {
        width: 80px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .footer-logo {
        max-width: 160px;
    }
}

/* Scroll reveal animation */
.footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.footer-col.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =====================footer ends======================== */

/* =====================responsive menu starts======================== */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 75px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: var(--blue1);
    border-radius: 50%;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(12, 58, 148, 0.3);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: right center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: var(--menu-width);
    height: 100%;
    background: white;
    z-index: 999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-speed) ease;
    overflow-y: auto;
    border-radius: 50px 0 0 50px;
}

.mobile-menu-header {
    padding: 25px 100px 25px 20px;
    background: var(--blue1);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.mobile-menu-items {
    padding: 15px 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
    background: var(--main-bg);
    color: var(--blue1);
    border-right: 3px solid var(--blue1);
}

.mobile-menu-item i {
    margin-left: 12px;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.mobile-menu-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Overlay when menu is open */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

/* Animation classes */
.menu-open .mobile-menu-overlay {
    right: 0;
}

.menu-open .page-overlay {
    opacity: 1;
    visibility: visible;
}

.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(-45deg) translateY(1px);
}

.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(45deg) translateY(-1px);
}

/* Animation for menu items */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu-item {
    opacity: 0;
    animation: slideIn 0.3s ease forwards;
}

.mobile-menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-menu-item:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-menu-item:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-menu-item:nth-child(5) {
    animation-delay: 0.5s;
}

.mobile-menu-item:nth-child(6) {
    animation-delay: 0.6s;
}

.mobile-menu-item:nth-child(7) {
    animation-delay: 0.7s;
}

.mobile-menu-item:nth-child(8) {
    animation-delay: 0.8s;
}

.mobile-menu-item:nth-child(9) {
    animation-delay: 0.9s;
}

/* =====================responsive menu ends======================== */

/* =====================news details page starts======================== */
.breadcrumb {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .8rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #ffffff;
    border-radius: 10px !important;
    height: 35px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.img-news-detail {
    width: 70%;
    height: 400px;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: right !important;
    padding-left: 8px !important;
}

#blog_details span {
    font-size: 14px !important;
    font-weight: 500 !important;
}

ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: #eee;
}

ul.breadcrumb li {
    display: inline;
}

.bg-page {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 10px;
    background-color: #fff;
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "»\00a0";
}

.breadcrumb-item a,
li {
    font-size: 14px;
}

ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}


ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}

.rad25 {
    -moz-border-radius: 25px !important;
    -webkit-border-radius: 25px !important;
    border-radius: 25px !important;
}

.bg-page {
    background-image: url("../img/eslimibkg2.png");
    background-position: left top;
    background-size: 250px;
    background-repeat: no-repeat;
}

#blog_details h1 {
    font-size: 1.2rem !important;
}

#blog_details p {
    line-height: 2.4 !important;
}

#blog_details ul.inline li {
    display: inline-block;
}

.key-word {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    color: #5e7582;
    border-radius: 25px;
    background-color: #ECEEF0;
    padding: 4px 12px;
    height: 30px;
}

@media screen and (max-width:768px) {
    #blog_details h5 {
        font-size: 1rem !important
    }

    #blog_details img.w-75 {
        width: 100% !important;
    }
}

/* =====================news details page ends======================== */

/* =====================news archive page starts========================== */
/* Animated Gradient Header */
.news-archive-sec .news-header {
    background: linear-gradient(135deg, #0a2e7a, #0C3A94, #3D84FF);
    background-size: 200% 200%;
    color: white;
    border-radius: 18px;
    padding: 30px 25px;
    margin-bottom: 40px;
    box-shadow: var(--card-shadow);
    transition: all 0.6s ease;
    animation: gradientAnimation 8s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.news-archive-sec .news-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.news-archive-sec .news-header h1 {
    position: relative;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-archive-sec .news-header p {
    position: relative;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 25px;
}

/* Enhanced Search Box */
.news-archive-sec .search-box {
    position: relative;
    margin-bottom: 25px;
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
}

.news-archive-sec .search-box input {
    padding-right: 60px;
    padding-left: 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: white;
    height: 55px;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-archive-sec .search-box input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.news-archive-sec .search-box input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 20px rgba(61, 132, 255, 0.3);
    transform: translateY(-2px);
}

.news-archive-sec .search-box button {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news-archive-sec .search-box button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Glassmorphism Filter Section */
.news-archive-sec .filter-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(12, 58, 148, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.news-archive-sec .filter-section:hover {
    box-shadow: 0 12px 28px rgba(12, 58, 148, 0.12);
    transform: translateY(-2px);
}

.news-archive-sec .filter-title {
    color: var(--blue1);
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.news-archive-sec .filter-title i {
    margin-left: 10px;
    font-size: 1.2rem;
}

/* Enhanced Filter Buttons */
.news-archive-sec .filter-btn {
    background: rgba(12, 58, 148, 0.08);
    color: var(--blue1);
    border: none;
    border-radius: 50px;
    margin: 6px;
    padding: 8px 18px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(12, 58, 148, 0.05);
}

.news-archive-sec .filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue1), var(--blue2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.news-archive-sec .filter-btn:hover,
.news-archive-sec .filter-btn.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(12, 58, 148, 0.15);
}

.news-archive-sec .filter-btn:hover::before,
.news-archive-sec .filter-btn.active::before {
    opacity: 1;
}

/* Premium News Cards */
.news-archive-sec .news-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    height: 100%;
    position: relative;
}

.news-archive-sec .news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--blue2), var(--blue1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.news-archive-sec .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(12, 58, 148, 0.2);
}

.news-archive-sec .news-card:hover::after {
    transform: scaleX(1);
}

.news-archive-sec .news-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-archive-sec .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.news-archive-sec .news-card:hover .news-img img {
    transform: scale(1.08);
}

.news-archive-sec .news-img .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(12, 58, 148, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-archive-sec .news-body {
    padding: 25px;
}

.news-archive-sec .news-date {
    color: var(--blue2);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.news-archive-sec .news-date i {
    margin-left: 8px;
    font-size: 1rem;
}

.news-archive-sec .news-title {
    color: var(--blue1);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-size: 1.25rem;
}

.news-archive-sec .news-card:hover .news-title {
    color: var(--blue2);
}

.news-archive-sec .news-excerpt {
    color: var(--descriptions);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Enhanced Read More Button */
.news-archive-sec .read-more {
    color: var(--blue2);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    padding-bottom: 3px;
}

.news-archive-sec .read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--blue2);
    transition: width 0.3s ease;
}

.news-archive-sec .read-more i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.news-archive-sec .read-more:hover {
    color: var(--blue1);
}

.news-archive-sec .read-more:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.news-archive-sec .read-more:hover i {
    transform: translateX(-8px);
}

/* Elegant Pagination */
.news-archive-sec .pagination {
    margin-top: 50px;
}

.news-archive-sec .pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--blue1), var(--blue2));
    border-color: transparent;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(12, 58, 148, 0.2);
}

.news-archive-sec .pagination .page-link {
    color: var(--blue1);
    margin: 0 6px;
    border-radius: 12px !important;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(12, 58, 148, 0.1);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.news-archive-sec .pagination .page-link:hover {
    background: rgba(12, 58, 148, 0.05);
    border-color: rgba(12, 58, 148, 0.2);
    transform: translateY(-2px);
}

.news-archive-sec .pagination .page-item:first-child .page-link,
.news-archive-sec .pagination .page-item:last-child .page-link {
    border-radius: 12px !important;
}

/* Sort Dropdown Enhancement */
.news-archive-sec .sort-dropdown .dropdown-toggle {
    border-radius: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(12, 58, 148, 0.2);
    font-weight: 500;
    color: var(--blue1);
    transition: all 0.3s ease;
}

.news-archive-sec .sort-dropdown .dropdown-toggle:hover {
    background: rgba(12, 58, 148, 0.05);
    border-color: rgba(12, 58, 148, 0.3);
}

.news-archive-sec .sort-dropdown .dropdown-menu {
    border-radius: 12px;
    border: 1px solid rgba(12, 58, 148, 0.1);
    box-shadow: 0 10px 30px rgba(12, 58, 148, 0.1);
    padding: 8px 0;
}

.news-archive-sec .sort-dropdown .dropdown-item {
    padding: 8px 16px;
    border-radius: 6px;
    margin: 2px 8px;
    transition: all 0.2s ease;
}

.news-archive-sec .sort-dropdown .dropdown-item:hover,
.news-archive-sec .sort-dropdown .dropdown-item:focus {
    background: rgba(12, 58, 148, 0.08);
    color: var(--blue1);
}

.news-archive-sec .sort-dropdown .dropdown-item.active {
    background: linear-gradient(135deg, rgba(12, 58, 148, 0.1), rgba(61, 132, 255, 0.1));
    color: var(--blue1);
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .news-archive-sec .filter-section {
        margin-bottom: 40px;
    }

    .news-archive-sec .news-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .news-archive-sec .news-header {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .news-archive-sec .news-header h1 {
        font-size: 1.8rem;
    }

    .news-archive-sec .search-box input {
        height: 50px;
    }

    .news-archive-sec .filter-btn {
        padding: 7px 14px;
        font-size: 0.85rem;
        margin: 4px;
    }

    .news-archive-sec .news-card {
        margin-bottom: 25px;
    }

    .news-archive-sec .pagination .page-link {
        width: 40px;
        height: 40px;
        margin: 0 4px;
    }
}

@media (max-width: 576px) {
    .news-archive-sec .news-header {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .news-archive-sec .news-header h1 {
        font-size: 1.6rem;
    }

    .news-archive-sec .news-img {
        height: 160px;
    }

    .news-archive-sec .news-body {
        padding: 20px;
    }

    .news-archive-sec .pagination .page-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* =====================news archive page ends========================== */

/* =====================members history page starts========================== */
.title-main::after {
    width: 270px;
}

.timeline {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    right: 20px;
    width: 2px;
    height: 100%;
    background-color: #0056b3;
}

.timeline-year {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
    padding-right: 60px;
    position: relative;
}

.year-point {
    position: absolute;
    right: -3px;
    background-color: #0056b3;
    color: white;
    font-weight: bold;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 0.4s ease;
}

.year-point:hover {
    transform: scale(1.1);
}

.manager-cards {
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
    margin-top: -33px;
}

.manager-cards h2 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 23px;
}

.manager-card {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manager-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.manager-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 15px;
}

.manager-info h3 {
    color: #0056b3;
    margin-bottom: 5px;
    font-size: 16px;
}

.manager-info p {
    font-size: 15px;
    margin-bottom: 5px;
}

.title-box {
    margin: 30px 0 10px 0;
}

.timeline::before {
    display: none !important;
}

.position {
    color: #333333 !important;
    font-size: 15px !important;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .manager-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .manager-photo {
        margin-bottom: 10px;
    }
}

/* =====================members history page ends========================== */

/* =====================contact us page starts========================== */
.contact-us-section .contact-header {
    background: var(--footer-bg);
    color: white;
    border-radius: 18px;
    padding: 40px 25px;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(12, 58, 148, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-us-section .contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-us-section .contact-header h1 {
    position: relative;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-us-section .contact-header p {
    position: relative;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Form */
.contact-us-section .contact-form {
    background: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-us-section .form-title {
    color: var(--blue1);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-us-section .form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue2), var(--blue1));
    border-radius: 3px;
}

.contact-us-section .form-control,
.contact-us-section .form-select {
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-us-section .form-control:focus,
.contact-us-section .form-select:focus {
    border-color: var(--blue2);
    box-shadow: 0 0 0 0.25rem rgba(61, 132, 255, 0.25);
}

.contact-us-section .form-floating>label {
    right: auto;
    left: 0;
    padding: 0.8rem 1rem;
}

.contact-us-section .form-floating>.contact-us-section .form-control:focus~label,
.contact-us-section .form-floating>.contact-us-section .form-control:not(:placeholder-shown)~label,
.contact-us-section .form-floating>.contact-us-section .form-select~label {
    transform: scale(0.85) translateY(-0.9rem) translateX(1rem);
}

.contact-us-section .submit-btn {
    background: linear-gradient(135deg, var(--blue1), var(--blue2));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(12, 58, 148, 0.2);
}

.contact-us-section .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(12, 58, 148, 0.3);
}

/* Contact Info Cards */
.contact-us-section .contact-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: fit-content;
    border-left: 4px solid var(--blue1);
}

.contact-us-section .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-us-section .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(12, 58, 148, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue1);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-us-section .contact-card:hover .contact-icon {
    background: var(--blue1);
    color: white;
    transform: scale(1.1);
}

.contact-us-section .contact-card h3 {
    color: var(--blue1);
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-us-section .contact-card p {
    color: var(--descriptions);
    line-height: 1.7;
}

.contact-us-section .contact-link {
    color: var(--blue2);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-us-section .contact-link:hover {
    color: var(--blue1);
}

/* FAQ Section */
.contact-us-section .faq-section {
    background: white;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.contact-us-section .faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.contact-us-section .faq-item:last-child {
    border-bottom: none;
}

.contact-us-section .faq-question {
    color: var(--blue1);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.contact-us-section .faq-question:hover {
    color: var(--blue2);
}

.contact-us-section .faq-answer {
    padding-top: 15px;
    color: var(--descriptions);
    line-height: 1.7;
}

/* Map Section */
.contact-us-section .map-container {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 400px;
    margin-bottom: 40px;
    border: 1px solid #eee;
}

.contact-us-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-us-section .contact-header {
        padding: 30px 20px;
    }

    .contact-us-section .contact-form,
    .contact-us-section .faq-section {
        padding: 25px;
    }

    .contact-us-section .contact-card {
        padding: 20px;
    }

    .contact-us-section .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-us-section .contact-header {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .contact-us-section .contact-form,
    .contact-us-section .faq-section {
        padding: 20px;
    }

    .contact-us-section .form-title {
        font-size: 1.3rem;
    }
}

/* =====================contact us page ends========================== */

/* =====================members page starts========================== */
/* Base Styles */
        :root {
            --primary-color: #e74c3c;
            --primary-dark: #c0392b;
            --secondary-color: #2c3e50;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #34495e;
            --text-light: #7f8c8d;
            --white: #ffffff;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --border-radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Vazir', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f8f9fa;
        }

        /* Members Section */
        .members-section {
            padding: 4rem 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.4rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 1.5rem auto 0;
            line-height: 1.8;
        }

        /* Filter Controls */
        .filter-controls {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 0.6rem 1.5rem;
            background-color: var(--light-color);
            border: none;
            border-radius: 30px;
            color: var(--text-color);
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            font-size: 0.95rem;
            font-weight: 500;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .filter-btn:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        .filter-btn.active {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        /* Members Grid */
        .members-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        /* Member Card - Enhanced Design */
        .member-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .member-image-container {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .member-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .member-card:hover .member-image {
            transform: scale(1.1);
        }

        .member-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .member-content {
            padding: 1.8rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .member-header {
            margin-bottom: 1.2rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }

        .member-name {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin-bottom: 0.3rem;
            font-weight: 700;
        }

        .member-position {
            font-size: 0.95rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .member-department {
            display: inline-block;
            font-size: 0.8rem;
            background-color: rgba(231, 76, 60, 0.1);
            color: var(--primary-dark);
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            margin-top: 0.3rem;
        }

        .member-bio {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.8rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .member-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--light-color);
            color: var(--text-color);
            transition: var(--transition);
            text-decoration: none;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }

        .member-cta {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            font-weight: 500;
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
        }

        .member-cta:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .members-container {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .member-image-container {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .members-section {
                padding: 3rem 1rem;
            }

            .members-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .filter-controls {
                margin-bottom: 2rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .member-card {
            opacity: 0;
            animation: fadeInUp 0.6s forwards;
        }

        /* Delay animations for staggered effect */
        .member-card:nth-child(1) { animation-delay: 0.1s; }
        .member-card:nth-child(2) { animation-delay: 0.2s; }
        .member-card:nth-child(3) { animation-delay: 0.3s; }
        .member-card:nth-child(4) { animation-delay: 0.4s; }
        .member-card:nth-child(5) { animation-delay: 0.5s; }
        .member-card:nth-child(6) { animation-delay: 0.6s; }
/* =====================members page ends========================== */


/* =====================responsive starts========================== */
/* Responsive styles */
#app-enter-left {
    display: none;
}
@media (max-width: 1000px) {
    .main-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 36px;
        height: 36px;
    }

    .mobile-menu-toggle span {
        width: 18px;
        margin: 2px 0;
    }

    /* .header-left-box {
        display: none;
    } */

    #phone-header, #email-header {
        display: none;
    }

    .container-header  {
        flex-direction: column;
        gap: 10px;
    }

    #app-enter-left {
        display: flex;
        width: 100%;
        background: var(--main-bg);
    }

    .left-btns-container-menu {
        width: 100%;
    }

    .section1 {
        flex-direction: column;
    }

    .section1 .news-slider-container {
        width: 100%;
        max-width: unset;
        margin-bottom: 20px;
    }

    .section1 .section1-left {
        width: 100%;
    }

    .section1-left .news-list-container {
        max-width: unset;
    }
}

@media (max-width: 450px) {
    .portal-header-right h1 {
        font-size: 13px;
    }
}

/* =====================responsive ends========================== */

