/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    
}
*:focus {
    outline: none!important;
}
body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}



/*** Works on common browsers ***/
::selection {
    background-color: #D39B63;
    color: #fff;
}

/*** Mozilla based browsers ***/
::-moz-selection {
    background-color: #D39B63;
    color: #fff;
}

/***For Other Browsers ***/
::-o-selection {
    background-color: #D39B63;
    color: #fff;
}

::-ms-selection {
    background-color: #D39B63;
    color: #fff;
}

/*** For Webkit ***/
::-webkit-selection {
    background-color: #D39B63;
    color: #fff;
}





/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
}

/* Logo Styles */
.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 35px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

/* Navigation Styles */
.navigation {
    display: flex;
    align-items: center;
    flex: 1;
    /*justify-content: center;*/
    justify-content: end;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #4B4B4B;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 17px;
    padding: 8px 12px;
    border-radius: 64px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #D39B63;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: #f1f5f2;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: #4B4B4B;
    margin: 2px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Language Picker Styles */
.language-picker {
    flex-shrink: 0;
    margin-left: 20px;
}

.language-dropdown {
    position: relative;
	    float: right;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid #e9ecef;
    padding: 8px 12px;
    border-radius: 64px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #4B4B4B;
}

.language-btn:hover {
    border-color: #D39B63;
    background-color: #ffffff;
    color: #D39B63;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 80px;
    margin-top: 4px;
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 8px 12px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    border-radius: 2px;
}

.language-option:hover {
    color: #D39B63;
}

.language-option.active {
    color: #D39B63;
    font-weight: 600;
}

/* Hero Section Styles */
.hero {
    background-color: #0A3542;
    background-image: url('images/appleseed_education_tree_l_transp.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1040px auto;
    padding: 40px 0 40px;
    overflow: hidden;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 4fr 3fr;
    gap: 24px;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    z-index: 2;
    padding-left: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Raleway', sans-serif;
    margin-top: 48px;
}

.hero-title-accent {
    color: #c38e55;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-family: 'Nunito Sans', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 32px;
    border-radius: 64px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #D39B63 0%, #c08a52 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c08a52 0%, #a67843 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(211, 155, 99, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-tree {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: fadeIn 2s ease-out forwards;
}

.hero-stats {
    background-color: white;
    margin-top: 40px;
    padding: 40px 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D39B63;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Nunito Sans', sans-serif;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* About Us and News Section */
.about-news-section {
    background-color: #f8f9fa;
    padding: 80px 0 40px 0;
}

.about-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 56px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Raleway', sans-serif;
    color: #D39B63;
}

.about-block .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-block h6.section-title {
    font-size: 16px;
    color: #000000;
}

.news-block {
    padding: 0px 20px 0 0;
}

.news-block .section-title {
    font-size: 16px;
    color: #000000;
}

.quote-block .section-title {
    font-size: 1.8rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #4d4d4d;
    margin-bottom: 1.1rem;
}

.highlights-section {
    padding: 80px 40px 40px 40px;
    background: #0a3542;
}

.about-highlights {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
}

.highlight-item {
    flex: 1;
    min-width: 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.highlight-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0px auto;
}

.highlight-icon svg {
    width: 48px;
    height: 48px;
    color: #0a3542;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.highlight-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0a3542;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
}

.highlight-item p {
    font-size: 1rem;
    color: #707e82;
    line-height: 1.25;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    padding-bottom: 20px;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 0.75rem;
    color: #D39B63;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.news-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D39B63;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
    margin-top: 1.1rem;
}

.section-link:hover {
    color: #c38e55;
}

.section-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.section-link:hover::after {
    transform: translateX(4px);
}

/* Quote Block Styles */
.quote-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 3.25rem;
}

.quote-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 30px 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: left;
}

.quote-text {
font-size: 1.4rem;
    font-style: italic;
    line-height: 1.3;
    color: #d39b63;
    margin: 80px 0 20px 0;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
}

.quote-author {
    font-size: 1rem;
    color: #D39B63;
    font-weight: 600;
    font-style: normal;
    font-family: 'Nunito Sans', sans-serif;
}

.quote-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: #0a35420a;
    border-radius: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 50%;
}

