html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    color: #231F20;
    line-height: 1.6;
    transition: opacity 0.3s;
}
/* Navigation Styles */
nav {
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
nav .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
nav .flex img {
    height: 48px;
    object-fit: contain;
}
nav .hidden.md\:flex {
    display: none;
}
@media (min-width: 768px) {
    nav .hidden.md\:flex {
        display: flex;
        align-items: center;
        gap: 36px;
    }
}
.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}
.nav-link:hover {
    color: #1f7269;
}
.nav-link.active {
    color: #1f7269;
    font-weight: 600;
}
.relative {
    position: relative;
}
.language-btn {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between globe and text */
    background: transparent;
    color: #374151; /* Neutral dark gray */
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 999px; /* Rounded pill shape */
    font-size: 14px;
}
.language-btn:hover {
    color: #1f7269; /* Primary color on hover */
    background: rgba(31, 114, 105, 0.05); /* Subtle primary tint background */
    border-color: rgba(31, 114, 105, 0.1);
}
.language-btn i.fa-globe {
    font-size: 16px;
}
.language-btn i.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}
/* Rotate chevron when dropdown is open */
.language-btn[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}
#languageDropdown {
    position: absolute;
    top: calc(100% + 8px); /* slightly below button */
    right: 0;
    background: #FFFFFF;
    border-radius: 12px; /* More rounded */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Soft shadow */
    padding: 6px;
    min-width: 160px;
    display: block;
    margin-top: 0;
    border: 1px solid rgba(0,0,0,0.05); /* very light border */
    transform-origin: top right;
    animation: scaleIn 0.2s ease-out;
    overflow: hidden;
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
#languageDropdown.hidden {
    display: none;
    animation: none;
}
#languageDropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}
#languageDropdown a:hover {
    background: #f0fdfa; /* light teal background */
    color: #1f7269;
}
/* Add flags or icons to dropdown items if desired later */
#mobileMenuBtn {
    display: block;
    color: #374151;
    background: transparent;
    border: none;
    cursor: pointer;
}
@media (min-width: 768px) {
    #mobileMenuBtn {
        display: none;
    }
}
#mobileMenu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #FFFFFF;
    border-top: 1px solid #e5e7eb;
    display: none;
    z-index: 998;
    overflow-y: auto;
}
#mobileMenu.hidden {
    display: none;
}
@media (max-width: 767px) {
    #mobileMenu:not(.hidden) {
        display: block;
    }
}
#mobileMenu .container {
    padding: 12px 16px;
}
#mobileMenu a {
    display: block;
    padding: 8px 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}
#mobileMenu a:hover {
    color: #1f7269;
}
#mobileMenu .flex {
    display: flex;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
}
#mobileMenu button {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: #FFFFFF;
    color: #374151;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}
#mobileMenu button:first-child {
    color: #1f7269;
    border-color: #1f7269;
}
#mobileMenu button:first-child:hover {
    background: #f0f9f8;
}
#mobileMenu button:last-child:hover {
    background: #f0f9f8;
}
/* Header Styles */
header {
    position: relative;
    color: #FFFFFF;
    padding: 96px 16px 80px;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1c5b55 0%, #16423C 100%);
}
@media (min-width: 768px) {
    header {
        padding: 128px 16px 112px;
    }
}
header .absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}
header .absolute div {
    width: 100%;
    height: 100%;
    background: url('https://karabakh.edu.az/uploads/2024/12/30/KU_Main_Logo_AZE-67728fe8b6e3e.svg') no-repeat center;
    background-size: contain;
}
header .container {
    position: relative;
    z-index: 10;
}
header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    animation: fadeIn 0.5s ease-in-out;
}
header h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 24px;
    animation: fadeIn 0.7s ease-in-out;
    letter-spacing: 0.5px;
}
@media (min-width: 768px) {
    header h1 {
        font-size: 42px;
    }
    header h2 {
        font-size: 56px;
    }
}
@media (min-width: 1024px) {
    header h1 {
        font-size: 52px;
    }
    header h2 {
        font-size: 70px;
    }
}
header p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    header p {
        font-size: 18px;
    }
}
/* Hero Image Styles */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1c5b55;
}
/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
}
section {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    animation: slideUp 0.6s ease-out;
    display: none;
}
section.active {
    display: block;
}
.section-title {
    color: #16423C;
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 12px;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #44766C;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}
.conference-details, .submission-info {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
    border-left: 4px solid #16423C;
}
.conference-details h3, .submission-info h3 {
    color: #16423C;
    margin-bottom: 12px;
    font-size: 1.3rem;
}
.conference-details ul {
    list-style: none;
    padding-left: 0;
}
.conference-details ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}
.conference-details ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16423C;
    font-weight: bold;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #44766C;
    padding: 16px;
    border-radius: 8px;
    color: #FFFFFF;
    transition: transform 0.3s;
}
.detail-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(68, 118, 108, 0.4);
}
.detail-item i {
    font-size: 1.5rem;
    color: #FFFFFF;
}
.timeline {
    position: relative;
    margin: 24px 0;
    padding: 24px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 4px;
    height: 100%;
    background: #44766C;
}
.timeline-item {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.timeline-icon {
    width: 60px;
    height: 60px;
    background: #16423C;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    flex-shrink: 0;
}
.timeline-content {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex: 1;
    transition: transform 0.3s;
    border-left: 3px solid #44766C;
}
.timeline-content:hover {
    transform: translateX(4px);
}
.timeline-content h3 {
    margin: 0 0 10px;
    color: #16423C;
    font-size: 1.2rem;
    font-weight: 600;
}
.timeline-content p {
    margin: 0;
    color: #231F20;
    font-size: 1rem;
    font-weight: 500;
}
.committee-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}
.committee-box {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    transition: transform 0.3s;
    border-top: 4px solid #16423C;
}
.committee-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.committee-box h3 {
    color: #16423C;
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid #44766C;
}
.committee-box ul {
    list-style: none;
    padding-left: 0;
}
.committee-box ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
}
.committee-box ul li:last-child {
    border-bottom: none;
}
.inline-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}
/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}
.partner-box {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #16423C;
}
.partner-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.partner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.partner-logo {
    max-width: 180px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}
