/* Variables */
:root {
  --sylcast-spring: #8DA939;
  --sylcast-spring-transparent: #8da939;
  --sylcast-summer: #13381C;
  --sylcast-september: #E0B84C;
  --sylcast-october: #A86E27;
  --body-text-color: #36454F;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
    font-family: Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--sylcast-summer);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--sylcast-summer);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* box-shadow: 0 1px 10px var(--sylcast-spring-transparent); */
    box-shadow: 0 1px 1px var(--sylcast-spring-transparent);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-brand a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand a:hover {
    opacity: 0.8;
}

.nav-logo {
    margin-right: 10px;
    height: 1.7rem;
    width: auto;
}

.nav-sylcast {
    margin-right: 10px;
    height: 1.4rem;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link-contactus {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: var(--sylcast-spring);
    transform: translateY(-2px);
}


.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.nav-langoption {
    color: white;
    font-weight: 500;
}

.nav-langoptionlink {
    color: white;
    font-weight: 500;
    text-decoration: none;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown.active .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--sylcast-summer);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-dropdown-link:hover {
    background-color: rgba(255,255,255,0.2);
    /* padding-left: 2rem; */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header-img {
    width: 100%;
}

.page-header-img .container {
    max-width: 100%;
    padding: 0;
}

.header-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.page-header {
    width: 100%;
    background-color: var(--sylcast-summer);
    color: white;
    text-align: center;
    padding: 2rem 0 2rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 350;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    /* padding: 1.5rem 0; */
    background: var(--sylcast-summer);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.about-text {
    background: white;
    padding: 1.8rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--sylcast-summer);
}

.about-text h3 {
    font-size: 1.6rem;
    margin-top: 0rem;
    margin-bottom: 1.5rem;
    color: var(--sylcast-summer);
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--body-text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Technology Content */

.tech_ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.tech_ul li {
    margin-bottom: 0.75rem;
    color: var(--body-text-color);
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.tech_ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sylcast-spring);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 100%;
}

.about-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    /* max-height: 650px; */
}


/* Technology Section */
.technology {
    padding: 5rem 0;
    background: white;
}

.technology h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--sylcast-summer);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--sylcast-summer);
    font-weight: 500;
}

/* Applications Section */
.applications {
    padding: 2rem 0;
    background: var(--sylcast-summer);
}

.applications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.applications > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.app-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.app-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.app-card i {
    font-size: 2.5rem;
    color: var(--sylcast-summer);
    margin-bottom: 1rem;
}

.app-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--sylcast-summer);
}

.app-card p {
    color: var(--body-text-color);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--sylcast-summer);
    color: white;
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--sylcast-spring);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--sylcast-spring);
}

.footer-sylcast {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    height: 1.2rem;
    width: auto;
}

.footer-section p {
    color: var(--sylcast-spring);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--sylcast-spring);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--sylcast-spring);
    color: var(--sylcast-summer);
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #e9efe7;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 0rem;
    color: var(--sylcast-spring);
    font-weight: 100;
}

.footer-bottom span {
    font-size: 0.75rem;
}

.footer-bottom a {
    font-size: 0.75rem;
}

.footer-legal {
    color: var(--sylcast-spring);
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: white;
}

.partners-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--sylcast-summer);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* News Articles Section */
.news-articles {
    padding: 0rem 0;
    background: var(--sylcast-summer);
}

.news-article {
    background: white;
    margin-bottom: 3rem;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-article:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.article-header {
    margin-bottom: 2rem;
}

.article-image {
    width: 25%;
    height: auto;
    max-height: 100px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    display: block;
}

.article-header-content {
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--sylcast-summer);
    font-weight: 600;
}

.article-date {
    font-size: 1rem;
    color: var(--body-text-color);
    margin: 0;
    font-weight: 400;
    opacity: 0.8;
}

.article-content {
    color: var(--body-text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h4 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--sylcast-summer);
    font-weight: 600;
}

.article-content a {
    color: var(--sylcast-summer);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: var(--sylcast-spring);
}

.article-content p:last-child {
    margin-bottom: 0;
}

/* Legal Section */

.about-legal {
    padding: 2rem 0;
    background: var(--sylcast-summer);
}

.about-legal h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--sylcast-spring);
}

.about-legal h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--sylcast-summer);
}

.about-legal p {
    margin-bottom: 0.5rem;
    color:var(--sylcast-spring);
    line-height: 1.8;
}

/* Map Section */
.map-section {
    margin-top: 2rem;
    height: auto;
}

.map-container {
    height: 488px;
}


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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: 100%;
        top: var(--navbar-height, 70px);
        flex-direction: column;
        background-color: var(--sylcast-summer);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0;
        margin: 0;
        margin-top: 1rem;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        text-align: center;
        width: 100%;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
    }
    
    .nav-dropdown-link {
        padding: 0.5rem 1rem;
        text-align: center;
        display: block;
    }
    
    .nav-dropdown-link:hover {
        padding-left: 1rem;
    }
    
    .nav-dropdown.active .nav-dropdown-toggle {
        text-align: center;
    }
    
    .nav-dropdown.active {
        width: 100%;
    }
    
    .map-section {
        padding-top: 0;
        height: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid,
    .app-grid,
    .support-grid,
    .ways-to-support .support-grid,
    .contact-options {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .partners-logos {
        gap: 2rem;
    }
    
    .partner-logo {
        height: 60px;
    }
    
    .logo-img {
        max-height: 50px;
        max-width: 120px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .news-article {
        padding: 2rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-content h4 {
        font-size: 1.3rem;
    }

    .article-image {
    width: 50%;
    }

}

@media (max-width: 480px) {
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    
    .container {
        padding: 0 15px;
    }
    
    .news-article {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.25rem;
    }
    
    .article-date {
        font-size: 0.9rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h4 {
        font-size: 1.2rem;
    }
} 
