:root {
    --primary-color: #ec1f27;
    --secondary-color: #fd0202;
    --accent-color: #1A659E;
    --light-bg: #cdcdce;
    --dark-text: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e70000;
}

.navbar-brand img {
    max-height: 75px;
    /* Adjust this value to make it bigger or smaller */
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
.hero-section{
    padding: 35px 0 80px 0;
}
/* Shopex Specific Navbar Styles */
.bdc-navbar {
    padding: 0.5rem 0;
}

.bdc-nav-links .nav-link {
    font-size: 1.1rem;
    color: #1a2530 !important;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}

.bdc-nav-links .nav-link:hover {
    color: #ec1f27 !important;
}

.text-bdc-orange {
    color: #ec1f27 !important;
    font-weight: 600;
}

.btn-bdc-outline-orange {
    color: #ec1f27;
    border: 1.5px solid #ec1f27;
    background-color: transparent;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-bdc-outline-orange:hover {
    background-color: #ec1f27;
    color: white;
}

.btn-bdc-outline-orange:hover svg {
    stroke: white;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.7rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ec1f27;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Dropdown Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 10px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--dark-text);
    border-radius: 5px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Hover Dropdown for Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s ease;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        margin-top: 1rem;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        margin-top: 0;
        background: #f8f9fa;
    }

    .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }

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

/* Hero Section */
.hero-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.custom-green-btn {
    transition: all 0.3s ease;
}

.custom-green-btn:hover {
    background-color: #17983c !important;
    border-color: #17983c !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 176, 70, 0.4) !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background-color: #000;
    overflow: hidden;
}

.clients-section h2 {
    color: #fff !important;
    font-size: 1.5rem;
}

.clients-slider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    padding-bottom: 20px;
}

.clients-slide-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.clients-slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    background: white;
    border-radius: 4px;
    padding: 10px 20px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 200px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* UI Showcase Section */
.ui-showcase-section {
    padding: 20px 0 60px 0;
    background-color: #000;
    overflow: hidden;
}

.ui-slider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}

.ui-slide-track {
    display: flex;
    width: max-content;
    animation: scroll-ui 60s linear infinite;
    gap: 20px;
    padding: 0 10px;
}

.ui-slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-ui {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ui-slide {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    height: 430px;
    width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border: 1px solid #333;
}

.ui-slide:hover {
    transform: scale(1.03);
    z-index: 10;
}

.ui-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* High-Fidelity Design: Reasons Section (1:1 Match) */
.bdc-reasons-section {
    padding: 100px 0;
    background-color: #f7fbf8;
    /* The exact ultra-pale green background from image */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.bdc-reasons-section p{

    font-size: 21px;

    font-weight: 500;
}
.bdc-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a5568;
    /* Slate dark gray */
    line-height: 1.4;
    /* margin-bottom: 40px; */
}

.bdc-color-green {
    color: #ec1f27;
    /* Exact matching bright green */
}

.bdc-premium-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.bdc-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.bdc-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

/* Exact pastel backgrounds from the mockup */
.bg-pastel-green {
    background-color: #e5f5ea;
}

.bg-pastel-orange {
    background-color: #faebe5;
}

.bg-pastel-brown {
    background-color: #f4eee6;
}

.bg-pastel-blue {
    background-color: #eaf1fa;
}

.bg-pastel-cyan {
    background-color: #e5f6fc;
}

.bg-pastel-yellow {
    background-color: #f7f4e7;
}

.bg-pastel-purple {
    background-color: #f3ebfa;
}

.bg-pastel-pink {
    background-color: #faebf1;
}

.bdc-premium-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3748;
    /* Darker title font */
}

