:root {
    --primary-color: #006d50;
    --secondary-color: #ffffff;
    --background-color: #ffffff;
    --text-color: #1d1d1d;
    --card-background: #d3ebe1;
    --link-hover: #B9dccf;
    --border-color: #006d5020;
    --accent-color: #006d50;
    --input-bg: #ffffff;
    --input-text: #323232;
    --input-border: #d3ebe1;
    --input-focus: #006d50;
    --gallery-bg: #f7f7f7;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust this based on your header height */
}
/* Release Card List Margin*/

.release-card ul {
  margin-left: 2.5rem;
}
/* Add to existing modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Ensure no-scroll class works */
.no-scroll {
    overflow: hidden;
}

/* Make sure hidden class works properly */
.hidden {
    display: none !important;
}

/* Modal close button styling */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    z-index: 1001;
}


.modal {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
    color: var(--text-color);
    border: solid 1px var(--border-color);
}

.modal-close:hover {
    color: var(--link-hover);
}

.captcha-container {
    text-align: center;
    margin: 1rem 0;
}

.captcha-display {
    font-size: 2rem;
    letter-spacing: 3px;
    background: var(--background-color);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    user-select: none;
    color: var(--primary-color);
}

.captcha-input {
    width: 100%;
    padding: 0.5rem;
    margin: 1rem 0;
    border: 1px solid var(--input-border);
    border-radius: 4px;
    background-color: var(--input-bg);
    color: var(--text-color);
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.modal-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.modal-submit {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.modal-submit:hover {
    background-color: var(--link-hover) ;
    color: var(--secondary-color);
    border: 2px solid var(--link-hover);
}

.modal-cancel {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.modal-cancel:hover {
    color: var(--link-hover);
    border-color: var(--link-hover);
    background-color: var(--secondary-color);
}

.modal-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}
/* Form input styles */
input, textarea, select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background-color: var(--input-bg);
    color: var(--input-text);
    border: 1px solid var(--input-border);
    border-radius: 4px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--input-focus);
}

/* Autofill styles */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--input-text);
    -webkit-box-shadow: 0 0 0px 1000px var(--input-bg) inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Modal buttons */
