/* ========================================
   CyberBunka Main Stylesheet
   Font: Poppins | Colors: Blue, Black, Grey
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body, html {
    font-family: 'Poppins', sans-serif;
    color: #1a1a2e;
    background-color: #fefefe;
    line-height: 1.6;
}


/* Navigation Menu - Dark Color */

.navbar .nav-link,
.navbar-nav .nav-link {
    color: #1a1a2e !important; /* dark grey/black */
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover and active states */
.navbar .nav-link:hover,
.navbar-nav .nav-link:hover,
.navbar .nav-link.active {
    color: #0d6efd !important; /* blue on hover – keeps brand consistency */
}

/* Dropdown toggle arrow */
.navbar .dropdown-toggle::after {
    color: #1a1a2e;
}

/* Dropdown menu items (if any) */
.dropdown-menu .dropdown-item {
    color: #1a1a2e;
}
.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

/* Force Poppins on all text elements */
h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, textarea, select {
    font-family: 'Poppins', sans-serif;
}

/* Color Overrides – Less Blue, More Black/Grey */
.bg-primary {
    background-color: #0d6efd !important;
}
.text-primary {
    color: #0d6efd !important;
}
.btn-primary {
    background-color: #0d6efd;
    border: none;
}
.btn-primary:hover {
    background-color: #0b5ed7;
}
.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
}
.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

/* Hero Section – Fullscreen Background Carousel */
.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #111;
}
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-bg-slider .slide.active {
    opacity: 0.35;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.reel-text {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    transition: opacity 0.3s ease;
    display: block;
}
.reel-subtext {
    font-size: 1.3rem;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .reel-text { font-size: 2rem; }
    .reel-subtext { font-size: 1rem; }
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #eef2f6;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.05);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: #f2f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.feature-icon i {
    font-size: 2.5rem;
    color: #0d6efd;
}

/* About Section Enhancements */
.tracking-wide {
    letter-spacing: 2px;
}
.rounded-circle {
    border-radius: 50%;
}
.btn-outline-primary {
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    transform: translateX(5px);
}

/* Services Grid – Text Always Visible (No Hover) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-item:hover img {
    transform: scale(1.03);
}
.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
    padding: 1rem;
    text-align: center;
}
.service-overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: white;
}
.service-overlay small {
    font-size: 0.7rem;
    color: #eee;
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* Full-screen Tagline Section – WHITE BACKGROUND */
.fullscreen-tagline {
    min-height: 60vh;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin: 4rem 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}
.fullscreen-tagline h2 {
    font-size: 3rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}
.fullscreen-tagline p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 1rem auto 0;
    color: #ffffff;
}
@media (max-width: 768px) {
    .fullscreen-tagline { min-height: 40vh; }
    .fullscreen-tagline h2 { font-size: 2rem; }
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.team-info {
    padding: 1.5rem;
    text-align: center;
}
.social-links a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background: #f0f2f5;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: #1a1a2e;
    transition: all 0.2s;
}
.social-links a:hover {
    background: #0d6efd;
    color: white;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
    height: 100%;
}
.testimonial-card i {
    color: #0d6efd;
}

/* Cyber Hygiene Section */
.hygiene-section {
    background: #1e293b;
    color: white;
    border-radius: 24px;
    margin: 2rem 0;
}
.hygiene-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
}
.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
}
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

/* AI Chat Widget – fixed positioning */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
}

.chat-button {
    width: 56px;
    height: 56px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.chat-window {
    position: absolute;
    bottom: 70px;      /* sits above the chat button */
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .chat-window {
        width: calc(100vw - 40px);
        right: 0;
        bottom: 80px;  /* a bit more space on small screens */
    }
    .back-to-top {
        bottom: 90px !important;
    }
}
.chat-window.active {
    display: flex;
}
.chat-header {
    background: #0d6efd;
    color: white;
    padding: 15px;
    font-weight: 600;
}
.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chat-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}
.chat-message.bot {
    background: #e9ecef;
    color: #1e293b;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-message.user {
    background: #0d6efd;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.chat-footer {
    border-top: 1px solid #e2e8f0;
    padding: 12px;
    background: white;
    display: flex;
    gap: 8px;
}
.chat-footer input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 10px 16px;
    font-size: 0.9rem;
    outline: none;
}
.chat-footer input:focus {
    border-color: #0d6efd;
}
.chat-footer button {
    background: #0d6efd;
    border: none;
    border-radius: 30px;
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.chat-footer button:hover {
    background: #0b5ed7;
}
/* Back to top button – avoid chat overlap */
.back-to-top {
    bottom: 100px !important;
    right: 30px;
    position: fixed;
    z-index: 1040;
}


@media (max-width: 576px) {
    .chat-window {
        width: calc(100vw - 40px);
        right: 0;
    }
}   


/* Recruitment Hero – Background Image with Overlay */
.recruitment-hero {
    position: relative;
    background: url('../img/7.jpg') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.recruitment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* dark overlay for text contrast */
    z-index: 1;
}

.recruitment-hero .container {
    position: relative;
    z-index: 2;
}

/* Ensure hero text is white */
.recruitment-hero .hero-content,
.recruitment-hero .display-1,
.recruitment-hero .lead {
    color: white;
}

/* Breadcrumb links stay white */
.recruitment-hero .breadcrumb-item a,
.recruitment-hero .breadcrumb-item.active {
    color: white !important;
}


/* Risk Management Hero */
.risk-hero {
    position: relative;
    background: url('../img/3.jpg') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.risk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.risk-hero .container {
    position: relative;
    z-index: 2;
}
.risk-hero .hero-content,
.risk-hero .display-1,
.risk-hero .lead {
    color: white;
}
.risk-hero .breadcrumb-item a,
.risk-hero .breadcrumb-item.active {
    color: white !important;
}

/* Adjust feature-card for consistency */
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.05);
}


