/* General Body and Font Styling */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #e9e9e9;
    color: #1E1E1E;
}

/* Header and Navigation */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: #000 !important;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #000;
    border-radius: 6px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
}

.logo-icon-inner {
    width: 14px;
    height: 14px;
    background-color: #326C25;
    border-radius: 3px;
}

header .nav-link {
    font-weight: 500;
    color: #000;
}

.btn-subscribe {
    background-color: #326C25;
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #326C25;
    color: #fff;
}

/* General Section Styles */
.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
}

.section-subheading {
    color: #000;
    line-height: 1.6;
    font-size: 0.875rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero-section {
    padding: 8.5rem 0;
    background-image: url('../images/hero-banner.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    background-color: #BCBCBC;
}
.hero-section:before{
    /* content: ""; */
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(0deg, #BCBCBC, #BCBCBC), radial-gradient(40.97% 198.03% at 6.28% 89.77%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}
.hero-section .container{
    position: relative;
    z-index: 2;
}
.hero-heading {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #020618;
}

.hero-subheading {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #020618;
    max-width: 550px;
}
.hero-section small{
    color: #808080;

}
/* Waitlist Form */
.form-control {
    padding: 0.85rem 1.25rem;
    border: 1px solid #d1d1d1;
    border-right: 0;
    border-radius: 8px;
    font-size: 0.875rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #326C25;
}

.btn-waitlist {
    background-color: #326C25;
    color: #fff;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.btn-waitlist:hover {
    background-color: #326C25;
    color: #fff;
}

/* Visibility Section */
.visibility-section {
    background-color: #fff;
    padding: 4rem 0;
}

.donut-chart-img {
    padding: 0 1rem;
}

.feature-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #D6D6D6;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .3s ease;
}
.feature-card:hover{
    box-shadow: 0px 10px 22px 0px #00000033;
}
.feature-card:not(:last-child) {
    margin-bottom: 1rem;
}

.feature-card .icon {
    color: #326C25;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0;
}

/* What to Expect Section */
.expect-section {
    padding: 6rem 0;
    background-color: #F3F3F3;
}

.expect-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.expect-feature:not(:last-child) {
    margin-bottom: 2.5rem;
}

.expect-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.expect-title {
    font-size: 1.313rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.expect-description {
    color: #000;
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Footer Section */
.site-footer {
    background-color: #326C25;
    color: #e0e0e0;
    padding-top: 6rem;
}

.cta-card {
   background: linear-gradient(0deg, #A6A7A7, #A6A7A7), linear-gradient(90deg, #A6A7A7 51.3%, rgba(166, 167, 167, 0) 61.3%);
   background: url('../images/coming-soon.png') no-repeat center;
   background-size: cover;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    color: #1E1E1E;
    margin-bottom: 5rem;
    border: 1px solid #FFFFFF80;
    box-shadow: 0px 10px 22px 0px #00000033;
}

.cta-card .form-control {
    background-color: #fff;
}

.cta-heading {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-text {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.125rem;
}

.cta-illustration {
    max-width: 280px;
}

.footer-bottom {
    padding-bottom: 4rem;
}

.footer-logo-icon {
    background-color: #e0e0e0;
}

.footer-logo-icon-inner {
    background-color: #326C25;
}

.footer-brand-text {
    color: #fff !important;
}

.footer-heading {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}
.join{
    max-width: 454px;
}
.copyright-text {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section { text-align: center; padding-top: 3rem; padding-bottom: 3rem; background-image: none; }
    .hero-section .row { flex-direction: column-reverse; }
    .hero-heading { font-size: 2.8rem; }
    .hero-subheading { margin-left: auto; margin-right: auto; }
    .input-group { max-width: 450px; margin-left: auto; margin-right: auto; }
    .hero-section .img-fluid { max-width: 80%; margin-bottom: 2rem; }
    .visibility-section { padding: 4rem 0; }
    .donut-chart-img { max-width: 70%; margin: 1rem auto; }
    .expect-section { padding: 4rem 0; text-align: center; }
    .expect-feature { flex-direction: column; align-items: center; gap: 1rem; }
    .expect-title, .expect-description { text-align: center; }
    .section-subheading.text-start { text-align: center !important; margin: 0 auto; }
    .cta-card { padding: 2rem; text-align: center; }
    .cta-text { margin: 0 auto; }
    .cta-illustration { margin-top: 2rem; }
    .footer-bottom .text-start { text-align: center !important; }
    .footer-bottom .navbar-brand { justify-content: center; }
}

@media (max-width: 767.98px) {
    .donut-chart-img { max-width: 50%; }
}

@media (max-width: 575.98px) {
    .hero-heading { font-size: 2.2rem; }
    .hero-section .img-fluid { max-width: 100%; }
    .section-heading, .cta-heading { font-size: 2rem; }
    .section-subheading { font-size: 1rem; }
    .donut-chart-img { max-width: 80%; }
}

