:root {
    --qs-red: #f90000;
    --qs-blue: #0000ff;
    --qs-blue-dark: #00165f;
    --qs-ink: #13142a;
    --qs-muted: #666b7c;
    --qs-surface: #ffffff;
    --qs-soft: #f6f7ff;
    --qs-border: rgba(0, 0, 255, 0.1);
    --qs-shadow: 0 18px 50px rgba(18, 24, 72, 0.11);
    --qs-radius: 22px;
}

body {
    color: var(--qs-ink);
    background: #fff;
}

body:not(.modal-open) .slider-section {
    animation: qsFadeIn 0.7s ease both;
}

p {
    color: var(--qs-muted);
    line-height: 1.75;
}

.top-header {
    padding: 8px 0;
    background: linear-gradient(90deg, var(--qs-blue-dark), var(--qs-blue));
}

.top-navbar {
    gap: 18px;
}

.top-navbar .nav-link,
.date-time a,
.date-time time {
    gap: 7px;
    font-size: 13px;
}

.top-navbar .nav-link i,
.date-time i {
    color: #fff;
    opacity: 0.9;
}

.header-app-link {
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.bottom-header {
    padding: 11px 0;
    background: rgba(255, 255, 255, 0.98);
}

.logo-left img {
    width: 230px;
    height: 62px;
}

.login-register {
    min-width: 245px;
    padding: 7px 52px 7px 15px;
    border: 1px solid rgba(0, 0, 255, 0.08);
    border-radius: 50px 0 0 50px;
    background: linear-gradient(110deg, var(--qs-blue-dark), var(--qs-blue));
    box-shadow: 0 10px 26px rgba(0, 0, 255, 0.18);
}

.login-register::after {
    width: 45px;
    background: linear-gradient(145deg, #ff3434, var(--qs-red));
}

.login-register li a {
    font-size: 14px;
}

.navbar-section {
    position: relative;
    z-index: 1000;
}

.navbar-section .navbar {
    min-height: 55px;
    background: linear-gradient(90deg, #d90000, var(--qs-red)) !important;
    box-shadow: 0 8px 22px rgba(132, 0, 0, 0.16);
}

.navbar-section .navbar-collapse {
    justify-content: center;
}

.navbar-section #custom-nabvar {
    width: 100%;
    justify-content: center;
}

.navbar-section .nav-link {
    position: relative;
    overflow: hidden;
    margin: 7px 2px;
    padding: 0.72rem 0.85rem;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 12px;
}

.navbar-section .nav-link::after {
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 18px;
    height: 3px;
    content: "";
    border-radius: 4px;
    background: #fff;
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
    transition: opacity 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.navbar-section .nav-link.active::after {
    width: 30px;
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.navbar-section .nav-link i {
    margin-right: 3px;
}

.navbar-section .nav-link.active,
.navbar-section .nav-link:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: none;
}

.navbar-section .nav-link.active {
    color: #fff !important;
    border-color: transparent;
    background: transparent !important;
    box-shadow: none;
    font-weight: 700;
}

.navbar-section .nav-link.active:hover {
    border-color: transparent;
    background: transparent !important;
    box-shadow: none;
}

.navbar-section.navbar-Show {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(17, 18, 53, 0.18);
    animation: top 0.35s ease-in-out;
}

.mobile-login-trigger {
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 11px 16px;
    margin-top: 6px;
    color: var(--qs-red);
    font-size: 13px;
    font-weight: 750;
    border: 0;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(89, 0, 0, 0.15);
}

.slider-section {
    position: relative;
    background: var(--qs-blue-dark);
}

.slider-imgbox {
    overflow: hidden;
}

.slider-imgbox img {
    height: clamp(330px, 38vw, 520px);
    object-fit: cover;
    animation: qsHeroZoom 9s ease-in-out infinite alternate;
}

.main-slider .slick-prev,
.main-slider .slick-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.main-slider .slick-prev {
    left: 24px !important;
}

.main-slider .slick-next {
    right: 24px !important;
}

.main-slider .slick-dots {
    bottom: 22px !important;
}

.main-slider .slick-dots li button::before {
    color: #fff;
    opacity: 0.55;
}

.main-slider .slick-dots li.slick-active button::before {
    color: var(--qs-red);
    opacity: 1;
}

.home-trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -34px;
    padding-bottom: 24px;
}

.home-trust-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--qs-radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--qs-shadow);
    backdrop-filter: blur(12px);
    animation: qsRiseIn 0.75s 0.15s ease both;
}

