:root {
    --primary-blue: #00A3FF;
    --dark-bg: #020817;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/sf-pro-display-regular.woff2") format("woff2");
    font-weight: 400;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/sf-pro-display-semibold.woff2") format("woff2");
    font-weight: 600;
}

body {
    font-family: "SF Pro Display", sans-serif;
    background-color: #050D25;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: white;
}

.hero-wrapper {
    position: relative;
    min-height: 100vh;
    /*background-size: cover;*/
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 140px;
    /*padding-bottom: 80px;*/
    background-image: url('../images/hero-bg.png');
}

.custom-page .hero-wrapper {
    position: relative;
    min-height: 15vh;
    padding-top: 30px !important;
    /*padding-bottom: 80px;*/
    background-image: none !important;
}

@media (max-width: 767px) {
    .hero-wrapper {
        background-image: url('../images/hero-bg.png');
        padding-top: 100px;
    }
}


/* Desktop: Open dropdown on hover */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; 
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        background: #ffffff; /* Or use a dark background to match your theme */
        border-radius: 12px;
        padding: 10px;
    }
}

/* Dropdown Item Styling */
.dropdown-item {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    transition: 0.2s;
}

.dropdown-item:hover {
    background-color: #f0f7ff;
    color: #006FF3;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .dropdown-menu {
        border: none;
        background: #fff;
        padding-left: 10px;
        box-shadow: 0px 0px 25px 6px #ddd;
        width: 94%;
    }
    
    .nav-link.dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }
}


.custom-navbar {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: white;
    border-radius: 8px;
    padding: 2px 10px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #000 !important;
    font-weight: 400;
    margin: 0 10px;
    font-size: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #000 !important;
    font-weight: 500 !important;
}

.btn-get-started {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    border: none;
}

.desktop-logo {
    width: 130px;
}

.navbar-toggler img {
    width: 40px;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 40px auto 80px;
}

.hero-content h1 {
    font-size: 41px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 14px;
    font-weight: normal;
    color: #e5e5e5;
}

.glow-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px;
    /* Spacing for the shadow to breathe */
    background: rgb(39 108 193 / 30%);
    border-radius: 20px;
    box-shadow: 0px -136px 54px -100px rgb(64 95 211);
}

.shadow-layer {
    background: rgba(0, 163, 255, 0.35);
    filter: blur(60px);
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    z-index: 1;
    border-radius: 24px;
}

.content-card {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 10px;
    padding: 20px 20px 0px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

ul#pills-tab li.nav-item {
    width: 49% ! IMPORTANT;
}

.nav-pills .nav-link {
    width: 50%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
}

.nav-pills .nav-link.active {
    background-color: #007bff !important;
    color: white !important;
}

.form-label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    display: block;
}

.form-control,
.form-select {
    border: 1px solid #e2e8f0;
    padding: 14px;
    border-radius: 6px;
    box-shadow: none ! IMPORTANT;
    outline: 0 !IMPORTANT;
}

