/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght,YOPQ@100..900,300&display=swap');

:root {
    --primary-blue: #0d6efd;
    --dark-blue: #161a30;
    --text-muted: #6b7280;
    --rbheading: #0a165e;
    --rbsubheading: #2b4dff;
    --rblightblue: #1930a8;
    --rbtext: #585b6f;
    --rbwhite: #fff;
    --rbblack: #000;
    --rblink: #cccccc;
    --rbicon: #0F313A;
    --rblight: #f5f6f7;
    --rbshadow: 0 4px 13px 0 rgba(0, 0, 0, 0.10);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    --rbgradient: linear-gradient(134deg, #2555ff 0%, #5b43ff 100%);
}

*,
body {
    margin: 0px;
    padding: 0px;
    font-family: "Kumbh Sans", sans-serif;
}

html {
    -webkit-text-size-adjust: none;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0px;
    margin: 0px;
}

p {
    padding: 0px;
    margin: 0px;
    box-shadow: none;
}

ol,
ul,
li {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

a {
    padding: 0px;
    margin: 0px;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.35s ease-in-out;
    text-decoration: none;
}

.form-control {
    height: 45px;
    border: 1px solid var(--rbheading);
    margin-bottom: 15px;
    border-radius: 3px;
}

.form-control::placeholder {
    color: var(--rbheading);
    font-size: 16px;
    font-weight: 400;
}

textarea.form-control {
    height: 100px;
    min-height: 80px;
    max-height: 120px;
}

a:hover {
    cursor: pointer;
}

.equal_space {
    padding: 80px 0px;
}

.extra_equal_space {
    padding: 90px 0px;
}

.clear {
    clear: both;
}

.container-fluid {
    width: 95%;
}

@media (max-width: 767px) {
    .container-fluid {
        width: 100%;
    }
}

/* Common Section Subtitle Styles */
.section-subtitle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.toggle-switch {
    width: 28px;
    height: 14px;
    background-color: #3b71fe;
    border-radius: 10px;
    position: relative;
    margin-right: 10px;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
}

.subtitle-text {
    color: #3b71fe;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Common Button Styles */
.rb-btn-primary {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: var(--rbsubheading);
    border-radius: 18px 0px;
    padding: 12px 28px;
}

.rb-btn-primary .btn-wrap {
    float: left;
    z-index: 1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-width: medium !important;
    border-style: none !important;
    border-color: currentcolor !important;
    border-image: initial !important;
}

.rb-btn-primary .btn-wrap .rb-text1 {
    color: var(--rbwhite);
    text-transform: capitalize;
    align-items: center;
    position: relative;
    display: flex !important;
    transition: 0.3s;
}

.rb-btn-primary .btn-wrap .rb-text2 {
    color: var(--rbwhite);
    text-transform: capitalize;
    align-items: center;
    position: absolute;
    top: 100%;
    display: flex !important;
    transition: 0.3s;
}

.rb-btn-primary:hover .btn-wrap .rb-text1 {
    transform: translateY(-150%);
}

.rb-btn-primary:hover .btn-wrap .rb-text2 {
    top: 50%;
    transform: translateY(-50%);
}


.rb-btn-secondry {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    background: var(--rbwhite);
    border: 2px solid var(--rbsubheading);
    border-radius: 18px 0px;
    padding: 12px 28px;
    width: fit-content;
}

.rb-btn-secondry .btn-wrap {
    float: left;
    z-index: 1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-width: medium !important;
    border-style: none !important;
    border-color: currentcolor !important;
    border-image: initial !important;
}

.rb-btn-secondry .btn-wrap .rb-text1 {
    color: var(--rbsubheading);
    text-transform: capitalize;
    align-items: center;
    position: relative;
    display: flex !important;
    transition: 0.3s;
}

.rb-btn-secondry .btn-wrap .rb-text2 {
    color: var(--rbsubheading);
    text-transform: capitalize;
    align-items: center;
    position: absolute;
    top: 100%;
    display: flex !important;
    transition: 0.3s;
}

.rb-btn-secondry:hover .btn-wrap .rb-text1 {
    transform: translateY(-150%);
}

.rb-btn-secondry:hover .btn-wrap .rb-text2 {
    top: 50%;
    transform: translateY(-50%);
}