.elementor-6213 .elementor-element.elementor-element-7fc3abe{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1440e3f *//* Color Scheme Palette Variables */
:root {
    --bg-dark-navy: #062247;      /* Rich Dark Navy Premium Core Background */
    --accent-cyan: #00f0ff;       /* Glowing Cyan Accent Color */
    --accent-soft-blue: #00a8cc;  /* Flat Secondary Corporate Blue */
    --text-white: #ffffff;
    --text-muted: #cbd5e1;
    --card-bg: #ffffff;
    --card-text: #1e293b;
    --border-color: #e2e8f0;
}

/* Base Parent Layout Architecture & Reset */
.capability-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--card-text);
    box-sizing: border-box;
}

.capability-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================
   1. HERO INTRO INSIDE SECTION 
   =================================================== */
.intro-section {
    background: linear-gradient(145deg, #041730 0%, var(--bg-dark-navy) 100%);
    color: var(--text-white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(4, 23, 48, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,240,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.intro-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo {
    font-size: 42px;
    color: var(--accent-cyan);
    animation: masterPulse 3s infinite alternate;
}

@keyframes masterPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(0,240,255,0.4)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 12px var(--accent-cyan)); }
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--text-white);
}

.brand-tagline {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-top: 4px;
}

.statement-title {
    text-align: right;
}

.statement-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 8px;
}

.mbe-badge {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00c2cf 100%);
    color: #041730;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.25);
}

.company-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.highlight-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-cyan);
}

.badge-item:hover {
    background: rgba(0, 240, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
}


/* ===================================================
   2. GRID SYSTEM AND CARD CARDS WITH HOVER LOGIC
   =================================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    margin-bottom: 35px;
}

.info-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--bg-dark-navy);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(6, 34, 71, 0.08);
    border-color: #cbd5e1;
}

.info-card.highlight-card {
    border-top: 4px solid var(--accent-soft-blue);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
    color: var(--bg-dark-navy);
}

.card-title i {
    font-size: 20px;
    color: var(--accent-soft-blue);
}

.card-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dynamic-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bullet-list {
    list-style: none;
}

.bullet-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 6px;
}

.bullet-list li:hover {
    background-color: #f1f5f9;
    color: var(--bg-dark-navy);
    font-weight: 500;
    padding-left: 15px;
}

.bullet-list li i {
    color: var(--accent-soft-blue);
    font-size: 16px;
}

.bullet-list.check-mode li i {
    color: #10b981;
}

.diff-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #edf2f7;
}

.diff-box:hover {
    background: #ffffff;
    border-color: var(--accent-soft-blue);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.diff-number {
    background: var(--bg-dark-navy);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(6, 34, 71, 0.15);
}

.diff-icon {
    color: var(--bg-dark-navy);
    font-size: 20px;
    width: 46px;
    text-align: center;
    flex-shrink: 0;
}

.diff-text {
    font-size: 14px;
    line-height: 1.5;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-container span {
    background: #f1f5f9;
    color: var(--bg-dark-navy);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.tag-container span:hover {
    background: var(--bg-dark-navy);
    color: white;
    border-color: var(--bg-dark-navy);
    transform: scale(1.05);
}

.minimal-table {
    width: 100%;
    border-collapse: collapse;
}

.minimal-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.minimal-table tr:hover td {
    background-color: #f8fafc;
}

.minimal-table span {
    font-family: monospace;
    font-size: 14px;
    color: #334155;
    font-weight: 600;
}

.badge-status {
    background: #dcfce7;
    color: #15803d !important;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px !important;
}

.sub-heading {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.code-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.code-badges div {
    font-size: 13px;
    background: #f8fafc;
    padding: 8px 14px;
    border-radius: 6px;
    display: flex;
    gap: 15px;
    border: 1px solid #f1f5f9;
}

.code-badges div:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    padding-left: 18px;
}

.code-badges span {
    font-weight: 700;
    color: var(--bg-dark-navy);
    min-width: 60px;
}

.code-badges.variant span {
    color: var(--accent-soft-blue);
}


/* ===================================================
   3. HIGH CONTRAST DEDICATED CONTACT BOX (PHONE RESPONSIVE UPDATED)
   =================================================== */
.embedded-contact-section {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    border-bottom: 6px solid var(--bg-dark-navy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    margin-top: 20px;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 35px;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #e0f7fa;
    color: var(--accent-soft-blue);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 12px rgba(0, 168, 204, 0.15);
}

.contact-section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #062247;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-section-header p {
    font-size: 14.5px;
    color: #64748b;
    margin-top: 6px;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-block {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-block:hover {
    border-color: var(--accent-soft-blue);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(6, 34, 71, 0.05);
    transform: translateY(-2px);
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.profile-meta i {
    font-size: 36px;
    color: #062247;
}

.profile-meta h3 {
    font-size: 19px;
    font-weight: 700;
    color: #062247;
}

.profile-meta p {
    font-size: 13.5px;
    color: var(--accent-soft-blue);
    font-weight: 600;
}

/* কন্টাক্ট ইনফো রো সেটিংস (মোবাইলে ফ্লুইড ব্রেকআউট প্রতিরোধের জন্য) */
.contact-det-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* লেখা বেশি বড় হলে টেক্সট নিচে নেমে আসবে */
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14.5px;
    color: #334155;
}

.contact-det-row:last-child {
    margin-bottom: 0;
}

.contact-det-row i {
    color: var(--accent-soft-blue);
    font-size: 18px;
    width: 25px;
    text-align: center;
    flex-shrink: 0; /* আইকন আকৃতি কখনো নষ্ট হবে না */
}

.contact-det-row p {
    flex: 1;
    min-width: 0;
    word-wrap: break-word; /* কন্টাক্ট টেক্সট রেসপনসিভ ব্রেকিং */
}

.links-block a {
    color: #062247;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all; /* ছোট স্ক্রিনে লম্বা টেক্সট ওভারফ্লো ফিক্স */
}

.links-block a:hover {
    color: var(--accent-soft-blue);
    text-decoration: underline;
}

.web-btn {
    background: linear-gradient(135deg, #062247 0%, #0b3d7a 100%);
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(6, 34, 71, 0.15);
    word-break: keep-all !important; /* বাটন লেখা সোজা রাখবে */
}

.web-btn:hover {
    background: linear-gradient(135deg, var(--accent-soft-blue) 0%, #00c2cf 100%) !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
    transform: scale(1.03);
}


/* ===================================================
   4. COMPREHENSIVE RESPONSIVE DEVICE SYSTEM
   =================================================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .dynamic-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .intro-grid {
        flex-direction: column;
        text-align: center;
    }

    .brand-identity {
        flex-direction: column;
        gap: 10px;
    }

    .statement-title {
        text-align: center;
    }

    .contact-grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .capability-wrapper {
        padding: 0 10px;
        margin: 20px auto;
    }

    .intro-section {
        padding: 25px 20px;
    }

    .brand-name {
        font-size: 26px;
    }

    .statement-title h2 {
        font-size: 19px;
    }

    .dynamic-grid-2 {
        grid-template-columns: 1fr;
    }

    .highlight-badges {
        flex-direction: column;
        gap: 10px;
    }

    .badge-item {
        width: 100%;
    }
    
    .embedded-contact-section {
        padding: 25px 15px;
    }
    
    .contact-info-block {
        padding: 20px 15px;
    }
}/* End custom CSS */