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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
}

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

/* ============================================ */
/* HEADER */
/* ============================================ */
/* ============================================ */
/* HEADER STİLLƏRİ */
/* ============================================ */

.header {
    background: white;
    padding: 15px 0;
    /* padding: 15px 100px; */
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e0e0e0;
}

/* Logo Section - Sol tərəf */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 10px 0;
}

.logo-group .logo-elmler {
    width: 150px;
    height: auto;
}

.logo-group .logo-committee {
    width: 350px;
    height: auto;
}

.logo-group .logo-elmler img {
    width: 100%;
    height: 100%;
}
.logo-group .logo-committee img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/1;
}

.logo img {
    width: 70px;
}

.title-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.title-text h1 {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title-text h2 {
    font-size: 12px;
    color: #8b0000;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

/* Header Right - Sağ tərəf */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slogan {
    font-size: 23px;
    color: #000;
    border-right: 1px solid #ddd;
    padding-right: 20px;
    font-family: "Carattere", cursive;
    letter-spacing: 0.5px;
}

.slogan-ru {
    font-size: 21px !important;
    font-family: "Marck Script", cursive;
    letter-spacing: 0;
}

/* Language Selector */
.lang-selector {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    outline: none;
}

.lang-selector:hover {
    border-color: #8b0000;
    color: #8b0000;
}

.lang-selector:focus {
    border-color: #8b0000;
}

/* Search Icon */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 45px;
    transition: width 0.3s ease;
    overflow: hidden;
}

.search-container.active {
    width: 250px;
}

.search-input {
    border: none;
    outline: none;
    width: 0;
    padding: 10px 0;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 16px;
    flex: 1;
}

.search-container.active .search-input {
    width: 100%;
    padding: 10px 15px;
    opacity: 1;
}

.search-icon {
    background: #8b0000;
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 50%;
    border: none;
}

.search-icon:hover {
    background: #a00000;
}
.btnWrapper {
    margin-bottom: 10px;
    margin-top: 20px;
}
.journal-btn {
    /* background: transparent; */
    border: 2px solid #8b0000;
    color: #8b0000;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    margin: 8px 0;
}

.journal-btn:hover {
    background: #8b0000;
    color: white;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 15px 30px;
    }

    .title-text h1 {
        font-size: 13px;
    }

    .title-text h2 {
        font-size: 11px;
    }

    .slogan {
        font-size: 21px;
    }
}

