:root {
    --primary: #4881d5;
    --secondary: #1E405D;
    --border: rgba(72, 129, 213, 0.3);
    --gray-700: #4a5565;
    --gray-300: #d1d5dc;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--background);
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 18px;
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--secondary);
}


header {
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.60);
}


nav.primary {
    display: flex;
    height: 64px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

nav.primary .logo {
    color: #fff;
    font-weight: 600;
}

nav.primary .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    gap: 8px;
}

nav.primary .logo a .icon {
    --tw-text-opacity: 1;
    color: var(--primary);
}
nav.primary .logo a:hover {
    color: var(--primary)!important;
}

nav.primary .logo .name {
    color: #0A0A0A;
    font-weight: 600;
    font-size: 22px;
}



nav.primary ul {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    list-style: none;
}

/*
nav.primary ul li {
    margin: 0 5px;
}
*/

nav.primary ul li a {
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

nav.primary ul li a.active,
nav.primary ul li a:hover {
    color: #fff;
    background: var(--primary);
}

nav.primary .menu-btn i {
    color: #0A0A0A;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

input[type="checkbox"] {
    display: none;
}

.defult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: .5rem 1rem;
    font-size: 0.875rem;
    line-height: 1;
    height: 2.5rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}


.jonmonibondhon-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    margin: 0 auto 40px auto;
}

