
/*LSP WORLD New CSS*/

.stat-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 20px;
    background: linear-gradient(135deg,#1d4ed8,#3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 8px 20px rgba(59,130,246,0.4);
}

.bg-info-soft {
    background: linear-gradient(135deg,#0ea5e9,#38bdf8);
    box-shadow: 0 8px 20px rgba(14,165,233,0.4);
}

.bg-success-soft {
    background: linear-gradient(135deg,#16a34a,#4ade80);
    box-shadow: 0 8px 20px rgba(22,163,74,0.4);
}

.btn-primary {
    border-radius: 50px;
}

/* Gold Glow Button */
.btn-gold {
    border-radius: 50px;
    background: #3876bb;
    color: #000;
    border: none;
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
    transition: all 0.4s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212,175,55,0.9);
    color: #000;
}
.highlight-box {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(37,99,235,0.3);
}

.highlight-number {
    font-size: 48px;
    font-weight: 800;
    color: #facc15;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

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

.service-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-content {
    padding: 20px;
}

.service-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content p {
    color: #6c757d;
    font-size: 15px;
}


/* Card Base */
.pricing-card {
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
}

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

/* Featured Card */
.featured {
    transform:scale(1.05);
    border:2px solid #facc15;
    box-shadow:0 20px 50px rgba(250,204,21,0.3);
}

/* Best Badge */
.best-badge {
    position:absolute;
    top:-15px;
    right:30px;
    background:linear-gradient(135deg,#d4af37,#facc15);
    color:#000;
    padding:5px 15px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

/* Gold Button */
.btn-gold {
    background:linear-gradient(135deg,#d4af37,#facc15);
    border:none;
    color:#000;
    border-radius:50px;
    transition:all 0.3s ease;
}

.btn-gold:hover {
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(212,175,55,0.5);
}

@media(max-width:992px){
    .featured {
        transform:none;
    }
}


/* Dashboard Preview */
.dashboard-preview img {
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    transition:all 0.4s ease;
}
.dashboard-preview img:hover {
    transform:scale(1.03);
}

/* Comparison Card */
.comparison-card {
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* Highlight LSPWorld Column */
.highlight-col {
    background:linear-gradient(135deg, rgba(29,78,216,0.08), rgba(250,204,21,0.1));
    border-radius:8px;
}

/* Table */
.table th {
    font-weight:700;
    border-bottom:2px solid #dee2e6;
}

.table td {
    padding:15px 10px;
    font-size:15px;
}


.esg-section {
    background:#f0f3f9;
}

/* Card Style */
.esg-card {
    background:#ffffff;
    padding:40px 25px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
    height:100%;
}

.esg-card:hover {
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* Icon Box */
.icon-box {
    width:70px;
    height:70px;
    margin:0 auto;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#ffffff;
}

/* Color Variants */
.bg-green {
    background:linear-gradient(135deg,#16a34a,#4ade80);
}

.bg-blue {
    background:linear-gradient(135deg,#1d4ed8,#3b82f6);
}

.bg-purple {
    background:linear-gradient(135deg,#7c3aed,#a78bfa);
}

.bg-orange {
    background:linear-gradient(135deg,#f97316,#fb923c);
}


/* Dark Navy Background */
.final-cta-section {
    background: linear-gradient(135deg, #0b1c2d, #102a43);
}

/* Trust Text */
.trust-text {
    opacity: 0.85;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Buttons */
.cta-primary {
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #facc15);
    border: none;
    color: #000;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(250,204,21,0.4);
}

.lsp-footer {
    background: linear-gradient(135deg, #0b1c2d, #102a43);
}

.footer-links .list-inline-item {
    margin: 0 12px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #facc15;
}


/* Section Background */
.about-section {
    background:#ffffff;
}

/* Info Boxes */
.info-box {
    background:#f8fafc;
    padding:20px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.info-box:hover {
    transform:translateY(-5px);
}

/* Icon Circle */
.icon-circle {
    width:45px;
    height:45px;
    background:linear-gradient(135deg,#1d4ed8,#3b82f6);
    color:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

/* Mission Box */
.mission-box {
    background:linear-gradient(135deg,#0b1c2d,#102a43);
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.about-section {
    background:#ffffff;
}

/* Info Boxes */
.info-box {
    background:#f8fafc;
    padding:20px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.info-box:hover {
    transform:translateY(-5px);
}

/* Icon Circle */
.icon-circle {
    width:45px;
    height:45px;
    background:linear-gradient(135deg,#1d4ed8,#3b82f6);
    color:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

/* Image Wrapper */
.image-wrapper {
    position:relative;
}

/* Mission Overlay */
.mission-overlay {
    position:absolute;
    bottom:20px;
    left:20px;
    right:20px;
    background:linear-gradient(135deg,#0b1c2d,#102a43);
    color:#ffffff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}


.faq-section {
    background:#f0f3f9;
}

/* Accordion Custom Styling */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.custom-accordion .accordion-button {
    font-weight: 600;
    background: #ffffff;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg,#1d4ed8,#3b82f6);
    color: #ffffff;
}

.custom-accordion .accordion-body {
    background: #ffffff;
    color: #6c757d;
}


.case-list-section {
    background:#ffffff;
}

.case-card {
    background:#f8fafc;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.06);
    transition:0.4s ease;
    height:100%;
}

.case-card:hover {
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.case-img {
    height:200px;
    width:100%;
    object-fit:cover;
}

.case-content {
    padding:20px;
}

.badge-result {
    background:linear-gradient(135deg,#1d4ed8,#3b82f6);
    color:#fff;
    padding:6px 12px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
}

.btn-outline-primary {
    border-radius:50px;
}