.home-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 100px;
    padding: 22px 28px;
}

.home-trust-item + .home-trust-item {
    border-left: 1px solid var(--qs-border);
}

.home-trust-icon {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    font-size: 21px;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--qs-red), var(--qs-blue));
    box-shadow: 0 9px 22px rgba(0, 0, 255, 0.18);
    animation: qsIconFloat 3.2s ease-in-out infinite;
}

.home-trust-item:nth-child(2) .home-trust-icon {
    animation-delay: 0.35s;
}

.home-trust-item:nth-child(3) .home-trust-icon {
    animation-delay: 0.7s;
}

.home-trust-item {
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.home-trust-item:hover {
    background: linear-gradient(135deg, rgba(249, 0, 0, 0.035), rgba(0, 0, 255, 0.045));
    transform: translateY(-3px);
}

.home-trust-item strong,
.home-trust-item small {
    display: block;
}

.home-trust-item strong {
    margin-bottom: 3px;
    color: var(--qs-ink);
    font-size: 16px;
}

.home-trust-item small {
    color: var(--qs-muted);
    line-height: 1.45;
}

.become-section,
.team-section,
.contact-us-section,
.partner-section {
    position: relative;
    background: linear-gradient(180deg, #fff, var(--qs-soft)) !important;
}

.become-section {
    padding-top: 45px !important;
}

.become-card {
    padding: 9px;
    border: 1px solid rgba(249, 0, 0, 0.09);
    border-radius: 28px;
    box-shadow: var(--qs-shadow);
}

.retailer-card {
    position: relative;
    overflow: hidden;
    padding: 38px 38px 15px;
    border-radius: 22px;
    background: linear-gradient(135deg, #d80000, var(--qs-red));
}

.retailer-card::after {
    position: absolute;
    top: -130px;
    right: -100px;
    width: 310px;
    height: 310px;
    content: "";
    border: 50px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: qsSlowSpin 18s linear infinite;
}

.retailer-card h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    letter-spacing: -1.5px;
}

.retailer-card .txt,
.retailer-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
}

.retailer-card .rd-list1 {
    padding: 18px 22px 18px 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
}

.retailer-card h5 {
    width: 100%;
    font-size: 1.15rem;
    line-height: 1.6;
}

.retailer-card .rd-list2 {
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: linear-gradient(135deg, var(--qs-blue-dark), var(--qs-blue));
    box-shadow: 0 15px 35px rgba(0, 0, 255, 0.2);
}

.retailer-card .rd-list2 li {
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.55;
}

.rt-pick img {
    max-width: 370px;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.become-card:hover .rt-pick img {
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.26));
    transform: translateY(-8px) scale(1.02);
}

.inst-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.inst-list li {
    display: flex;
    align-items: center;
    min-height: 86px;
    padding: 18px;
    margin: 0;
    font-size: 1rem;
    border: 1px solid var(--qs-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(18, 24, 72, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.inst-list li:hover {
    border-color: rgba(249, 0, 0, 0.25);
    box-shadow: 0 18px 36px rgba(18, 24, 72, 0.13);
    transform: translateY(-6px);
}

.inst-list li:hover img {
    animation: qsCheckPop 0.45s ease;
}

.inst-list li img {
    width: 34px;
}

.business-card {
    padding: 20px 30px;
    border: 1px solid rgba(249, 0, 0, 0.12);
    border-radius: 22px;
    box-shadow: var(--qs-shadow);
}

.ap-cards-list img {
    width: 165px;
}

.aadhar-pan-cards-text h4 {
    font-size: 1.8rem;
}

.title-busniss {
    color: var(--qs-blue-dark);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-style: normal;
    font-weight: 800;
}

.apply-btn,
.regster-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    font-size: 1rem;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    background: linear-gradient(100deg, var(--qs-red), var(--qs-blue));
    box-shadow: 0 12px 28px rgba(0, 0, 255, 0.2);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.apply-btn::after,
.regster-btn::after,
.comn-btn::after,
.comn-btn1::after {
    position: absolute;
    top: -60%;
    left: -35%;
    width: 24%;
    height: 220%;
    content: "";
    background: rgba(255, 255, 255, 0.38);
    transform: rotate(24deg) translateX(-250%);
    transition: transform 0.65s ease;
}

.apply-btn:hover,
.regster-btn:hover {
    color: #fff;
    box-shadow: 0 17px 34px rgba(0, 0, 255, 0.28);
    transform: translateY(-4px);
}

.apply-btn:hover::after,
.regster-btn:hover::after,
.comn-btn:hover::after,
.comn-btn1:hover::after {
    transform: rotate(24deg) translateX(700%);
}

.comn-btn,
.comn-btn1 {
    position: relative;
    overflow: hidden;
}

.district-section {
    position: relative;
    overflow: hidden;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background: linear-gradient(135deg, var(--qs-blue-dark), var(--qs-blue)) !important;
}

.district-section::before {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 430px;
    height: 430px;
    content: "";
    border: 70px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    animation: qsAmbientDrift 9s ease-in-out infinite alternate;
}

.district-section:nth-of-type(even) {
    background: linear-gradient(135deg, #00165f, #0000cc) !important;
}

.district-title,
.our-team-heading,
.our-partner-heading {
    font-size: clamp(2.25rem, 4vw, 3.4rem);
    letter-spacing: -1px;
}

.district-title {
    margin-bottom: 55px;
}

.district-busines-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--qs-radius);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.district-busines-card:hover {
    border-color: rgba(255, 255, 255, 0.27);
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-6px);
}

.district-busines-card p {
    color: rgba(255, 255, 255, 0.82);
}

.laptop-img {
    max-width: 440px;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.26));
    animation: qsDeviceFloat 4.5s ease-in-out infinite;
}

