/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a, 
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}










@font-face {
    font-family: 'Bree Serif';
    src: url('../fonts/BreeSerif-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
    background-color: #034F46;
    font-family: 'Bree Serif', serif;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.navbar-logo img {
    width: 160px;
}


.navbar-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    float: right;
}

.navbar-menu a {
    color: #E6FBF2;
    font-family: Inter;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.hero-content {
    margin: 150px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-title {
    color: #E6FBF2;
    font-family: 'Bree Serif', serif;
    font-size: 48px;
    line-height: 58px;
    max-width: 590px;
}

.hero-p {
    color: #E6FBF2;
    font-family: Inter;
    font-size: 20px;
    line-height: 30px;
    margin: 30px 0px;
    max-width: 590px;
}

.hero-text {
    float: left;
}

.hero-image img {
    width: 340px;
}


.cta-button {
    display: inline-block;
    background-color: #FFA946;
    color: #000000;
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border: 1px solid #FFA946;
    border-radius: 0px;
    text-decoration: none;
}


.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #E6FBF2;
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border: 1px solid #E6FBF2;
    border-radius: 0px;
    text-decoration: none;
    margin-left: 25px;
}







/* QR Form Section */
.qr-form-container {
    position: relative;
    z-index: 10;
    margin-bottom: -100px;
    /* Overlap with features */
}

.qr-form-card {
    max-width: 800px;
    margin: auto;
    background: #FFFFFF;
    padding: 40px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-family: 'Bree Serif', serif;
    font-size: 32px;
    color: #034F46;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.form-subtitle {
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #034F46;
    opacity: 0.7;
    font-weight: normal;
}

.qr-form {
    display: flex;
    gap: 20px;
}

.qr-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #034F46;
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #034F46;
    outline: none;
}

.qr-submit {
    background-color: #FFA946;
    color: #000000;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 30px;
    border: 1px solid #FFA946;
    /* Add border to match sizing of secondary if needed, or just for consistency */
    cursor: pointer;
    white-space: nowrap;
}

.qr-submit.secondary {
    background-color: transparent;
    color: #E6FBF2;
    border: 1px solid #E6FBF2;
}

/* feature section*/
.features {
    background: #DCF5EA;
    padding: 250px 0 150px 0;
    /* Increased top padding mainly to clear the overlapping card */

}

.features .container {
    clear: both;
}

.features-text {
    color: #034F46;
    max-width: 600px;
    float: left;
}

.features-text h2 {
    font-family: 'Bree Serif', serif;
    font-size: 32px;
    line-height: 42px;
    color: #034F46;
    margin-bottom: 40px;
}

.features-text ul {
    list-style-type: square;
    list-style-position: outside;
    margin-left: 20px;
}

.features-text ul li {
    font-family: Inter;
    font-size: 20px;
    line-height: 28px;
    color: #034F46;
    margin-bottom: 25px;
}

.features-text ul li::marker {
    color: #FFA946;
}

.features-image {
    text-align: right;
}

/* How It Works Section */
.how-it-works {
    padding: 150px 0px;
}

.section-title {
    font-family: 'Bree Serif', serif;
    font-size: 32px;
    color: #E6FBF2;
    margin-bottom: 40px;
    text-align: left;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step-card {
    border: 1px solid rgba(230, 251, 242, 0.3);
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-number {
    background-color: #FFA946;
    color: #000000;
    font-family: Inter, sans-serif;
    font-weight: bold;
    font-size: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.step-card h3 {
    font-family: 'Bree Serif', serif;
    font-size: 24px;
    color: #E6FBF2;
    margin-bottom: 20px;
    line-height: 32px;
}

.step-card p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #E6FBF2;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    background: #DCF5EA;
    padding: 150px 0;
}

.section-title-dark {
    font-family: 'Bree Serif', serif;
    font-size: 32px;
    color: #034F46;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.faq-card {
    border: 1px solid #034F46;
    padding: 40px;
    background: transparent;
}

.faq-card h3 {
    font-family: monospace;
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    color: #034F46;
    margin-bottom: 15px;
}

.faq-card p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #034F46;
    opacity: 0.9;
}

.faq-footer h3 {
    font-family: monospace;
    font-weight: bold;
    font-size: 20px;
    color: #034F46;
    margin-bottom: 10px;
}

.faq-footer p {
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #034F46;
}

.faq-footer a {
    color: #034F46;
    font-weight: bold;
    text-decoration-thickness: 1px;
}


/* CTA Section */
.cta-section {
    padding: 150px 0px;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Bree Serif', serif;
    font-size: 36px;
    color: #E6FBF2;
    margin-bottom: 20px;
}

.cta-content p {
    font-family: Inter, sans-serif;
    font-size: 18px;
    color: #E6FBF2;
    margin-bottom: 40px;
    opacity: 0.9;
}


/* Footer Section */
.main-footer {
    padding-top: 100px;
    padding-bottom: 250px;
    background: #002723;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
}

.footer-col {
    flex: 1;
}

.brand-col {
    flex: 1.2;
    /* Give brand col slightly more space if needed, or equal. */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E6FBF2;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 30px;
    display: inline-block;
}

.brand-desc {
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #E6FBF2;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 250px;
}

.brand-links li,
.footer-links li {
    margin-bottom: 20px;
}

.brand-links a,
.footer-links a {
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #E6FBF2;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.brand-links a:hover,
.footer-links a:hover {
    opacity: 1;
}

.footer-col h4 {
    font-family: 'Bree Serif', serif;
    font-size: 20px;
    color: #E6FBF2;
    margin-bottom: 30px;
}

.copyright {
    text-align: center;
    border-top: 0px solid rgba(230, 251, 242, 0.1);
    /* No border in image? */
    padding-top: 20px;
}

.copyright p {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #E6FBF2;
    opacity: 0.6;
}

/* Static QR Generator Styles */
.qr-hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0;
    gap: 50px;
}

.qr-hero-text {
    flex: 1;
    max-width: 600px;
}

.qr-hero-title {
    color: #E6FBF2;
    font-family: 'Bree Serif', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.qr-hero-subtitle {
    color: #E6FBF2;
    font-family: Inter, sans-serif;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.qr-generator-form {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.qr-generator-form .qr-input {
    background: #FFFFFF;
    border: none;
    border-radius: 0px;
    padding: 15px;
    flex: 1;
    color: #034F46;
}

.qr-repo-card {
    background: #002723;
    padding: 40px;
    border-radius: 0px;
    flex: 0 0 330px;
    text-align: center;

}

.qr-display-area {
    background: #FFFFFF;
    padding: 15px;
    border-radius: 0px;
    display: inline-block;
    margin-bottom: 20px;
}

.qr-url-display {
    color: #E6FBF2;
    font-family: Inter, sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
    word-break: break-all;
}

.download-btn-main {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid #E6FBF2;
    color: #E6FBF2;
    padding: 12px;
    font-weight: 600;
    border-radius: 30px;
    font-family: Inter, sans-serif;
    cursor: pointer;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.download-btn-main:hover {
    background: #FFA946;
    color: #000000;
    border: 1px solid #FFA946;
}

.format-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.format-btn {
    flex: 1;
    background: transparent;
    border: 1px solid #E6FBF2;
    color: #E6FBF2;
    padding: 8px;
    border-radius: 30px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.format-btn:hover {
    background: #E6FBF2;
    color: #002723;
}

.light-section {
    background-color: #E6FBF2;
    padding: 100px 0;
    color: #034F46;
}

.light-section .section-title {
    color: #034F46;
}

.light-section .step-card {
    border: 1px solid #034F46;
    background: rgba(255, 255, 255, 0.5);
}

.light-section .step-card h3,
.light-section .step-card p {
    color: #034F46;
}

.light-section .step-number {
    background: #FFA946;
    color: #000;
}

@media (max-width: 768px) {

    /* Stack hero content vertically */
    .navbar-menu a {
        font-size: 12px;
    }

    .navbar-menu {
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 80px 0;
    }

    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }

    .hero-p {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-image {
        width: 100%;
        margin-top: 30px;
    }

    .hero-image img {
        width: 90%;
        margin-top: 40px;
    }


    /* Adjust features section */
    .features {
        padding: 80px 0;
    }

    .features-text,
    .features-image {
        float: none;
        text-align: left;
    }

    .features-image img {
        max-width: 100%;
        margin-top: 30px;
    }

    /* How It Works Mobile */
    .steps-grid {
        flex-direction: column;
        gap: 30px;
    }

    .how-it-works {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
        text-align: center;
    }

    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-card {
        padding: 30px;
    }

    /* CTA Mobile */
    .cta-content h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-button-secondary {
        margin-left: 0;
    }

    /* Footer Mobile */
    .footer-grid {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 50px;
    }

    .footer-col {
        width: 100%;
    }

    .brand-desc {
        max-width: 100%;
    }

    /* QR Form Mobile */
    .qr-form-card {
        padding: 30px;
    }

    .qr-form {
        flex-direction: column;
        gap: 15px;
    }

    .form-title {
        flex-direction: column;
        gap: 5px;
        font-size: 28px;
    }

    .qr-form-container {
        margin-bottom: -80px;
    }

    .features {
        padding-top: 180px;
        /* Adjust for mobile overlap */
    }

    /* Static QR Mobile Styles */
    .qr-hero-section {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .qr-repo-card {
        width: 100%;
        max-width: 350px;
    }

    .qr-generator-form {
        flex-direction: column;
    }

    .qr-hero-text {
        max-width: 100%;
    }
}

.qr-success-msg {
    color: #62f6b7;
    /* Or a bright green? Theme text is E6FBF2 (light mint). Let's use that or maybe slightly different. */
    font-family: Inter, sans-serif;
    font-size: 16px;
    margin-top: 15px;
    height: 20px;
    /* Reserve space or just let it expand? */
    min-height: 20px;
}

.qr-success-msg.error {
    color: #ff6161;
    /* Red for error */
}

/* QR Placeholder Mode */
.qr-display-area.placeholder-mode svg rect {
    fill: #ffffff !important;
}

/* Contact Page Styles */
.contact-hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0;
    gap: 50px;
}

.contact-hero-text {
    flex: 1;
    max-width: 600px;
}

.contact-hero-title {
    color: #E6FBF2;
    font-family: 'Bree Serif', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    color: #E6FBF2;
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
}

.contact-form-container {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 0px;
    flex: 0 0 400px;
    /* Fixed width for form similar to QR card */
}

.contact-input-group {
    margin-bottom: 20px;
}

.contact-label {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #034F46;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #034F46;
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #034F46;
    box-sizing: border-box;
    border-radius: 0px;
}

.contact-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #034F46;
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #034F46;
    height: 120px;
    resize: vertical;
    box-sizing: border-box;
    border-radius: 0px;
}

.contact-btn {
    background-color: #FFA946;
    color: #000000;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    border: 1px solid #FFA946;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    border-radius: 0px;
}


@media (max-width: 768px) {
    .contact-hero-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }

    .contact-form-container {
        width: 100%;
        flex: auto;
    }

    .contact-hero-text {
        margin-bottom: 40px;
    }
}

/* Contact Form Status */
.contact-status-msg {
    margin-top: 15px;
    font-family: Inter, sans-serif;
    font-size: 14px;
    min-height: 20px;
    text-align: center;
}

.contact-status-msg.success {
    color: #28a745;
}

.contact-status-msg.error {
    color: #dc3545;
}

/* History Section */
.history-section {
    background: #034F46;
    /* Primary Green */
    padding: 150px 0;
    color: #E6FBF2;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-content h3 {
    font-family: 'Bree Serif', serif;
    font-size: 28px;
    color: #FFA946;
    /* Using accent color for subheadings */
    margin-top: 50px;
    margin-bottom: 25px;
}

.history-content p {
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #E6FBF2;
    opacity: 0.9;
    margin-bottom: 20px;
}

.history-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.history-content ul li {
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 30px;
    color: #E6FBF2;
    margin-bottom: 15px;
}

/* History Timeline Grid */
.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.history-card {
    background: rgba(230, 251, 242, 0.05);
    border: 1px solid rgba(230, 251, 242, 0.1);
    padding: 30px;
    border-radius: 0px;
}

.history-card .year {
    display: block;
    font-family: 'Bree Serif', serif;
    font-size: 32px;
    color: #FFA946;
    margin-bottom: 10px;
}

.history-card h4 {
    font-family: Inter, sans-serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    color: #E6FBF2;
    margin-bottom: 10px;
}

.history-card p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 24px;
    opacity: 0.8;
}

.did-you-know {
    background: #DCF5EA;
    color: #034F46;
    padding: 30px;
    border-left: 5px solid #FFA946;
    margin-top: 40px;
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 28px;
}

.did-you-know strong {
    font-weight: bold;
    color: #034F46;
}

@media (max-width: 768px) {
    .history-card {
        padding: 20px;
    }
}

/* Coming Soon Badge */
.badge-soon {
    display: inline-block;
    background-color: #FFA946;
    color: #000000;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

.login-align {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    gap: 50px;
}


.my-button {
  background-color: #4CAF50; /* Green background */
  border: none;              /* Remove default border */
  color: white;              /* White text */
  padding: 15px 32px;        /* Some padding */
  text-align: center;        /* Center the text */
  text-decoration: none;     /* Remove underline */
  display: inline-block;     /* Get it to sit in line */
  font-size: 16px;           /* Increase font size */
  cursor: pointer;           /* Change cursor to pointer on hover */
  border-radius: 8px;        /* Rounded corners */
  transition-duration: 0.4s; /* Smooth transition for hover effects */
   position: absolute;
  right: 100px;
  top:150px;
}

.my-button:hover {
  background-color: #45a049; /* Darker green on hover */
}  
 .login-content{
  text-align-last: center;
    padding: 30px 30px;
 }
 .login-h2{
    font-size: 30px;
	    padding-bottom: 25px;
 }
 
 .log {
  color: white;
  background-color: rgba(104, 85, 224, 1);
   cursor: pointer;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  margin: 0 10px;
  width: 200px;
  padding: 10px 0;
  box-shadow: 0 0 20px rgba(104, 85, 224, 0.2);
  transition: 0.4s;
}

input[type=text] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  box-sizing: border-box;

}


input[type=password] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  box-sizing: border-box;
}


/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #E6FBF2;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #002723;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        z-index: 1000;
        border-top: 1px solid rgba(230, 251, 242, 0.2);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(230, 251, 242, 0.1);
    }

    .navbar-menu li:last-child {
        border-bottom: none;
    }

    .navbar-menu a {
        display: block;
        width: 100%;
        font-size: 16px;
    }

    .main-menu {
        position: relative;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }
}