/*-----------------------header section------------------------*/


.hero-text-section {
    font-size: 56px;
}
.hero-section {
    background-color: #F0FCFF; /* soft lavender tone */
    position: relative;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(90deg, #4b6bff, #9a73ff);
    /*-webkit-background-clip: text;*/
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background-color: #007aff;
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #6546ff;
        transform: translateY(-2px);
    }


.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #b6aaff; /* top border line */
}



.form-width {
    width: 450px;
    margin: 0 auto;
}

.form-color {
    color: #ffffff;
}

.head-size-sub {
    font-size: 31px;
}

.head-size-form {
    font-size: 56px;
}

.text-gradient-animate {
    background: linear-gradient(270deg, #3a0ca3, #4361ee, #4895ef, #7209b7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Animated Gradient Background (Dark Version) */
.gradient-animate {
    background: linear-gradient(135deg, #3a0ca3, #7209b7, #4361ee, #4895ef, #560bad);
    background-size: 300% 300%;
    animation: gradientFlow 8s ease infinite;
    color: #fff; /* ensures text on top is visible */
}

/* Animation keyframes */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.btn-primary {
    background-color: #007aff;
    border: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    min-width: 135px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
}

    .btn-primary:hover {
        background-color: #6546ff;
        transform: translateY(-2px);
        border-radius: 6px;
        min-width: 135px;
        padding: 12px 16px;
        font-size: 16px;
        font-weight: 600;
    }

@media (min-width: 990px) {
    .hero-text-header {
        max-width: 520px;
    }
}

.hero-text {
    max-width: 520px;
}

.heade-back {
    background-color: #F0FCFF;
}

.heade-top {
    margin-top: 60px;
}

.hero-grid {
    z-index: 100;
    grid-column-gap: 60px;
    grid-template-rows: auto;
    align-items: center;
    padding-bottom: 90px;
    font-size: 18px;
    position: relative;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.head-size {
    font-size: 52px;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .w-layout-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-grid {
        padding-bottom: 50px;
    }

        .hero-grid img {
            margin-top: 2rem;
            max-width: 90%;
        }
}

.header-img-fluid {
    max-width: 100%;
    height: auto;
}


/*-----------------------Feature section------------------------*/
.section-gradientm {
    background-image: linear-gradient(to bottom, #F0FCFF, white );
    text-align: center;
    padding-bottom: 100px;
}
/*-----------------------Benefits section------------------------*/
/*.benefits-section-top {
    background-color: #ffffff;
}*/
.benefits-section {
    background-color: #F0FCFF;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}
.text-primary {
    color: #3f80da !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #edeaff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b61ff;
    box-shadow: 0 4px 10px rgba(123, 97, 255, 0.1);
    transition: all 0.3s ease;
}

    .icon-circle:hover {
        transform: translateY(-4px);
        background-color: #dcd3ff;
    }


.section-faq {
    background: linear-gradient(120deg, #e6ecff 0%, #d6e4ff 100%);
    font-family: "Poppins", sans-serif;
    height: 500px;
}

.section-top {
    margin-top: 50px;
}

.benifit-center {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 235px;
    background: #cff2ff;
    clip-path: path('M0,160 C300,80 700,240 1525,160 L1528,300 L0,300 Z');
    z-index: 1;
}

/* Bring Text Above the Wave */
.benefits-section .container {
    position: relative;
    z-index: 2;
}

/* Optional: add hover effect for icons */
.icon-circle:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .wave-bg {
        height: 150px;
    }

    .images100 {
        width: 80%;
    }
}

/*-----------------------FAQ section------------------------*/

.section-faq {
    background: linear-gradient(120deg, #e6ecff 0%, #d6e4ff 100%);
}


.faq-box {
    border-radius: 20px;
}

.faq-title {
    font-weight: 700;
    color: #222;
}

.accordion-button {
    font-weight: 500;
    background: #f8f9fb;
    color: #333;
    border-radius: 10px !important;
    box-shadow: none;
}

    .accordion-button:not(.collapsed) {
        color: #0056ff;
        background: #eef3ff;
        border-left: 3px solid #0056ff;
    }

.accordion-body {
    font-size: 15px;
    color: #555;
    background: #fff;
    border-left: 3px solid #0056ff;
    border-radius: 0 0 10px 10px;
    margin-top: -10px;
    padding: 15px 20px;
}

/* Form Styling */
.faq-form {
    background: #f9fafb;
    border: 1px solid #e0e6f7;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

    .faq-form input,
    .faq-form textarea {
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 15px;
    }

        .faq-form input:focus,
        .faq-form textarea:focus {
            border-color: #0056ff;
            box-shadow: 0 0 0 0.2rem rgba(0, 85, 255, 0.1);
        }

    .faq-form button {
        background-color: #0056ff;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        color: #fff;
        padding: 10px 0;
        transition: 0.3s;
    }

        .faq-form button:hover {
            background-color: #003dcc;
        }

.faq-padding {
    padding: 50px 20px;
    height: auto;
}

.faq-boxpadding {
    padding: 30px 40px;
}

@media (max-width: 992px) {
    .faq-box {
        padding: 40px 25px;
    }

    .faq-boxpadding {
        padding: 0px 40px;
    }
}

/*  footer*/
section.custom-data {
    position: relative;
    background-color: #1668ef;
    color: white;
    overflow: hidden;
    padding: 100px 0;
    text-align: center;
}

/* Bubble styling */
.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rise 3s infinite ease-in-out;
}

    /* Different bubble sizes and speeds */
    .bubble:nth-child(1) {
        width: 40px;
        height: 40px;
        left: 10%;
        animation-duration: 8s;
    }

    .bubble:nth-child(2) {
        width: 25px;
        height: 25px;
        left: 25%;
        animation-duration: 6s;
    }

    .bubble:nth-child(3) {
        width: 60px;
        height: 60px;
        left: 40%;
        animation-duration: 10s;
    }

    .bubble:nth-child(4) {
        width: 30px;
        height: 30px;
        left: 60%;
        animation-duration: 7s;
    }

    .bubble:nth-child(5) {
        width: 50px;
        height: 50px;
        left: 80%;
        animation-duration: 9s;
    }

/* Up-down fade animation */
@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    25% {
        opacity: 0.8;
    }

    50% {
        transform: translateY(-200px) scale(1.1);
        opacity: 1;
    }

    75% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-400px) scale(0.9);
        opacity: 0;
    }
}

.coustomfs {
    font-size: 4rem;
}
/*-----------------------Contact section------------------------*/

.demo-section {
    background-color: #7b82ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.form-box {
    border-radius: 20px;
    transition: 0.3s ease;
}

    .form-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

h1 {
    font-size: 2.5rem;
    line-height: 1.4;
}

.btn-primary {
    background-color: #7b82ff;
    border-color: #7b82ff;
}

    .btn-primary:hover {
        background-color: #6369ff;
        border-color: #6369ff;
    }

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .demo-section {
        padding: 3rem 1rem;
        text-align: center;
    }
}

/* Subtle geometric pattern (SVG background) */
.demo-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.15' stroke-width='1'%3E%3Crect x='0' y='0' width='100' height='100'/%3E%3Crect x='100' y='100' width='100' height='100'/%3E%3Crect x='200' y='200' width='100' height='100'/%3E%3Crect x='300' y='300' width='100' height='100'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 250px;
    opacity: 0.4;
    right: -50px;
}

/* Card styling */
.demo-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .demo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

/* Inputs */
.form-control {
    border-radius: 0.6rem;
    border: 1px solid #dee2e6;
}

    .form-control:focus {
        border-color: #7b7cf8;
        box-shadow: 0 0 0 0.25rem rgba(123, 124, 248, 0.15);
    }

/* Submit Button */
.submit-btn {
    background-color: #7b7cf8;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 0.6rem;
    transition: all 0.3s ease;
}

    .submit-btn:hover {
        background-color: #6c6de4;
        box-shadow: 0 6px 18px rgba(123, 124, 248, 0.3);
    }

/* reCAPTCHA placeholder */
.recaptcha-placeholder {
    background: #f8f9fa;
}


amination-form {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #f8fafc;
}

.wide-banner {
    background: #7b82ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    opacity: 0.5;
}

.form-box {
    border-radius: 20px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    transition: all 0.3s ease;
}

    .form-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

h1 {
    font-size: 2.5rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: #7b82ff;
    border-color: #7b82ff;
}

    .btn-primary:hover {
        background-color: #6369ff;
        border-color: #6369ff;
    }

.float-anim {
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .form-box {
        padding: 2rem;
    }

    .wide-banner {
        padding: 3rem 1rem;
        text-align: center;
    }
}
/*-----------------------resposive section------------------------*/
@media (max-width: 570px) {
    .mobile-550 {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 570px) {
    .mobile-550 {
        margin-left: 15px;
        margin-right: 15px;
    }
}


/*<!------------------------- Common Section Style ----------------------- -->*/

.tabs.section {
    padding: 80px 0;
}

.section-title h2 {
    text-align: center;
    margin-bottom: 50px;
}

.feature-points .point-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .feature-points .point-item i {
        color: #01afee;
        margin-right: 10px;
        font-size: 1.2rem;
    }

.content-area p {
    margin-bottom: 15px;
}

.visual-content img {
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}



.nav {
    display: flex;
    flex-wrap: nowrap;
}

.nav-pills .nav-link {
    border-radius: 10px;
    padding: 10px 18px;
    background: #eef1f7;
    margin-right: 8px;
    font-weight: 600;
    color: #333;
}

    .nav-pills .nav-link.active {
        background: #20d28a;
        color: white;
        box-shadow: 0px 4px 12px rgba(32,210,138,0.3);
    }

/* CODE BOX WITH VISIBLE SCROLLBARS */
.code-box {
    background: #0f172a;
    color: rgba(0,0,0,0.08);
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    height: 350px;
    overflow-y: scroll; /* vertical scrollbar */
    overflow-x: auto; /* horizontal scrollbar */
    text-align: left;
}

    /* REMOVE scrollbar hiding */
    .code-box::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    .code-box::-webkit-scrollbar-thumb {
        background: gray;
        border-radius: 10px;
    }

    .code-box::-webkit-scrollbar-track {
        background: #222;
    }

/* CODE TEXT */
pre {
    background: transparent;
    border: none;
}

.code-tabs .nav-link {
    background: #f5f7fc;
    border-radius: 15px;
    padding: 18px 22px;
    margin: 0 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    color: #333;
    border: none;
    transition: 0.3s;
}

    .code-tabs .nav-link img {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }

    .code-tabs .nav-link.active {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        color: #000;
    }

    .code-tabs .nav-link:hover {
        background: #eceffd;
        color: #000;
    }


.code-block {
    background: #0f172a;
    color: #e2e8f0;
    padding: 18px;
    border-radius: 10px;
    font-family: Consolas, Menlo, monospace;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: auto;
}

/* Syntax colors */
.keyword {
    color: #60a5fa;
}
/* blue */
.string {
    color: #f472b6;
}
/* pink */
.bool {
    color: #34d399;
}
/* green */
.type {
    color: #facc15;
}
/* yellow */
.comment {
    color: #94a3b8;
}
/* gray */
.number {
    color: #fca5a5;
} 



/* <!---------------------------------------------- integration Section ---------------------------------------------> */



/* Icon wrapper shadow box */
.icons-row .text-center {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    /* Hover shadow effect */
    .icons-row .text-center:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 26px rgba(0, 0, 0, 0.15);
    }

/* Icon size */
.integration-icon {
    width: 55px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Zoom icon on hover */
.icons-row .text-center:hover .integration-icon {
    transform: scale(1.12);
}

/* Flex row layout */
.icons-row {
    flex-wrap: nowrap; /* keeps all icons in one line */
    overflow-x: auto; /* scroll on smaller screens */
    padding-bottom: 12px;
    gap: 35px !important; /* spacing between blocks */
}

    /* Scrollbar styling */
    .icons-row::-webkit-scrollbar {
        height: 6px;
    }

    .icons-row::-webkit-scrollbar-thumb {
        background: #c9c9c9;
        border-radius: 10px;
    }

    .icons-row::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Text */
    .icons-row p {
        margin-bottom: 0;
        font-size: 0.95rem;
        font-weight: 600;
    }

/* Responsive */
@media (max-width: 992px) {
    .integration-icon {
        width: 48px;
    }
}

@media (max-width: 576px) {
    .integration-icon {
        width: 40px;
    }
}


/* <!---------------------------------------------- our Solution ---------------------------------------------> */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.bg-orange {
    background: #ffe8d9;
    color: #ff7b00;
}

.bg-blue {
    background: #ddeaff;
    color: #007bff;
}

.bg-red {
    background: #ffd9d9;
    color: #ff4b4b;
}


.solution-card {
    position: relative;
    border-radius: 20px;
    padding: 30px;
    background: #fff;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: auto;
}

    .solution-card:hover {
        transform: translateY(-5px);
    }

/* Popup hover content */
.card-popup {
    position: absolute;
    inset: 0;
    background: white;
    padding: 30px;
    opacity: 0;
    visibility: visible;
    transition: 0.3s ease-in-out;
}

.solution-card:hover .card-popup {
    opacity: 1;
    visibility: visible;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.popup-text {
    font-size: 1rem;
}


/* <!---------------------------------------------- box  ---------------------------------------------> */


.feature-section .service-card,
.feature-section .border {
    transition: all 0.3s ease;
}

    .feature-section .service-card:hover,
    .feature-section .border:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
    }


.hero-text-para {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/*<------------------------------------------------------------------------>*/


/*  Advanced features*/
.boxad {
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(255,255,255,0.4);
    background: black;
}

/*   cards section  */
.adv-section {
    padding: 60px 0;
    background: white;
}

/* GRID */
.adv-grid {
    row-gap: 28px;
}

/* CARD */
.adv-card {
    background: #F5F6FA;
    border-radius: 16px;
    padding: 25px;
    min-height: 310px;
    box-shadow: 0 0.5px 0.5px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    border: 0.5px solid #0000ff3d;
}

    .adv-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.15);
    }

/* ICON + TITLE CENTER */
.adv-icon {
    display: flex;
    flex-direction: column;
    align-items: center; /* center horizontally */
    justify-content: center;
    text-align: center;
    margin-bottom: 16px;
}

/* ICON SIZE */
.icons_images {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 12px;
}

/* TITLE */
.adv-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

/* DESCRIPTION */
.adv-desc {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 1400px) {
    .adv-grid .col-md-6 {
        flex: 0 0 auto;
        width: 33.30%;
    }

    .adv-card {
        background: #F5F6FA;
        border-radius: 16px;
        padding: 25px;
        min-height: 310px;
        box-shadow: 0 0.5px 0.5px rgba(0,0,0,0.08);
        transition: all 0.25s ease;
        border: 0.5px solid #0000ff3d;
    }
    /* GRID */
    .adv-grid {
        row-gap: 28px;
    }
}

@media (max-width: 1400px) {
    .adv-grid .col-md-6 {
        flex: 0 0 auto;
        width: 33.30%;
    }

    .adv-card {
        background: #F5F6FA;
        border-radius: 16px;
        padding: 25px;
        min-height: 350px;
        box-shadow: 0 0.5px 0.5px rgba(0,0,0,0.08);
        transition: all 0.25s ease;
        border: 0.5px solid #0000ff3d;
    }
    /* GRID */
    .adv-grid {
        row-gap: 28px;
    }
}

@media (max-width: 1000px) {
    .adv-grid .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .adv-card {
        background: #F5F6FA;
        border-radius: 16px;
        padding: 25px;
        min-height: 350px;
        box-shadow: 0 0.5px 0.5px rgba(0,0,0,0.08);
        transition: all 0.25s ease;
        border: 0.5px solid #0000ff3d;
    }
    /* GRID */
    .adv-grid {
        row-gap: 28px;
    }
}


/* --------------------------------- code semple section----------------------------------------------------------  */

/* pill nav (scrollable) */
/* ========== SECTION BASE ========== */

.feature-section {
    font-family: "Poppins", sans-serif;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.section-gradientm {
    background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

.feature-section .heading h2 {
    font-weight: 700;
}

.feature-section .heading p {
    max-width: 750px;
    margin: 0 auto 2rem;
}

/* ========== PILL ROW ========== */
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    background: #fff;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

    .pill-row .pill {
        font-size: 1.5rem;
    }
    /* Pill buttons (if injected) */
    .pill-row button,
    .pill-row a,
    .pill-row .pill-btn {
        padding: 0.4rem 2rem;
        margin: 0px 24px;
        border-radius: 716px;
        border: 1px solid #d1d5db;
        background: #fff;
        cursor: pointer;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .pill-row .active {
        background: #00b9fff5;
        border-color: #0f766e;
        color: #fff;
    }

/* ========== PARAMS CARD ========== */
.params-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
}

    .params-card .params-row {
        width: 100%;
        display: flex;
    }

    .params-card .param-cell {
        width: 49%;
        padding: 10px 0px 0px 255px;
    }


/* ========== GRID LAYOUT ========== */
.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.param-badge {
    width: auto;
}

.grid h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========== PANEL (Fixed Height + Scroll) ========== */
.panel {
    position: relative;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    background: #0b1120;
    color: #e5e7eb;
    height: 330px; /* ?? SAME HEIGHT */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.65);
}

    /* Inner scroll area */
    .panel .inner {
        flex: 1;
        overflow-y: auto;
        padding: 1rem 1.1rem 1.1rem;
    }

        /* Hide scrollbar — scroll still works */
        /* Chrome, Safari */
        .panel .inner::-webkit-scrollbar {
            width: 0;
            height: 0;
        }

    /* Firefox */
    .panel .inner {
        scrollbar-width: none;
    }

    /* IE/Edge old */
    .panel .inner {
        -ms-overflow-style: none;
    }

    /* Code text */
    .panel pre {
        margin: 0;
        font-family: "JetBrains Mono", Consolas, monospace;
        font-size: 0.85rem;
        line-height: 1.45;
        color: white;
    }

    /* ========== PREVIEW PANEL ========== */
    .panel.preview {
        background: #020617;
        align-items: center;
        justify-content: center;
    }

        .panel.preview img {
            max-width: 100%;
            max-height: 100%;
            border-radius: 0.75rem;
        }

/* ========== BUTTONS ========== */
.btn-copy,
.btn-full {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: none;
    font-size: 0.75rem;
    background: #e5e7eb;
    color: #020617;
    cursor: pointer;
}

.btn-full {
    right: auto;
    left: 0.9rem;
    background: #22c55e;
}

/* ========== MODAL ========== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    --bs-backdrop-opacity: 1.5;
}

    .modal-backdrop[aria-hidden="false"] {
        display: flex;
    }
.whyicons {
    width: 35px;
    height: 35px;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    background: transparent;
    color: blue;
}

.whyicons_brandsicons {
    width: 30px;
    height: 30px;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    background: transparent;
    border-radius: 30%;
}
.modal-box {
    background: #020617;
    color: #e5e7eb;
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
    margin: 150px;
}

    .modal-box pre {
        font-size: 0.85rem;
    }

.modal-close {
    margin-top: 1rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: #e5e7eb;
    color: #020617;
    cursor: pointer;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1300px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .panel {
        height: 350px;
    }

    .params-card .param-cell {
        width: 49%;
        padding: 10px 0px 0px 200px;
    }
}


/* Tablets */
@media (max-width: 992px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .panel {
        height: 300px;
    }

    .params-card .param-cell {
        width: 49%;
        padding: 10px;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .panel {
        height: 260px;
    }

        .panel .inner {
            max-height: 230px;
        }

    .params-card .param-cell {
        width: 49%;
        padding: 10px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .panel {
        height: 240px;
    }

        .panel .inner {
            max-height: 210px;
        }

    .params-card .param-cell {
        width: 49%;
        padding: 10px;
    }
}
