
/* ===== Base Layout ===== */
html, body {
    width: 100% !important;
    overflow-x: hidden !important;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #fff;
}

/* ===== Typography ===== */
h1, h2, h3, .title {
    font-family: 'Nunito', sans-serif;
}

h1, h2 {
    font-weight: 700;
}

.text-muted {
    color: #6c757d !important;
}

/* ===== Utility Classes ===== */
.txt-blue {
    color: #007bff;
}

.bg-custom {
    background-color: #cae3ee;
}

.shadow-sm {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}



/* ===== Footer ===== */
footer a:hover {
    color: #78a4e7 !important;
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: #f8f9fc;
    padding: 60px 20px;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps {
    max-width: 900px;
    margin: auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    min-width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 18px;
    font-weight: bold;
    color: #fff;

    background: linear-gradient(135deg, #6247ea, #8a6bff);
    box-shadow: 0 4px 10px rgba(98, 71, 234, 0.3);
}

.step-content h4 {
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}


 /* ===== Buttons ===== */
.btn-custom {
    background-color: #6247ea;
    border-color: #6247ea;
    color: #fff;
}

.btn-custom:hover {
    background-color: #4d37bd;
    border-color: #4d37bd;
    color: #fff;
}

/* ===== Option Box ===== */
.option-box {
    display: flex;
    align-items: center;
    border: 1px solid #6c63ff;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.option-box:hover {
    background: #f3f0ff;
    border-color: #4b3ac0;
}

/* ===== List Group ===== */
.list-group-item {
    border: none !important;
    padding-left: 0;
    padding-right: 0;
}

.list-group-item + .list-group-item {
    border-top: 1px solid #eee !important;
}


    /* Smooth fade & motion animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1.2s ease-out forwards;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1.2s ease-out forwards;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Hover lift effect */
.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.1);
}

/* Decorative gradient circles */
.circle-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    filter: blur(40px);
    animation: float 6s ease-in-out infinite alternate;
}
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}
.btn1 {
    position: relative;
    z-index: 10;
}

.custom-toggler {
    border: none;
    background: transparent;
    padding: 8px;
    outline: none;
}

/* Bars */
.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animation when open */
.custom-toggler[aria-expanded="true"] .top-bar {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] .middle-bar {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .bottom-bar {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hover effect */
.custom-toggler:hover .toggler-icon {
    background: white;
}