/* Contact Hero – shorter height */
.contact-hero {
    position: relative;
    background: url('../img/2.jpg') no-repeat center center/cover;
    min-height: 40vh;  /* shorter than the default 60vh on other pages */
    display: flex;
    align-items: center;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.contact-hero .container {
    position: relative;
    z-index: 2;
}
.contact-hero .hero-content,
.contact-hero .display-3,
.contact-hero .lead {
    color: white;
}
.contact-hero .breadcrumb-item a,
.contact-hero .breadcrumb-item.active {
    color: white !important;
}


/* GRC Hero Background */
.grc-hero {
    position: relative;
    background: url('../img/5.jpg') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.grc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.grc-hero .container {
    position: relative;
    z-index: 2;
}
.grc-hero .hero-content,
.grc-hero .display-1,
.grc-hero .lead {
    color: white;
}
.grc-hero .breadcrumb-item a,
.grc-hero .breadcrumb-item.active {
    color: white !important;
}

/* Third-Party Hero Background */
.thirdparty-hero {
    position: relative;
    background: url('../img/6.jpg') no-repeat center center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.thirdparty-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.thirdparty-hero .container {
    position: relative;
    z-index: 2;
}
.thirdparty-hero .hero-content,
.thirdparty-hero .display-1,
.thirdparty-hero .lead {
    color: white;
}
.thirdparty-hero .breadcrumb-item a,
.thirdparty-hero .breadcrumb-item.active {
    color: white !important;
}

/* Cyber Risk Hero – shorter height (40vh) */
.cyber-risk-hero {
    position: relative;
    background: url('../img/6.jpg') no-repeat center center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
}
.cyber-risk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.cyber-risk-hero .container {
    position: relative;
    z-index: 2;
}
.cyber-risk-hero .hero-content,
.cyber-risk-hero .display-3,
.cyber-risk-hero .lead {
    color: white;
}
.cyber-risk-hero .breadcrumb-item a,
.cyber-risk-hero .breadcrumb-item.active {
    color: white !important;
}


/* Enterprise Security Hero – shorter height (40vh) */
.enterprise-hero {
    position: relative;
    background: url('../img/7.jpg') no-repeat center center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
}
.enterprise-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.enterprise-hero .container {
    position: relative;
    z-index: 2;
}
.enterprise-hero .hero-content,
.enterprise-hero .display-3,
.enterprise-hero .lead {
    color: white;
}
.enterprise-hero .breadcrumb-item a,
.enterprise-hero .breadcrumb-item.active {
    color: white !important;
}


/* Information Security Hero – shorter height (40vh) */
.info-sec-hero {
    position: relative;
    background: url('../img/5.jpg') no-repeat center center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
}
.info-sec-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.info-sec-hero .container {
    position: relative;
    z-index: 2;
}
.info-sec-hero .hero-content,
.info-sec-hero .display-3,
.info-sec-hero .lead {
    color: white;
}
.info-sec-hero .breadcrumb-item a,
.info-sec-hero .breadcrumb-item.active {
    color: white !important;
}

/* Incident Management Hero – shorter height (40vh) */
.incident-hero {
    position: relative;
    background: url('../img/7.jpg') no-repeat center center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
}
.incident-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.incident-hero .container {
    position: relative;
    z-index: 2;
}
.incident-hero .hero-content,
.incident-hero .display-3,
.incident-hero .lead {
    color: white;
}
.incident-hero .breadcrumb-item a,
.incident-hero .breadcrumb-item.active {
    color: white !important;
}

/* Incident Cards – White text on dark background */
.incident-card {
    background: rgba(13, 110, 253, 0.15);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.incident-card:hover {
    background: rgba(13, 110, 253, 0.25);
    transform: translateY(-5px);
}

/* Ensure the container background is dark enough for white text */
.container .incident-card {
    background: #0a2540;  /* or any dark blue/grey background */
}

/* Security Awareness Hero – shorter height (40vh) */
.awareness-hero {
    position: relative;
    background: url('../img/6.jpg') no-repeat center center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
}
.awareness-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.awareness-hero .container {
    position: relative;
    z-index: 2;
}
.awareness-hero .hero-content,
.awareness-hero .display-3,
.awareness-hero .lead {
    color: white;
}
.awareness-hero .breadcrumb-item a,
.awareness-hero .breadcrumb-item.active {
    color: white !important;
}

/* Optional: ensure fullscreen tagline uses white background */


/* Security Awareness Hero – exactly matching Incident Management height */
.awareness-hero {
    position: relative;
    background: url('../img/6.jpg') no-repeat center center/cover;
    min-height: 40vh;          /* same as incident-hero */
    display: flex;
    align-items: center;
}
.awareness-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.awareness-hero .container {
    position: relative;
    z-index: 2;
}
.awareness-hero .hero-content,
.awareness-hero .display-3,
.awareness-hero .lead {
    color: white;
}
.awareness-hero .breadcrumb-item a,
.awareness-hero .breadcrumb-item.active {
    color: white !important;
}


/* Security Policy Hero – shorter height (40vh) */
.policy-hero {
    position: relative;
    background: url('../img/5.jpg') no-repeat center center/cover;
    min-height: 40vh;
    display: flex;
    align-items: center;
}
.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.policy-hero .container {
    position: relative;
    z-index: 2;
}
.policy-hero .hero-content,
.policy-hero .display-3,
.policy-hero .lead {
    color: white;
}
.policy-hero .breadcrumb-item a,
.policy-hero .breadcrumb-item.active {
    color: white !important;
}




.risk-check-card{
    background:#fff;
    border-radius:18px;
    padding:22px;
    height:100%;
    display:flex;
    align-items:flex-start;
    gap:16px;
    transition:0.3s ease;
    border:1px solid rgba(0,0,0,0.06);
}

.risk-check-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.risk-check-card p{
    margin:0;
    color:#555;
    font-size:15px;
    line-height:1.7;
    font-weight:500;
}

.risk-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:14px;
    background:var(--bs-primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.risk-score-wrapper{
    background:var(--bs-primary);
    border-radius:28px;
    padding:40px 30px;
    height:100%;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.risk-score-wrapper::before{
    content:'';
    position:absolute;
    top:-80px;
    right:-80px;
    width:220px;
    height:220px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
}

.risk-score-header{
    position:relative;
    z-index:2;
    margin-bottom:35px;
}

.risk-score-circle{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#fff;
    color:var(--bs-primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.risk-score-header h3{
    color:#fff;
    margin-bottom:10px;
}

.risk-score-header p{
    color:rgba(255,255,255,0.75);
    margin:0;
    line-height:1.7;
}

.risk-score-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,0.12);
    position:relative;
    z-index:2;
}

.score-number{
    width:65px;
    height:65px;
    border-radius:18px;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
    flex-shrink:0;
}

.risk-score-item h6{
    color:#fff;
    margin-bottom:4px;
    font-size:17px;
}

.risk-score-item small{
    color:rgba(255,255,255,0.7);
}

@media(max-width:991px){

    .risk-score-wrapper{
        margin-top:10px;
    }

}









.quiz-hero {
    background: linear-gradient(rgba(4, 15, 33, 0.85), rgba(4, 15, 33, 0.92)),
    url('img/1.jpg') center/cover no-repeat;
}

.min-vh-75 {
    min-height: 75vh;
}

.quiz-wrapper {
    background: #071120;
}

.quiz-top-bar {
    background: linear-gradient(135deg, #071120, #0c1f3f);
    padding: 30px;
}

.quiz-progress {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    overflow: hidden;
}

.quiz-progress-bar {
    width: 7%;
    height: 100%;
    background: #0d6efd;
    transition: 0.4s ease;
}

.quiz-body {
    padding: 60px;
    min-height: 500px;
}

.question-card {
    display: none;
    text-align: center;
}

.question-card.active {
    display: block;
}

.question-icon {
    width: 90px;
    height: 90px;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.question-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: auto;
}

.answer-btn {
    border: 2px solid #dee2e6;
    background: white;
    padding: 20px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.answer-btn:hover {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
    transform: translateY(-2px);
}

.quiz-result {
    display: none;
    text-align: center;
}

.result-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #0d6efd;
    font-size: 40px;
}

.result-badge {
    background: #0d6efd;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
}

.score-display {
    font-size: 24px;
    font-weight: 700;
}

.consultation-card {
    display: block;
    border: 2px solid #dee2e6;
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    height: 100%;
}

.consultation-card input {
    display: none;
}

.consultation-card:hover,
.active-card {
    border-color: #0d6efd;
    background: rgba(13,110,253,0.05);
}

.consultation-tag {
    display: inline-block;
    background: #198754;
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.paid-tag {
    background: #0d6efd;
}

@media(max-width: 768px) {

    .quiz-body {
        padding: 30px;
    }

    .question-card h3 {
        font-size: 1.5rem;
    }

}