.bdc-premium-card p {
    font-size: 0.95rem;
    color: #718096;
    /* Slightly more muted grey */
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .bdc-main-title {
        font-size: 1.8rem;
    }

    .bdc-reasons-section {
        padding: 60px 0;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: white;
}

.video-wrapper {
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-wrapper:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    transition: transform 0.3s ease;
    z-index: 10;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.benefits-list span {
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 500;
}

/* Bottom CTA Section */
.bottom-cta-section {
    background-color: #f6e7ec !important;
    /* Extremely light blue-ish white */
    padding: 100px 0;
}

.bottom-cta-section h2 {
    font-size: 2.5rem;
}

.cta-btn {
    padding: 15px 30px 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    min-width: 320px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn-blue {
    background-color: #e50017;
    /* Adjusting to match image's exact blue */
}

.cta-btn-blue:hover {
    background-color: #2451a8;
    color: white;
}

.cta-btn-green {
    background-color: #0099e1;
    /* Adjusting to match image's exact green */
}

.cta-btn-green:hover {
    background-color: #319e48;
    color: white;
}

.cta-buttons-wrapper {
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f8fbfb;
}

.features-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 8px;
    margin-bottom: 10px;
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e10009;
}

.features-nav .nav-link:hover {
    color: #ff5722;
}

.features-nav .nav-link.active {
    background-color: #ec1f27 !important;
    color: white !important;
}

.features-content-box {
    background-color: #ebf8f2;
    border-radius: 24px;
    padding: 4rem;
}

.features-content-box p {
    color: #555;
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 0;
}

.features-content-box h3 {
    color: #222;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
}

.solution-card {
    background: linear-gradient(135deg, #2196F3, var(--accent-color));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
    transition: all 0.5s ease;
}

.solution-card:hover::before {
    transform: scale(1.5);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.solution-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.solution-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.solution-card ul li::before {
    content: 'ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fef4ee 0%, #edf1ef 100%);
}

.price-card {
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.side-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.center-card {
    background: #ec1f27;
    border: none;
    box-shadow: 0 15px 50px rgba(255, 87, 34, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.price-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ec1f27;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.center-card .price-title {
    color: white;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
    font-weight: 400;
}

.center-card .old-price {
    color: rgba(255, 255, 255, 0.8);
}

.badge-custom {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

.badge-green {
    background: #42abe0;
    color: white;
    align-self: flex-start;
}

.badge-white {
    background: white;
    color: #ff5722;
    align-self: flex-start;
}

.price-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.center-card .price-desc {
    color: rgba(255, 255, 255, 0.9);
}

.price-details-box {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
}

.center-card .price-details-box {
    background: white;
    border: none;
}

.details-title {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-outline-orange {
    color: #ff5722;
    border: 1px solid #ff5722;
    background: transparent;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-orange:hover {
    background: #ff5722;
    color: white;
}

.btn-orange {
    background: #ff5722;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-orange:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

.star-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    background: white;
    color: #ff5722;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    z-index: 10;
    /* Using a starburst shape */
    clip-path: polygon(50% 0%, 61% 15%, 79% 5%, 79% 23%, 98% 30%, 86% 46%, 100% 64%, 82% 71%, 86% 90%, 68% 85%, 50% 100%, 35% 85%, 15% 90%, 18% 71%, 0% 64%, 13% 46%, 2% 30%, 21% 23%, 21% 5%, 39% 15%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

@media (max-width: 991px) {
    .center-card {
        transform: scale(1);
    }

    .star-badge {
        right: 0px;
        top: -10px;
    }
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0;
    background: #f7f7f7;
    border: 3px solid #ff0808;
    border-right: none;
    border-left: none;
}

.integration-badge {
    background: white;
    border-radius: 15px;
    padding: 10px;
    margin: 4px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #ec1f27;
}

.integration-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.integration-badge i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2196F3, var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-light {
    background: white;
    color: var(--secondary-color);
    padding: 1rem 3rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

footer h5 {
    color: #df0009;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 0.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}
.package-section h2{
    font-size: 23px;
    padding-top: 20px;
}
/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Base Hero Typography Styles */
.hero-title {
    color: #0b1c2b !important;
    font-size: 3.8rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: #4a5568;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* WhatsApp Widget */
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.wa-tooltip-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-tooltip-close {
    background-color: #000;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.2s;
}

.wa-tooltip-close:hover {
    background-color: #333;
}

.wa-tooltip-text {
    background-color: #fff;
    color: #333;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 4px 5px 0px #0fd276;
    letter-spacing: 0.3px;
}

.wa-float-btn {
    background-color: #0fd276;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(15, 210, 118, 0.3);
    transition: transform 0.3s ease;
    margin-right: 5px;
}

.wa-float-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

/* ------------------------------------- */
/* Contact Page Styles */
/* ------------------------------------- */

.contact-talk-section {
    background: #ffffff;
    padding: 120px 0 140px 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
}

.contact-talk-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.01) 40px, rgba(255, 255, 255, 0.01) 41px);
    pointer-events: none;
}

.contact-glow-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(200, 220, 50, 0.4) 0%, rgba(200, 220, 50, 0) 70%);
    border-radius: 50%;
    top: 50px;
    right: 15%;
    z-index: 0;
    pointer-events: none;
}

.contact-main-title {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 2px;
}

.font-serif {
    font-family: 'Playfair Display', "Times New Roman", Times, serif;
}

.text-light-gray {
    color: #42abe0;
}

.text-theme-green {
    color: #ec1f27;
    text-shadow: 0 0 10px rgba(15, 210, 118, 0.3);
}

.contact-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', sans-serif;
}

.contact-desc {
    color: #3c3c3c;
    font-size: 1.05rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
    max-width: 95%;
}

.contact-form-box {
    background: rgb(26 29 27);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.text-muted-green {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.custom-dark-input {
    background-color: #1e211f !important;
    border: 1px solid #2d3330 !important;
    color: #c5cbc7 !important;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-dark-input:focus {
    border-color: #0fd276 !important;
    box-shadow: 0 0 0 2px rgba(15, 210, 118, 0.15) !important;
    color: #fff !important;
}

.custom-dark-input::placeholder {
    color: #556259;
}

.custom-select-wrapper select option {
    background-color: #1e211f;
    color: #c5cbc7;
}

.btn-theme-green {
    background-color: #ec1f27;
    color: #000;
    border: none;
    padding: 8px 10px 8px 22px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 50px;
    font-size: 0.95rem;
}

.btn-theme-green:hover {
    background-color: #0cd576;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 210, 118, 0.3);
}

.btn-theme-green .icon-circle {
    width: 32px;
    height: 32px;
    margin-left: 8px;
}

@media (max-width: 991px) {
    .contact-main-title {
        font-size: 5rem;
    }
}

/* ------------------------------------- */
/* About Page Styles */
/* ------------------------------------- */

.about-page-wrapper {
    background-color: #f7f6ec;
    color: #1a1a1a;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a201c;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a201c;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a544a;
    font-weight: 500;
}

.about-section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a201c;
    letter-spacing: -0.5px;
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    display: inline-block;
}

.timeline-circle {
    width: 45px;
    height: 45px;
    background-color: #2b302c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px #f7f6ec; /* matches background */
}

/* Vertical line connecting circles */
.timeline-line {
    position: absolute;
    width: 2px;
    background-color: #d8d8ce;
    top: 45px;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a201c;
}

.timeline-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a544a;
    margin-bottom: 12px;
}

/* Responsive adjustments for timeline */
@media (max-width: 767px) {
    .timeline-line {
        display: none;
    }
    .timeline-circle {
        margin-bottom: 20px;
    }
    .timeline-item {
        margin-bottom: 40px;
        text-align: center;
    }
    .timeline-item > div {
        text-align: center !important;
    }
}

/* Team Section */
.about-team-section {
    position: relative;
}

.team-blur-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, rgba(235, 220, 255, 0.7) 0%, rgba(200, 230, 255, 0.5) 50%, rgba(255, 230, 200, 0.6) 100%);
    filter: blur(40px);
    z-index: 0;
}

.team-card {
    background: transparent;
}

.team-img-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.team-img-wrapper:hover {
    transform: translateY(-5px);
}

.team-img-wrapper img {
    border-radius: 8px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}

.team-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a201c;
}

.team-role {
    font-size: 0.85rem;
    color: #5a645a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Team Section */
.about-team-section {
    position: relative;
    background-color: #f7f6ec; /* ensuring consistent background */
}

.team-blur-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, rgba(235, 220, 255, 0.7) 0%, rgba(200, 230, 255, 0.5) 50%, rgba(255, 230, 200, 0.6) 100%);
    filter: blur(40px);
    z-index: 0;
}

.team-card {
    background: #fff;
    border-radius: 9px; /* square corners per design */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px; /* padding around image */
}

.team-img-wrapper img {
    border-radius: 0;
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

/* Social Overlay on Hover */
.team-social-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    visibility: visible;
}

.team-card:hover .team-img-wrapper img {
    filter: brightness(0.6);
    transform: scale(1.03);
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-icon.fb { background-color: #3b5998; }
.social-icon.tw { background-color: #1da1f2; }
.social-icon.in { background-color: #0077b5; }
.social-icon.pi { background-color: #bd081c; }

.social-icon.fb:hover { background-color: #2d4373; }
.social-icon.tw:hover { background-color: #0c85d0; }
.social-icon.in:hover { background-color: #005885; }
.social-icon.pi:hover { background-color: #8c0615; }

.team-info {
    padding: 25px 20px;
    text-align: center;
    background-color: #fafafa;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.team-role {
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
    margin: 0;
}
/* ------------------------------------- */
/* Footer Styles */
/* ------------------------------------- */

footer {
    background-color: #1b120f;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    border-top: 3px solid #F44336; /* Yellow accent top border matches the design's bottom yellow bar */
    /* Looking at the image, there's a thick yellow border at the very bottom, let's add that to footer or a specific div */
}

.custom-footer-top {
    padding-bottom: 2rem !important;
}

.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
    color: #e0e0e0;
}

.footer-title {
    color: #ec1f27; /* Yellow color */
    font-size: 1.4rem;
    font-weight: 500;
}

.footer-contact-list li {
    font-size: 1rem;
    line-height: 1.5;
    color: #f1f1f1;
}

.footer-icon {
    color: #ec1f27;
    font-size: 1.1rem;
}

.footer-social-title {
    color: #ec1f27;
    font-size: 1rem;
    font-weight: 500;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 35px;
    height: 35px;
    background-color: #ec1f27;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-circle:hover {
    transform: translateY(-3px);
    background-color: #ec1f27;
    color: #000;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffbc00;
}

.member-title {
    font-size: 1.2rem;
}

.footer-divider {
    border-color: #ffbc00;
    opacity: 1;
    border-width: 2px;
}


/* Template Gallery Styles */
.template-hero-section {
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
    margin-bottom: 3rem;
}

.filter-btn {
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background-color: #fff4f0;
    color: #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.filter-btn:hover {
    background-color: #ffe8e0;
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: #ec1f27 !important;
    color: #fff !important;
    box-shadow: 0 8px 15px rgba(255, 107, 53, 0.3);
}

.template-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.browser-header {
    background: #f1f1f1;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.browser-header .dots {
    display: flex;
    gap: 6px;
}

.browser-header .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.browser-header .dots span:nth-child(1) { background: #ff5f56; }
.browser-header .dots span:nth-child(2) { background: #ffbd2e; }
.browser-header .dots span:nth-child(3) { background: #27c93f; }

.card-image-box {
    position: relative;
    aspect-ratio: 16 / 16;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.template-card:hover .card-image-box img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ec1f27;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-footer-info {
    border-top: 1px solid #f5f5f5;
}

.info-text h5 {
    font-size: 1.05rem;
    color: #1a1a1a;
}

.info-text p {
    font-size: 0.85rem;
}

/* Animations */
.template-item {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .filter-nav-wrapper {
        gap: 10px;
    }
    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}



/* View Demo Button Overlay */
.view-demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(1px);
}

.template-card:hover .view-demo-overlay {
    opacity: 1;
}

.view-demo-btn {
    background: #ff6b35;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.template-card:hover .view-demo-btn {
    transform: translateY(0);
}

.view-demo-btn i {
    font-size: 1rem;
    margin-left: 10px;
}



/* Inquiry Cards Section */
.inquiry-cards-section {
    background-color: #f8fafc;
}

.inquiry-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02) !important;
}

.inquiry-card-img img {
    border-radius: 10px;
}

.inquiry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.bg-orange-light {
    background-color: #fff4f0;
}

.text-orange {
    color: #ec1f27;
}

.inquiry-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
}

.inquiry-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item span {
    color: #475569;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .inquiry-card {
        flex-direction: column;
        text-align: center;
    }
    .inquiry-card-img {
        margin-right: 0 !important;
        margin-bottom: 1.5rem;
    }
    .contact-item {
        justify-content: center;
    }
}

/* Integrations Slider Marquee */
.integrations-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.integration-slider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 10px 0;
}

.integration-slide-track {
    display: flex;
    width: max-content;
    gap: 10px;
}

.integration-slider:hover .integration-slide-track {
    animation-play-state: paused;
}

.track-rtl {
    animation: scroll-rtl 40s linear infinite;
}

.track-ltr {
    animation: scroll-ltr 40s linear infinite;
}

.integration-badge {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    width: 180px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.integration-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: #ec1f27;
}

.integration-badge img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

@keyframes scroll-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-ltr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .integration-badge {
        width: 140px;
        height: 70px;
        padding: 10px 15px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

/* Fraud Hero Section Custom Styles */
.fraud-custom-hero {
    background: #f8faff;
    padding: 80px 0;
    font-family: 'Hind Siliguri', sans-serif;
    overflow: hidden;
}

.fraud-custom-badge-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #dbeafe;
    width: fit-content;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.fraud-custom-pro-badge {
    background: #0066FF;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.fraud-custom-badge-text {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
}

.fraud-custom-title {
    font-size: 56px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 24px;
}

.fraud-custom-highlight {
    color: #FF6B00;
}

.fraud-custom-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
}

.fraud-custom-form-container {
    background: white;
    padding: 10px;
    padding-left: 24px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 480px;
}

.fraud-custom-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    color: #374151;
    background: transparent;
}

.fraud-custom-input::placeholder {
    color: #9ca3af;
}

.fraud-custom-btn {
    background: #FF6B00;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.fraud-custom-btn:hover {
    background: #e66000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.fraud-custom-img-wrapper {
    position: relative;
    padding-left: 40px;
}

.fraud-custom-hero-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .fraud-custom-hero {
        padding: 60px 0;
        text-align: center;
    }
    .fraud-custom-badge-container {
        margin: 0 auto 30px;
    }
    .fraud-custom-description {
        margin: 0 auto 40px;
    }
    .fraud-custom-form-container {
        margin: 0 auto;
    }
    .fraud-custom-title {
        font-size: 40px;
    }
    .fraud-custom-img-wrapper {
        padding-left: 0;
        margin-top: 50px;
    }
}
@media (max-width: 576px) {
    .fraud-custom-form-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
    }
    .fraud-custom-btn {
        width: 100%;
    }
    .navbar-brand img {
        max-height: 30px !important;
    }
}

/* Platform Integrations Section Custom Styles */
.platform-custom-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
    font-family: 'Hind Siliguri', sans-serif;
}

.platform-custom-header {
    text-align: center;
    margin-bottom: 60px;
}

.platform-custom-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.platform-custom-subtitle {
    font-size: 20px;
    color: #6b7280;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.platform-custom-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.platform-custom-slider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 10px 0;
}

.platform-custom-track {
    display: flex;
    width: max-content;
    gap: 20px;
    padding-right: 20px;
}

.platform-custom-track-rtl {
    animation: scroll-rtl 50s linear infinite;
}

.platform-custom-track-ltr {
    animation: scroll-ltr 50s linear infinite;
}

.platform-custom-slider:hover .platform-custom-track {
    animation-play-state: paused;
}

.platform-custom-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 220px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.platform-custom-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #e5e7eb;
}

.platform-custom-card img {
    max-height: 50px;
    max-width: 85%;
    object-fit: contain;
    filter: grayscale(10%) contrast(100%);
    transition: all 0.3s ease;
}

.platform-custom-card:hover img {
    filter: grayscale(0%) contrast(110%);
}

@media (max-width: 991px) {
    .platform-custom-title {
        font-size: 40px;
    }
    .platform-custom-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .platform-custom-section {
        padding: 60px 0;
    }
    .platform-custom-card {
        width: 180px;
        height: 85px;
        padding: 15px;
    }
    .platform-custom-track {
        gap: 15px;
    }
}

/* Fraud Features Section Custom Styles */
.fraud-feature-custom-section {
    padding: 100px 0;
    background-color: #fafbfc;
    font-family: 'Hind Siliguri', sans-serif;
}

.fraud-feature-custom-header {
    text-align: center;
    margin-bottom: 70px;
}

.fraud-feature-custom-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.fraud-feature-custom-blue {
    color: #0066FF;
}

.fraud-feature-custom-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
}

.fraud-feature-custom-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.fraud-feature-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.fraud-feature-custom-icon {
    font-size: 28px;
    color: #ff4d4d;
    margin-bottom: 25px;
    display: inline-block;
}

.fraud-feature-custom-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.fraud-feature-custom-card-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}

.fraud-feature-custom-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #F59E0B;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    z-index: 1;
}

@media (max-width: 991px) {
    .fraud-feature-custom-title {
        font-size: 36px;
    }
    .fraud-feature-custom-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .fraud-feature-custom-section {
        padding: 60px 0;
    }
    .fraud-feature-custom-card {
        padding: 30px;
    }
    .fraud-feature-custom-header {
    }
}

/* Plugin Redesign Custom Styles */
.fraud-plugin-section {
    padding: 100px 0;
    background-color: #fff;
}

.plugin-custom-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e5f9f1;
    color: #00c853;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.plugin-custom-badge i {
    font-size: 1.2rem;
}

.plugin-custom-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 15px;
}

.plugin-custom-title i {
    color: #333;
    font-size: 2.2rem;
}

.plugin-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plugin-custom-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 12px;
    white-space: nowrap;
}

