/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.highlight {
    color: #597200;
}

.cta-button {


    display: inline-block;
    background-color: #597200;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #556b2f;
    transform: translateY(-2px);
}

section {
    padding: 60px 0;
}

/* Notification Bar */
.notification-bar {

    text-align: center;
    font-size: 14px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}

.logo img {
    height: 45px;
    width: auto;

}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #597200;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.login-btn {
    background-color: #f5f7fa;
    margin-right: 15px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #597200;
    color: white;
    margin-right: 15px;
    font-weight: 500;
}

.signup-btn {
    background-color: #597200;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background-color: #556b2f;
}

/* Hero Section */
.hero {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 3.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #555;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    padding-right: 50px;
    max-width: 75%;
    height: auto;
}

/* Simplifying Section */
.simplifying {
    text-align: center;
    background-color: white;
}

.simplifying h2 {
    font-size: 2.25rem;
    margin-bottom: 10px;
}

.simplifying > p {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-between;

    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    flex: 1;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    height: 60px;
}

.feature-box h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
}

/* Onboarding Section */
.onboarding {
    background-color: #f9f9f9;
}

.onboarding .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.onboarding-image {
    flex: 1;
}

.onboarding-image img {
    max-width: 75%;
    height: auto;
}

.onboarding-content {
    flex: 1;
    padding-left: 40px;
}

.onboarding-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.onboarding-content p {
    margin-bottom: 30px;
    color: #555;
}

/* Confidence Section */
.confidence {
    background-color: white;
}

.confidence .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.confidence-content {
    flex: 1;
    padding-right: 40px;
}

.confidence-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.confidence-content p {
    color: #555;

}

.confidence-image {
    flex: 1;
    text-align: right;
}

.confidence-image img {
    max-width: 75%;
    height: auto;
}

/* Track Growth Section */
.track-growth {
    background-color: #f9f9f9;
}

.track-growth .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.track-image {
    flex: 1;
}

.track-image img {
    max-width: 50%;
    height: auto;
}

.track-content {
    flex: 1;
    padding-left: 0px;
}

.track-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.track-content p {
    color: #555;
}

/* Success Stories Section */
.success-stories {
    text-align: center;
    background-color: white;
}

.success-stories h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.success-stories > p {
    color: #666;
    max-width: 850px;
    margin: 0 auto 40px;
}

.testimonials {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.testimonial {
    flex: 1;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);;
    padding: 30px;
    text-align: left;
    position: relative;
}

.quote {
      position: absolute;

       color: #597200;
      top: 32px;
      right: 32px;
      font-size: 60px;
       line-height: 1;

    /* font-size: 60px;
    color: #597200;
    position: absolute;
    top: 0;
    left: 10px;
    opacity: 0.3;
    line-height: 1; */
}

.testimonial p {
    position: relative;
    font-size: 1rem;
    z-index: 1;
    color: #555;
}

.testimonial-author {
    margin-bottom: 20px;
    width: 100%;
}

.testimonial-author h4 {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #333;
}

.testimonial-author p {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0;
}

/* Investment Options Section */
.investment-options {
    background-color: #f9f9f9;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

 .container2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    gap: 70px;
    flex-wrap: wrap;
    justify-content: center;
}

.onboarding-content{
    max-width: 500px;
    text-align: left;
}
.investment-options-image img {
    width: 100%;
  width: 400px;
  height: auto;
  border-radius: 20px;
}

.investment-options h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.st-button{
 display: inline-block;
  background-color: #566c00;
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s ease;
  text-align: center;
}

.st-button:hover {
  background-color: #465800;

}

.options-list {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;

}

.option {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  gap: 15px;
  color: #444;
  font-size: 18px;

}

.option-icon .circle {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #566c00;
  border-radius: 50%;
  position: relative;
}

.option-icon .circle::after {
  content: '✔';
  color: white;
  font-size: 14px;
  position: absolute;
  top: 3px;
  left: 6px;
}

.option p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    max-width: 150px;
}

.footer-logo img {
    width: 100%;
}

.footer-text {
    flex: 2;
    padding: 0 40px;
}

.footer-text p {
    font-size: 0.9rem;
    color: #ccc;
}

.app-download {
    flex: 1;
}

.app-download p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
}

.download-buttons {
    display: flex;
    gap: 10px;
    align-items: center;

}

.download-btn img {

    height: 60px;
    width: 140px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #aaa;
}

.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(635%) hue-rotate(44deg) brightness(90%) contrast(93%);
}

/* Placeholder icons - Replace with actual SVG or icon font */

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0b0b0; /* light gray text */
  font-size: 1.2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-contact svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0b0b0;
  font-size: 1.2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-phone svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: #688200; /* green shade */
}



