@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap');

body {
    font-family: "Urbanist", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0f172a;
    line-height: 1.6;
    background: linear-gradient(to top, #ffffff, #e0f2fe);
}

.site-header {
    background: transparent;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.site-header .navbar {
    padding: 0.5rem 0;
}

.site-header .navbar-brand img {
    height: 50px;
}

.site-header .nav-link {
    font-weight: 500;
    font-size: 1.20rem;
    color: #0f172a;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 0.35rem;
}

.site-header .nav-link.active {
    color: #76b828 !important;	
}
.site-header .nav-link:hover {
    color: #76b828;
}

.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #76b828;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-cta {
    background: #76b828;
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
}

.header-cta:hover {
    background: #5f951f;
    color: #fff;
}

.hero-section {
    background: linear-gradient(to top, #ffffff, #e0f2fe);;
    padding: 5rem 0 6rem;
}

.hero-title {
    font-size: clamp(2rem, 2vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
}

.hero-text {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.hero-cta {
    background-color: #008bd2;
    padding: 0.85rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-cta:hover {
    background-color: #0075b0;
}

.empower-section .empower-image-wrapper {
    max-width: 430px;
    border-radius: 36px;
}

.empower-section .empower-image {
    border-radius: 36px;
    width: 100%;
    height: auto;
}

.empower-list {
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
    color: #1f2937;
}

.empower-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.list-check {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.list-check img {
    width: 100%;
    height: auto;
}

.steps-wrapper {
    position: relative;
    background: linear-gradient(180deg, #f7fbff 0%, #eef4fb 55%, #ffffff 100%);
    padding: 0rem 0 7rem;
    margin-top: -160px;
}

@media (max-width: 992px) {
    .steps-wrapper {
        margin-top: -100px;
        padding-top: 2rem;
    }
}

.steps-banner {
    background: #76b828;
    border-radius: 13px;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 8vw, 10.5rem);
    position: relative;
    z-index: 0;
    width: min(85%, 1800px);
    margin: 0 auto 4rem;
}

.steps-banner h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.35;
    font-weight: 600;
    margin: 0 auto;
    max-width: 1100px;
}

.steps-row {
    margin: -100px auto 0;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding: 0 clamp(0.5rem, 4vw, 1.5rem);
}

@media (max-width: 992px) {
    .steps-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -60px;
    }
}

@media (max-width: 768px) {
    .steps-row {
        grid-template-columns: 1fr;
    }
}

.steps-row::after {
    content: "";
    position: absolute;
    inset: 120px 10%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.08), transparent 65%);
    border-radius: 50%;
    z-index: -1;
}

.step-card {
    background: #ffffff;
    border-radius: 36px;
    padding: 3.2rem 2.7rem 4.8rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: visible;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(118, 184, 40, 0.05) 100%);
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.18);
}

.step-card:hover .step-icon {
    background: radial-gradient(circle at 40% 40%, #ffffff, #d6f0bf 70%, #bfe899 100%);
    color: #1d6b25;
}

.step-card:hover h3 {
    color: #0c3f6f;
}

.step-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 2.2rem;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #ffffff, #e7f3db 70%, #d1ebc3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 12px 30px rgba(255, 255, 255, 0.6);
}

.step-icon img {
    width: 104px;
    height: 104px;
}

.step-card h3 {
    font-size: 1.65rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.step-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
}

.product-text {
    font-size: 1.05rem;
    color: #475467;
}

.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem 2.2rem;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 139, 210, 0.35);
    background: #008bd2;
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-text {
    color: #ffffff;
}

.feature-card:hover .feature-dot {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
}