.header-info h1 {
    color: #fff;
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.header-info p {
    font-size: 18px;
    color: #fff;
    opacity: 0.95;
    font-weight: 300;
    max-width: 450px;

}

.jonmonibondhon-header-steps {
    margin: -60px 0 16px 0;
}

.main-container {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 16px;

}

.steps-container {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.steps-container > * {
  min-width: 0;
  overflow-wrap: break-word;
}

.jonmonibondhon-header-steps .header-card {
    background-color: #ffffff;
    padding: 20px 20px 20px 20px;
    flex: 1;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.jonmonibondhon-header-steps .header-card:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.jonmonibondhon-header-steps .step-number {
	display: block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	font-size: 18px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	margin: 0 auto 20px auto;
}


.jonmonibondhon-header-steps .header-card h2 {
    color: var(--primary);
    font-size: 1.4em;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.jonmonibondhon-header-steps .header-card p {
    color: #666;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}


.verify-section-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

.verify-section-container > * {
  min-width: 0;
  overflow-wrap: break-word;
}

.verify-info,
.verification-form {
    background: white;
    padding: 24px;
    border-radius: 10px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow:hidden!important;
}

.verify-info ins.adsbygoogle,
.verification-form ins.adsbygoogle {
	max-width: 100% !important;
	width: 100% !important;
	height: auto !important;
	display: block !important;
}

.verify-info h2,
.verification-form h2 {
    font-size: 22px;
    margin: 0 0 16px 0;
    font-weight: 700;
    padding: 0;
    color: var(--primary);
}

.verify-info p {
    line-height: 1.6;
    color: #333;
}

.info-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}


.birth-verify-section ,
.faq-section,
.content-section {
    margin: 16px 0;
}

/* Form Styling */
.form-description {
    color: #555;
    margin-bottom: 20px;
}

.form-item {
    margin-bottom: 16px;
}

.item-label {
    font-weight: 500;
    margin: 16px 0 8px 0;
    color: var(--primary);
}

.form-item input[type="text"],
.form-item input[type="number"],
.form-item select {
    width: 100%;
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #fff;
}

.form-item input[type="text"]:focus,
.form-item input[type="number"]:focus,
.form-item select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--border);
}

.birth-date-selectors {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.birth-date-selectors select {
    flex: 1;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.form-item select {
    appearance: none;
    -webkit-appearance: none;
	-moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20'><polygon points='5,7 15,7 10,13' fill='gray'/></svg>");

	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 22px;
	cursor: pointer;
}
.captcha-container {
    display: flex;
    overflow: hidden;
    gap: 8px;
    position: relative
}

.refresh-icon {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.refresh-icon img {
    border-bottom-right-radius: 10px
}

.refresh-icon img {
    width: 20px;
}

.captcha-container #captcha-img {
    border-radius: 6px;
    background: #ddd;
}

.verification-form .submit-btn {
    background: var(--primary);
    font-size: 16px;
    width: 100%;
    padding: 14px;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.verification-form .submit-btn:hover {
    background: var(--secondary);
}

.form-terms {
    font-size: 14px;
    color: #718096;
    margin: 24px 0 0 0 !important;
    text-align: center;
}

.content-section-container {
    margin: 32px 0 0 0;
}


.content-card-container {
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}
.content-card-container .content-card {
    background: #FFF;
    padding: 16px;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0 0 0.25rem var(--gray-300);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-card-container .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.content-card-container .content-card img {
    border-radius: 6px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.content-card-container .content-card h3 {
    font-size: 20px;
    margin: 0 0 8px 0;
}

.content-card-container .content-card p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.faq-section-container {
    margin: 32px 0;
}

.faq-area {
    background: #FFF;
    margin-top: 32px;
    padding: 8px 24px;
    border-radius: 8px;
    box-shadow: 0 0 0.25rem var(--gray-300);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 24px;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.section-header p {
    max-width: 400px;
    font-size: 18px;
    color: #555;
    margin: 8px auto 0 auto;
}


.faq-area .accordion-content {
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-area .accordion-content:last-child {
    border: none;
}


.accordion-content.open {
    padding-bottom: 16px;
}

.accordion-content h3 {
    display: flex;
    padding: 1rem 0;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s linear;
}


.accordion-content h3:hover>.title {
    text-decoration: underline;
}


.accordion-content h3 .title {
    font-size: 18px;
    font-weight: 500;
    color: #0A0A0A;
}

.accordion-content h3 .icon {
    display: flex;
    align-items: center;
}

.plus-icon,
.minus-icon {
    transition: 0.3s ease;
}

.minus-icon {
    display: none;
}

.accordion-content.open .plus-icon {
    display: none;
}

.accordion-content.open .minus-icon {
    display: block;
}

.accordion-content .description {
    font-size: 16px;
    height: 0;
    color: #333;
    font-weight: 400;
    transition: all 0.2s linear;
}






/* Page Class */

.pages-container{
    margin: 32px 0px;
}

nav.breadcrumb {
    margin: 16px 0;
}

nav.breadcrumb p {
    font-size: 16px;
}

nav.breadcrumb .delimiter {
    margin: 0 4px;
}

nav.breadcrumb a {
    color: #0A0A0A;
}

nav.breadcrumb a:hover {
    color: var(--primary);
}

nav.breadcrumb .current {
    font-weight: 500;

}

.pages-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    padding: 0;
}

.pages-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 16px 0 16px 0;
    padding: 0;
}

.pages-content h3,
.pages-content h4,
.pages-content h5,
.pages-content h6 {
    font-size: 24px;
    font-weight: 600;
    margin: 16px 0 16px 0;
    padding: 0;
}

.pages-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
}

.pages-content ul,
.pages-content ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.pages-content ul li,
.pages-content ol li {
    margin-bottom: 4px;
    font-size: 18px;
    color: #333;
}



/* Footer */
footer {
    background: rgb(249 250 251);
    border-top: 2px solid var(--primary);
    padding: 32px 0 16px 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}


.footer-col {
    flex: 1;
}


.footer-col h3 {
    color: #0A0A0A;
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}


.footer-about p {
    color: rgb(107 114 128);
    line-height: 1.3;
    font-size: 16px;
}


.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}


.footer-links a {
    color: rgb(107 114 128);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a.active {
    color: #333;
    transform: translateX(0px);

}


.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0.5rem 0 0.5rem;
    font-size: 0.875rem;
    color: rgb(107 114 128);
    border-top: 1px solid hsl(0 0% 89.8%);

}

.footer-bottom a {
    color: var(--primary);
}

.footer-bottom a:hover {
    transition: 0.3s;
    color: #0A0A0A;
}



#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 99;
    font-size: 22px;
    border: none;
    outline: none;
    background-color: var(--primary);
    color: #fff;
    cursor: pointer;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

#backToTopBtn:hover {
    background-color: var(--secondary);
}


#appInstallBtn {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    height: 45px;
    padding: 0 16px;
    line-height: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}



/*Verify Page Css*/
.result-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 32px 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.result-header {
    margin: 0 0 20px 0;
    text-align: center;
    
}
.result-header .result-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0 20px 0;
}
.result-header .result-icon.success {
    background-color: #d4edda;
    color: #28a745;
}
.result-header .result-icon.error {
    background-color: #f8d7da;
    color: #dc3545;
}
.result-header .result-icon.default {
    background-color: #d1ecf1;
    color: #17a2b8;
}
.result-header .result-title {
    font-size: 28px;
    margin: 0;
    color: #000;
    padding: 0;
    
}
.detail-section {
    margin: 20px 0;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}
.detail-row:last-child {
    border-bottom: none;
}
.detail-row .detail-label {
    font-weight: 600;
    color: #333;
}
.detail-row .detail-value {
    color: #2D3436;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}
.action-buttons form {
    width: 100%;
}
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}
.btn {
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-secondary {
    background: var(--secondary);
    color: #fff;
}
.btn:hover {
    transform: translateY(-1px);
    color: #fff;
}
.result-message {
    padding: 20px;
    border-radius: 12px;
    margin: 16px 0;
    text-align: center;
    line-height: 1.6;
}
.result-message p {
    margin: 0;
    padding: 0;
}
.message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.message-default {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.terms-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 20px;
}
.terms-text p {
    margin: 0;
}



@media screen and (min-width: 768px) {
    .steps-container {
        flex-direction: row;
    }

    .jonmonibondhon-header-steps .header-card {
        border-bottom: none;
        border-right: 1px solid #f0f0f0;
    }

    .jonmonibondhon-header-steps .header-card:last-child {
        border-right: none;
    }

    .verify-section-container {
        grid-template-columns: 1fr 1fr;
    }

    .birth-date-selectors {
        flex-direction: row;
    }

    .footer-grid {
        gap: 64px;
        grid-template-columns: repeat(3, 1fr);

    }
    .action-buttons {
        flex-direction: row;
    }
}


@media (min-width: 1200px) {
    nav.primary {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }

    .footer-container {
        padding: 0;
    }
    .main-container {
        padding: 0;
    }
}


/* nav.primaryigation Menu Rules */

@media (max-width: 920px) {
    nav.primary .menu-btn i {
        display: block;
    }

    .menu-btn {
        width: 30px;
        height: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .menu-btn .icon,
    .menu-btn .icon::before,
    .menu-btn .icon::after {
        content: "";
        width: 30px;
        height: 3px;
        background: #000;
        display: block;
        transition: 0.3s ease;
        border-radius: 2px;
        position: absolute;
    }

    /* Top line */
    .menu-btn .icon::before {
        transform: translateY(-8px);
    }

    /* Bottom line */
    .menu-btn .icon::after {
        transform: translateY(8px);
    }

    /* When checkbox is checked → turn into X */
    #click:checked+.menu-btn .icon {
        background: transparent;
    }

    #click:checked+.menu-btn .icon::before {
        transform: rotate(45deg);
    }

    #click:checked+.menu-btn .icon::after {
        transform: rotate(-45deg);
    }


    nav.primary ul {
        position: fixed;
        top: 65px;
        left: -100%;
        background: #333;
        height: 100vh;
        width: 70%;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
    }

    #click:checked~ul {
        left: 0;
    }

    nav.primary ul li {
        width: 100%;
        margin: 0;
    }

    nav.primary ul li a {
        width: 100%;
        margin-left: -100%;
        display: block;
        font-size: 14px;
        transition: none;
    }

    #click:checked~ul li a {
        color: #fff;
        margin: 0px;
        padding: 16px 0;
        display: inline-block;
    }

    nav.primary ul li a.active,
    nav.primary ul li a:hover {
        background: var(--primary);
        color: #fff;
        border-radius: 0;
    }
}