.min-high-invest {
    gap: 12px;
    flex-wrap: wrap;
}

.min-high-invest > div {
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.min-high-invest h5 {
    font-size: 1rem;
}

.get-card {
    width: 100%;
    padding: 27px 30px 20px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--qs-radius);
    background: rgba(255, 255, 255, 0.07);
}

.get-card h3 {
    font-size: 1.8rem;
}

.get-list {
    gap: 10px;
}

.get-list li {
    padding: 8px 13px;
    margin: 0;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.get-list li:hover {
    background: rgba(249, 0, 0, 0.7);
    transform: translateY(-3px);
}

.get-list li .bi {
    color: #ffb3b3;
}

.unl-creatiion {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.14);
}

.unl-creatiion ul {
    display: grid;
    gap: 10px;
}

.unl-creatiion ul li {
    width: 100%;
    padding: 11px 18px 11px 42px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    border: 0;
    border-radius: 13px;
    background: rgba(249, 0, 0, 0.82);
}

.digital-seva-about-section {
    padding-top: 75px !important;
    background: linear-gradient(135deg, #00165f, #0000c9) !important;
}

.about-content-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--qs-radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-content-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-5px);
}

.digital-seva-about-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
}

.exp-digital > div {
    min-height: 92px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.india-pick,
.bihar-map img {
    filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.24));
}

.retdt-list li {
    min-height: 60px;
    padding: 9px 22px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.retdt-list li:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(7px);
}

.quick-seva-section {
    padding: 80px 0 145px;
    background: linear-gradient(135deg, rgba(0, 0, 255, 0.92), rgba(249, 0, 0, 0.82)), url(../images/bg.jpg) !important;
}

.quick-seva-title {
    margin-bottom: 25px;
    padding: 9px 18px;
    font-size: 0.82rem;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
}

.quick-seva-heading {
    margin-bottom: 40px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
}

.quick-seva-info {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
}

.counter-area {
    padding: 35px 12px;
    border: 1px solid var(--qs-border);
    border-radius: var(--qs-radius);
    box-shadow: var(--qs-shadow);
}

.counter-single-box {
    padding: 15px;
    transition: transform 0.25s ease;
}

.counter-single-box:hover {
    transform: translateY(-6px);
}

.counter-icon {
    width: 58px;
    height: 58px;
    padding: 15px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(249, 0, 0, 0.11), rgba(0, 0, 255, 0.1));
    transition: transform 0.35s ease;
}

.counter-single-box:hover .counter-icon {
    transform: rotate(-7deg) scale(1.1);
}

.counter-number {
    font-size: 34px;
}

.counter-title h4 {
    font-size: 16px;
}

.contact-us-section {
    padding: 85px 0 !important;
}

.contact-us-section .row {
    align-items: stretch;
}

