/* ==========================================
   SongProof Custom Styles - Optimized
   ========================================== */

/* ==========================================
   1. CSS Variables (Theme Support)
   ========================================== */
:root {
    /* Brand Colors */
    --purple-primary: #8b5cf6;
    --purple-dark: #7c3aed;
    --green-primary: #22c55e;
    --green-dark: #059669;
    --red-primary: #ef4444;
    --blue-primary: #4f46e5;
    --indigo-primary: #312e81;
    --violet-primary: #581c87;

    /* UI Colors */
    --bg-primary: #fff;
    --bg-secondary: #f3f4f6;
    --bg-light: #fafafa;
    --text-primary: #1a1a1a;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-gray: #656262;
    --border-color: #e5e7eb;
    --border-light: #e0e0f0;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);

    /* Gradients */
    --gradient-purple: linear-gradient(to right, var(--indigo-primary), var(--violet-primary));
    --gradient-green: linear-gradient(to right, var(--green-primary), var(--green-dark));
    --gradient-violet-deep: linear-gradient(to bottom right, var(--indigo-primary), var(--violet-primary), #3730a3);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-light: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-gray: #94a3b8;
    --border-color: #334155;
    --border-light: #475569;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ==========================================
   2. Base Styles & Typography
   ========================================== */
body,
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", "ui-sans-serif", "system-ui", "sans-serif", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    text-transform: none !important;
}

/* Font Sizes */
.f-8 { font-size: 8px; }
.f-10 { font-size: 10px; }
.f-12 { font-size: 12px; }
.f-14 { font-size: 14px; }
.f-15 { font-size: 15px; }
.f-16 { font-size: 16px; }
.f-17 { font-size: 17px; }
.f-18 { font-size: 18px; }
.f-20 { font-size: 20px; }
.f-22 { font-size: 22px; }
.f-24 { font-size: 24px; }
.f-25 { font-size: 25px; }
.f-28 { font-size: 28px; }
.f-30 { font-size: 30px; }
.f-32 { font-size: 32px; }
.f-36 { font-size: 36px; }
.f-40, .f40 { font-size: 40px; }
.f-44 { font-size: 44px; }
.f-50 { font-size: 50px; }
.f-60 { font-size: 60px; }

/* Font Weights */
.font-weight-200 { font-weight: 200 !important; }
.font-weight-500, .fw-bold-500 { font-weight: 500 !important; }
.font-weight-bold { font-weight: 700 !important; }

/* Line Height */
.lh1 { line-height: 1; }

/* ==========================================
   3. Layout & Spacing Utilities
   ========================================== */
.container {
    max-width: 70% !important;

}

.container-footer {
    max-width: 70% !important;
    width: 100% !important;
}

.container-protect-full {
    max-width: 1400px;
    margin: auto;
}

.container-block-chain-security {
    width: 75%;
}

/* Margin Utilities */
.m0 { margin: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.me-3 { margin-right: 1rem !important; }
.mt20 { margin-top: 20px; }
.mt50 { margin-top: 50px; }

/* Padding Utilities */
.pad-0 { padding: 0 !important; }
.pad-20 { padding: 20px !important; }
.pad-right-10 { padding-right: 10px !important; }
.pad-right-20 { padding-right: 20px; }
.pad15-5 { padding: 15px 5px; }
.pl50 { padding-left: 50px; }
.pt0 { padding-top: 0 !important; }

/* Text Alignment */
.tal, .text-left-r { text-align: left !important; }

/* ==========================================
   4. Color Utilities
   ========================================== */
.font-white { color: #fff; }
.text-gray { color: var(--text-gray); }
.text-black { color: var(--text-primary); }
.cgray { color: #989898 !important; }
.bg-light { background-color: var(--bg-primary) !important; }
.bg-black { background-color: #000; }
.bgwhite { background-color: #fff; }
.bg1 { background-color: #4b5563 !important; }
.bg2 { background-color: #f97316 !important; }
.bg3 { background-color: #9333ea !important; }
.bg4 { background-color: #2563eb !important; }
.bg5 { background-color: #1f2937 !important; }

/* Icon Colors */
.green-i { color: #25c661 !important; }

/* ==========================================
   5. Header & Navigation
   ========================================== */
.main-logo {
    width: 160px;
}

.header-gradient {
    padding: 1px;
    background-color: white;
}

.navbar .nav-item {
    padding: 0 10px;
    list-style: none;
}

.navbar .nav-link {
    color: #161C2D !important;
    font-weight: 500 !important;
}

.navbar .nav-link:hover {
    color: var(--red-primary) !important;
    text-decoration: none;
}

.login-btn-custom-navbar {
    border: 1px solid #0b0b0b !important;
    border-radius: 6px !important;
    padding: 7px 15px !important;
    margin-right: 0 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.navbar .login-btn-custom-navbar:hover {
    background-color: #fff !important;
    color: #000 !important;
}

/* ==========================================
   6. Buttons
   ========================================== */
.get-start-btn {
    background-image: var(--gradient-green) !important;
    color: #fff !important;
    padding: 9px 39px !important;
    text-decoration: none !important;
    border-radius: 10px;
    margin: 15px 0;
    display: inline-block;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.get-start-btn:hover {
    background-image: linear-gradient(to right, var(--green-dark), var(--green-primary)) !important;
    text-decoration: none !important;
}

.get-start-btn .start-here {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    gap: 6px;
    margin-left: 10px;
    font-size: 20px;
}

.get-start-btn .start-here i {
    font-size: 1.1em;
    line-height: 1;
    display: flex;
    align-items: center;
}

.pricing-btn {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid #858585;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    margin: 15px 0;
    display: inline-block;
}

.pricing-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none !important;
    color: #fff !important;
}

.sample-button,
.cert-button {
    background-color: var(--text-primary);
    color: #fff;
    padding: 8px 16px;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
}

.sample-button {
    padding: 12px 20px;
    margin-top: 20px;
    border-radius: 6px;
}

.see-smaple-btn {
    background-image: linear-gradient(to right, #334155, #1e293b);
    width: 100%;
}

a.bghover:hover,
.see-smaple-btn.bghover:hover {
    background-color: #3d4352 !important;
}

/* Container Protect Full Buttons */
.container-protect-full .btn-protect {
    padding: 0.7rem 1.5rem;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 700;
}

.container-protect-full .btn-protect.disabled {
    background-color: #e0e6ed;
    color: #888;
    cursor: not-allowed;
    margin-right: 0.5rem;
    width: 100%;
    font-size: 14px;
}

.container-protect-full .btn-protect.notify {
    background-color: #fff;
    color: #000;
    width: 100%;
    font-size: 14px;
}

.container-protect-full .btn-protect.submit {
    background-color: #b38df7;
    color: #fff;
    width: 100%;
    margin-top: 1rem;
}

/* Privacy Policy Buttons */
.privacy-all button {
    background-color: #a259ff;
    color: #fff;
    border: 0;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.privacy-all button:hover {
    background-color: #8c44db;
}

/* ==========================================
   7. Hero/Banner Sections
   ========================================== */
.banner-gradient {
    background-image: var(--gradient-violet-deep);
    padding: 80px 0;
}

.title-text {
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 1;
}

.reg-title {
    font-size: 17px;
    color: #ece7eb;
}

.subtitle {
    font-size: 16px;
    margin-top: 8px;
    font-weight: 500;
    text-align: center;
}

.description {
    text-align: center;
    font-size: 15px;
    color: #444;
    margin-top: 16px;
    line-height: 1.5;
}

.gradient_text {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, #facc15, #f97316);
}

.gradient_text_blog {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 36px;
    font-weight: 700;
    background-image: linear-gradient(to right, #4f46e5, #9333ea);
}

.off-title {
    color: #ddd;
}

.wave-area {
    position: relative;
    text-align: center;
}

.wave-area svg {
    position: absolute;
    width: 700px;
    color: #fff;
    opacity: 0.1;
    left: 50%;
    margin: 0 auto 0 -340px;
    top: -100px;
}

/* ==========================================
   8. Carousel Styles
   ========================================== */
.carouselr {
    max-width: 700px;
    float: right;
    margin-top: 0;
}

.header-carousel img {
    height: 500px;
    max-height: 500px;
    width: 700px;
    max-width: 700px;
}

.carousel-indicators {
    position: absolute !important;
    bottom: -30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
}

.carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: 0 !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.carousel-indicators .active {
    width: 24px !important;
    height: 8px !important;
    border-radius: 10px !important;
    background-color: #fff !important;
}

.carousel-caption {
    right: 70% !important;
    left: 3% !important;
    bottom: -20px !important;
    width: 250px !important;
}

.owl-carousel .owl-item {
    padding: 12px;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block !important;
}

.videopartcarosel .carousel-indicators {
    bottom: -70px !important;
}

.videopartcarosel .carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 100% !important;
    background-color: #4f46e5 !important;
}

/* ==========================================
   9. Cards & Components
   ========================================== */
.shadow-sm-m {
    border: 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.shadow-sm-m:hover {
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 18px;
}

.card-text {
    color: var(--text-secondary);
}

.card-body i {
    background-color: #d1fae5;
    color: var(--green-dark);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    padding: 18px;
    font-size: 25px;
}

.card img {
    width: 60px !important;
    height: 60px !important;
}

.card-body-price {
    padding: 15px;
}

.prot-gradient {
    background-image: linear-gradient(to bottom right, #eef2ff, #faf5ff);
    border-radius: 15px !important;
}

/* ==========================================
   10. Image Overlays
   ========================================== */
.image-overlay-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-overlay-wrapper img {
    width: 100%;
    display: block;
}

.image-overlay-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.border-radius-in-img {
    border-radius: 15px !important;
    overflow: hidden !important;
}

/* ==========================================
   11. Registration & Forms
   ========================================== */
.registration-custom label {
    font-size: 14px !important;
}

.register-div {
    width: 800px;
    max-width: 800px !important;
    box-shadow: 0 10px 30px #b9b3b3;
    border-radius: 15px;
}

.logtitle {
    color: #121212;
    font-size: 16px;
}

.logheadtitle {
    font-size: 20px;
}

.login-header-pad {
    padding: 20px 30px 1px !important;
}

.msgbox {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 15px;
    padding: 12px;
    border-radius: 7px;
}



/* Form Validation Errors */
.formError {
    position: absolute;
    top: 300px;
    left: 300px;
    display: block;
    cursor: pointer;
    text-align: left;
    z-index: 990;
}

.formError.inline {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
}

.formError .formErrorContent {
    width: 100%;
    background: #ee0101;
    position: relative;
    color: #fff;
    min-width: 120px;
    font-size: 11px;
    border: 2px solid #ddd;
    box-shadow: 0 0 6px #000;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 991;
}

.formError .formErrorArrow {
    width: 15px;
    margin: -2px 0 0 13px;
    position: relative;
    z-index: 996;
}

.formError .formErrorArrow div {
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    box-shadow: 0 2px 3px #444;
    height: 1px;
    background: #ee0101;
    margin: 0 auto;
    line-height: 0;
    font-size: 0;
    display: block;
}

.greenPopup .formErrorContent,
.greenPopup .formErrorArrow div {
    background: #33be40;
}

.blackPopup .formErrorContent,
.blackPopup .formErrorArrow div {
    background: #393939;
    color: #fff;
}

.inputContainer {
    position: relative;
    float: left;
}

.progress {
    background: rgba(255, 255, 255, 0.25);
    height: 14px;
}

.progress-bar {
    height: 14px;
}

/* Contact Forms */
.container-protect-full .contact-form input,
.container-protect-full .contact-form textarea,
.protect-section .form-card input,
.protect-section .form-card textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.container-protect-full .contact-form .form-row,
.protect-section .form-card .row {
    display: flex;
    gap: 10px;
}

.container-protect-full .contact-form .form-row input,
.protect-section .form-card .row input {
    flex: 1;
}

.protect-section .form-card button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #a78bfa, #6366f1);
    border: 0;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.protect-section .form-card button:hover {
    opacity: 0.95;
}

/* ==========================================
   12. Review & Testimonials
   ========================================== */
.review-gradient {
    background-image: linear-gradient(to bottom right, #eef2ff, #faf5ff);
}

.review-text {
    color: #4f5765;
    font-style: italic;
    font-size: 16px;
    height: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    white-space: pre-line;
}

.review-name {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.trusted_new_section .testimonial-section {
    padding: 0 20px 40px;
    text-align: center;
}

.trusted_new_section .testimonial-section p {
    color: #555;
    margin-top: 8px;
    font-size: 15px;
}

.trusted_new_section .owl-carousel {
    margin-top: 40px;
}

.trusted_new_section .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin: 15px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    text-align: left;
    display: inline-block;
}

.trusted_new_section .quote-icon {
    color: #4a4aff;
    font-size: 22px;
    margin-bottom: 10px;
}

.trusted_new_section .testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.trusted_new_section .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trusted_new_section .user-info img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.trusted_new_section .user-details {
    display: flex;
    flex-direction: column;
}

.trusted_new_section .user-details small {
    color: #4a4aff;
    font-size: 13px;
}

.trusted_new_section .learn-more {
    font-size: 13px;
    color: #4a4aff;
    margin-left: auto;
    text-decoration: none;
}

.trusted_new_section .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.trusted_new_section .owl-nav button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin: 0 5px;
    cursor: pointer;
}

.trusted_new_section .owl-nav button:hover {
    background: #e6e6f7;
}

/* ==========================================
   13. Certificates
   ========================================== */
.certificate_r h1 {
    font-size: 28px;
    text-align: center;
}

.certificate-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
    padding: 30px;
}

.certificate-card {
    background: #fefeff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.badge {
    display: inline-block;
    background: #e8f0fc;
    color: #003c74;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
}

.certificate_r h2 {
    margin: 10px 0;
    font-size: 20px;
}

.hash-box {
    display: flex;
    align-items: center;
    background: #f3f3f3;
    padding: 6px 10px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 13px;
    width: 80%;
    margin: 0 auto;
}

.copy-icon {
    margin-left: auto;
    cursor: pointer;
}

.hash-desc {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

.count-circle {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-color: #f1f5f9;
    border-radius: 100%;
    padding: 4px 11px;
}

.cert-txt {
    display: inline-block !important;
    padding-left: 35px;
}

.dualbg {
    background-color: #344256;
    padding: 3px 10px 5px;
    font-weight: 400;
}

/* Small White Certificate */
.sm_cert_all {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    color: #fff;
    height: 715px;
}

.small_white_certificate.certificate {
    position: relative;
    max-width: 500px;
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #ccc;
    padding: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.small_white_certificate .badge {
    background: #2d3e50;
    color: #fff;
    border-radius: 12px;
    padding: 10px 20px;
    margin: 10px 0;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.small_white_certificate .badge i {
    margin-right: 8px;
}

.small_white_certificate h2 {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
}

.small_white_certificate .timestamp {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
}

.small_white_certificate .divider {
    margin: 15px 0;
}

.small_white_certificate .ownership-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.small_white_certificate .owners {
    font-size: 15px;
    text-align: left;
    margin: 0 auto;
    max-width: 330px;
}

.small_white_certificate .owner-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.small_white_certificate .owner-row i {
    color: green;
}

.small_white_certificate .qr-codes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.small_white_certificate .qr-codes img {
    width: 80px;
    height: 80px;
}

.small_white_certificate .qr-label {
    font-size: 12px;
    color: #fff;
}

.small_white_certificate .note {
    font-size: 12px;
    color: #fff;
    margin-top: 16px;
}

.bullet-points {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: left;
    margin: 0 auto;
}

.bullet-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-points li {
    display: flex;
    align-items: start;
    gap: 2px;
    margin-bottom: 5px;
    font-size: 12px;
    color: #2d5943;
}

.bullet-points li::before {
    content: "✔";
    color: #28a745;
    font-weight: 700;
    font-size: 16px;
}

/* ==========================================
   14. Protect Section Cards
   ========================================== */
.info-list {
    flex: 1;
    margin-top: 150px;
}

.info-list > div {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.protect-section.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.protect-section .card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    flex: 1 1 300px;
    min-width: 280px;
    max-width: 33%;
    box-shadow: var(--shadow-card);
}

.protect-section .card .icon {
    font-size: 24px;
    display: inline-block;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 16px;
    width: 50px;
    float: left;
}

.protect-section .purple-bg {
    background-color: #f3e8ff;
    color: #9333ea;
}

.protect-section .green-bg {
    background-color: #ecfdf5;
    color: #10b981;
}

.protect-section .blue-bg {
    background-color: #eff6ff;
    color: #3b82f6;
}

.protect-section .card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    float: left;
}

.protect-section .card p {
    color: #374151;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

/* Container Protect Full Cards */
.container-protect-full h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.container-protect-full .subheading {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.container-protect-full .card-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.container-protect-full .card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 320px;
    max-width: 660px;
}

.container-protect-full .emoji {
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.container-protect-full .badge {
    background-color: #4285f4;
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 10px 7px;
    border-radius: 5px;
    float: right;
}

.container-protect-full .info-box {
    border-radius: 6px;
    padding: 0.8rem;
    margin: 10px 0;
    font-size: 0.9rem;
}

.container-protect-full .blue-card p {
    margin-bottom: 0;
}

.container-protect-full .info-box.blue {
    color: #1e40b7;
    background-color: #dbeafe;
    border: 1px solid #93c5fd;
}

.container-protect-full .info-box.green {
    color: #166534;
    background-color: #dcfce7;
    border: 1px solid #bbf7d0;
}

.container-protect-full .info-box.yellow {
    color: #92400e;
    background-color: #fef3c7;
    border: 1px solid #fde68a;
}

.container-protect-full .info-box.light {
    background-color: #f3f4f8;
}

.container-protect-full .service-details {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0;
}

/* Section Wrapper Protect Bottom */
.section-wrapper-protect-bottom {
    text-align: center;
}

.section-wrapper-protect-bottom p {
    color: #555;
    font-size: 14px;
    margin-bottom: 30px;
}

.section-wrapper-protect-bottom .card-container {
    font-size: 0;
}

.section-wrapper-protect-bottom .card {
    display: inline-block;
    width: calc(50% - 20px);
    box-sizing: border-box;
    border: 1px solid #e3e6eb;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    vertical-align: top;
}

.section-wrapper-protect-bottom .card:nth-child(1) {
    margin-right: 20px;
}

.section-wrapper-protect-bottom .card:nth-child(2) {
    margin-left: 20px;
}

.section-wrapper-protect-bottom .card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.section-wrapper-protect-bottom .icon-purple {
    background-color: #f3e8ff;
}

.section-wrapper-protect-bottom .icon-green {
    background-color: #e5f8ee;
}

.section-wrapper-protect-bottom .card h3 {
    display: inline-block;
    font-size: 16px;
    margin: 0;
    vertical-align: middle;
    font-weight: 600;
}

.section-wrapper-protect-bottom .card h4 {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.section-wrapper-protect-bottom .card p {
    margin-top: 8px;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

/* ==========================================
   15. Industry Section
   ========================================== */
.industry-section-card .main-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #111;
}

.industry-section-card .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.industry-section-card .card {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.industry-section-card .card h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.industry-section-card .card ul {
    padding-left: 20px;
    margin: 15px 0;
}

.industry-section-card .card ul li {
    margin-bottom: 8px;
    list-style: disc;
    color: #2a9134;
}

.industry-section-card .quote {
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.industry-section-card .icon {
    font-size: 20px;
}

/* ==========================================
   16. Footer
   ========================================== */
.footer-gradient {
    background-image: linear-gradient(to bottom right, var(--violet-primary), var(--indigo-primary));
}

.footer-bg {
    background-color: #111827;
}

.footer-bg h5 {
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 30px 0;
}

.footer-bg a {
    color: #9ca3af !important;
}

.footer-logo {
    width: 160px;
}

.footer-column {
    text-align: center;
}

.footer-column-contents {
    text-align: left;
    margin-bottom: 5px;
}

.foot-bottom-m {
    float: right;
}

.foot-bottom-m p {
    text-align: right !important;
}

.foot-bottom-m p a {
    text-decoration: none;
    text-align: right;
}

.ftsection {
    text-align: center;
    padding: 70px 0;
    color: #fff;
}

.ftsection h2 {
    font-weight: 700;
    font-size: 36px;
    margin: 20px 0;
}

.ftsection h3 {
    color: #34d399;
    margin: 20px 0;
    font-size: 22px;
}

.ftsection p {
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
}

.ftsection p.avail {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.about_us_footer_section {
    text-align: center;
    padding: 5% 0;
    color: #fff;
}

.about_us_footer_section h2 {
    font-weight: 700;
    font-size: 36px;
    margin: 20px 0;
}

.about_us_footer_section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
}

.faphone-bg {
    background-image: var(--gradient-green);
    color: #fff;
    padding: 22px;
    text-decoration: none;
    margin: 15px 0;
    display: inline-block;
    font-weight: 500;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    box-sizing: border-box;
}

.video-navigation-icon {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    padding: 8px 16px;
    border-radius: 100%;
    box-sizing: border-box;
}

/* ==========================================
   17. Pricing Section
   ========================================== */
.pricing_new_section h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.pricing_new_section h1 .highlight {
    font-weight: bold;
    padding: 50px 50px 0 50px;
    display: block;
}

.pricing_new_section .features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing_new_section .features li {
    margin: 5px 0;
    color: #000;
    display: inline-block;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    width: 33%;
}

.pricing_new_section .features li .check {
    font-size: 30px;
    color: var(--green-primary) !important;
}

.frate {
    font-size: 14px;
    color: #818181 !important;
}

/* ==========================================
   18. Legal & Misc
   ========================================== */
.legal-disc {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 20px;
}

.read-more {
    color: #4f46e5;
    text-decoration: none;
}

.read-more:hover {
    color: var(--red-primary) !important;
}

.gap-custom {
    gap: 1.75rem;
}

.gap-4 {
    gap: 25px;
}

/* Video & Media */
.play-btn {
    z-index: 2;
    transition: opacity 0.3s ease;
}

.play-btn.hide {
    opacity: 0;
    pointer-events: none;
}

video:focus {
    outline: 0;
}

/* Fancybox */
.fancybox-close-small {
    top: 1.2% !important;
    right: 1% !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    border-radius: 30% !important;
    transition: all 0.3s ease;
    opacity: 0.5 !important;
}

.fancybox-iframe {
    border-radius: inherit;
}

/* ==========================================
   19. Single Page Styles
   ========================================== */
.single-page .single-page-overlay {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.single-page .single-page-overlay .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 0, 64, 0.6);
    z-index: 1;
}

.single-page .profile-header {
    width: 100%;
    padding: 1.5rem 2rem 0;
    margin-bottom: -70px;
    position: absolute;
    bottom: 0;
    z-index: 100;
}

.single-page .back-link {
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    border: 0 !important;
    width: 100%;
    position: absolute;
    top: 0;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    z-index: 2;
}

/* ==========================================
   20. Privacy Policy
   ========================================== */
.privacy-all .policy-box {
    background: #fff;
    padding: 30px 40px;
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-all .policy-box h2 {
    margin-top: 0;
}

.privacy-all .section {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-all .section ul {
    margin-left: 20px;
    list-style: disc;
}

.privacy-all .checkbox-container {
    margin-top: 0;
    display: flex;
    align-items: center;
}

.privacy-all .checkbox-container input[type="checkbox"] {
    margin-right: 10px;
}

.privacy-all .checkbox-container a {
    color: #000;
    text-decoration: underline;
}

.privacy-all .button-container {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

/* ==========================================
   21. Responsive Design
   ========================================== */
@media only screen and (max-width: 900px) {
    .container {
        max-width: 100% !important;

    }

    .container-block-chain-security {
        width: 100%;
    }

    .get-start-btn .start-here {
        font-size: 16px;
    }

    .get-start-btn .start-here i {
        font-size: 1.1em;
        line-height: 1;
    }

    .pricing_new_section h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .pricing_new_section h1 .highlight {
        font-weight: bold;
        padding: 20px 20px 0 50px;
        display: block;
    }

    .register-div {
        width: 100%;
    }

    .container-footer {
        max-width: 90% !important;
    }

    .certificate-section {
        display: block;
    }

    .certificate-info-size {
        max-width: 100% !important;
    }

    .certificate-left-content {
        padding: 30px 0 30px 0 !important;
    }

    .carouselr {
        max-width: 100%;
        float: none;
        margin-top: 0;
    }

    .footer-column {
        text-align: left;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        max-width: 100%;
    }

    .industry-section-card .grid {
        grid-template-columns: 1fr;
    }

    .trusted_new_section .testimonial-card {
        max-width: 90%;
    }

    .section-wrapper-protect-bottom .card {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    .header-carousel img {
        height: auto;
        max-height: 350px;
        width: 100%;
        max-width: 100%;
    }

    .full-body-custom {
        width: 100%;
        overflow-x: hidden;
    }

    .login-btn-custom-navbar {
        width: 80%;
        margin-top: 2px;
        float: right;
    }

    .protect-section .card {
        max-width: 100%;
    }

    .info-list {
        margin-top: 20px;
    }

    .wave-area svg {
        top: 500px !important;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar-toggler {
        color: #fff;
        font-size: 13px;
        border: 1px solid #fff;
        padding: 5px;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 20px;
        height: 20px;
    }

    .navbar-collapse {
        position: absolute;
        background-color: #fff;
        right: 12px;
        top: 65%;
        border-radius: 10px;
        border-top-right-radius: 0;
        border: 1px solid #eee;
        padding: 5px;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: 0;
    }
}

/* ==========================================
   22. Utility Classes
   ========================================== */

/* RTL Support */
body.rtl .formError .formErrorArrow,
body[dir="rtl"] .formError .formErrorArrow {
    margin: -2px 13px 0 0;
}

/* Form Error Lines (for arrow) */
.formError .formErrorArrow .line10 { width: 13px; border: 0; }
.formError .formErrorArrow .line9 { width: 11px; border: 0; }
.formError .formErrorArrow .line8 { width: 11px; }
.formError .formErrorArrow .line7 { width: 9px; }
.formError .formErrorArrow .line6 { width: 7px; }
.formError .formErrorArrow .line5 { width: 5px; }
.formError .formErrorArrow .line4 { width: 3px; }
.formError .formErrorArrow .line3 {
    width: 1px;
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-bottom: 0 solid #ddd;
}
.formError .formErrorArrow .line2 { width: 3px; border: 0; background: #ddd; }
.formError .formErrorArrow .line1 { width: 1px; border: 0; background: #ddd; }

.formError .formErrorArrowBottom {
    margin: 0 0 0 12px;
    top: 2px;
}

.formError .formErrorArrowBottom,
.formError .formErrorArrowBottom div {
    box-shadow: none;
}

/* UI Dialog Z-index overrides */
.ui-dialog .formError {
    z-index: 5000;
}

.ui-dialog .formError .formErrorContent {
    z-index: 5001;
}

.ui-dialog .formError .formErrorArrow {
    z-index: 5006;
}