@media (max-width: 768px) {
    .row {
        align-items: flex-start;
    }

    .header-right {
        margin-top: 19px;
    }
    .header {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo-section {
        gap: 10px;
    }
    .logo-section-group {
        gap: 5px;
        flex-direction: column;
        align-items: flex-start;
    }

    .title-text h1 {
        font-size: 11px;
    }

    .title-text h2 {
        font-size: 10px;
    }

    .slogan {
        display: none;
    }

    .header-right {
        gap: 15px;
    }
    .footer {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 12px !important;
    }

    .header-right {
        margin-right: 4px;
    }
    .hero-body {
        flex-direction: column-reverse;
        gap: 10px !important;
    }
    .hero-left,
    .hero-right {
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-date {
        padding: 6px 9px !important;
        border-radius: 14px !important;
        font-size: 10px !important;
    }

    .hero-right img {
        height: unset !important;
        object-fit: unset !important;
    }

    .hero-title {
        font-size: 19px !important;
        margin-bottom: 10px !important;
    }
    .hero-description p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .hero-arrows {
        margin-top: 10px !important;
        gap: 0px !important;
    }

    .arrow-btn {
        width: 35px !important;
        height: 30px !important;
        border-radius: 7px !important;
        font-size: 18px !important;
        margin-bottom: unset !important;
    }

    .dot {
        height: 9px !important;
    }

    .dot.active {
        width: 23px !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }
    .logo img {
        width: 60px;
    }
    .title-text h1 {
        font-size: 10px;
    }

    .title-text h2 {
        font-size: 9px;
    }

    .lang-selector {
        padding: 5px 10px;
        font-size: 12px;
    }

    .search-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* ============================================ */
/* NAVIGATION */
/* ============================================ */
.navigation {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    /* max-width: 1400px; */
    /* margin: 0 auto; */
}

.nav-menu > li {
    padding: 18px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    padding: 19px 15px 23px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: #e8e8e8;
    color: #8b0000;
}
.nav-menu .has-dropdown:hover {
    background: #e8e8e8;
    color: #8b0000;
}

.nav-menu > li.active {
    background: white;
    color: #8b0000;
    border-bottom: 3px solid #8b0000;
}

/* Dropdown */
.has-dropdown {
    position: relative;
    padding-right: 22px !important;
    padding-left: 22px !important;
}

.has-dropdown::after {
    content: "▼";
    font-size: 8px;
    margin-left: 6px;
    opacity: 0.6;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 216px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 3px solid #8b0000;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    /* padding: 14px 0; */
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s;
}

.dropdown a {
    padding: 14px 20px;
    /* padding: 0; */
    width: 100%;
    height: 100%;
    display: block;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: #f5f5f5;
    color: #8b0000;
    padding-left: 25px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu > li {
        padding: 16px 18px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .nav-menu > li {
        padding: 15px 15px;
        font-size: 11px;
    }
}

/* ============================================ */
/* MAIN CONTENT */
/* ============================================ */
.main-content {
    /* max-width: 1200px; */
    margin: 40px auto;
    /* padding: 0 20px; */
}

.content-section {
    /* display: none; */
    animation: fadeIn 0.5s;
}

/* .content-section.active {
    display: block;
} */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.date-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.date {
    background-color: #8b0000;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.badge {
    background-color: #f0f0f0;
    color: #666;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
}

.main-heading {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* ============================================ */
/* SECTION CONTENT */
/* ============================================ */
.section-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-content h3 {
    color: #8b0000;
    font-size: 20px;
    margin: 25px 0 15px 0;
}

.section-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ============================================ */
/* NEWS SECTION */
/* ============================================ */
.news-section {
    margin-top: 50px;
}

.section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #8b0000;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-category {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-category.red {
    background-color: #ffebee;
    color: #8b0000;
}

.news-category.dark-red {
    background-color: #8b0000;
    color: white;
}

.news-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 15px 0;
}

.news-date {
    font-size: 13px;
    color: #999;
}

/* ============================================ */
/* JOURNAL/BOOK CARDS */
/* ============================================ */
.journal-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.journal-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.journal-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.journal-card h3 {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
    line-height: 1.4;
}

.journal-card p {
    font-size: 14px;
    color: #999;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
/* ============================================ */
/* FOOTER STİLLƏRİ */
/* ============================================ */

.footer {
    background: #f5f5f5;
    padding: 40px 0 0 0;
    margin-top: 60px;
}

/* Partners/Logos Section */
.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 40px;
    background: white;
    margin: 0 auto 40px auto;
    max-width: 1200px;
    border-radius: 10px;
    flex-wrap: wrap;
}

.partners img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(50%);
    transition: all 0.3s;
    opacity: 0.8;
}

.partners img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #8b0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    cursor: pointer;
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}
.scroll-top.show {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.scroll-top:hover {
    background: #a00000;
    transform: translateY(-4px);
}

/* Footer Content - Columns */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}

.footer-section h3 {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    padding: 3px 0;
}

.footer-section ul li a:hover {
    color: #8b0000;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    background: #333;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 13px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partners {
        gap: 20px;
        padding: 20px;
    }

    .partners img {
        height: 50px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px 30px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .xeber-kart h3 {
        font-size: 15px !important;
        line-height: 1.4 !important;
        min-height: 40px !important;
    }
    .journal-card img {
        height: unset;
        object-fit: unset;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 13px;
    }
    .footer-section ul li {
        margin-bottom: 3px;
    }

    .footer-section h3 {
        margin-bottom: 8px;
    }

    .partners {
        flex-direction: column;
        gap: 15px;
    }

    .partners img {
        height: 45px;
    }
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    .title-text h1 {
        font-size: 16px;
    }

    .title-text h2 {
        font-size: 14px;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* .nav-menu > li {
        padding: 15px 20px;
        font-size: 13px;
    } */

    .main-heading {
        font-size: 26px;
    }

    .journal-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    /*     
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    } */
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        padding: 15px;
    }

    .logo-section {
        gap: 10px;
    }

    .title-text h1 {
        font-size: 14px;
    }

    .title-text h2 {
        font-size: 12px;
    }

    .slogan {
        font-size: 16px;
    }

    .lang-selector {
        padding: 6px 12px;
        font-size: 12px;
    }

    .search-icon {
        font-size: 20px;
    }

    .main-content {
        margin: 20px auto;
        /* padding: 0 15px; */
    }

    .xeber-kart img {
        height: unset !important;
    }

    .main-heading {
        font-size: 22px;
    }

    .description {
        font-size: 14px;
    }

    .section-content {
        padding: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journal-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .journal-card {
        padding: 15px;
    }

    .journal-card img {
        height: 180px;
    }

    .journal-card h3 {
        font-size: 14px;
    }

    /* .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .partners {
        gap: 15px;
    }
    
    .partners img {
        height: 40px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    } */
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .container {
        width: 95%;
        max-width: 95%;
    }
    .header {
        padding: 5px;
    }

    .title-text h1 {
        font-size: 11px;
    }

    .title-text h2 {
        font-size: 10px;
    }

    .header-right {
        gap: 10px;
    }

    .slogan {
        display: none;
    }

    .main-heading {
        font-size: 20px;
    }

    .date-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .journal-container {
        grid-template-columns: 1fr;
    }

    .section-content {
        padding: 15px;
    }

    .section-content h3 {
        font-size: 18px;
    }

    .section-content p {
        font-size: 14px;
    }
}
.mobile-nav .has-dropdown {
    position: relative;
}

.mobile-nav .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
}

.mobile-nav .has-dropdown.open .dropdown {
    max-height: 500px;
}

.mobile-nav .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mobile-nav .has-dropdown.open .arrow {
    transform: rotate(180deg);
}

.burger-menu {
    cursor: pointer;
    font-size: 24px;
    color: #8b0000;
    display: none;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 20px 21px;
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}
#burgerMenu {
    margin-left: 3px;
}
.burgerTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 6px;
}