.contact-us-box,
.contact-us-content {
    height: 100%;
    border-radius: var(--qs-radius);
}

.contact-us-box {
    padding: 32px;
    border: 1px solid var(--qs-border);
    background: #fff;
    box-shadow: var(--qs-shadow);
}

.contact-us-content {
    position: relative;
    overflow: hidden;
    padding: 48px;
    color: #fff;
    background: linear-gradient(135deg, var(--qs-blue-dark), var(--qs-blue));
    box-shadow: var(--qs-shadow);
}

.contact-us-content::after {
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    content: "";
    border: 45px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: qsSlowSpin 20s linear infinite reverse;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--qs-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-us-content .section-kicker {
    color: #ffadad;
}

.contact-us-content .comn-section-heading h2 {
    color: #fff !important;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.35;
}

.contact-us-section .contact-us-content .comn-info-box p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-us-box .form-control {
    min-height: 50px;
    border: 1px solid rgba(0, 0, 255, 0.1);
    border-radius: 12px;
    background: var(--qs-soft);
    box-shadow: none;
}

.contact-us-box textarea.form-control {
    min-height: 120px;
}

.contact-us-box .form-control:focus {
    border-color: rgba(0, 0, 255, 0.35);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 255, 0.07);
}

.team-section {
    padding: 80px 0 !important;
}

.team-single-box {
    margin-top: 18px;
    transition: transform 0.25s ease;
}

.team-single-box:hover {
    transform: translateY(-7px);
}

.team-thumb {
    min-height: 290px;
    border-radius: 22px;
    box-shadow: 0 16px 35px rgba(18, 24, 72, 0.12);
}

.team-thumb img {
    height: 320px;
    object-fit: cover;
}

.team-info {
    margin: -65px 20px 0;
    border: 1px solid var(--qs-border);
    border-radius: 18px;
    box-shadow: var(--qs-shadow);
}

.partner-section {
    padding: 70px 0 45px !important;
}

.partner-box {
    padding: 15px;
    border: 1px solid var(--qs-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(18, 24, 72, 0.07);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.partner-box:hover {
    border-color: rgba(249, 0, 0, 0.22);
    box-shadow: 0 16px 34px rgba(18, 24, 72, 0.13);
    transform: translateY(-6px);
}

.partner-box img {
    transition: transform 0.3s ease;
}

.partner-box:hover img {
    transform: scale(1.06);
}

.partner-imgbox {
    display: grid;
    min-height: 90px;
    place-items: center;
}

.footer-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 52px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 8%, rgba(249, 0, 0, 0.2), transparent 28%),
        radial-gradient(circle at 92% 92%, rgba(0, 0, 255, 0.28), transparent 32%),
        linear-gradient(135deg, #070b35, #00105f 58%, #000095);
}

.footer-section::before,
.footer-section::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.footer-section::before {
    top: -160px;
    left: -130px;
    width: 390px;
    height: 390px;
}

.footer-section::after {
    right: -170px;
    bottom: -230px;
    width: 500px;
    height: 500px;
}

.footer-cta {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 25px 30px;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background:
        linear-gradient(105deg, rgba(249, 0, 0, 0.96), rgba(0, 0, 255, 0.93)),
        #0000ff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
}

.footer-cta::before,
.footer-cta::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.footer-cta::before {
    top: -100px;
    left: 42%;
    width: 230px;
    height: 230px;
}

.footer-cta::after {
    right: -55px;
    bottom: -95px;
    width: 190px;
    height: 190px;
    background: rgba(255, 255, 255, 0.04);
}

.footer-cta-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    color: var(--qs-blue);
    font-size: 28px;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    animation: qsIconFloat 3.4s ease-in-out infinite;
}

.footer-cta-copy {
    position: relative;
    z-index: 1;
}

.footer-cta-copy > span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.footer-cta-copy h2 {
    margin: 0 0 4px;
    color: #fff;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
}

.footer-cta-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.footer-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-cta-primary,
.footer-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 12px;
}

.footer-cta-primary {
    color: var(--qs-blue);
    border-color: #fff;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.footer-cta-primary:hover {
    color: var(--qs-red);
    transform: translateY(-3px);
}

.footer-cta-primary i {
    transition: transform 0.25s ease;
}

.footer-cta-primary:hover i {
    transform: translateX(4px);
}

.footer-cta-secondary {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
}

