.main {
    background: var(--primary-color);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
}

.main-section .row {
    align-items: flex-start !important;
}

.main-section {
    min-height: 100vh;
}

.top-bar {
    border-radius: 6px;
    height: 40px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text {
    color: #d4f1ef;
    font-size: 2rem !important;
    line-height: 1.7;
    max-width: 520px;
}

.signup-card {
    background: #fff;
    border-radius: 5px;
    padding: 30px 25px;
    max-width: 520px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

.signup-card .form-control {
    height: 50px !important;
    font-size: 14px;
}

.signup-card .form-check {
    margin-top: 10px;
}

.signup-card h5 {
    font-weight: 600;
}

.form-control {
    background: #f5f5f5;
    border: none;
    padding: 15px;
}

.signup-btn {
    background: #222;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    border: none;
}

@media (max-width: 991px) {
    .signup-card {
        margin: 40px auto 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .col-lg-6.text-white {
        padding-top: 20px;
        text-align: center;
    }
}

.benefits-section {
    background: #ffffff;
    padding: 70px 0;
}

.section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #111;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 80%;
    margin: auto;
}

.benefit-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 18px 22px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-box img {
    width: 30px;
    height: 30px;
}

.icon-box.orange {
    background: #fff1e6;
}

.icon-box.yellow {
    background: #fff6db;
}

.icon-box.green {
    background: #eef9e8;
}

.icon-box.blue {
    background: #edf3ff;
}

.icon-box.purple {
    background: #f8ecff;
}

.icon-box.red {
    background: #ffecec;
}

.benefit-card h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.benefit-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.partner-eligibility {
    background: #0b6b6b;
    padding: 60px 0 70px;
}

.eligibility-title {
    text-align: center;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 35px;
}

/* GRID */
.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 35px;
}

/* CARD */
.eligibility-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 22px;
    display: flex;
    gap: 20px;
    align-items: center;
}

/* ICON BOX */
.icon-box {
    width: 70px;
    height: 70px;
    background: #eef7f7;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box img {
    width: 34px;
    height: 34px;
}

/* TEXT */
.card-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

.card-content p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #000000ff;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
}

.partner-form-section {
    background: #fff;
    padding: 70px 0 80px;
    text-align: center;
    margin-top: 50px !important;
}

.form-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.form-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.5;
}

.partner-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    outline: none;
    border-color: #111;
    background: #fff;
}

/* Submit Button */
.submit-btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.submit-btn span {
    font-size: 14px;
}

.submit-btn:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.custom-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
}

.dropdown-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #6c757d;
    pointer-events: none;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #096c6c;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    position: fixed;
    bottom: 120px;
    right: 300px;
}

.d-none {
    display: none;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