.partner-box h3 {
    color: #16423C;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.partner-box p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}
.academic-partners {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #e5e7eb;
}
.academic-partner-box {
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s;
}
.academic-partner-box:hover {
    background: #f0f9f8;
    transform: translateY(-4px);
}
.partner-logo-small {
    max-width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 8px;
}
.academic-partner-box p {
    font-size: 0.85rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
}
.hover-lift {
    transition: transform 0.3s, box-shadow 0.3s;
}
.hover-lift:hover {
    transform: translateY(-8px);
}
/* Sections */
.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 24px 0;
}
.section-box {
    background: #44766C;
    padding: 24px;
    border-radius: 8px;
    border-top: 4px solid #16423C;
    color: #FFFFFF;
    transition: transform 0.3s;
}
.section-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(68, 118, 108, 0.4);
}
.section-box h3 {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 700;
}
.section-box h3 i {
    color: #FFFFFF;
    font-size: 1.4rem;
}
.section-box ul {
    list-style: none;
    padding-left: 0;
}
.section-box ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #f0f9f8;
}
.section-box ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d3e8bf;
    font-weight: bold;
}
.languages-box {
    background: #16423C;
    color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}
.languages-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}
.languages-box i {
    color: #d3e8bf;
    font-size: 1.4rem;
}
.submission-info p {
    margin: 12px 0;
}
.submission-info p a {
    color: #1f7269;
    text-decoration: none;
    font-weight: 500;
}
.submission-info p a:hover {
    color: #16423C;
    text-decoration: underline;
}
.download-btn, .submit-link, .map-link {
    display: inline-block;
    background: #1f7269;
    color: #FFFFFF !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.3s;
    font-weight: 500;
    margin-left: 8px;
}
.download-btn:hover, .submit-link:hover, .map-link:hover {
    background: #16423C;
    transform: translateY(-2px);
}
.note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed #d1d5db;
}
.submission-guidelines {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}
.submission-guidelines h3 {
    color: #16423C;
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 700;
}
.submission-guidelines ul {
    list-style: disc;
    padding-left: 24px;
}
.submission-guidelines ul li {
    padding: 8px 0;
    color: #374151;
}
/* Contact Section */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}
.contact-info-box {
    background: #f9fafb;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #16423C;
}
.contact-info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.contact-info-box h3 {
    color: #16423C;
    font-size: 1.2rem;
    margin: 12px 0;
    font-weight: 600;
}
.contact-info-box p {
    color: #374151;
    margin: 8px 0;
}
.contact-info-box a {
    color: #1f7269;
    text-decoration: none;
    font-weight: 500;
}
.contact-info-box a:hover {
    color: #16423C;
    text-decoration: underline;
}
/* Contact Form Styles */
.contact-form {
    margin-top: 32px;
}
.contact-form h3 {
    text-align: center;
    color: #16423C;
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 700;
}
#contactForm {
    max-width: 700px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