.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cancel-btn {
    background-color: #ccc;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}
.slick-prev::before, .slick-next::before {
    font-size: 30px !important; 
    color: var(--primary-color) !important;
  }

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

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

.logo {
    width: auto;
    max-height: 300px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .logo {
        max-height: 250px;
    }
}

.hero {
    text-align: center;
    padding: 40px 0;
}

.hero-head {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-head {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-titles {
        gap: 10px;
    }
    
    .hero-titles h1 {
        font-size: 2rem;
        line-height: 1;
    }
    
    .hero-titles .tagline {
        font-size: 1rem;
    }
}

.hero-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-titles h1 {
    line-height: 1;
}

h1 {
    font-size: 2rem;
    color: var(--primary-color);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.features {
    padding: 60px 0;
    position: relative;
    z-index: 100;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.feature-card {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.feature-card h3 {
    color: var(--primary-color);
}

.screenshots {
    padding: 60px 0;
}

header {
    padding: 30px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: opacity 0.5s ease;
    height: 150px;
}

.main-nav {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.main-nav.visible {
    transform: translateY(0);
    z-index: 9999;
}

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

.nav-links, .footer-links {
    display: flex;
    list-style: none;
}

.nav-links li, .footer-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.content-wrapper {
    max-width: 1024px;
    padding-top: 300px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 1000;
    position: relative;
}

.last-updated {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

h3 {
    color: var(--accent-color);
}

p, ul, li {
    margin-bottom: 15px;
}

ul {
    padding-left: 50px;
}

li {
    margin-bottom: 10px;
}


strong {
    color: var(--primary-color);
}
.copyright p strong {
    color: var(--secondary-color);
}

.release-card {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.release-version {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.release-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.release-notes ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.release-notes li {
    margin-bottom: 8px;
}

.release-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 15px;
}

.type-feature {
    background-color: #2ecc71;
    color: #000;
}

.type-bugfix {
    background-color: #3498db;
    color: #000;
}

.type-improvement {
    background-color: #9b59b6;
    color: #fff;
}

.type-security {
    background-color: #e74c3c;
    color: #fff;
}

.app-icon img {
    max-width: 150px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.qr-code {
    margin-top: 30px;
}

.qr-code img {
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.qr-code p {
    margin-top: 10px;
    font-size: 0.9rem;
}

#download-buttons {
    display: none;
}

.download-btn {
    display: none;
}

.download-btn img {
    width: 300px;
}

.screenshots-section {
    margin: 60px 0;
}

.screenshot-type-heading {
    color: var(--primary-color);
    margin: 30px 0 20px;
    text-align: center;
    font-size: 1.5rem;
}

.screenshot-container {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.screenshot-carousel-container {
    position: relative;
    width: 100%;
}

.screenshot-carousel {
    padding: 20px 0;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide img {
    display: block;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(51, 51, 51);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    line-height: 0;
    text-indent: 0;
    padding: 0;
}

.slick-arrow:hover {
    background-color: var(--primary-color);
}

.slick-prev {
    left: -20px !important;
}

.slick-next {
    right: -12px !important;
}

.slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slick-prev:before,
.slick-next:before {
    content: '';
}

.screenshot {
    margin: 0 10px;
    will-change: transform;
}

@media (max-width: 767px) {
    .screenshot {
        max-width: calc(100% - 20px);
    }
    .screenshot.tablet {
        max-width: calc(100% - 20px);
    }
    .screenshot-carousel-container {
        max-width: 100%;
    }
    .slick-prev {
        left: -40px;
    }
    .slick-next {
        right: -40px;
    }
}

@media (min-width: 768px) {
    .screenshot {
        max-width: 33%;
    }
    .screenshot.tablet {
        max-width: 33%;
    }
    .screenshot-carousel-container {
        max-width: 1000px;
        margin: 0 auto;
    }
}

.screenshot img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    cursor: pointer;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gallery-bg);
    backdrop-filter: blur(5px);
}

.gallery-content {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
    max-width: 1200px;
}

.gallery-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--accent-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--link-hover);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-gallery:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.gallery-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.gallery-nav button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav button:hover {
    background-color: var(--link-hover);
    transform: scale(1.1);
}
.footer-container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    margin-bottom: 20px;
}

.footer-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.footer-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.footer-toggle.active span:nth-child(2) {
    opacity: 0;
}

.footer-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.footer-links.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--card-background);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.no-scroll {
    overflow: hidden;
}
footer {
    background-color: var(--accent-color);
    padding: 30px 5px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-links a {
    color: var(--secondary-color);
    margin: 0 15px;
    text-decoration: none;
}

.copyright a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-links a:hover, .copyright a:hover {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
}

.copyright {
    margin-top: 20px;
    color: var(--link-hover);
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .footer-toggle {
        display: flex;
        margin-top: 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links, .footer-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        background-color: var(--primary-color) !important;
    }
    
    .nav-links.active, .footer-links.active {
        transform: translateX(0);
    }
    
    .nav-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: var(--secondary-color);
        cursor: pointer;
        z-index: 10000;
    }
    
    .nav-close-btn:hover {
        color: var(--secondary-color);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.support-card {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-method {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-method p {
    margin-bottom: 15px;
}

.contact-method a {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.contact-method a:hover {
    background-color: var(--link-hover);
    text-decoration: none;
}

.-item {
    margin-bottom: 20px;
}

.faq-item p {
    margin-bottom: 20px;
}

.faq-item ol, .faq-item ul {
    margin: 0 70px 20px 70px;
}

.faq-question {
    background-color: var(--card-background);
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    border: 1px solid var(--border-color);
    position: relative;
    padding-right: 40px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 0 0 5px 5px;
    margin-top: 2px;
    display: none;
}

.faq-answer.show {
    display: block;
}

.troubleshooting-steps {
    list-style-type: decimal;
    padding-left: 50px;
    margin-top: 15px;
}

.troubleshooting-steps li {
    margin-bottom: 10px;
}

.contact-form {
  margin-top: 20px;
  background-color: var(--card-background);
  border-radius: 10px;
  padding: 5% 10% 5% 10%;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--accent-color)
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background-color: var(--input-bg);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--link-hover);
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.3rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background-color: var(--card-background);
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    border-left: 3px solid var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}