*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f8faf8;
    color:#1c1c1c;
}

.upload-box {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 20px;
}
.business-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.business-meta input {
    min-height: 60px;
    width: 100%;
    padding: 0 20px;
    font-size: 16px;
}

.tagline {
    font-size: 12px;
    color: #bdbdbd;
    margin-top: 4px;
    letter-spacing: 1px;
}
.required {
    color: red;
    font-weight: bold;
}
.mandatory-note {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.navbar{
    border-bottom:1px solid rgba(153,212,32,.4);

    box-shadow:
        0 1px 0 rgba(153,212,32,.2),
        0 3px 20px rgba(153,212,32,.08);
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 8%;
    background:rgba(2,16,17,.9);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(153,212,32,.35);
    z-index:10;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:40px;
}

.navbar a{
    color:white;
    text-decoration:none;
}
.navbar a{
    font-size:15px;
}

.nav-active {
    color:#1ba64a;
    font-weight:600;
}

.step.active span {
    background:#20aa4a;
    color:#fff;
}

.login-btn{
    border:1px solid #1ba64a;
    color:#1ba64a;
    background:#fff;
    padding:10px 20px;
    border-radius:10px;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:180px 100px 40px;
}

.hero-content{
    width:50%;
}

.hero h1{
    font-size:40px;
    line-height:1.1;
}

.hero h1 span{
    color:#59c95c;
}

.hero p{
    margin:20px 0;
    font-size:20px;
}

.hero ul{
    list-style:none;
}

.hero li{
    margin:15px 0;
}

.hero-image img{
    width:550px;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:-50px 100px 40px;
}

.benefit{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-list i {
    color: #28a745;
    font-size: 20px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #eaf7ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #28a745;
    font-size: 22px;
}

.form-section{
    margin:50px 100px;
    background:#fff;
    padding:40px;
    border-radius:20px;
}

.form-section h2{
    text-align:center;
    color:#09341e;
    margin-bottom:25px;
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:auto;
    height:100px;
}

.logo-text{
    font-size:40px;
    font-weight:600;
    letter-spacing:3px;
    color:white;
}

.steps{
    display:flex;
    justify-content:space-between;
    margin:40px 0;
}

.step{
    color:#777;
}

.step span{
    width:40px;
    height:40px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:2px solid #ccc;
    margin-right:10px;
}
.step {
    color: #666;
}

.step span {
    width: 50px;
    height: 50px;
    border: 3px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active span {
    background: #1fb14e;
    color: white;
    border-color: #1fb14e;
}

.step.active {
    color: #1fb14e;
    font-weight: 600;
}

.green{
    color:#99d420;
}

.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:20px;
}

input,select,textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

textarea{
    min-height:140px;
    margin-bottom:20px;
}

.upload-box{
    padding:20px;
    border:2px dashed #ddd;
    border-radius:12px;
}

.next-btn {
    background: #16a34a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 20px;
}

.next-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.next-btn:active {
    transform: translateY(0);
}

.privacy-box{
    margin:40px 100px;
    background:#eef8ee;
    padding:30px;
    border-radius:15px;
}

footer{
    display:flex;
    justify-content:space-between;
    padding:30px 100px;
    color:white;

    background:
    linear-gradient(
       90deg,
       #032b16,
       #034f25,
       #032b16
    );
}

footer ul{
    list-style:none;
}

footer li{
    margin:8px 0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}
.form-step input,
.form-step select,
.form-step textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
}
.form-step button {
    margin-right: 10px;
}
.button-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.button-group .next-btn:last-child {
    margin-left: auto;
}

#reviewData {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin: 20px 0;
}

#reviewData p {
    margin: 10px 0;
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f7f2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: #02141c;
    border-bottom: 3px solid #4CAF10;
    padding: 20px 40px;
}

.navbar img {
    height: 70px;
}