#contactForm label p {
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}
#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}
#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #1f7269;
}
#contactForm textarea {
    resize: vertical;
}
#contactForm button {
    background: #1f7269;
    color: #ffffff;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
}
#contactForm button:hover {
    background: #16423C;
    transform: translateY(-2px);
}
#formMessage {
    margin-top: 16px;
    color: #1f7269;
    text-align: center;
    font-weight: 500;
}
.grid {
    display: grid;
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.gap-4 {
    gap: 1rem;
}
.gap-6 {
    gap: 1.5rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.block {
    display: block;
}
.w-full {
    width: 100%;
}
.p-2 {
    padding: 0.5rem;
}
.p-6 {
    padding: 1.5rem;
}
.border {
    border-width: 1px;
}
.border-gray-300 {
    border-color: #d1d5db;
}
.rounded {
    border-radius: 0.25rem;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.text-center {
    text-align: center;
}
.max-w-\[700px\] {
    max-width: 700px;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.text-sm {
    font-size: 0.875rem;
}
.text-xl {
    font-size: 1.25rem;
}
.text-2xl {
    font-size: 1.5rem;
}
.font-bold {
    font-weight: 700;
}
.bg-white {
    background-color: #ffffff;
}
.bg-gray-50 {
    background-color: #f9fafb;
}
.text-gray-600 {
    color: #4b5563;
}
.text-primary-600 {
    color: #1f7269;
}
.fa-2x {
    font-size: 2em;
}
.list-disc {
    list-style-type: disc;
}
.pl-6 {
    padding-left: 1.5rem;
}
.space-y-3 > * + * {
    margin-top: 0.75rem;
}
/* Footer Styles */
footer {
    background: linear-gradient(135deg, #16423C, #231F20);
    color: #FFFFFF;
    padding: 48px 20px 24px;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1;
    min-width: 250px;
}
.footer-contact h3, .footer-social h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}
.footer-contact h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #d3e8bf;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}
.footer-contact p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.footer-contact i {
    color: #caeaf1;
    font-size: 1.1rem;
}
.footer-contact a {
    color: #d3e8bf;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact a:hover {
    color: #FFFFFF;
}
.social-icons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 20px;
}
.social-icon {
    background: #44766C;
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.3rem;
    border: 2px solid #caeaf1;
    text-decoration: none;
}
.social-icon:hover {
    background: #d3e8bf;
    color: #16423C;
    transform: scale(1.15) rotate(5deg);
}
.footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #44766C;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #caeaf1;
}
/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* Media Queries */
@media (max-width: 768px) {
    .about-logo {
        height: 150px;
    }
    header {
        padding: 80px 16px 60px;
    }
    header h1 {
        font-size: 28px;
    }
    header h2 {
        font-size: 36px;
    }
    header p {
        font-size: 14px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .committee-container, .sections-grid, .partners-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-contact h3::after, .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
    .footer-contact p {
        justify-content: center;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .timeline-item {
        gap: 15px;
    }
    nav .hidden.md\:flex {
        gap: 16px;
    }
    nav .flex img {
        height: 32px;
    }
    .nav-link {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    header h1 {
        font-size: 24px;
    }
    header h2 {
        font-size: 32px;
    }
    header p {
        font-size: 13px;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .timeline-content {
        padding: 16px;
    }
    .timeline-content h3 {
        font-size: 1rem;
    }
    .timeline-content p {
        font-size: 0.9rem;
    }
    section {
        padding: 24px 20px;
    }
    .partner-logo {
        max-width: 140px;
        height: 100px;
    }
}
/* Color Variables */
:root {
    --primary-50: #f0f9f8;
    --primary-100: #d1f0ea;
    --primary-200: #a3e1d5;
    --primary-300: #6dc9bb;
    --primary-400: #40aa9c;
    --primary-500: #2a8e82;
    --primary-600: #1f7269;
    --primary-700: #1c5b55;
    --primary-800: #1a4a46;
    --primary-900: #1a3f3c;
    --secondary: #1e3a36;
    --accent: #d1e8bf;
}
/* Logo görünməsini yaxşılaşdırmaq üçün */
header .absolute {
    opacity: 0.25 !important; /* desktopda daha aydın */
}
@media (max-width: 767px) {
    header .absolute {
        opacity: 0.35 !important; /* mobil üçün daha çox görünürlük */
    }
    header .absolute div {
        background-size: 70% !important; /* mobil ekranlarda logonu böyüt */
    }
    .hero-image {
        opacity: 0.15 !important;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-partner-logo {
    max-height: 120px;
    display: block;
    margin: 0 auto 20px;
    object-fit: contain;
}

.modal-title {
    color: #16423C;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.modal-desc {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

.modal-text {
    line-height: 1.6;
    color: #333;
}

.modal-btn {
    display: inline-block;
    background-color: #1f7269;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    transition: background-color 0.3s;
}

.modal-btn:hover {
    background-color: #16423C;
}

.cursor-pointer {
    cursor: pointer;
}
.about-logo {
    height: 240px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}