.mobile-nav .search-container {
    display: flex;
    align-items: center;
    width: 85%;
}

.mobile-nav .search-input {
    flex: 1;
    padding: 5px 5px 5px 15px;
    border-radius: 4px;
    opacity: 1;
    width: 100%;
    font-size: 13px;
}

.mobile-nav .search-icon {
    border: none;
    margin-left: 5px;
    font-size: 13px;
    cursor: pointer;
}

.mobile-nav .lang-selector {
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 30%;
    margin-top: 10px;
}

.mobile-nav .nav-menu {
    list-style: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.mobile-nav .nav-menu li {
    padding: 13px 5px !important;
}

.mobile-nav .nav-menu > li.active {
    border-bottom: none;
}

.mobile-nav .nav-menu > li.active a {
    color: #8b0000;
}
.mobile-nav .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    background: none;
    padding: 0;
}

.mobile-nav .dropdown {
    padding-left: 8px;
    border-top: none;
    position: static;
    background: transparent;
    box-shadow: unset;
    margin-top: 5px;
}
.mobile-nav .dropdown li {
    padding: 10px !important;
}

.mobile-nav .has-dropdown::after {
    display: none;
}
.mobile-nav .has-dropdown:hover {
    background: transparent;
}

@media (max-width: 992px) {
    .burger-menu {
        display: block;
    }

    .mobileVersion,
    .navigation {
        display: none;
    }
}