.plugin-custom-list li i {
    color: #00c853;
    font-size: 1.2rem;
}

.plugin-custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00c853;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.plugin-custom-btn:hover {
    background: #00a846;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.plugin-custom-img-wrapper {
    text-align: center;
}

.plugin-custom-img-wrapper img {
    max-width: 90%;
    height: auto;
}

@media (max-width: 1200px) {
    .plugin-custom-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .plugin-custom-content {
        margin-top: 50px;
    }
    .plugin-custom-title {
        font-size: 2rem;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    .plugin-custom-badge {
        display: flex;
        width: fit-content;
        margin: 0 auto 20px;
    }
    .plugin-custom-list li {
        font-size: 1rem;
    }
    .plugin-custom-btn {
        display: flex;
        width: fit-content;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .plugin-custom-title {
        font-size: 1.8rem;
    }
    .plugin-custom-features .col-6 {
        width: 100%;
    }
    .plugin-custom-list li {
        white-space: normal;
    }
}

/* Pricing Redesign Custom Styles */
.fraud-pricing-section {
    padding: 100px 0;
    background-color: #f7fbf8;
}

.pricing-custom-top-title {
    color: #00c853;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pricing-custom-price-display {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.pricing-custom-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.pricing-custom-old-amount {
    font-size: 1.5rem;
    color: #999;
}

.pricing-custom-info {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.pricing-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-custom-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-custom-list li i {
    color: #00c853;
    font-size: 1.25rem;
}

.pricing-custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #00c853;
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.pricing-custom-btn:hover {
    background: #00a846;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.pricing-custom-note {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.pricing-custom-img-wrapper {
    text-align: center;
}

.pricing-custom-img-wrapper img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .pricing-custom-amount {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .pricing-custom-content {
        margin-top: 50px;
        text-align: center;
    }
    .pricing-custom-price-display {
        justify-content: center;
    }
    .pricing-custom-list li {
        justify-content: center;
    }
    .pricing-custom-btn {
        width: fit-content;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-custom-amount {
        font-size: 2.2rem;
    }
    .pricing-custom-list li {
        font-size: 1.05rem;
    }
    }
}

/* Trial Card Pricing Redesign Custom Styles */
.trial-custom-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.trial-custom-left {
    background: #fff;
}

.trial-custom-right {
    background: #f8fafd;
    border-left: 1px solid #f0f0f0;
}

.trial-custom-small {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.trial-custom-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
}

.trial-custom-days {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
}

.trial-custom-select {
    border: 2px solid #00c853;
    color: #00c853;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: 12px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300c853' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.trial-custom-select:focus {
    border-color: #00c853;
    box-shadow: none;
}

.trial-custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #00c853;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.trial-custom-btn:hover {
    background: #00a846;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.trial-custom-features-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a202c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trial-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trial-custom-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 18px;
}

.trial-custom-list li i {
    color: #00c853;
    font-size: 1.3rem;
}

@media (max-width: 991px) {
    .trial-custom-right {
        border-left: none;
        border-top: 1px solid #f0f0f0;
    }
    .trial-custom-large {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .trial-custom-large {
        font-size: 2.5rem;
    }
    .trial-custom-list li {
        font-size: 1rem;
    }
}




/* Fraud Result Area Styles */
.fraud-result-wrapper {
    margin-top: 30px;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.fraud-result-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fraud-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.fraud-phone-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
}

.risk-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.risk-safe { background: #e6fffa; color: #047857; }
.risk-warning { background: #fffbeb; color: #b45309; }
.risk-danger { background: #fef2f2; color: #b91c1c; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-item.total { background: #eff6ff; }
.stat-item.total .stat-value { color: #2563eb; }

.stat-item.success { background: #f0fdf4; }
.stat-item.success .stat-value { color: #16a34a; }

.stat-item.cancel { background: #fef2f2; }
.stat-item.cancel .stat-value { color: #dc2626; }

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    color: #1a202c;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.success-rate-container {
    margin-bottom: 30px;
}

.success-rate-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1a202c;
}

.progress-bar-bg {
    height: 12px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00c853, #64ffda);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.courier-results-list {
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}

.courier-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
}

.courier-card:hover { border-color: #00c853; background: #f0fff4; }

.courier-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 15px;
}

.courier-info { flex-grow: 1; }

.courier-name {
    font-weight: 700;
    color: #1a202c;
    font-size: 1rem;
    display: block;
}

.courier-stats {
    font-size: 0.85rem;
    color: #64748b;
}

.courier-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

/* Excellent Customer UI */
.excellent-badge-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.stars-container {
    background: #f3f4f6;
    padding: 3px 10px;
    border-radius: 6px;
    margin: 5px 0;
    display: inline-flex;
    gap: 2px;
}

.star-icon {
    color: #ffb800;
    font-size: 0.95rem;
}

.excellent-text-bn {
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
    margin: 0;
    font-family: 'Hind Siliguri', sans-serif;
}

.excellent-text-en {
    font-style: italic;
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

/* Fraud Customer UI */
.stars-container.fraud {
    background: #fef2f2;
}

.star-icon-empty {
    color: #d1d5db;
    font-size: 0.95rem;
}

.fraud-text-bn {
    font-weight: 700;
    color: #b91c1c;
    font-size: 1rem;
    margin: 0;
    font-family: 'Hind Siliguri', sans-serif;
}

/* New Pathao Customer UI */
.stars-container.new-pathao {
    background: #f0f9ff;
}

.new-text-bn {
    font-weight: 700;
    color: #0369a1;
    font-size: 1rem;
    margin: 0;
    font-family: 'Hind Siliguri', sans-serif;
}


@media (max-width: 576px) {
    .courier-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .excellent-badge-wrapper {
        margin-top: 15px;
        align-items: flex-start;
        text-align: left;
    }
    .stars-container {
        padding-left: 0;
    }
}


/* Shopex Pricing Table Redesign */
.shopex-table-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: white;
}
.shopex-custom-table {
    margin-bottom: 0;
    width: 100%;
    border-collapse: collapse;
}
.shopex-custom-table th {
    padding: 20px 15px;
    font-weight: 700;
    color: white;
    vertical-align: middle;
    border: none;
}
.shopex-custom-table th .subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.9;
}
.shopex-custom-table td {
    padding: 14px 20px;
    border: 1px solid #f0f0f0;
    vertical-align: middle;
    font-weight: 500;
    color: #333;
}
.shopex-feature-name {
    text-align: left !important;
    font-weight: 600 !important;
    color: #000 !important;
}
.shopex-check-icon {
    color: #28a745;
    font-size: 1.5rem;
}
.shopex-footer-row td {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 18px 20px;
    border: none;
}
.shopex-btn-view-details {
    background-color: #ff1603;
    color: #fff;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.shopex-btn-view-details:hover {
    background-color: #d11302;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .shopex-custom-table th {
        font-size: 1.1rem;
        padding: 12px 8px;
    }
    .shopex-custom-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    .shopex-footer-row td {
        font-size: 1.1rem;
    }
}