.success-page {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.success-card {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 25px;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.success-icon {
    width: 140px;
    height: 140px;
    margin: auto;
    border: 3px solid #56b11d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.success-icon i {
    width: 90px;
    height: 90px;
    background: #56b11d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
}

.success-card h1 {
    margin-top: 35px;
    color: #102229;
    font-size: 60px;
    font-weight: 800;
}

.success-card h1 span {
    display: block;
    color: #56b11d;
}

.divider {
    width: 120px;
    height: 4px;
    background: #56b11d;
    margin: 30px auto;
    border-radius: 20px;
}

.main-text {
    font-size: 32px;
    color: #424b5d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.main-text strong {
    color: #56b11d;
}

.sub-text {
    max-width: 650px;
    margin: auto;
    color: #5c6675;
    line-height: 1.8;
    font-size: 22px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    text-decoration: none;
    background: #56b11d;
    color: #fff;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(86, 177, 29, 0.3);
    transition: 0.3s ease;
}

.home-btn:hover {
    background: #479115;
    transform: translateY(-2px);
}

.explore-link {
    display: block;
    text-decoration: none;
    margin-top: 35px;
    color: #56b11d;
    font-size: 24px;
    font-weight: 600;
}

.explore-link i {
    margin-left: 8px;
}

footer {
    background: #02141c;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-content img {
    height: 60px;
}

.footer-content span {
    color: #56b11d;
}

.copyright {
    color: #bdbdbd;
}

@media(max-width:992px){

    .navbar{
        padding:10px 15px;
        flex-direction:row;
        justify-content:space-between;
    }

    .hero h1 span{
        color:#59c95c;
    }

    .hero ul{
        list-style:none;
    }

    .logo{
        font-size:24px;
    }

    .logo img{
        width:auto;
        height:45px;
    }

    .logo-text{
        font-size:20px;
        font-weight:600;
        letter-spacing:1px;
        color:white;
    }

    .form-section,
    .privacy-box,
    .footer{
        margin:20px;
    }

    .hero{
       margin-top:0;
       padding:90px 15px 30px;
    }

    .hero h1{
        font-size:1.8rem;
        line-height:1.2;
    }

    .hero p{
        font-size:20px;
        line-height:1.5;
        padding:0 10px;
    }

    .feature-list i {
        color: #28a745;
        font-size:0.9rem;
    }
    

    .hero-content{
        width: 100%;
        padding: 0 5px;
    }

    .benefit-grid{
        grid-template-columns:1fr;
        margin:0 15px 20px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .login-btn{
        padding:8px 14px;
        font-size:14px;
    }

    footer{
    padding:20px 15px;
    gap:10px;
    }

    footer h3,
    footer h4{
        font-size:16px;
    }

    footer p,
    footer li{
        font-size:14px;
    }
    /* Tablets */
@media (max-width: 992px) {

    .navbar {
        padding: 15px 20px;
    }

    .navbar img {
        height: 55px;
    }

    .success-card {
        max-width: 95%;
        padding: 50px 30px;
    }

    .success-card h1 {
        font-size: 48px;
    }

    .main-text {
        font-size: 24px;
    }

    .sub-text {
        font-size: 18px;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .business-meta {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .business-meta input {
        min-height: 55px;
        font-size: 16px;
    }
s
    .success-page {
        padding: 30px 15px;
    }

    .success-card {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .success-icon {
        width: 100px;
        height: 100px;
    }

    .success-icon i {
        width: 65px;
        height: 65px;
        font-size: 35px;
    }

    .success-card h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .main-text {
        font-size: 20px;
        line-height: 1.5;
    }

    .sub-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .home-btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 18px;
    }

    .explore-link {
        font-size: 18px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-content img {
        height: 50px;
    }
}


/* Small Phones */
@media (max-width: 480px) {

    .navbar {
        padding: 12px 15px;
    }

    .navbar img {
        height: 45px;
    }

    .success-card {
        padding: 30px 15px;
    }

    .success-card h1 {
        font-size: 28px;
    }

    .main-text {
        font-size: 18px;
    }

    .sub-text {
        font-size: 15px;
    }

    .divider {
        width: 80px;
    }

    .home-btn {
        font-size: 16px;
        gap: 10px;
    }

    .explore-link {
        font-size: 16px;
    }

    .copyright {
        font-size: 13px;
    }
}
}