/* ============================================ */
/* DEFAULT ANA SƏHİFƏ STİLLƏRİ */
/* ============================================ */

/* Hero Section */
.hero-section {
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: relative;
}
.hero-body {
    display: flex;
    justify-content: space-between;
}

.hero-slide {
    display: none;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.hero-slide.active {
    display: block;
}

.hero-left {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 50%;
    width: 50%;
    height: 100%;
}

.hero-footer {
    display: flex;
    justify-content: space-between;
}

.hero-date,
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: 15px;
}
.hero-date {
    background: #333;
    color: white;
}
.hero-badge {
    background: #8b0000;
    color: white;
}

.hero-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}
.hero-description p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Pagination under text */
.hero-dots {
    display: flex;
    gap: 10px;
    /* margin-top: 20px; */
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: #8b0000;
    width: 30px;
    border-radius: 6px;
}

/* Image area */
.hero-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Arrows under image */
.hero-arrows {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}
.arrow-btn {
    background: #8b0000;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 8px;
    transition: 0.3s;
}
.arrow-btn:hover {
    background: #a30000;
}

/* Son Xəbərlər Section */
.news-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #8b0000;
    display: inline-block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-badge {
    display: inline-block;
    background: #8b0000;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-date {
    font-size: 13px;
    color: #999;
}

/* Xidmətlər Section */
.services-section {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #8b0000;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Elmi Jurnallar Section */
.journals-section {
    margin-bottom: 50px;
}

.journals-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.journals-slider::-webkit-scrollbar {
    height: 8px;
}

.journals-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.journals-slider::-webkit-scrollbar-thumb {
    background: #8b0000;
    border-radius: 10px;
}

.journal-item {
    flex: 0 0 180px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.journal-item:hover {
    transform: scale(1.05);
}

.journal-item img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.journal-item p {
    font-size: 13px;
    color: #333;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-title {
        font-size: 22px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 20px;
    }
}

/* Rəhbərlik Bölməsi Kartı Dizayını */

#section-rehberlik .section-content {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

#section-rehberlik h3 {
    /* display: none; */
}

#section-rehberlik p {
    display: none;
}

/* Kartlar Konteyneri */
.rehberlik-kartlari {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    padding: 20px 0;
}

/* Kart Stilləri */
.rehber-karti {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rehber-karti:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #1a472a;
}

