@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Style+Script&display=swap");

:root {
    --bg-dark: #070b14;
    --bg-card: #111827;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --primary-blue: #003da0;
    --primary-red: #bf181c;
    --primary-purple: #7533d1;
    --primary-green: #048837;
    --primary-orange: #f97316;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --bg-deep-space: #060813;
    --bg-radial-center: #0d1226;
    --primary-navy: #0d1b3e;
    --btn-gradient: linear-gradient(180deg, #2b6ce6 0%, #1040a3 100%);
    --text-main: #333333;
    --border-color: #e5e7eb;
    --bg-light: #f8fafc;
    --success-green: #15803d;
    --star-gold: #fbbf24;
    --text-primary: #ffffff;

    --icon-blue-bg: #151e3a;
    --icon-blue-border: #233a75;
    --icon-blue-color: #5d92f5;
    --icon-blue-glow: rgba(93, 146, 245, 0.4);

    --icon-purple-bg: #22123a;
    --icon-purple-border: #3d1f69;
    --icon-purple-color: #b776f5;
    --icon-purple-glow: rgba(183, 118, 245, 0.4);

    --icon-green-bg: #0c261b;
    --icon-green-border: #164632;
    --icon-green-color: #3fcf8e;
    --icon-green-glow: rgba(63, 207, 142, 0.4);

    --transition-smooth: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1500px !important;
    margin: 0 auto;
    padding: 0 2% !important;
}

/* index page css */

/* nav */

.site-header {
    background-color: #000b23; /* Dark blue matching the image */
    color: #ffffff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px;
    height: 76px;
}

/* Logo Area */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    width: 20%;
    z-index: 1001;
}