.quote-stats .stat-item:hover {
    transform: translateY(-4px);
}

.quote-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D39B63;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
}

.quote-stats .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Nunito Sans', sans-serif;
}

/* Demo Content Styles */
.main-content {
    padding: 0;
}

.demo-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.demo-section h1 {
    color: #D39B63;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.demo-section p {
    color: #6c757d;
    font-size: 1.2rem;
}

.values-title {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 2rem;
    text-align: center;
}

/* Projects Section Styles */
.projects-section {
    background-color: transparent;
    background-image: url('images/world_map_1400_50.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 40px 20px 40px;
    position: relative;
}

/*.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(248, 249, 250, 0.6);
    z-index: 1;
}*/

.projects-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-header .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.projects-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.3;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Nunito Sans', sans-serif;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.project-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.project-status {
    background-color: #D39B63;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Nunito Sans', sans-serif;
}

.project-status.development {
    background-color: #6c757d;
}

.project-content {
    padding: 24px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    font-family: 'Raleway', sans-serif;
}

.project-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Nunito Sans', sans-serif;
}

.project-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.project-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    font-family: 'Nunito Sans', sans-serif;
}

.project-content li:before {
    content: '•';
    color: #D39B63;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.project-content li:last-child {
    margin-bottom: 0;
}

.project-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.project-location,
.project-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #828c95;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.25;
}

.project-location svg,
.project-duration svg {
    color: #D39B63;
    flex-shrink: 0;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D39B63;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
}

.project-link:hover {
    color: #c38e55;
}

.project-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.project-link:hover::after {
    transform: translateX(4px);
}

.projects-footer {
    text-align: center;
}

/* Footer Styles */
.footer {
    background-color: #0a3542;
    color: #ffffff;
    padding: 60px 0 0 0;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #b8c5d1;
    margin-bottom: 0.45rem;
}
.footer-section.company_info{
   padding-left: 3rem;
}
.footer-section.company_info p {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #b8c5d1;
    margin-bottom: 0.2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8c5d1;
    margin-bottom: 30px;
    font-family: 'Nunito Sans', sans-serif;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #D39B63;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #b8c5d1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
}

.footer-link:hover {
    color: #D39B63;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    padding-left: 0px;
}

.contact-item svg {
    color: #D39B63;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #b8c5d1;
    font-size: 0.8rem;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal-link {
    color: #b8c5d1;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
}

.footer-legal-link:hover {
    color: #D39B63;
}


.footer-contact-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: 'Nunito Sans', sans-serif;
}