.footer-cta-secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.footer-shell {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.footer-shell::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--qs-red), var(--qs-blue), var(--qs-red));
    background-size: 200% 100%;
    animation: qsGradientSlide 6s linear infinite;
}

.footer-section .top-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 34px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 26px;
}

.footer-section .footer-logo {
    display: grid;
    flex: 0 0 235px;
    min-height: 84px;
    padding: 13px 20px;
    place-items: center;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.footer-section .footer-logo img {
    width: 195px;
    max-height: 58px;
    object-fit: contain;
}

.footer-brand-copy {
    max-width: 500px;
}

.footer-brand-copy span,
.footer-kicker,
.footer-social-label {
    display: block;
    color: #ff9292;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-brand-copy h3 {
    margin: 7px 0 0;
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.35;
}

.footer-section .social-area {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.footer-social-label {
    color: rgba(255, 255, 255, 0.64);
    white-space: nowrap;
}

.footer-section .social-icon-box .icon {
    display: flex;
    gap: 9px;
}

.footer-section .social-icon-box .icon li a i {
    width: 40px;
    height: 40px;
    margin: 0;
    color: #fff;
    line-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, var(--qs-red), var(--qs-blue));
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.2);
}

.footer-section .social-icon-box .icon li a:hover i {
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-5px) rotate(8deg);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr 1.75fr;
    gap: 42px;
    padding: 38px 34px 42px;
}

.footer-about-column {
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about-column p {
    margin: 13px 0 22px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -7px 0 20px;
}

.footer-trust-list span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.055);
}

.footer-trust-list i {
    color: #ff8585;
}

.footer-app-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    background: linear-gradient(100deg, var(--qs-red), var(--qs-blue));
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.footer-app-button i {
    font-size: 22px;
}

.footer-app-button span,
.footer-app-button small {
    display: block;
}

.footer-app-button span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.footer-app-button small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-app-button:hover {
    color: #fff;
    box-shadow: 0 17px 32px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.footer-contact-column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 13px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.055);
}

.footer-contact-item:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-contact-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #fff;
    font-size: 17px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--qs-red), var(--qs-blue));
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.17);
    transition: transform 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    transform: rotate(-7deg) scale(1.08);
}

.footer-contact-item > span:last-child {
    min-width: 0;
}

.footer-contact-item small,
.footer-contact-item strong {
    display: block;
}

.footer-contact-item small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.footer-contact-item strong {
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.footer-links-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-link-group h4 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.footer-link-group h4::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    content: "";
    border-radius: 4px;
    background: var(--qs-red);
    box-shadow: 10px 0 0 rgba(0, 0, 255, 0.9);
}

.footer-link-group li {
    margin-bottom: 9px;
}

.footer-link-group a {
    position: relative;
    display: inline-block;
    padding-left: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.footer-link-group a::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 4px;
    height: 4px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.footer-link-group a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-link-group a:hover::before {
    background: var(--qs-red);
    transform: scale(1.5);
}

.copyright-section {
    padding: 15px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050725;
}

.copyright-reserve-text p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7) !important;
}

.developby-text a {
    font-weight: 700;
}

@keyframes qsGradientSlide {
    to {
        background-position: 200% 0;
    }
}

@keyframes qsFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes qsRiseIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes qsHeroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.025);
    }
}

@keyframes qsIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes qsDeviceFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes qsAmbientDrift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(-35px, 28px, 0) scale(1.08);
    }
}

@keyframes qsSlowSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes qsCheckPop {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.22) rotate(-8deg);
    }
}