/* Kart Şəkli */
.rehber-sekil {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.rehber-sekil img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.rehber-sekil-avatar {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #1a472a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Kart İçeriyi */
.rehber-kart-icerik {
    padding: 25px;
}

.rehber-kart-icerik h3 {
    display: block;
    color: #1a472a;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.rehber-kart-icerik .rehber-pozisyon {
    display: block;
    color: #c2185b;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rehber-kart-icerik .rehber-tecrube {
    display: block;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin: 15px 0 0 0;
    font-style: italic;
}

/* Kart Dəstəyi */
.rehber-dastegi {
    /* border-top: 2px solid #f0f0f0; */
    /* margin-top: 15px; */
    /* padding-top: 15px; */
}

.rehber-dastegi p {
    display: block;
    color: #999;
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

/* Kiçik Kartlar (Müavinlər) */
.rehber-karti.kicik {
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
    border: 2px dashed #1a472a;
}

.rehber-karti.kicik .rehber-sekil {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    height: 160px;
}

.rehber-karti.kicik .rehber-kart-icerik {
    padding: 20px;
}

.rehber-karti.kicik .rehber-kart-icerik h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.rehber-karti.kicik .rehber-pozisyon {
    color: #1a472a;
    font-size: 13px;
}

/* Başlıq Dekorasyon */
.rehber-dekorasyon {
    text-align: center;
    margin: 30px 0 50px 0;
}

.rehber-dekorasyon h2 {
    font-size: 28px;
    color: #1a472a;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.rehber-dekorasyon::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a472a, #ffc107, #1a472a);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .rehberlik-kartlari {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .rehber-karti .rehber-sekil {
        height: 180px;
    }

    .rehber-kart-icerik {
        padding: 15px;
    }

    .rehber-kart-icerik h3 {
        font-size: 16px;
    }

    .rehber-pozisyon {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .rehberlik-kartlari {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }

    .rehber-karti .rehber-sekil {
        height: 140px;
    }

    .rehber-kart-icerik {
        padding: 12px;
    }

    .rehber-kart-icerik h3 {
        font-size: 14px;
    }

    .rehber-pozisyon {
        font-size: 11px;
    }

    .rehber-dekorasyon h2 {
        font-size: 22px;
    }
}

/* Xəbərlər Bölməsi - Şəkildəki kimi Dizayn */

#section-xeberler .main-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #1a472a;
}

/* Böyük Xəbər Kartı */
.xeber-ana-karti {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    /* align-items: center; */
    margin-bottom: 60px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.xeber-ana-sekil {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.xeber-ana-sekil img {
    display: block;
    border-radius: 5px;
    margin: 0 auto;
    width: auto;
    height: auto;
}

.xeber-ana-metn {
    display: flex;
    flex-direction: column;
}

.xeber-kategori {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.xeber-kategori.red {
    background: #ff6b6b;
    color: white;
}

.xeber-kategori.dark-red {
    background: #d63031;
    color: white;
}

.xeber-ana-baslik {
    font-size: 28px;
    font-weight: 700;
    color: #1a472a;
    margin: 15px 0 0 0;
    line-height: 1.4;
}

.xeber-ana-baslik::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ffc107;
    margin-top: 12px;
}

.xeber-ana-aciklama {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
}

.xeber-ana-metn-bloku p {
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    margin: 15px 0;
    text-align: justify;
}

.xeber-tarix {
    font-size: 12px;
    color: #999;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

/* Kiçik Şəkillər */
.xeber-kicik-sekiller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.xeber-kicik-item {
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.xeber-kicik-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.xeber-kicik-item img {
    width: 100%;
    height: auto;
    display: block;
}

.xeber-kicik-item p {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #1a472a;
    font-size: 14px;
}

/* Video Kartı */
.xeber-video-karti {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin: 60px 0;
    cursor: pointer;
}

.xeber-video-karti img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.xeber-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgba(255, 193, 7, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.xeber-video-karti:hover .xeber-play-icon {
    background: #ffc107;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Digər Xəbərlər Bölməsi */
.xeber-diger-xeberler {
    margin-top: 60px;
}

.xeber-diger-baslik {
    font-size: 26px;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1a472a;
}

.xeber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.xeber-grid-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.xeber-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.xeber-grid-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.xeber-grid-metn {
    padding: 20px;
}

.xeber-grid-baslik {
    font-size: 16px;
    font-weight: 600;
    color: #1a472a;
    margin: 10px 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .xeber-ana-karti {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .xeber-kicik-sekiller {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #section-xeberler .main-heading {
        font-size: 26px;
    }

    .xeber-ana-karti {
        grid-template-columns: 1fr;
        padding: 20px;
        margin-bottom: 40px;
    }

    .xeber-ana-sekil img {
        /* height: 300px; */
    }

    .xeber-ana-baslik {
        font-size: 22px;
    }

    .xeber-kicik-sekiller {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 40px 0;
    }

    .xeber-kicik-item img {
        /* height: 150px; */
    }

    .xeber-video-karti img {
        height: 250px;
    }

    .xeber-diger-baslik {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .xeber-ana-sekil img {
        /* height: unset; */
    }
    .journal-card img {
        height: unset;
    }
    #section-xeberler .main-heading {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .xeber-ana-karti {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .xeber-ana-baslik {
        font-size: 18px;
    }

    .xeber-kicik-sekiller {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .xeber-kicik-item img {
        /* height: 120px; */
    }

    .xeber-grid {
        grid-template-columns: 1fr;
    }

    .xeber-video-karti img {
        height: 200px;
    }
}

@media (max-width: 375px) {
    .footer-bottom p {
        font-size: 10px;
    }
    .footer-bottom {
        padding: 14px;
    }
}

/* Haqqında Bölməsi Dizayını - Şəkildəki kimi */

#section-haqqinda .main-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #1a472a;
    font-weight: 700;
}

#section-haqqinda .section-content {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

/* Böyük Şəkil + Mətn Konteyneri */
.haqqinda-ana-bloku {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Sol Tərəf - Şəkil */
.haqqinda-ana-sekil {
    width: 100%;
}

.haqqinda-ana-sekil img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Sağ Tərəf - Mətn */
.haqqinda-ana-metn {
    display: flex;
    flex-direction: column;
}

.haqqinda-ana-metn p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.haqqinda-ana-metn p:first-child {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 25px;
}

.haqqinda-ana-metn h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a472a;
    margin: 25px 0 12px 0;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.haqqinda-ana-metn h3:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.haqqinda-ana-metn ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px 0;
}

.haqqinda-ana-metn ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.haqqinda-ana-metn ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a472a;
    font-weight: bold;
    font-size: 16px;
}

/* Linkləri Göstər */
.haqqinda-baglantilar {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.haqqinda-baglantilar a {
    display: inline-block;
    color: #d63031;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s;
}

.haqqinda-baglantilar a:hover {
    color: #1a472a;
    text-decoration: underline;
}

/* Kiçik Şəkillər */
.haqqinda-kicik-sekiller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.haqqinda-kicik-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.haqqinda-kicik-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.haqqinda-kicik-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .haqqinda-ana-bloku {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .haqqinda-ana-sekil img {
        max-height: 350px;
    }

    .haqqinda-kicik-sekiller {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #section-haqqinda .main-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .haqqinda-ana-bloku {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 25px;
        margin-bottom: 40px;
    }

    .haqqinda-ana-sekil img {
        max-height: 300px;
    }

    .haqqinda-ana-metn p {
        font-size: 14px;
    }

    .haqqinda-ana-metn h3 {
        font-size: 16px;
    }

    .haqqinda-kicik-sekiller {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .haqqinda-kicik-item img {
        height: 150px;
    }

    .haqqinda-baglantilar a {
        display: inline;
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    #section-haqqinda .main-heading {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .haqqinda-ana-bloku {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .haqqinda-ana-sekil img {
        max-height: 220px;
    }

    .haqqinda-ana-metn p {
        font-size: 13px;
        margin-bottom: 15px;
        text-align: left;
    }

    .haqqinda-ana-metn h3 {
        font-size: 15px;
        margin: 20px 0 10px 0;
    }

    .haqqinda-ana-metn ul li {
        font-size: 13px;
        padding-left: 20px;
        margin-bottom: 6px;
    }

    .haqqinda-kicik-sekiller {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }

    .haqqinda-kicik-item img {
        height: 120px;
    }

    .haqqinda-baglantilar a {
        display: block;
        margin: 8px 0;
    }
}

/* Struktur Bölməsi - Organiqqram Stilində */

#section-struktur .main-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 80px;
    color: #1a472a;
    font-weight: 700;
}

#section-struktur .section-content {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

#section-struktur h3 {
    display: none;
}

#section-struktur p {
    display: none;
}

/* Organiqqram Konteyneri */
.struktur-organiqqram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* Seviye 1 - Direktor */
.struktur-seviye-1 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.struktur-seviye-1::after {
    content: "";
    position: absolute;
    bottom: -60px;
    width: 2px;
    height: 60px;
    background: #ddd;
    left: 50%;
    transform: translateX(-50%);
}

.struktur-kartı {
    background: #d63031;
    color: white;
    padding: 14px 4px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    min-width: 190px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.struktur-kartı:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Pasif Kartı */
.struktur-kartı.pasif {
    background: #e9ecef;
    color: #666;
}

.struktur-kartı.pasif:hover {
    background: #dee2e6;
    color: #555;
}

/* Seviye 2 - Müavvvnlər */
.struktur-seviye-2 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 60px;
    padding-top: 0;
}

/* Seviye 2 üst xətti */
.struktur-seviye-2::before {
    content: "";
    position: absolute;
    top: -40px;
    /* left: 25%;
    right: 25%; */
    height: 2px;
    background: #ddd;
    width: 93%;
}

/* Seviye 2 şaquli xətləri */
.struktur-seviye-2-item {
    position: relative;
    flex: 1;
    max-width: 200px;
}

.struktur-seviye-2-item::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: #ddd;
    transform: translateX(-50%);
}

/* Seviye 3 - Şöbələr */
.struktur-seviye-3 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* gap: 15px; */
    flex-wrap: wrap;
    padding-top: 0;
}

/* Seviye 3 üst xətti */
/* .struktur-seviye-3::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ddd;
} */

/* Seviye 3 şaquli xətləri */
.struktur-seviye-3-item {
    position: relative;
    /* top: 40px; */
    margin-top: 35px;
}

.struktur-seviye-3-item::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #ddd;
    transform: translateX(-50%);
}

/* Kiçik Kartı */
.struktur-kartı.kicik {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 160px;
}

/* İşçi Sayı Bölməsi */
.struktur-iscilerin-sayi {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.struktur-iscilerin-sayi h3 {
    display: block;
    font-size: 18px;
    color: #1a472a;
    margin-bottom: 10px;
    font-weight: 600;
}

.struktur-iscilerin-sayi p {
    display: block;
    font-size: 28px;
    color: #d63031;
    font-weight: 700;
    margin: 15px 0;
}

.struktur-iscilerin-sayi span {
    display: block;
    font-size: 14px;
    color: #999;
}

.rehber-detail {
    padding: 10px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.rehber-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rehber-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.back-link {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 20px;
    text-decoration: none;
    color: #1a1a4d;
    font-weight: bold;
    background: #f0f0f0;
    border-radius: 5px;
    transition: background 0.3s;
}

.back-link:hover {
    background: #e0e0e0;
}

.rehber-detail h2 {
    color: #1a1a4d;
    font-size: 2em;
    margin-bottom: 8px;
}

.rehber-detail h4 {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

.rehber-detail p {
    line-height: 1.8;
    font-size: 1.1em;
    color: #333;
    text-align: justify;
}

.hero-arrows {
    /* position: absolute; */
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    /* Heç bir margin-top olmasın! */
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 5px;
}

/* Sol və sağ ox */
.arrow-btn.prev-arrow {
    background: #a10000;
    color: #fff;
}

.arrow-btn.next-arrow {
    background: #fff;
    color: #333;
}

/* Hover effekti */
.arrow-btn:hover {
    background: #a10000;
    color: #fff;
}

/* Fokus üçün */
.arrow-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #a10000;
}

/* Responsive */
@media (min-width: 1500px) {
    .struktur-seviye-2 {
        gap: 40px;
        padding-top: 0 !important;
    }
    .struktur-seviye-2::before {
        width: 79% !important;
    }
}

@media (max-width: 1024px) {
    .struktur-seviye-2 {
        flex-wrap: wrap;
        gap: 20px;
        padding-top: 0 !important;
    }

    .struktur-seviye-2::before {
        width: 78%;
    }

    .struktur-seviye-3 {
        gap: 12px;
    }

    .struktur-kartı {
        min-width: 160px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .struktur-kartı.kicik {
        min-width: 140px;
        font-size: 12px;
    }
}
@media (max-width: 1024px) and (min-width: 768px) {
    .struktur-seviye-2-item:last-child {
        right: -100px !important;
    }
    .struktur-seviye-2-item:last-child::before {
        top: -119px;
        height: 117px;
    }
    .struktur-seviye-2-item:nth-last-child(2) {
        left: -100px !important;
    }
    .struktur-seviye-2-item:nth-last-child(2)::before {
        top: -119px;
        height: 117px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .struktur-seviye-2-item:last-child {
        right: -51px !important;
    }
    .struktur-seviye-2-item:last-child::before {
        top: -94px;
        height: 93px;
    }
    .struktur-seviye-2-item:nth-last-child(2) {
        left: -51px !important;
    }
    .struktur-seviye-2-item:nth-last-child(2)::before {
        top: -94px;
        height: 93px;
    }
}

@media (max-width: 768px) {
    #section-struktur .main-heading {
        font-size: 26px;
        margin-bottom: 60px;
    }

    .struktur-organiqqram {
        gap: 40px;
    }

    .struktur-seviye-1 {
        margin-bottom: 30px;
    }

    .struktur-seviye-1::after {
        height: 30px;
        bottom: -30px;
    }

    .struktur-seviye-2 {
        gap: 10px;
        margin-bottom: 40px;
    }

    .struktur-seviye-2::before {
        top: -30px;
    }

    .struktur-seviye-2-item::before {
        height: 30px;
        top: -30px;
    }

    .struktur-seviye-3 {
        gap: 10px;
    }

    .struktur-seviye-3::before {
        top: -25px;
        left: 5%;
        right: 5%;
    }

    .struktur-seviye-3-item::before {
        height: 25px;
        top: -25px;
    }

    .struktur-kartı {
        min-width: 140px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .struktur-kartı.kicik {
        min-width: 120px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .struktur-iscilerin-sayi {
        margin-top: 60px;
        padding: 30px;
    }

    .struktur-iscilerin-sayi p {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .xeber-ana-sekil img {
        /* height: unset; */
    }
    #section-struktur .main-heading {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .struktur-organiqqram {
        gap: 5px;
    }

    .struktur-seviye-1 {
        margin-bottom: 20px;
    }

    .struktur-seviye-1::after {
        height: 25px;
        bottom: -25px;
    }

    .struktur-seviye-2 {
        gap: 10px;
        margin-bottom: 30px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 10px;
    }

    .struktur-seviye-2::before {
        top: -25px;
    }

    .struktur-seviye-2-item::before {
        height: 25px;
        top: -25px;
    }

    .struktur-seviye-3 {
        gap: 8px;
        padding: 0 10px;
    }

    .struktur-seviye-3::before {
        display: none;
    }

    .struktur-seviye-3-item::before {
        display: none;
    }

    .struktur-kartı {
        min-width: 100px;
        padding: 8px 5px;
        font-size: 11px;
    }

    .struktur-kartı.kicik {
        min-width: 100px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .struktur-iscilerin-sayi {
        margin-top: 40px;
        padding: 20px;
    }

    .struktur-iscilerin-sayi h3 {
        font-size: 16px;
    }

    .struktur-iscilerin-sayi p {
        font-size: 20px;
    }
}

.section-content-committee {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-content-committee h2 {
    color: #8b0000;
    text-align: center;
    font-size: 24px;
    width: 85%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.section-content-committee strong {
    color: #8b0000;
}

.section-content-committee p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .section-content-committee {
        padding: 32px;
    }
    .section-content-committee h2 {
        font-size: 22px;
        width: 90%;
        margin-bottom: 18px;
    }
    .section-content-committee p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .section-content-committee {
        padding: 22px;
        border-radius: 8px;
    }
    .section-content-committee h2 {
        font-size: 20px;
        width: 100%;
        margin-bottom: 14px;
        padding: 0 6px;
    }
    .section-content-committee p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
        padding: 0 4px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .section-content-committee {
        padding: 14px;
        border-radius: 8px;
    }
    .section-content-committee h2 {
        font-size: 18px;
        width: 100%;
        margin-bottom: 10px;
        padding: 0 6px;
    }
    .section-content-committee p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
        padding: 0 6px;
    }
}

@media (max-width: 375px) {
    .section-content-committee {
        padding: 8px;
    }
    .section-content-committee h2 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .section-content-committee p {
        font-size: 12px;
        line-height: 1.45;
    }
}