.footer-contact-link:hover {
    color: #D39B63;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .navigation {
        order:2;
        justify-content: flex-end;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding-top: 40px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f1f3f4;
    }
    
    .nav-link {
        display: block;
        padding: 20px;
        width: 100%;
        font-size: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: 10px;
    }
    
    .language-picker {
        order: 1;
        margin-left: 20px;
        margin-right: 0;
    }
    
    .language-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .demo-section h1 {
        font-size: 2rem;
    }
    
    .demo-section p {
        font-size: 1rem;
    }
    
    /* Hero Responsive Styles */
    .hero {
        padding: 60px 0 20px;
        background-size: 780px auto;
        background-position: center center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding-left: 20px;
    }
    
    .hero-tree {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 30px;
    }
    
        .btn {
        padding: 14px 32px;
        font-size: 15px;
        min-width: 160px;
        letter-spacing: 0.3px;
    }
    
    /* About News Responsive */
    .about-news-section {
        padding: 60px 0;
    }
    
    .about-news-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: left;
    }
    
    .about-block .section-title {
        font-size: 2.2rem;
    }
    
    .news-block .section-title,
    .quote-block .section-title {
        font-size: 2rem;
    }
    
    .about-description {
        text-align: left;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-container {
        padding: 0 20px;
    }
    
    .projects-header {
        margin-bottom: 40px;
    }
    
    .projects-header .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .projects-subtitle {
        font-size: 1.1rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-content ul {
        margin-bottom: 18px;
    }
    
    .project-content li {
        padding-left: 18px;
        margin-bottom: 7px;
        font-size: 0.87rem;
    }
    
    .project-content li:before {
        font-size: 1.1rem;
    }
    
    .project-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer {
        padding: 50px 0 0 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        gap: 10px;
		padding-left: 0px;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        gap: 15px;
    }
    
    .news-items {
        gap: 20px;
    }
    
    .quote-content {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .quote-text {
        font-size: 1.2rem;
		margin: 0px 0 20px 0;
		text-align: center;
    }
    
    .quote-stats {
        flex-direction: row;
        gap: 15px;
    }
    
    .quote-stats .stat-item {
        flex: 1;
        padding: 15px;
    }
    
    .quote-stats .stat-number {
        font-size: 2rem;
    }
    
    .hero-stats {
        margin-top: 30px;
        padding: 30px 0;
    }

    .hero-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .language-btn {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .demo-section h1 {
        font-size: 1.8rem;
    }
    
    /* Hero Mobile Styles */
    .hero {
        padding: 20px 0 20px;
        background-size: 585px auto;
        background-position: center center;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 24px;
    }
    
    .hero-content {
        padding-left: 10px;
    }
    
    .hero-tree {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.35;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 120px;
        letter-spacing: 0.3px;
    }
    
    /* About News Mobile */
    .about-news-section {
        padding: 40px 0 20px 0;
    }


    .highlights-section {
        padding: 40px 40px;
    }
    
    .about-news-container {
        padding: 0 15px;
        gap: 0px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-block .section-title {
        font-size: 2rem;
    }
    
    .news-block .section-title,
    .quote-block .section-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .highlight-item {
        padding: 16px;
    }
    
    .projects-section {
        padding: 40px 0;
    }
    
    .projects-container {
        padding: 0 15px;
    }
    
    .projects-header {
        margin-bottom: 30px;
    }
    
    .projects-header .section-title, .values-title {
        font-size: 2rem;
    }
    
    .projects-subtitle {
        font-size: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-content {
        padding: 16px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .project-description {
        font-size: 0.9rem;
    }
    
    .project-content ul {
        margin-bottom: 16px;
    }
    
    .project-content li {
        padding-left: 16px;
        margin-bottom: 6px;
        font-size: 0.85rem;
    }
    
    .project-content li:before {
        font-size: 1rem;
    }
    
    .project-details {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .project-location,
    .project-duration {
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section {
        text-align: start;
    }
    
    .footer-logo {
        margin-bottom: 16px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: start;
        gap: 10px;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    
    .footer-links {
        text-align: start;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-contact {
        align-items: start;
        gap: 12px;
		
		padding-bottom:40px;
    }
	
	.footer-section.company_info

		 {
			padding-left: 0rem;
		}
		
		.footer-bottom-content{
			align-items: start;
		}

    
    .contact-item {
        font-size: 0.85rem;
        gap: 8px;
		padding-left: 0px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: start;
        gap: 12px;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 12px;
    }
    
    .footer-legal-link {
        font-size: 0.85rem;
    }
    
    .highlight-icon {
        width: 56px;
        height: 56px;
    }
    
    .highlight-icon svg {
        width: 38px;
        height: 38px;
    }
    
    .highlight-item h3 {
        font-size: 1.2rem;
    }
    
    .news-items {
        gap: 16px;
        margin-bottom: 0px;
    }
    
    .news-item {
        padding: 10px 0 10px 0;
    }

    .news-block .section-title {
        font-size: 16px;
        color: #000000;
        margin-bottom: 10px;
    }

    .news-block {
        padding: 0px 0px 0 0;
        margin-bottom: 60px;
    }

    .section-link{
        font-size: 0.9rem;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .quote-content {
        padding: 10px 20px;
        margin-bottom: 0px;
    }

    .quote-block{
        margin-top: 10px;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .quote-stats {
        flex-direction: column;
        gap: 12px;
    }
    .quote-stats .stat-item{
        width: 100%;
    }
    
    .quote-stats .stat-item {
        flex: 1;
        padding: 12px;
    }
    
    .quote-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .quote-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        margin-top: 20px;
        padding: 24px 0;
    }

    .hero-stats-container {
        padding: 0 15px;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.active {
    animation: fadeIn 0.3s ease forwards;
} 