@media (max-width: 991.98px) {
    .bottom-header {
        display: none;
    }

    .navbar-section .navbar {
        padding: 8px 0 !important;
    }

    .navbar-brand img {
        width: 145px;
        height: 40px;
        padding: 4px 10px;
        object-fit: contain;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.94);
    }

    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 10px;
        box-shadow: none !important;
    }

    .navbar-section .navbar-collapse {
        padding: 10px 0;
    }

    .navbar-section .nav-link {
        padding: 11px 14px;
    }

    .home-trust-card {
        grid-template-columns: 1fr;
    }

    .home-trust-item {
        min-height: auto;
        padding: 18px 22px;
    }

    .home-trust-item + .home-trust-item {
        border-top: 1px solid var(--qs-border);
        border-left: 0;
    }

    .mretainer {
        gap: 15px;
    }

    .inst-list {
        grid-template-columns: 1fr;
    }

    .business-card {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .district-busines-card {
        margin-bottom: 25px;
    }

    .contact-us-content {
        margin-top: 22px;
    }

    .link-row {
        flex-wrap: wrap;
        gap: 15px 30px;
    }

    .footer-section .top-footer {
        align-items: flex-start;
    }

    .footer-cta {
        grid-template-columns: auto 1fr;
    }

    .footer-cta-actions {
        grid-column: 1 / -1;
        padding-left: 92px;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about-column {
        padding-right: 0;
        border-right: 0;
    }

    .footer-links-column {
        grid-column: 1 / -1;
        padding-top: 26px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
@media (max-width: 767.98px) {
    .top-header .row {
        gap: 7px;
    }

    .top-navbar-box,
    .date-time {
        justify-content: center;
    }

    .date-time time {
        display: none;
    }

    .slider-imgbox img {
        height: 250px;
    }

    .main-slider .slick-prev,
    .main-slider .slick-next {
        display: none !important;
    }

    .home-trust-strip {
        margin-top: -18px;
    }

    .retailer-card {
        padding: 28px 22px 8px;
    }

    .retailer-card h2 {
        font-size: 2.15rem;
    }

    .business-card {
        padding: 22px 16px;
    }

    .ap-cards-list {
        gap: 8px;
    }

    .ap-cards-list img {
        width: 115px;
    }

    .aadhar-pan-cards-text h4 {
        font-size: 1.45rem;
    }

    .district-section,
    .digital-seva-about-section,
    .contact-us-section,
    .team-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .district-title,
    .our-team-heading,
    .our-partner-heading {
        margin-bottom: 45px;
        font-size: 2.25rem;
    }

    .district-busines-card,
    .get-card,
    .about-content-card,
    .contact-us-box,
    .contact-us-content {
        padding: 24px 20px;
    }

    .min-high-invest > div {
        width: 100%;
    }

    .exp-digital {
        flex-direction: column;
        align-items: stretch;
    }

    .counter-area {
        gap: 5px;
        margin-top: -100px;
    }

    .counter-single-box {
        border-bottom: 1px solid var(--qs-border);
    }

    .team-thumb {
        min-height: auto;
    }

    .team-thumb img {
        height: 350px;
    }

    .footer-section {
        padding: 55px 0 35px;
    }

    .footer-cta {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 22px;
        text-align: center;
    }

    .footer-cta-icon {
        width: 58px;
        height: 58px;
        margin: 0 auto;
        font-size: 24px;
    }

    .footer-cta-actions {
        grid-column: auto;
        justify-content: center;
        padding-left: 0;
    }

    .footer-shell {
        border-radius: 22px;
    }

    .footer-section .top-footer,
    .footer-brand,
    .footer-section .social-area {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .footer-section .top-footer {
        padding: 24px 22px;
    }

    .footer-section .footer-logo {
        flex-basis: auto;
        min-height: 70px;
    }

    .footer-brand-copy h3 {
        font-size: 1.35rem;
    }

    .footer-section .social-area {
        gap: 11px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 22px 34px;
    }

    .footer-contact-column,
    .footer-links-column {
        grid-column: auto;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-links-column {
        grid-template-columns: repeat(2, 1fr);
    }

    .copyright-reserve-text {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .developby-text {
        position: static;
        order: 2;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .top-navbar {
        gap: 6px;
    }

    .top-navbar .nav-link {
        font-size: 11px;
    }

    .top-navbar .nav-link.ms-3 {
        margin-left: 0 !important;
    }

    .header-app-link {
        font-size: 12px !important;
    }

    .slider-imgbox img {
        height: 205px;
    }

    .home-trust-item small {
        font-size: 11px;
    }

    .home-trust-item strong {
        font-size: 14px;
    }

    .ap-cards-list img {
        width: 90px;
    }

    .unl-creatiion ul li {
        padding-left: 18px;
    }

    .team-thumb img {
        height: 310px;
    }

    .footer-logo img {
        width: 190px;
    }

    .footer-section .footer-logo {
        width: 100%;
        max-width: 220px;
        padding: 11px 16px;
    }

    .footer-section .footer-logo img {
        width: 175px;
    }

    .footer-links-column {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-cta-primary,
    .footer-cta-secondary {
        width: 100%;
    }

    .footer-contact-item:hover,
    .footer-link-group a:hover {
        transform: none;
    }
}