.feature-dot {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-dot img {
    width: 52px;
    height: 52px;
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-dot.variant-1 {
    background: radial-gradient(circle at 30% 30%, #cfc8ff, #f4f1ff);
}

.feature-dot.variant-2 {
    background: radial-gradient(circle at 30% 30%, #ffd2b6, #fff3eb);
}

.feature-dot.variant-3 {
    background: radial-gradient(circle at 30% 30%, #bae6ff, #ecf8ff);
}

.feature-dot.variant-4 {
    background: radial-gradient(circle at 30% 30%, #c9f5c6, #eefce8);
}

.feature-dot.variant-5 {
    background: radial-gradient(circle at 30% 30%, #ffe0c4, #fff5ea);
}

.feature-dot.variant-6 {
    background: radial-gradient(circle at 30% 30%, #d9dcff, #f4f5ff);
}

.contact-hero {
    background: linear-gradient(135deg, #d6e8ff 0%, #f7fbff 100%);
    padding: 4rem 0;
}

.contact-section {
    background: #fdfefe;
}

.contact-info-card {
    background: #fff;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e0ebff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 1.4rem;
    color: #0a151b;
}

.contact-social:hover {
    background: #008bd2;
    color: #fff;
}

.contact-social img {
    width: 20px;
    height: 20px;
}

.contact-form-card {
    background: #ffffff;
}

.contact-form-card .form-control,
.contact-form-card .form-select,
.contact-form-card textarea {
    background: #e6edf5;
    border: 1px solid #c7d2de !important;
    color: #0f172a;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus,
.contact-form-card textarea:focus {
    background: #dbe3ef;
    border-color: #008bd2;
    box-shadow: none;
    color: #0b1524;
}

.application-hero {
    background: linear-gradient(135deg, #d6e8ff 0%, #f7fbff 100%);
    padding: 4rem 0;
}

.application-section {
    background: #fcfdff;
}

.application-info-card {
    background: #ffffff;
}

.application-form-card {
    background: #fff;
}

.about-hero {
    background: linear-gradient(135deg, #cfe3ff 0%, #eff6ff 100%);
}

.about-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ecf5ff;
    color: #008bd2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-row.reverse .service-illustration {
    order: 2;
}

.service-row.reverse .service-copy {
    order: 1;
}

@media (min-width: 992px) {
    .service-row {
        flex-direction: row;
    }
    .service-row.reverse {
        flex-direction: row-reverse;
    }
}

.service-illustration,
.service-copy {
    flex: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    border: 1px solid #eef2f7;
    border-radius: 75px;
    background:#e0f2fe !important;
    padding: 1.5rem;
    text-align: center;
    background: #f8fbff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
}

.partner-card img {
    max-width: 140px;
    max-height: 90px !important;
    object-fit: contain !important;
    align-self: center;
    padding-top:1.0rem;
    margin-bottom: 0rem;
}

.site-footer {
    background: #0a151b;
    color: #dad4d4;
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.footer-logo img {
    max-width: 160px;
}

.site-footer p {
    color: #dad4d4;
    line-height: 1.6;
}

.footer-heading {
    text-transform: uppercase;
    font-weight: 600;
    color: #7ed957;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #dad4d4;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #dad4d4;
}

.footer-contact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact a {
    color: #dad4d4;
    text-decoration: none;
}

.footer-contact i {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7ed957;
}

.footer-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #7ed957;
    color: #0a151b;
    margin-top: 1rem;
}

.footer-social:hover {
    background: #63b342;
    color: #0a151b;
}

.footer-social img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    border-top: 1px solid #3a4251;
    margin-top: 2rem;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.footer-bottom-links a {
    color: #dad4d4;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


.primary-btn {
    background-color: #76b828;
    padding: 0.85rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.primary-btn:hover {
    background-color: #5f951f;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0096df, #006fbb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 12px 30px rgba(0, 110, 187, 0.35);
    border: 3px solid #f7fbff;
}

/* Disabled field styling after OTP verification */
.disabled-field,
input.form-control:disabled,
input.form-control[disabled],
input.form-control[readonly] {
    background-color: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.9;
    border-color: #ced4da !important;
}

/* Hide scrollbar for all browsers */
.no-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.no-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}