.footer-links {
    display: flex;
    gap: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    width: 100%;
    max-width: 900px;
    height: 80%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@media (max-width: 768px) {
    .container2 {
        flex-direction: column;
        gap: 40px;
    }

    .investment-options h2 {
        text-align: center;
    }

    .onboarding-content {
        text-align: center;
        align-items: center;
    }

    .option {
        justify-content: center;
    }

    .st-button {
        margin: 0 auto;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-left {
    background-color: #597200;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

.modal-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 800 800"><path d="M0,0 C200,100 300,200 400,300 C500,400 600,500 800,600 L800,800 L0,800 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.logo-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-container img {
    width: 100%;
   height: 100%;
}
.tagline {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
}

.modal-right {
    width: 60%;
    padding: 40px;
}

.modal-form {

    max-width: 400px;
    margin: 0 auto;
}

.modal-form h2 {

    font-size: 2rem;
    margin-bottom: 5px;
    color: #333;
    margin-top: 60px;
}

.modal-form > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
    width: 100%;
    max-width: 350px;
}

.form-group label {
    display: block;
    top:-10px;
    left: 12px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
    background-color: white;
    position: absolute;
}

.form-group label::after {
    content: '';
    position: absolute;
    left: 0;

    bottom: -5px;
    width: 100%;
    height: 1px;
}

.form-group input {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 1px;
    font-size: 1rem;
    transition: border-color 0.3s;

    outline: none;
}
input[type="text"] {
  border:  2px solid #597200;
  outline: none;
  box-shadow: none;
  background: none;
   border-radius: 12px;
  padding: 12px;
  width: 100%;
}

input[type="password"] {
  border:  2px solid #597200;
  outline: none;
  box-shadow: none;
  background: none;
   border-radius: 12px;
  padding: 12px;
  width: 100%;
}
/* input[type="password"] {
  border: 2px solid #597200;
  border-radius: 12px;
  padding: 12px;
  width: 100%;
} */

@media (max-width: 575px) {
 input[type="text"] {
  width: 80%;
}

input[type="password"] {
  width: 80%;
}
}
.form-group input:focus {
    border-color: #597200;
    outline: none;
}

.form-group input::placeholder {
    font-size: 0.9rem;
}

/* Removed .toggle-password and .eye-icon styles */

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 6px;
}

.remember-me label {
    font-size: 0.9rem;
}

.forgot-links {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
}

.forgot-links a {
    color: #597200;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 5px;
}

.forgot-links a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #597200;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #556b2f;
}

.terms-text {
    font-size: 0.8rem;
    color: #777;
    text-align: center;
    margin-top: 10px;

}

.terms-text a {
    color: #597200;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

.signup-text {
    text-align: center;
    margin-top: 5px;
    font-size: 0.9rem;
}

.signup-text a {
    color: #597200;
    font-weight: 500;
    text-decoration: none;
}

.signup-text a:hover {
    text-decoration: underline;
}

.back-link {
    margin-bottom: 20px;
}

.back-link a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link a:hover {
    color: #597200;
}

.back-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 12H5M12 19l-7-7 7-7"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.resend-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.resend-text a {
    color: #597200;
    text-decoration: none;
    font-weight: 500;
}

.resend-text a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        max-width: 95%;
    }

    .modal-left {
        width: 100%;
        padding: 30px;
    }

    .modal-right {
        width: 100%;
        padding: 30px;
    }

    .logo-container img {
        width: 150px;
    }
}
@media (max-width: 768px) {
    .modal-left {
        display: none !important;
    }
}






/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .onboarding .container,
    .confidence .container,
    .track-growth .container {
        flex-direction: column;
    }

    .hero-content,
    .onboarding-content,
    .confidence-content,
    .track-content {
        padding: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .features,
    .testimonials {
        flex-direction: column;
        gap: 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-text {
        padding: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    section {
        padding: 40px 0;
    }

}

/* Floating label styles for all modal form inputs */
.floating-label {
    position: relative;
    width: 100%;
    max-width: 350px;
}
.floating-label input[type="text"],
.floating-label input[type="password"],
.floating-label input[type="email"] {
    padding: 16px 10px 8px 10px;
    border: 2px solid #597200;
    border-radius: 12px;
    width: 100%;
    font-size: 1rem;
    background: none;
    outline: none;
    box-sizing: border-box;
}
.floating-label label {
    position: absolute;
    left: 14px;
    top: 16px;
    background: #fff;
    color: #888;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.2s;
    padding: 0 4px;
}
.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label label.float {
    top: 2px;
    left: 12px;
    font-size: 0.85rem;
    color: #597200;
    background: #fff;
    z-index: 2;
}

/* Remove default placeholder styles for modal form inputs */
.floating-label input::placeholder {
    color: transparent;
}