.btn-action {
    background: linear-gradient(135deg, #b9c3df, #386dcf);
    color: white;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .custom-navbar {
        background: transparent;
        box-shadow: none;
        top: 15px;
    }

    .navbar-brand img {
        filter: brightness(0) invert(1);
    }

    .hero-content h1 {
        font-size: 2rem;
        padding: 0 15px;
    }

    .content-card {
        padding: 25px;
        margin: 0 10px;
    }

    .shadow-layer {
        filter: blur(40px);
    }
}

.offcanvas {
    width: 340px !important;
}

.header-border-btn {
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-weight: 500 !important;
    padding: 6px 15px;
}

.header-bg-btn {
    border-radius: 5px !important;
    background: linear-gradient(135deg, #b9c3df, #386dcf);
    font-size: 15px;
    font-weight: 500 !important;
    padding: 6px 15px !important;
}


section.feature-section {
    margin-top: 80px;
}

.feature-header {
    text-align: center;
    margin-bottom: 60px;
}

.feature-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.feature-header h2 span {
    color: #00A3FF;
}

.feature-header p {
    color: #94a3b8;
    max-width: 650px;
    margin: 15px auto;
    font-size: 1.1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgb(255 255 255 / 18%);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.feature-card h3 {
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    color: #FFFFFF;
}

.feature-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-img-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.feature-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img-wrapper img {
    transform: scale(1.02);
}


.deep-linking-section {
    padding: 80px 0;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-image: url('../images/s-deep-bg.png');
    margin: 80px auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #dfdfdf !important;
}

.section-title span {
    color: #00A3FF;
}

.section-desc {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

.btn-get-started {
    background-color: #00A3FF;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.logo-display-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-logos-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .deep-linking-section {
        padding: 40px 0;
        text-align: center;
        background-image: url('../images/s-deep-bg-mobile.png');
        background-size: cover;
    }

    .section-title {
        font-size: 2.2rem;
        margin-top: 30px;
    }

    .section-desc {
        margin: 20px auto;
    }

    .logo-display-container {
        margin-bottom: 30px;
    }
}


.main-section-wrapper {
    padding: 80px 0;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-image: url('../images/Frame 2147238907.png');
    margin: 80px auto;
    background-size: cover;
}


.top-section {
    margin-top: 80px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    border-radius: 14px;
    padding: 40px;
    text-align: center;
    transition: .3s;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #1e7bff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 18px;
}

.glass-card h5 {
    margin-top: 8px;
}

.glass-card p {
    font-size: 14px;
    color: #9ca3af;
}

/* ---------- FEATURE WRAPPER ---------- */
.features-wrapper {
    margin-top: -60px;
    padding: 80px 40px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1db7ff, #2463ff);
}

.features-title {
    text-align: center;
    margin: 50px auto 80px;
    color: #fff;
}

.features-title p {
    font-size: 14px;
    opacity: .8;
}

/* ---------- FEATURE CARDS ---------- */
.features-wrapper .col-lg-3.col-md-6 {
    margin: 40px auto;
}

.features-wrapper .feature-card-s {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: .3s;
    overflow: visible;
    position: relative;
}

.feature-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    position: relative;
    z-index: 999;
    top: -70px;
    margin-bottom: -60px;
}

.feature-card-s h6 {
    color: #111827;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-card-s p {
    font-size: 13px;
    color: #6b7280;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:991px) {
    .features-wrapper {
        margin-top: 40px;
    }
}

@media (max-width:768px) {
    .features-wrapper {
        padding: 50px 20px;
    }
}


.hero-container {
    padding: 100px 30px;
}

/* Left Side Styles */
.sub-heading {
    color: #00d2ff;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.description {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-get-started {
    background: linear-gradient(90deg, #00d2ff 0%, #007bff 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

/* Right Side Layered Cards */
.image-stack {
    position: relative;
    height: 450px;
}

.card-layer {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: 0.5s;
}

/* The Main Invite Card */
.main-card {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    z-index: 3;
    top: 66px;
    left: 0;
}

/* Background Cards for Stack Effect */

.bg-card-1 {
    width: 500px;
    height: 400px;
    top: 20px;
    left: 48px;
    z-index: 2;
    opacity: 0.6;
}

/* Invite List Items */
.member-row {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.member-info h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.member-info p {
    margin: 0;
    font-size: 0.75rem;
    color: #94a3b8;
}

.invited-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: #cbd5e1;
}

/* Floating Stats Elements */
.rating-box {
    position: absolute;
    top: -10px;
    right: 25%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-num {
    font-size: 2.5rem;
    font-weight: 700;
}

.reviews-tag {
    background: rgba(13, 37, 71, 0.8);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-group {
    position: absolute;
    top: 100px;
    right: 30px;
    z-index: 5;
    background: rgba(13, 37, 71, 0.6);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-group img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -4px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.plus-more {
    width: 30px;
    height: 30px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-left: -10px;
    border: 2px solid #030916;
}

@media (max-width: 992px) {
    .image-stack {
        margin-top: 80px;
        height: 500px;
    }

    .main-heading {
        font-size: 2.2rem;
    }
}


.footer-container {
    background: linear-gradient(135deg, #021b4d 0%, #000c24 50%, #002b7a 100%);
    color: #ffffff;
    padding: 60px 80px 30px 80px;
    border-radius: 20px;
    /* Matching the rounded corners in screenshot */
    margin: 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 40px;
    /* Adjust based on actual logo size */
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.email-text {
    color: #b0b0b0;
    font-size: 14px;
}

/* Vertical Divider */
.divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 40px;
}

/* Right Description Section */
.footer-desc {
    flex: 2;
    max-width: 500px;
}

.footer-desc p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d1d1;
    margin-bottom: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Bottom Copyright */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* Responsive design */
@media (max-width: 900px) {
    .divider {
        display: none;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
    }
}

.footer-logo img {
    filter: brightness(0) invert(1);
}



.pricing-toggle { display: flex; justify-content: center; align-items: center; margin-bottom: 20px; }
.toggle-btn-group { background: #f1f5f9; padding: 4px; border-radius: 50px; display: flex; border: 1px solid #e2e8f0; }
.t-btn { border: none; padding: 8px 30px; border-radius: 50px; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s; background: transparent; color: #64748b; }
.t-btn.active { background: var(--primary-blue); color: white; }

/* Top Pricing Cards */
.pricing-card {
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
    background: rgb(255, 255, 255, .1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-card.featured { border-color: var(--primary-blue); border-width: 2px; box-shadow: 0 10px 25px rgba(0, 132, 255, 0.1); }
.price-val { font-size: 2.5rem; font-weight: 800; color: var(--primary-blue); margin: 15px 0; }
.price-period { font-size: 1rem; color: #697c96; font-weight: normal; }
.lft-rht {
    margin-bottom: 12px;
}
p.text-muted, p.text-muted.small {
    color: #dfdfdf !important;
}
p.text-muted.fs-5 {
    font-size: 1.05rem !important;
    margin: 20px auto;
}

.card-features { list-style: none; padding: 0; margin: 25px 0; text-align: left; }
.card-features li { padding: 8px 0; display: flex; justify-content: space-between; font-size: 0.9rem; border-bottom: 1px solid #f8fafc; color: #dfdfdf !important; }
.card-features li strong { color: var(--dark-navy); }

/* Comparison Header */
.compare-header-row { 
    background: rgb(255, 255, 255, .1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    color: white; 
    border-radius: 12px 12px 0 0; 
    padding: 20px 25px; 
    margin-top: 60px; 
}
.compare-title { font-size: 1.4rem; font-weight: 700; }
.plan-col { text-align: center; }
.plan-col h6 { margin-bottom: 2px; font-weight: 700; }
.plan-col .mini-price { font-size: 0.85rem; color: var(--primary-blue); display: block; margin-bottom: 8px; min-height: 20px; }

.comparison-spacer { height: 25px; background: none; }

/* Comparison Table */
.comparison-container { border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; }
.compare-table { 
    background: rgb(255, 255, 255, .1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    width: 100%; 
    border-collapse: collapse; 
}
.cat-header { background: #646464; color: #fff; padding: 12px 25px !important; font-weight: 700; font-size: 14px; text-transform: uppercase; }
.compare-table td { padding: 12px 25px; border-bottom: 1px solid #8989894d; font-size: 0.8rem; vertical-align: middle; color: #dfdfdf !important; }

.check-icon { color: #10b981; font-size: 1.2rem; }
.cross-icon { color: #ef4444; font-size: 1.2rem; }

@media (max-width: 991px) {
    .compare-header-row { display: none; }
    .compare-table, .compare-table tbody, .compare-table tr, .compare-table td { display: block; width: 100%; }
    .compare-table td { text-align: right; padding-left: 45%; position: relative; min-height: 50px; display: flex; align-items: center; justify-content: flex-end; }
    .compare-table td::before { 
        content: attr(data-label); 
        position: absolute; 
        left: 0; 
        top: 0; 
        bottom: 0; 
        width: 40%; 
        padding: 12px 15px; 
        font-weight: 700; 
        display: flex; 
        align-items: center; 
    }
    .compare-table td[data-label="Feature"] { 
        background-color: #3c3c3c !important; 
        font-weight: 800 !important;
        color: var(--dark-navy);
        border-top: 1px solid var(--border-color);
    }
    .compare-table td[data-label="Feature"]::before { 
        background-color: #3c3c3c !important; 
    }
}

.custom-plan-box {
    background: rgb(255 255 255 / 18%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px;
    padding: 40px;
    color: white;
    margin: 60px 0;
}
.faq-section { margin-bottom: 80px; }
.accordion-button:not(.collapsed) { background: #f0f7ff; color: var(--primary-blue); box-shadow: none; }
.accordion-button {
    box-shadow: none !important;
}
span.mini-price {
    font-size: 1.4rem;
    color: #0d6efd;
}
.accordion-body {
    color: #dfdfdf !important;
    font-size: 0.9rem;
    line-height: 28px;
}
button.accordion-button {
    background: rgb(255, 255, 255, .1) !important;
    color: #dfdfdf !important;
}
.accordion-item.mb-3.border {
    background: rgb(255, 255, 255, .1) !important;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1) !important; 
}



.main-title {
    color: #dfdfdf !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.1rem;
}
.search-container {
    max-width: 700px;
    margin: 0 auto 60px;
    background: rgb(255, 255, 255, .1);
    padding: 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.search-icon {
    color: #9ca3af;
    font-size: 1.2rem;
    margin-left: 15px;
    margin-right: 10px;
}

.search-input {
    border: none;
    flex-grow: 1;
    padding: 10px;
    font-size: 0.9rem;
    color: #dfdfdf;
    background: transparent;
}

.search-input:focus {
    outline: none;
}

.btn-search {
    background-color: #0084ff;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-search:hover {
    background-color: #0070d9;
}

/* Bio Page Cards */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.bio-card {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s ease;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bio-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.bio-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
}

.bio-avatar img {
    max-width: 40px;
    max-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bio-info {
    flex-grow: 1;
}

.bio-name a {
    font-weight: 600;
    color: #0084ff;
    margin-bottom: 4px;
    font-size: 1.1rem;
    text-decoration: none;
}

.bio-url {
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    word-break: break-all;
}

.btn-copy {
    background-color: #f3f4f6;
    color: #4b5563;
    border: 1px solid #d1d5db;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-copy:hover {
    background-color: #e5e7eb;
}




.page-main-heading {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: #dfdfdf !important;
    margin: 60px 0 30px;
}

.toolbar-area {
    background: rgb(255, 255, 255, .1);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cat-trigger {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgb(255, 255, 255, .1) !important;
    color: #b2b5b9;
    font-size: 0.9rem;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.cat-trigger:hover, .cat-trigger.is-selected {
    border-color: #0084ff;
    background-color: #f0f7ff;
}

.search-field-group {
    display: flex;
    align-items: center;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px;
    padding: 4px 4px 4px 16px;
    min-width: 320px;
}

.search-field-group i {
    color: #94a3b8;
    margin-right: 12px;
}

.search-field-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: #94a3b8;
    background: transparent;
}

.submit-search-btn {
    background-color: #0084ff;
    color: white;
    border: none;
    padding: 8px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.submit-search-btn:hover {
    background-color: #0070d9;
}

.article-box {
    background: rgb(255, 255, 255, .1);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0084ff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.article-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.timestamp {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}

.entry-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #DFDFDE !important;
    line-height: 1.4;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}

.entry-title:hover {
    color: #0084ff !important;
}

.entry-summary {
    font-size: 0.9rem;
    color: #dfdfdf !important;
    margin-bottom: 15px;
    line-height: 1.6;
}

.action-link {
    margin-top: auto;
    color: #0084ff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.action-link:hover {
    gap: 10px;
}

@media (max-width: 768px) {
    .toolbar-area {
        justify-content: center;
    }
    .search-field-group {
        min-width: 100%;
    }
}
.showmore-btn {
    background: rgb(255, 255, 255, .1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 1rem;
    padding: 15px 25px;
    text-decoration: none;
}





/* --- Main Hero --- */
.hero-title {
    text-align: center;
    font-weight: 800;
    padding: 50px 0 30px;
    font-size: 2.8rem;
}

/* --- Generator Box --- */
.gen-container {
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 0 auto;
    overflow: hidden;
}

.gen-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.switch-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-switch {
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #7e8896;
}

.btn-switch.active {
    color: black;
    background: rgb(255 255 255 / 44%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.type-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-item {
    padding: 8px 15px;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.type-item.active {
    background: rgb(255 255 255 / 39%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
div#formFields textarea.form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
/* --- Customization Toggle --- */
.custom-toggle {
    padding: 12px 15px;
    background: rgb(255 255 255 / 11%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
    margin-top: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #a1a5aa;
}

.custom-content {
    display: none;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: transparent;
}

.btn-generate-qr {
    background: rgb(255 255 255 / 11%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 25px;
}

/* --- QR Preview Pane --- */
.preview-pane {
    padding: 40px;
    text-align: center;
    background: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-placeholder {
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
i.bi.bi-qr-code.text-muted {
    color: rgb(118 126 135 / 75%) !important;
}

button.btn.btn-sm.btn-light.border.px-3.fw-bold {
    background: rgb(255 255 255 / 18%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}


/* --- "The New Standard" Section --- */
.new-standard-section {
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.map-bg {
    width: 100%;
    max-width: 550px;
    opacity: 0.7;
}

.section-tag {
    color: var(--tagly-blue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Bottom CTA --- */
.bottom-cta {
    background: rgb(255 255 255 / 18%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .bottom-cta { flex-direction: column; text-align: center; gap: 20px; }
    .new-standard-section { flex-direction: column; text-align: center; }
}

.gen-container input, textarea {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #eee !important;
    font-size: 0.9rem;
}
p.text-muted.mt-3.fs-5 {
    font-size: 0.9rem !important;
    color: #dfdfdf !important;
}




.browser-header { 
    background: #f1f5f9; 
    padding: 12px 18px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    border-bottom: 1px solid #e2e8f0;
}
.browser-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.url-bar {
    background: #fff; border-radius: 20px; flex-grow: 1;
    font-size: 13px; padding: 6px 15px; color: #64748b;
    display: flex; align-items: center; gap: 8px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

/* --- Card Content General --- */
.bio-card-content { 
    padding: 45px 25px; 
    text-align: center; 
    color: white; 
}
.profile-img-lg { width: 90px; height: 90px; border-radius: 50%; border: 4px solid rgba(255,255,255,0.3); margin-bottom: 15px; }
.profile-img-sm { width: 70px; height: 70px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.3); margin-bottom: 12px; }

.card-btn {
    background: rgb(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #bbb6b6; 
    display: block; 
    padding: 12px;
    margin: 10px 0; 
    border-radius: 10px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 13px; 
    transition: 0.3s;
}
.card-btn:hover { background: #f8fafc; transform: translateY(-2px); }

/* --- Stacked Container Layout (Larger) --- */
.stacked-container { 
    position: relative; 
    height: 580px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-top: 50px;
}

.card-item { 
    position: absolute; 
    width: 320px; /* কার্ডের সাইজ বড় করা হয়েছে */
    border-radius: 25px; 
    overflow: hidden; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.18); 
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Left Card (Lara) */
.card-left { 
    transform: translateX(-150px) rotate(-10deg); 
    z-index: 1; 
    background: linear-gradient(135deg, #3c3c3c, #2e2e2e);
    filter: brightness(0.95);
}

/* Right Card (Jim) */
.card-right {
    transform: translateX(150px) rotate(10deg);
    z-index: 1;
    background: linear-gradient(135deg, #3c3c3c, #2e2e2e);
    filter: brightness(0.95);
}

/* Main Card (Steve) */
.card-main {
    background: rgb(40 46 56) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 3;
}
/* Typing Text Blink */
#typing-text::after { content: "|"; animation: blink 0.7s infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* --- Section Styling --- */
.map-section { padding: 100px 0; }
.map-bg { 
    background: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg') no-repeat center;
    background-size: contain; min-height: 400px; opacity: 0.4; filter: grayscale(1);
}

.audience-section { 
    background: rgb(255, 255, 255, .1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 100px 50px; 
    border-radius: 50px; 
}
.icon-grid {
    text-align: center;
    padding: 30px;
    background: rgb(255, 255, 255, .1);
    border-radius: 20px;
}
.icon-grid i { font-size: 40px; margin-bottom: 12px; display: block; }

.footer-cta {
    background: rgb(255 255 255 / 18%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 30px; padding: 60px; color: white; margin-top: 60px;
}

span.input-group-text.bg-white.border-0.fw-bold {
    background: rgb(255 255 255 / 11%) !important;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a3a3a3;
    font-weight: 500 !IMPORTANT;
}
input.form-control.border-0.py-3 {
    background: rgb(255 255 255 / 11%) !important;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a3a3a3;
    font-weight: 500 !IMPORTANT;
}

.card-item.card-main.mx-auto.position-relative.shadow-lg {
    background: rgb(255 255 255 / 11%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}



    

.left-section {
    height: 100vh;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.login-box {
    width: 100%;
    max-width: 400px;
    text-align: center;
    background: rgb(255 255 255 / 11%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 30px;
    border-radius: 20px;
    color: #a0a8af !important;
    -webkit-text-fill-color: #a0a8af !important;
}

.login-box h4 {
    margin-bottom: 25px;
    font-weight: 500;
    color: #fff;
}

.login-box .form-control {
    height: 50px;
    border-radius: 6px;
    font-size: 14px;
    background: rgb(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important; /* টেক্সট কালার সাদা করা হয়েছে */
    margin-bottom: 25px !important;
    transition: all 0.3s ease; /* স্মুথ ট্রানজিশন */
}

/* --- ফোকাস বর্ডার CSS এখানে যোগ করা হয়েছে --- */
.login-box .form-control:focus {
    background: rgb(255, 255, 255, .15) !important; /* ফোকাস করলে ব্যাকগ্রাউন্ড একটু উজ্জ্বল হবে */
    border-color: #1d7ed6 !important; /* নীল বর্ডার */
    box-shadow: 0 0 8px rgba(29, 126, 214, 0.5); /* হালকা গ্লো ইফেক্ট */
    outline: 0;
    -webkit-text-fill-color: #fff !important;
}

.forgot {
    font-size: 13px;
    float: right;
    color: #6c757d;
    text-decoration: none;
}

.form-check {
    text-align: left;
}

.login-btn {
    background: linear-gradient(to right, #1d7ed6, #0d6efd);
    border: none;
    height: 50px;
    border-radius: 6px;
    font-weight: 500;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.right-section {
    background: linear-gradient(to bottom right, #1d7ed6, #2db4d6);
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.right-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.logo-login-register img {
    filter: brightness(0) invert(1);
    max-width: 150px;
}

@media (max-width: 768px) {
    .left-section, .right-section {
        height: auto;
    }
    .right-section {
        padding: 60px 20px;
    }
}
.register-btn {
    background: #fff;
    color: #0d6efd;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 500;
    border: none;
}


.wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 20px;
}

/* Logo Styles */
.logo-box {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}
.logo-login-register img {
    filter: brightness(0) invert(1);
    max-width: 150px;
}

/* Card Box Styles */
.card-box {
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.card-box h4 {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
    color: #fff;
}

/* Form Controls */
.card-box .form-control {
    height: 50px;
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    transition: all 0.3s ease;
    -webkit-text-fill-color: #a0a8af !important;
}

/* --- Focus Border Effect (মাউস ক্লিক করলে যা হবে) --- */
.card-box .form-control:focus, 
.input-field-custom:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #1d7ed6 !important; /* নীল বর্ডার */
    outline: 0;
    color: #fff !important;
}

.form-check-label {
    font-size: 14px;
    color: #a0a8af;
}


.register-btn:hover {
    transform: scale(1.01);
    opacity: 0.9;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #a0a8af;
}
.login-link a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 500;
}

/* Portal/Search Styles */
.portal-header {
    padding: 50px 0;
    text-align: center;
    width: 100%;
}
.main-heading {
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 35px;
}
.search-wrapper {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}
.input-field-custom {
    height: 55px;
    width: 100%;
    border-radius: 50px !important;
    padding-left: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}
.magnifier-icon {
    position: absolute;
    left: 20px;
    top: 18px;
    color: #9ca3af;
}
.search-trigger {
    position: absolute;
    right: 6px;
    top: 6px;
    height: 43px;
    border-radius: 40px !important;
    padding: 0 25px !important;
    background-color: #0081ff !important;
    border: none !important;
    color: white;
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 13px;
    color: #6c757d;
    text-align: center;
}


.category-box {
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link-text {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

.sub-description {
    color: #dfdfdf !important;
    font-size: 15px;
    margin-bottom: 12px;
}

.meta-counter {
    color: #9ca3af;
    font-size: 13px;
}

.summary-text {
    font-size: 14px;
    color: #dfdfdf;
    line-height: 1.6;
}

.timestamp-label {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 15px;
    display: block;
}






.section-padding-unique { 
    padding: 100px 0; 
}
section.section-padding-unique.text-center.bg-light.rounded-5.px-4.my-5 {
    background: rgb(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* --- Hero Section --- */
.hero-title-unique { 
    font-weight: 800; 
    font-size: 3.5rem; 
    letter-spacing: -1.5px; 
    line-height: 1.2;
}

.input-wrapper-unique {
    border-radius: 12px;
    padding: 8px; 
    display: flex; 
    max-width: 550px; 
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-wrapper-unique input { 
    border: none; 
    flex: 1; 
    padding: 12px 20px; 
    outline: none; 
    font-size: 16px; 
    background: transparent;
}

.btn-shorten-unique { 
    background: rgb(255, 255, 255, .1); 
    color: white; 
    border: none; 
    padding: 12px 30px; 
    border-radius: 8px; 
    font-weight: 700; 
}

/* --- Floating Visual Mockup (Exact Placement) --- */
.visual-mockup-unique { 
    position: relative; 
    height: 450px; 
    width: 100%; 
}

.main-stats-card-unique {
    border-radius: 20px;
    padding: 25px;
    width: 500px;
    position: absolute;
    top: 50px;
    right: 20px;
    z-index: 2;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-floating-unique {
    position: absolute; 
    border-radius: 10px; 
    padding: 12px 20px;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3; 
    display: flex; 
    align-items: center; 
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
}

.badge-qr-unique { top: 10px; left: 50px; }
.badge-link-unique { 
    bottom: 40px; 
    left: 30px; 
    color: white; 
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Mid Sections --- */
.stats-image-unique {
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-radius: 20px;
    max-width: 100%;
}

/* --- Analytics Card --- */
.analytics-card-unique {
    border-radius: 24px; 
    padding: 40px;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-custom-unique { 
    height: 7px; 
    border-radius: 10px; 
    background: #f1f5f9; 
    margin-top: 6px; 
    overflow: hidden;
}

.progress-bar-fill-unique { 
    background: var(--tagly-blue); 
    height: 100%; 
}

/* --- Feature Grid (Same to Same Icons & Spacing) --- */
.feature-box-unique {
    padding: 40px; 
    border-radius: 20px; 
    height: 100%; 
    transition: all 0.3s ease;
    text-align: left;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box-unique:hover { 
    border-color: var(--tagly-blue); 
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0, 162, 255, 0.05);
}

.icon-wrap-unique {
    width: 45px; 
    height: 45px; 
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f9f9f9;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 10px;
    font-size: 20px; 
    margin-bottom: 25px;
}

/* --- Footer Blue CTA --- */
.cta-banner-unique {
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px; 
    padding: 50px 60px; 
    color: white;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin: 80px 0;
}

.btn-white-unique { 
    color: #f9f9f9; 
    font-weight: 700; 
    padding: 12px 30px; 
    border-radius: 10px; 
    border: none;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-get-started-unique {
    background: rgb(255, 255, 255, .1);
    color: white;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
a.text-dark.fw-bold.text-decoration-none {
    background: rgb(72 72 72 / 10%);
    color: rgb(148, 146, 146) !important;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);

}




.unique-checkout-wrapper {
    max-width: 1100px;
    margin: 50px auto 80px;
}
.unique-surface-card {
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border: none;
}
.unique-header-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #dfdfdf !important;
}
.unique-input-field, 
.unique-select-field {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f7f7f7;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}
.unique-input-field:focus, 
.unique-select-field:focus {
    background: transparent;
    border: 1px solid #3d65ad;
    outline: 0;
    color: #f9f9f9;
}
.input-group:focus-within .input-group-text {
    border-color: var(--unique-focus-border);
    background-color: #f0f7ff;
    color: var(--checkout-accent-blue);
}
.unique-input-field::placeholder {
    color: var(--unique-placeholder-color);
    font-size: 0.9rem;
}
.unique-toggle-container {
    display: flex;
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #f9f9f9;
}
.unique-toggle-item {
    flex: 1;
    padding: 10px;
    background: rgb(255 255 255 / 0%) !important;
    border: 1px solid rgb(255 255 255 / 0%)!important;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
    color: #f9f9f9;
}
.unique-toggle-item.is-active {
    background: rgb(255 255 255 / 26%)!important;
    border: 1px solid rgb(255 255 255 / 47%)!important;
    color: #f6f6f6 !important;
}
.unique-input-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #dfdfdf !important;
    margin-bottom: 8px;
    display: block;
}
.unique-side-summary {
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #dfdfdf !important;
    padding: 25px;
    position: sticky;
    top: 20px;
}
.unique-submit-action {
    width: 100%;
    padding: 14px;
    font-weight: 600;
    border-radius: 8px;
    background: rgb(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border: none;
    margin-top: 20px;
    color: white;
    transition: 0.3s;
    outline: 0;
    box-shadow: none;
}
span.input-group-text.bg-white.border-end-0 {
    background: rgb(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.unique-submit-action:hover {
    background: rgb(255, 255, 255, 25%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    outline: 0;
    box-shadow: none;
}
.unique-flex-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.unique-divider-total {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}
.unique-display-none {
    display: none !important;
}
.unique-payment-selector {
    background: rgb(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.2s;
}
.unique-payment-selector.is-active {
    background: rgb(255 255 255 / 26%);
    border: 1px solid rgb(255 255 255 / 47%);
}
.unique-payment-selector small.text-muted {
    color: #cfcfcf !important;
    font-weight: 400 !important;
}
select.form-select.unique-select-field {
    background: #1e263b !important;
}