.logo-icon svg {
    width: 40px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.logo-bottom {
    color: #ea2b33; /* Exact red from image */
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Desktop Navigation */
.nav-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0 auto; /* Centers the nav links */
}

.nav-links li a {
    color: #c4c9d4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links li a:hover {
    color: #ffffff;
}

.dropdown-arrow {
    font-size: 10px;
}

/* Buttons */
.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline {
    background: transparent;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3) !important;
    padding: 10px 30px !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-book-h {
    background: linear-gradient(to bottom, #f00a0a, #a60000);
    color: #ffffff !important;
    padding: 10px 30px !important;
    border: 1px solid #da2128;

    box-shadow: 0 2px 4px rgba(218, 33, 40, 0.3);
}

.btn-book-h:hover {
    background: linear-gradient(180deg, #e3363b 0%, #c4181e 100%);
}

/* Hamburger Menu Toggle (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

a {
    text-decoration: none !important;
}

/* nav end */

.w-100 {
    width: 100%;
}

.p-top {
    padding-top: 60px;
}

.c-w {
    color: white;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-main-red {
    background: #ef4444 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3) !important;
    padding: 15px 30px !important;
}

.btn-main-red:hover {
    background: #dc2626 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5) !important;
}

.btn-main-outline {
    background: transparent;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3) !important;
    padding: 15px 30px !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-main-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-primary-blue {
    display: inline-flex;
    align-items: center;
    background: var(--btn-gradient) !important;
    color: #fff;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 6px !important;
    font-weight: 700;
    font-size: 1.2rem !important;
    transition: opacity 0.2s;
}

.btn-primary-blue:hover {
    opacity: 0.9;
}

.btn-primary-blue svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.logo img {
    width: 90%;
}

.hero {
    position: relative;
    background: url(../images/hero-main-image.jpg) no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 50px;
    overflow: hidden;
    color: white;
}

.hero-content-elec {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.hero-text-h h1 {
    font-size: 3.5rem !important;
    line-height: 1.1;
    font-weight: 900 !important;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: white;
}

.hero-text-h .voter-highlight {
    color: #005ff7;
    text-shadow: 0 0 20px #000b1e;
}

.hero-text-h p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
    max-width: 90%;
    line-height: 1.6;
}

.features-wrapper {
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0rem;
}

.feature-item {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0);
    cursor: pointer;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpReveal 0.8s forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeUpReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-not-shad .feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgb(0 0 0 / 19%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.icon--hero-sec {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    position: relative;
    transform: translateZ(20px);
}

.icon-hero-sec::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-item:hover .icon-hero-sec::after {
    opacity: 1;
}

.icon-hero-sec i {
    padding: 13px;
    border-radius: 100px !important;
    font-size: 20px;
}

.icon-hero-sec {
    border-radius: 100px;
}

.icon-hero-sec.blue {
    background-color: var(--icon-blue-bg) !important;
    border: 1px solid var(--icon-blue-border);
    color: var(--icon-blue-color);
    box-shadow: inset 0 0 15px rgba(93, 146, 245, 0.1);
}

.icon-hero-sec.blue::after {
    background-color: var(--icon-blue-glow);
}

.icon-hero-sec.purple {
    background-color: var(--icon-purple-bg) !important;
    border: 1px solid var(--icon-purple-border);
    color: var(--icon-purple-color);
    box-shadow: inset 0 0 15px rgba(183, 118, 245, 0.1);
}

.icon-hero-sec.purple::after {
    background-color: var(--icon-purple-glow);
}

.icon-hero-sec.green {
    background-color: var(--icon-green-bg) !important;
    border: 1px solid var(--icon-green-border);
    color: var(--icon-green-color);
    box-shadow: inset 0 0 15px rgba(63, 207, 142, 0.1);
}

.icon-hero-sec.green::after {
    background-color: var(--icon-green-glow);
}

.text-container {
    transform: translateZ(10px);
}

.feature-text {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #f1f5f9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: color var(--transition-fast);
}

.feature-item:hover .feature-text {
    color: #ffffff;
}

@keyframes subtlePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature-item:hover .fa-stopwatch {
    animation: subtlePulse 1.5s infinite ease-in-out;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.watch-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.watch-action i {
    font-size: 20px;
}

.dashboard-mockup {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    animation: float 6s ease-in-out infinite;
}

.dashboard-mockup img {
    width: 100%;
}

@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-20px);
    }
    100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px);
    }
}

.trusted-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.trusted-title {
    font-size: 18px;
    font-weight: 700;
    color: rgb(4 14 33);
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.trusted-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(54 129 234);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.trusted-item:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.trusted-item i {
    color: rgb(54 129 234) !important;
    font-size: 20px;
}

.trusted-item:nth-child(2) i {
    color: #f59e0b;
}

.trusted-item:nth-child(3) i {
    color: #3b82f6;
}

.trusted-item:nth-child(4) i {
    color: #8b5cf6;
}

.trusted-item:nth-child(5) i {
    color: #10b981;
}

.trusted-item:nth-child(6) i {
    color: #4b5563;
}

.how-it-works {
    padding: 60px 0;
    background: #fafafa;
}

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hiw-content h2 {
    font-size: 32px;
    font-weight: 800 !important;
    margin-bottom: 15px;
    color: #111827;
}

.hiw-content p {
    color: #6b7280;
    margin-bottom: 50px;
    font-size: 18px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps-container::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 140px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.step h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111827;
}

.step p {
    font-size: 13px;
    color: #121c31;
    line-height: 1.4;
    margin-bottom: 0;
}

.why-choose-card {
    background-image: url(../images/mobile-img.jpg);
    border-radius: 20px;
    width: 100%;
    background-size: cover;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.why-choose-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111827;
}

.why-choose-card ul {
    padding-left: 0 !important;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.why-list li i {
    color: var(--primary-blue);
    background: #eff6ff;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
}

.section-row {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 2.5rem 0;
}

.media-section h2,
.trust-box h2,
.rewards-section h2 {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    margin-bottom: 1rem !important;
}

.media-section p,
.trust-box p,
.rewards-section p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

ul.pkg-features,
ul.feature-list {
    padding: 0 !important;
}

article.media-section ul li {
    font-size: 1rem;
    line-height: 2;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.feature-list svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    fill: var(--primary-blue);
    flex-shrink: 0;
}

.trust-box {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: #fff;
}

.trust-box h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.trust-box h3 span {
    color: var(--primary-blue);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.trust-item {
    text-align: center;
    font-size: 0.85rem;
    color: #283244;
    padding: 0 0.5rem;
}

.section-row.p-top {
    margin-top: 70px;
}

.trust-item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.trust-item svg {
    width: 52px;
    height: 52px;
    border: 1px solid grey;
    margin-bottom: 0.5rem;
    padding: 7px;
    border-radius: 100px;
}

.banner-box {
    border: 1px solid #b6cbf1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background: #fff;
}

.banner-content {
    padding: 1rem 1.5rem;
}

.banner-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.banner-content p {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.banner-content p span {
    color: var(--primary-blue);
}

.banner-image {
    height: 80px;
    width: auto;
    object-fit: cover;
}

.rewards-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rewards-section {
    background-color: white !important;
}

.icon-row-icon {
    display: flex !important;
    gap: 2rem !important;
    flex-direction: row !important;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.reward-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bg-dark);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.success-text {
    color: var(--success-green);
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.testimonial-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--star-gold);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: 2px;
}

.quote {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.author {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-main);
}

.author span {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

.packages {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.packages-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.packages-header p {
    color: #6b7280;
    margin-bottom: 60px;
    font-size: 16px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: end;
}

.pkg-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
}

.pkg-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pkg-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pkg-time {
    font-size: 48px;
    font-weight: 900;
    color: #111827;
    line-height: 1;
    margin-bottom: 5px;
}

.pkg-sec {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 30px;
    display: block;
}

.pkg-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 12px;
}

.pkg-features li i {
    color: #10b981;
    margin-top: 3px;
}

.pkg-price {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.pkg-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.pkg-green {
    border-top: 4px solid var(--primary-green);
    border-color: var(--primary-green);
}

.pkg-green .pkg-name {
    color: var(--primary-green);
}

.pkg-green .pkg-btn {
    background: var(--primary-green);
    color: white;
}

.pkg-green .pkg-btn:hover {
    box-shadow: 0 10px 20px rgba(0, 142, 94, 0.838);
}

.pkg-blue {
    border-top: 4px solid var(--primary-blue);
    border-color: var(--primary-blue);
}

.pkg-blue .pkg-name {
    color: var(--primary-blue);
}

.pkg-blue .pkg-btn {
    background: var(--primary-blue);
    color: white;
}

.pkg-blue .pkg-btn:hover {
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.pkg-purple {
    border: 2px solid var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    padding-top: 40px;
}

.pkg-purple:hover {
    transform: translateY(-20px);
}

.pkg-purple .pkg-name {
    color: var(--primary-purple);
}

.pkg-purple .pkg-btn {
    background: var(--primary-purple);
    color: white;
}

.pkg-purple .pkg-btn:hover {
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.most-popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-purple);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 14px 14px 0 0;
}

.pkg-orange {
    border-top: 4px solid var(--primary-orange);
    border-color: var(--primary-orange);
}

.pkg-orange .pkg-name {
    color: var(--primary-orange);
}

.pkg-orange .pkg-btn {
    background: var(--primary-orange);
    color: white;
}

.pkg-orange .pkg-btn:hover {
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.pkg-red {
    border-top: 4px solid var(--primary-red);
    border-color: var(--primary-red);
}

.pkg-red .pkg-name {
    color: var(--primary-red);
}

.pkg-red .pkg-btn {
    background: var(--primary-red);
    color: white;
}

.pkg-red .pkg-btn:hover {
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.custom-contact {
    margin-top: 50px;
    font-size: 15px;
    color: #6b7280;
}

.custom-contact a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.features-bar {
    background: linear-gradient(45deg, #00177c, #10043c);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.fb-item {
    color: white;
}

.fb-item i {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.fb-item h4 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fb-item p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
}

.cta-section {
    background: url(../images/crowds.JPG);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50%;
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 900 !important;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-btn-dark {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    display: flex !important;
}

.cta-btn-dark:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) !important;
}

.cta-ticks {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
}

.cta-tick {
    font-size: 12px !important;
    font-weight: 600;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
footer {
    background: linear-gradient(45deg, #040a29, #010416);
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.logo-footer img {
    width: 80%;
}

.footer-brand p {
    font-size: 13px;
    color: white;
    margin: 20px 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    color: white;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-col ul a:hover {
    color: var(--primary-blue);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 6px 0 0 6px;
    color: white;
    outline: none;
    flex: 1;
    font-size: 13px;
}

.newsletter-form button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #2563eb;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* survey page css  start*/

/* --- Left Column Styling --- */
.left-column {
    background: linear-gradient(
            to bottom,
            rgba(5, 10, 21, 0.177),
            rgba(5, 10, 21, 0.177) 90%
    ),
    url("../images/left_side_img.jpg") no-repeat;
    position: relative;

    background-position: top;
    background-size: contain !important;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
    /* padding-bottom: 7%; */
}

/* .left-column::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(5,10,21,0) 0%, rgba(5,10,21,1) 85%);
    z-index: 1;
  } */

.left-content {
    position: relative;
    z-index: 2;
    /* margin-block-start: auto; */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.logo-left a img {
    width: 40%;
}

.gov-title {
    font-family: "Oswald", sans-serif;
    text-align: center;
    margin-top: auto;

}

.gov-title h3 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    font-weight: 900 !important;
    color: var(--text-light);
    margin-bottom: 5px;

    text-shadow: 3px 3px 14px black;
    filter: drop-shadow(1px 2px 6px black);


}


img.candidate-logo {
    /* text-shadow: 3px 3px 14px black; */
    filter: drop-shadow(1px 2px 6px black);
    width: 70%;
}

.gov-title h3 i {
    color: rgb(188, 31, 0);
    font-size: 2rem;
}

.gov-title h1 {
    font-size: 2.5rem !important;
    line-height: 0.9;
    margin-bottom: 0;
    letter-spacing: normal;
    font-family: inter !important;
    color: white;
    font-weight: 900 !important;
}

.gov-title h1 .last-name {
    font-family: inter !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
}

.gov-title h1 .last-name {
    background-image: linear-gradient(red, #8e0000);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.tagline {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    font-family: "Poppins", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    margin: 20px 0;
    background: linear-gradient(90deg, transparent, #0029a4, transparent);
    letter-spacing: 1px;
}

.participation-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.participation-box i {
    font-size: 2rem;
    color: #4da6ff;
}

.participation-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.participation-text span {
    color: rgb(192, 0, 0);
    font-weight: 600;
    font-size: 1.5rem;
}

/* --- Right Column Styling --- */
.right-column {
    padding: 20px 20px 20px 0px !important;
    display: flex;
    align-items: center;
    box-shadow: -20px 16px 68px black;
    justify-content: center;
    z-index: 1;
}

.survey-card {
    background-color: #030916;
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    width: 100%;
    /* max-width: 650px; */
    border: 1px solid #5c7dc6;
    box-shadow: 0 0px 30px #030916b6;
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.progress-bar-custom {
    height: 13px;
    width: 400px;
    background: #323847;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(
            90deg,
            #0039ab,
            #0330ae,
            #0330ae,
            #2083ff,
            #ffffff
    );
    border-radius: 10px;
    box-shadow: 0 0 10px #4da6ff;
}

.main-heading {
    text-align: center;
    font-family: "Poppins";
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.main-heading {
    /* background-image: linear-gradient(white , #bcbcbc);

      -webkit-background-clip: text;
      background-clip: text;

      -webkit-text-fill-color: transparent;  */
    color: white !important;

    /* display: inline-block; */
}

.main-heading .red-text {
    /* background-image: linear-gradient(var(--accent-red), #8e0000);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent; */
    color: #8e0000 !important;
    display: inline-block;
    font-size: 6rem;
    font-family: "Poppins";
    letter-spacing: -4px;
    text-align: center;
}

.main-heading .red-text {
    color: var(--accent-red);
}

.sub-heading {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding: 0 100px;
    line-height: normal;
}

/* Rewards Banner */
.reward-banner {
    border: 1px solid var(--accent-red);
    border-radius: 10px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: radial-gradient(
            circle,
            rgba(217, 0, 0, 0.15) 0%,
            rgba(13, 20, 36, 0) 80%
    );
    box-shadow: inset 0 0 20px rgba(217, 0, 0, 0.2), 0 0 15px rgba(217, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.reward-banner i {
    font-size: 2.9rem;
    color: var(--text-light);
}

.reward-text {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.reward-text .points {
    background-image: linear-gradient(var(--accent-red), #8e0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;

    font-family: "Poppins";
}

.reward-banner i {
    background: radial-gradient(circle, #960202, #a6c1ee00);
    padding: 20px;
    border-radius: 100%;
    border: 2px solid #d90000;
}

.reward-text .earn {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-self: start;
}

.reward-text .points {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent-red);
    font-family: "Oswald", sans-serif;
    line-height: 1;
}

.reward-text .brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
}

/* Icons Grid */
.divider {
    text-align: center;
    position: relative;
    margin-bottom: 1.5rem;
    background: #476ab0 !important;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #476ab0 !important;
    z-index: 1;
}

.divider span {
    background: #030916;
    padding: 0 15px;
    position: absolute !important;
    z-index: 2;
    margin: auto;
    font-size: 1.2rem;
    pointer-events: bounding-box;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    display: flex;
    align-content: center;
    align-self: center;
    flex-wrap: nowrap;
    justify-self: center;
    justify-content: center;
    align-items: center;
}

.icons-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 2rem;
}

.icon-item {
    flex: 1;
    padding: 0 5px;
}

.icon-circle {
    width: 95px;
    height: 95px;
    background: radial-gradient(#010817, #091e46);
    border-radius: 50%;
    display: flex;
    border: 2px solid #434d83;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.icon-circle i {
    font-size: 3rem;
    color: #fff;
}

.icon-item:hover .icon-circle {
    transform: translateY(-5px);
    background: #1a2f5a;
}

.icon-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-transform: uppercase;
    color: white;
}

.icon-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.2;
}

.feature-block {
    background: radial-gradient(#0a1a3e, #041433, #061533);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    border: 1px solid #106088;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.feature-block.shape-nevada {
    background: radial-gradient(#122858, #1b2a47, #1f3663);
}

.feature-icon-left i {
    font-size: 4rem;
    color: #6b9dce;
}

.feature-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-align: left;
    color: white;
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    text-align: left;
}

.badge-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
}

/* Button */
.btn-start {
    background: linear-gradient(rgb(255, 0, 0), #8e0000) !important;
    color: white;
    width: 50%;
    place-self: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
    margin-bottom: 15px;
}

.btn-start:hover {
    background-color: #b30000;
    color: white;
}

.secure-footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.secure-footer i {
    margin-right: 5px;
}

/* --- Left Column Styling --- */
/* .left-column {
  background: linear-gradient(to bottom, rgba(5, 10, 21, 0.177),  rgba(5, 10, 21, 0.177) 90%),
              url('../images/left_side_img.png') center/cover no-repeat;
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content:flex-end ;
} */

/* .left-column::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(5,10,21,0) 0%, rgba(5,10,21,1) 85%);
  z-index: 1;
} */

.left-content {
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.logo-left a img {
    width: 30%;
}


.gov-title h3 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    font-weight: 900 !important;
    color: var(--text-light);
    margin-bottom: 5px;
}

.gov-title h1 {
    font-size: 6.5rem;
    line-height: 0.9;
    margin-bottom: 0;
    font-family: fantasy;
    letter-spacing: normal;
    color: white;
}

.gov-title h1 .last-name {
    font-size: 5rem;
    font-family: fantasy;
}

.gov-title h1 .last-name {
    /* background-image: linear-gradient( var(--accent-red) , #8e0000);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

    display: inline-block; */

    color: #8e0000;
}

.tagline {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    font-family: "Poppins", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    margin: 20px 0;
    background: linear-gradient(90deg, transparent, #0029a4, transparent);
    letter-spacing: 1px;
}

.participation-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.participation-box i {
    font-size: 2rem;
    color: #4da6ff;
}

/* --- Right Column Styling --- */
.right-column {
    padding: 20px 20px 20px 0px !important;
    display: flex;
    align-items: center;
    box-shadow: -20px 16px 68px black;
    justify-content: center;
    z-index: 1;
}

.survey-card {
    background-color: #030916;
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    width: 100%;
    /* max-width: 650px; */
    border: 1px solid #5c7dc6;
    box-shadow: 0 0px 30px #030916b6;
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.main-heading {
    text-align: center;
    font-family: "Poppins";
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.main-heading {
    background-image: linear-gradient(white, #bcbcbc);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

    display: inline-block;
}

.main-heading .red-text {
    background-image: linear-gradient(red, #8e0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    font-size: 5rem;
    font-family: "Poppins";
    letter-spacing: -4px;
    text-align: center;
}

.main-heading .red-text {
    color: var(--accent-red);
}

.sub-heading {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding: 0 100px;
    line-height: normal;
}

/* Rewards Banner */
.reward-banner {
    border: 1px solid var(--accent-red);
    border-radius: 10px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: radial-gradient(
            circle,
            rgba(217, 0, 0, 0.15) 0%,
            rgba(13, 20, 36, 0) 80%
    );
    box-shadow: inset 0 0 20px rgba(217, 0, 0, 0.2), 0 0 15px rgba(217, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.reward-banner i {
    font-size: 2.9rem;
    color: var(--text-light);
}

.reward-text {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.reward-text .points {
    background-image: linear-gradient(rgb(219, 7, 7), #8e0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;

    font-family: "Poppins";
}

.reward-banner i {
    background: radial-gradient(circle, #960202, #a6c1ee00);
    padding: 20px;
    border-radius: 100%;
    border: 2px solid #d90000;
}

.reward-text .earn {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-self: start;
}

.reward-text .points {
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent-red);
    font-family: "Oswald", sans-serif;
    line-height: 1;
}

.reward-text .brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: white;
}

/* Icons Grid */
.divider {
    text-align: center;
    position: relative;
    margin-bottom: 1.5rem;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.divider span {
    background: #030916;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.icons-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 2rem;
}

.icon-item {
    flex: 1;
    padding: 0 5px;
}

.icon-item:hover .icon-circle {
    transform: translateY(-5px);
    background: #1a2f5a;
}

.icon-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-transform: uppercase;
    color: white;
}

.icon-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.2;
}

.feature-block {
    background: radial-gradient(#0a1a3e, #041433, #061533);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    border: 1px solid #106088;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.feature-block.shape-nevada {
    background: radial-gradient(#122858, #1b2a47, #1f3663);
}

.feature-icon-left i {
    font-size: 4rem;
    color: #6b9dce;
}

.feature-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-align: left;
    color: white;
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    text-align: left;
}

.badge-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
}

/* Button */
.btn-start {
    background: linear-gradient(rgb(255, 0, 0), #8e0000) !important;
    color: white;
    width: 50%;
    place-self: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
    margin-bottom: 15px;
}

.btn-start:hover {
    background-color: #b30000;
    color: white;
}

.secure-footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.secure-footer i {
    margin-right: 5px;
}

.body-bg {
    background: #000b23;
}

/* survey page css end */

/* signup page css start */

/* --- LEFT SIDEBAR STYLES --- */

.body-bg-signup {
    background: #000b23;
}

.small-set h1 {
    font-size: 3.5rem;
}

.small-set h1 .last-name {
    font-size: 3.5rem;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 40vh; /* Push down to match layout */
}

.hero-heading .red-text {
    color: #ff3333;
}

.hero-subheading {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.rewards-grid {
    background: radial-gradient(#010817, #091e46);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem 0;
    margin-top: 0rem;
}

.reward-icon-box {
    text-align: center;
    margin-bottom: 1rem;
}

.reward-icon-box i {
    font-size: 1.5rem;
    width: 60px;
    color: white;
    height: 60px;
    background: radial-gradient(#010817, #091e46);
    border-radius: 50%;
    display: flex;
    border: 2px solid #434d83;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.reward-icon-box span {
    font-size: 0.8rem;
    display: block;
    color: white;
}

/* --- RIGHT MAIN CONTENT STYLES --- */
.main-content {
    background-color: #000b23;
    padding: 1rem;
}

.form-container {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Top Bar */
.top-bar-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
}

.progress {
    height: 6px;
    background-color: #334466;
    border-radius: 10px;
    width: 150px;
}

.progress-bar {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
}

.badge-points {
    background: linear-gradient(to right, #cc0000, #ff3333);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid #ff6666;
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* Banners */
.info-banner {
    background: linear-gradient(45deg, #f0f7ff, #d5ddfa);
    border-radius: 12px;
    padding: 1.1rem;
    border: 1px solid #adccef;
    border-left: 4px solid #3a8bff;
}

.alert-banner {
    background-color: #fff0f0;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    border: 1px solid #ffe0e0;
}

/* Form Elements */
.section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #002244;
    display: flex;
    align-items: center;
    margin-bottom: 0rem;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 0.5rem;
}

.section-title i {
    color: #0e4072;
    margin-right: 8px;
    font-size: 2rem;
}

label.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #030f56 !important;
    margin-bottom: 0.3rem;
}

.req-star {
    color: #de0303;
}

.form-control,
.form-select {
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem !important;
    border: 1px solid #cccccc;
    border-radius: 6px;
}

.form-control:focus,
.form-select:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
}

/* Privacy Box */
.privacy-box {
    background-color: #eafaf1;
    border: 1px solid #bce8d1;
    border-radius: 10px;
    padding: 0.5rem;
}

/* Buttons */
.btn-submit {
    background: linear-gradient(to right, #cc0000, #ff0000);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: all 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(to right, #aa0000, #cc0000);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Bottom Features */
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
}

.bg-icon-red {
    background-color: #ffe6e6;
    color: #ff0000;
}

.bg-icon-blue {
    background-color: #e6f0ff;
    color: #0066cc;
}

.bg-icon-teal {
    background-color: #e6f7ff;
    color: #0088cc;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #012459;
}

.feature-desc {
    font-size: 0.9rem;
    color: #012459;
    margin: 0;
}

/* Input icon styling */
.input-group-text {
    background-color: #ffffff;
    border-right: none;
    color: #666666;
}

.input-with-icon {
    border-left: none;
}

.password-toggle {
    cursor: pointer;
    background-color: #ffffff;
    border-left: none;
}

.bg-set-p {
    padding: 10px;
}

.participation-text span.font-p {
    color: rgb(255, 255, 255);
    font-weight: 300;
    font-size: 1rem;
}

.small-set h1 {
    line-height: 1.2;
}

.tagline-style {
    font-family: "Style Script", cursive;
    color: white;
    font-size: 2.2rem;
    text-align: center;
    text-decoration: underline;
}

.info-banner svg {
    width: 270px;
}

.icon-size {
    font-size: 4rem;
}

h1.left-govt {
    font-size: 4rem !important;
    line-height: 0.9;
    margin-bottom: 0;
    letter-spacing: normal;
    font-family: inter !important;
    color: white;
    font-weight: 900 !important;
}

h1.left-govt span.last-name {
    font-size: 3rem !important;
}

.hidden-signup {
    display: none;
}

/* .d-row{
  display: flex;
  flex-direction: row;
} */

.d-row {
    display: flex;
    gap: 40px;
}

/* .col-xl-3-5 , .col-lg-3-5{
  flex: 0 0 29.166667%;
  max-width: 29.166667%;
  position: relative;
  width: 100%;

  padding-right: 15px;
  padding-left: 15px;
}


.col-xl-8-5 .col-lg-8-5{
  flex: 0 0 70.833333%;
  max-width: 70.833333%;
  position: relative;
  width: 100%;

  padding-right: 15px;
  padding-left: 15px;
} */

.d-flex-col {
    display: flex;
    flex-direction: column;
}

img.candidate {
    display: inline-block;
    /* position: absolute; */
    width: 100%;
    align-self: center;
    filter: drop-shadow(0px 0px 20px black);
}

/*  page 3 css start */

.top-header-bar {
    height: 80px;
    background-color: #030c22;
    border-bottom: 1px solid #1c2b4d;
}

.header-step-indicator {
    background-color: #cc0000;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
}

.progress-bar-container {
    width: 250px;
    height: 8px;
    background-color: #1a2a4f;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #3b82f6;
    border-radius: 10px;
    width: 40%; /* 2 of 5 */
}

/* Rewards Tooltip Styling */
.points-tooltip-popup {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 320px;
    background-color: #0b1536;
    border: 1px solid #1e3a8a;
    border-radius: 12px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Tooltip Arrow */
.points-tooltip-popup::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 125px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #0b1536 transparent;
    z-index: 2;
}

.points-tooltip-popup::after {
    content: "";
    position: absolute;
    top: -11px;
    right: 125px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1e3a8a transparent;
    z-index: 1;
}

.tooltip-close-btn {
    cursor: pointer;
    color: #9ca3af;
    font-size: 16px;
}

.tooltip-close-btn:hover {
    color: #ffffff;
}

.reward-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reward-icon-box {
    font-size: 20px;
    color: #a5b4fc;
    width: 30px;

    text-align: center;
    margin-top: 2px;
}

/* Question & Cards Styling */
.survey-question-text {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
}


h1.question {
    color: white;
    font-size: 2rem;
}

.survey-option-label {
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.survey-option-card {
    background-color: #f4f5f7;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.2s ease-in-out;
    height: 100%;
    color: #111827;
    border: 2px solid transparent;
}

.survey-option-card:hover {
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    background-color: #ffffff;
}

.survey-option-image {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.survey-option-desc {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* Custom Radio Button */
.custom-radio-circle {
    width: 26px;
    height: 26px;
    border: 2px solid #9ca3af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: transparent;
    transition: 0.2s ease;
}


/* servey 3 time out */

.hidden {
    display: none !important;
}

/* Popup Background Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dimmed background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Popup Box */
.popup-content {
    background: white;
    padding: 5% 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 35%;
    animation: fadeIn 0.3s ease-in-out;
}

/* Icon Design */
.popup-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.popup-title {
    margin: 0 0 10px 0;
    color: #03041c;
}

#popup-text {
    color: #cf1717;
    margin-bottom: 20px;
}

/* Popup OK Button */
#close-popup-btn {
    background: linear-gradient(to bottom, #f00a0a, #a60000);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#close-popup-btn:hover {
    background-color: #cb2d3a;
}

/* Simple entry animation */
@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.required {
    color: #ff4d4d;
}


/* Grid Layout: 2 Columns */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CRITICAL: Hide the native radio circular button completely */
.hidden-radio {
    display: none;
}

/* Style the Labels to look exactly like White Option Cards */
.option-card {
    background-color: #ffffff;
    color: #030923;
    padding: 24px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.6;
    cursor: pointer;
    user-select: none;
    display: block; /* Ensures label behaves like a div container */
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

/* Hover feedback */
.option-card:hover {
    transform: translateY(-2px);
    background-color: #f8fafc;
}

/* MAGIC CSS TRICK:
The '+' symbol targets the label immediately following a checked radio input.
*/
.hidden-radio:checked + .option-card {
    background: linear-gradient(to bottom, #f00a0a, #a60000);
    color: #ffffff !important;

    border: 1px solid #da2128;
    box-shadow: 0 2px 4px rgba(218, 33, 40, 0.3); /* White Text */
    transform: none;
}


.custom-radio-inner {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2563eb;
    opacity: 0;
    transition: 0.2s ease;
}

/* Active State when radio is checked */
input[type="radio"]:checked + .survey-option-card {
    border-color: #2563eb;
    background-color: #ffffff;
}

input[type="radio"]:checked + .survey-option-card .custom-radio-circle {
    border-color: #2563eb;
}

input[type="radio"]:checked + .survey-option-card .custom-radio-inner {
    opacity: 1;
}

/* Submit Button */
.survey-submit-btn {
    background: linear-gradient(to bottom, #f00a0a, #a60000);
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 40px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    display: inline-flex;
    width: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
    cursor: pointer;
    border-radius: 7px;
}

.survey-submit-btn:hover {
    background: linear-gradient(to bottom, #ff1a1a, #b30000);
    transform: translateY(-2px);
}


.d-flex-col-set {
    display: flex;
    flex-direction: column;
    border: 1px solid #b4d1e361;
    border-radius: 20px;
    padding: 0px 10px 10px 10px !important;
}

.p-all-sides {
    padding: 15px;
}

div.header-setspace {
    /* display: flex; */
    width: 100%;
    border-bottom: 1px solid #7c7c7c3d;
}

.set-hide-content .reward-icon-box {
    display: flex;
    width: 30% !important;
    margin: 0 !important;
}

.set-hide-content .reward-item {
    margin: 0 !important;
}

.govt-top-m-2 {
    padding-top: 10rem;
    padding-bottom: 2rem !important;
}

/* page 4 css */

/* Typography Colors */
.text-dark-blue {
    color: #0b1930 !important;
}

.text-red {
    color: #d11228 !important;
}

/* Header Section */
.header-section {
    padding: 15px;
    position: relative;
}

.script-text {
    font-family: "Dancing Script", cursive;
    color: #d11228;
    font-size: 4rem;
    margin-bottom: 0;
    line-height: 1;
}

.main-heading {
    color: #0b1930;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

.sub-heading {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Earnings Card */
.earnings-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    padding: 15px;
    margin-bottom: 40px;
}

.earnings-divider {
    border-right: 2px solid #f0f0f0;
}

.earnings-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0b1930;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.earnings-value {
    font-size: 3rem;
    font-weight: 800;
}

.earnings-value span {
    color: #0b1930;
    font-size: 1.2rem;
}

.icon-large {
    font-size: 3rem;
    color: #d11228;
}

.icon-large.dark {
    color: #0b1930;
}

/* Rewards Section */
.rewards-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.rewards-header::before,
.rewards-header::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #dcdcdc;
    max-width: 150px;
}

.rewards-header i {
    color: #d11228;
    font-size: 0.8rem;
    margin: 0 15px;
}

.rewards-title {
    font-weight: 700;
    color: #0b1930;
    margin: 0 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Reward Cards */
.reward-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
    padding-bottom: 15px;
    position: relative;
    height: 100%;
    transition: transform 0.2s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reward-img-wrapper {
    height: 120px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reward-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.set-z .reward-icon-circle {
    width: 55px;
    height: 55px;
    background: #0b1930;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    /* border: 3px solid #ffffff; */
    position: absolute;
    bottom: 41%;
    left: 20px;
    z-index: 2;
}

.set-z .reward-icon-circle i {
    font-size: 2rem;
}

.reward-content {
    padding: 35px 15px 10px;
}

.reward-content h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0b1930;
    margin-bottom: 5px;
}

.reward-content p {
    font-size: 0.9rem;
    color: #041727;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.explore-link {
    text-align: center;
    margin: 30px 0;
}

.explore-link a {
    color: #0b1930;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.explore-link a:hover {
    text-decoration: underline;
}

/* Dark Actions Section */
.dark-actions-container {
    background-color: #040e1f;
    border-radius: 12px;
    padding: 12px;
    color: #ffffff;
    margin-bottom: 30px;
}

.action-box {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.action-box-middle {
    border: 2px solid #ffd700;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
}

.action-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.action-icon {
    font-size: 4.2rem;
    color: #ffffff;
    position: relative;
}

.action-icon .badge-check {
    position: absolute;
    bottom: -5px;
    right: -10px;
    color: #d11228;
    background: white;
    border-radius: 50%;
    font-size: 1.2rem;
    border: 2px solid #0b1930;
}

.action-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.action-subtitle {
    color: #d11228;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
}

p.subtitle {
    color: #dcdcdc;
}


.action-desc {
    font-size: 0.75rem;
    color: #dcdcdc;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Social Icons */
.social-icons-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.social-icon-btn:hover {
    opacity: 0.8;
    color: #ffffff;
}

.bg-fb {
    background-color: #1877f2;
}

.bg-x {
    background-color: #000000;
}

.bg-ig {
    background: linear-gradient(
            45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%
    );
}

.bg-in {
    background-color: #0a66c2;
}

.bg-wa {
    background-color: #25d366;
}

.bg-tg {
    background-color: #0088cc;
}

.btn-custom-red {
    background: linear-gradient(to bottom, #d11228, #a50d1e);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
}

.btn-custom-red:hover {
    background: linear-gradient(to bottom, #e21831, #b51023);
    color: #ffffff;
}

.btn-custom-red i {
    font-size: 1.1rem;
}

.btn-large {
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.footer-secure {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.footer-secure i {
    color: #0b1930;
    margin-right: 5px;
}

.bg-white-set {
    border-radius: 20px;
    background-color: white;
}

.left-content .set-padd-t {
    padding-top: 30rem !important;
}

img.set-yay {
    width: 70%;
}

.set-z .reward-icon-circle {
    z-index: 99 !important;
}

.text-brand-purple {
    color: #431c9e !important;
}

.text-brand-red {
    color: #d11228 !important;
}

.text-dark-blue {
    color: #0b1930 !important;
}

.text-gray {
    color: #64748b !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.header-actions span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a202c;
}

.btn-outline-red {
    color: #d11228;
    border: 1px solid #d11228;
    border-radius: 6px;
    padding: 6px 20px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-red:hover {
    background: #d11228;
    color: white;
}

.left-content-wrapper {
    padding: 40px 20px 20px 0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.badge-custom {
    background-color: #f3e8ff;
    color: #431c9e;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    border-left: 3px solid #431c9e;
}

.main-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #0b1930;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-headline span {
    color: #431c9e;
}

.sub-description {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.bg-icon-blue {
    background-color: #ebf4ff;
    color: #0b1930;
}

.bg-icon-purple {
    background-color: #f3e8ff;
    color: #9f7aea;
}

.bg-icon-green {
    background-color: #f0fff4;
    color: #48bb78;
}

.bg-icon-lightblue {
    background-color: #e6fffa;
    color: #3182ce;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1930;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.flag-bg-container {
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 120%;
    height: auto;
    z-index: -1;
    opacity: 0.9;
}

.flag-bg-container img {
    width: 100%;
    max-width: 600px;
    mask-image: linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, 0) 100%
    );
}

.form-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    padding: 50px 40px 40px;
    position: relative;
    margin-top: 50px;
    border: 1px solid #f0f0f0;
}

.profile-icon-top {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #431c9e 40%, #ff1833 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    border: 6px solid #f8fbff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-heading-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.form-heading-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b1930;
    margin-bottom: 8px;
}

.form-heading-wrapper p {
    font-size: 0.8rem;
    color: #0a2347;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 65%;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 6px;
}

.form-label .text-danger {
    color: #d11228 !important;
}

.form-control,
.form-select {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #1a202c;
    box-shadow: none;
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: #431c9e;
    box-shadow: 0 0 0 0.2rem rgba(67, 28, 158, 0.1);
}

.form-control::placeholder {
    color: #a0aec0;
}

.input-group-text {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
}

.input-group > .form-control:not(:last-child) {
    border-right: 0;
}

.input-group > .input-group-text:not(:first-child) {
    border-left: 0;
    cursor: pointer;
}

.phone-group .input-group-text {
    padding: 0;
    border: 1px solid #e2e8f0;
    background: white;
    border-right: 0;
}

.phone-select {
    border: none;
    background: transparent;
    padding: 10px 5px 10px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: none !important;
    outline: none;
}

.country-code-text {
    padding: 10px 10px 10px 5px;
    font-size: 0.95rem;
    font-weight: 500;
    border-right: 1px solid #e2e8f0;
}

/* Password Helper Text */
.password-helper {
    font-size: 0.75rem;
    color: #a0aec0;
    margin-top: 5px;
    display: block;
}

/* Checkboxes */
.form-check {
    margin-bottom: 12px;
}

.form-check-input {
    margin-top: 4px;
    border-color: #cbd5e1;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #431c9e;
    border-color: #431c9e;
}

.form-check-label {
    font-size: 0.9rem;
    color: #4a5568;
    cursor: pointer;
}

.form-check-label a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-gradient-submit {
    background: linear-gradient(90deg, #d11228 0%, #431c9e 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    width: 100%;
    margin-top: 15px;
    transition: opacity 0.3s ease;
}

.btn-gradient-submit:hover {
    opacity: 0.9;
    color: #ffffff;
}

.secure-text {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 15px;
}

.secure-text i {
    color: #4a5568;
    margin-right: 5px;
}

section.stats-section.container-ac {
    margin: 10px auto !important;
}

/* Bottom Stats Section */
.stats-section {
    background-color: #ffffff;
    border-radius: 12px;
    margin: 10px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 25px;
    margin-top: 20px;
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.stat-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}


.header-actions {
    display: flex;
    float: inline-end;
    padding: 0 15px;
}

.bg-pink-light {
    background-color: #ffe4e6;
    color: #e11d48;
}

.bg-purple-light {
    background-color: #ede9fe;
    color: #6d28d9;
}

.bg-orange-light {
    background-color: #ffedd5;
    color: #ea580c;
}

.bg-purple-ultra-light {
    background-color: #f3e8ff;
    color: #7e22ce;
}

.stat-details h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0b1930;
    margin: 0 0 2px 0;
}

.stat-details p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.2;
}

.text-not-shad .feature-text {
    text-shadow: none !important;
}

.text-not-shad .feature-text p {
    font-weight: 400;
    color: #041133 !important;
}

.left-content-wrapper .feature-item i {
    font-size: 3rem;
}

.text-not-shad .feature-item {
    width: 80%;
    border: 1px solid #c2c8ff !important;
    background: white;
}

.bg-icon-blue-1 i {
    color: #000b23;
}

.bg-icon-purple-1 i {
    color: purple;
}

.bg-icon-green-1 i {
    color: green;
}

.bg-icon-lightblue-1 i {
    color: var(--primary-blue);
}


.text-not-shad .sub-description {
    font-size: 1.05rem;
    color: #092452;
}

.container-ac {
    width: 100%;
    max-width: 1400px;
    margin: auto !important;


}


.bg-light-body {
    background: linear-gradient(145deg, #d9f2ff45, #d9e4ff33);
}


.header-top-p {
    padding-top: 30px;
}


.header-actions .btn-outline-red {
    border: red;
}


.header-actions .btn-outline-red {
    border: 3px solid #e26a6a;
    color: red;
    font-weight: 700;
}

.header-actions .btn-outline-red:hover {
    border: 3px solid #002244;
    color: #002244;
    font-weight: 700;
}


.flag-pos img {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: -1;
}


.stat-box i {
    font-size: 40px;
}


/* Responsive*/

@media (min-width: 1190px) and (max-width: 1390px) {

    .social-icons-wrapper {

        gap: 2px;

    }

    .action-box {
        padding: 7px;
    }

    .btn-custom-red {

        padding: 10px 5px;
        font-weight: 500;
        font-size: 0.8rem;
    }


}


@media (max-width: 1300px) {
    .gov-title h1 {
        font-size: 4.5rem;
    }


    .gov-title h3 {
        font-size: 2rem;
    }

    .gov-title h1 .last-name {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .participation-box svg {
        width: 18%;
    }

    .participation-text span {
        font-size: 1.2rem;
    }

    .participation-text p {
        font-size: 1rem;
    }

    .main-heading,
    .main-heading .red-text {
        font-size: 4rem;
    }

    .sub-heading {
        font-size: 1rem;

        padding: 0 30px;
    }

    .progress-bar-custom {
        height: 13px;
        width: 170px;
    }

    .icon-circle {
        width: 90px;
        height: 90px;
    }

    .icons-grid {
        margin-top: 40px;
    }

    .divider span {
        display: flex;
        flex-direction: column;
    }

    .icon-circle i {
        font-size: 2.5rem;
    }

    h1.left-govt {
        font-size: 3rem !important;
    }

    h1.left-govt span.last-name {
        font-size: 2.5rem !important;
    }

    .set-z .reward-icon-circle {
        bottom: 48%;
        left: 4px;
    }


    .header-actions {
        display: flex;
        float: inline-end;
        padding: 0 15px;
    }


    .action-icon {
        font-size: 2.4rem;

    }


    /* header footer */
    a.logo img {
        width: 70% !important;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links li a {
        font-size: 10px;
    }

    ul.nav-links {
        padding: 0;
    }

    .btn-main {
        font-size: 13px;
    }

    .btn-book-h {
        font-size: 13px;
    }

    /* header footer end */
}

@media (max-width: 992px) {
    /* page css */
    .min-vh-lg-100 {
        min-height: 100vh;
    }

    .gov-title h3 {
        font-size: 3rem;
    }

    .gov-title h1 {
        font-size: 5rem !important;
    }

    .gov-title h1 .last-name {
        font-size: 5rem !important;
    }


    .btn-custom-red {

        padding: 10px 5px !important;
        font-weight: 500;
        font-size: 0.6rem !important;
    }


    .tagline-style {
        font-size: 4.2rem;
    }

    .tagline {
        font-size: 1.8rem;
    }

    .participation-text p {
        font-size: 2.2rem;
    }

    .participation-text span {
        font-size: 3.2rem;
    }

    /* page 2 css */
    .reward-icon-box i {
        font-size: 3rem;
        width: 110px;
        height: 110px;
    }

    .flag-pos img {
        display: none;
    }

    .reward-icon-box span {
        font-size: 01.2rem;
    }


    .left-content {
        padding: 20px;
    }

    .main-content {
        padding: 20px !important;
        box-shadow: -19px 0 50px #000610 !important;
        z-index: 1 !important;
    }

    .right-column {
        padding: 20px !important;
    }

    .p-res {
        padding: 20px !important;
    }

    .bg-set-p {
        padding: 0px;
    }

    .p-b-set {
        padding: 0;
    }

    .left-column {
        background-size: cover !important;
    }

    .body-bg {
        padding: 0 !important;
    }

    h1.left-govt span.last-name {
        font-size: 4.5rem !important;
    }

    .set-z .reward-icon-circle {
        bottom: 40%;
        left: 24px;
    }

    .text-not-shad .feature-item {
        width: 100%;


    }

    /* header footer */
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background-color: #030a1c;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 90px 24px 30px;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-wrapper.active {
        left: 0;
    }

    .header-inner {
        justify-content: space-between;
    }

    .mobile-toggle {
        display: flex;
        margin-right: 0;
    }

    a.logo img {
        width: 50% !important;
    }

    .logo {
        margin-left: 0;
        width: 50%;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin: 0;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li a {
        padding: 16px 0;
        font-size: 16px;
        width: 100%;
        justify-content: space-between;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
        gap: 20px;
        align-items: stretch;
        display: flex;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .left-content-wrapper {
        padding: 20px 0;
    }

    .flag-bg-container {
        display: none;
    }

    .main-headline {
        font-size: 2.2rem;
    }

    .header-actions {
        justify-content: flex-start;
        margin-top: 15px;
    }

    /* Hamburger animation when menu is open */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        display: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* header footer end */
}

@media (max-width: 768px) {
    /* page css */
    .reward-text .points {
        font-size: 2.2rem;
    }

    .icons-grid {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .icon-item {
        min-width: 80px;
    }

    .left-column {
        padding: 1.5rem;
        text-align: center;
    }

    .logo-container {
        justify-content: center;
    }

    .participation-box {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .gov-title h3 {
        font-size: 2rem;
    }

    .gov-title h1 {
        font-size: 5.5rem;
    }

    .gov-title h1 .last-name {
        font-size: 4.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .participation-text p {
        font-size: 1.2rem;
    }

    .participation-text span {
        font-size: 2rem;
        text-align: center;
    }

    .participation-text.text-start {
        text-align: center !important;
    }

    .main-heading,
    .main-heading .red-text {
        font-size: 3rem;
    }

    .sub-heading {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .reward-banner {
        display: flex;
        flex-direction: column;
    }

    .feature-block {
        display: flex;
        flex-direction: column;
    }

    .feature-content h5,
    .feature-content p {
        text-align: center;
    }

    .btn-start {
        width: 100%;
    }

    /* page 2 css*/
    .d-flex-mob {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .option-card {

        padding: 16px;
    }

    .left-content {
        padding: 10px;

    }

    .main-content {
        padding: 10px !important;
    }

    .gov-title h1 {
        font-size: 3rem !important;
    }

    .gov-title h1 .last-name {
        font-size: 3rem !important;
    }

    .d-row {
        flex-direction: column;
    }

    .gov-title h1 {
        font-size: 3.5rem;
    }

    .tagline-style {
        font-size: 2.2rem;
    }

    .form-container {
        padding: 1rem;
    }

    .rewards-grid {
        padding: 1rem 0;
    }

    /* page 3 css*/
    .progress-bar-container {
        width: 120px;
    }

    .header-step-indicator {
        width: 50px;
        font-size: 24px;
    }

    .survey-option-card {
        flex-direction: column;
        text-align: center;
    }

    .survey-option-image {
        width: 100%;
        height: 140px;
        margin-bottom: 15px;
    }

    .custom-radio-circle {
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .points-tooltip-popup {
        right: -50px;
        width: 300px;
    }

    .points-tooltip-popup::before,
    .points-tooltip-popup::after {
        right: 80px;
    }

    .survey-submit-btn {
        width: 100%;
    }

    h1.left-govt span.last-name {
        font-size: 2.5rem !important;
    }

    .set-z .reward-icon-circle {
        bottom: 46%;
        left: 8px;
    }

    .form-card {
        padding: 40px 20px 20px;
    }

    /* header footer */
    a.logo img {
        width: 90% !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    /* header footer end */
    .earnings-divider {
        border-right: none;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}


@media (max-width: 550px) {


    .options-grid {

        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }


}










