﻿/* =========================
   ROOT VARIABLES (merged)
   ========================= */


/*:root {*/
    /* layout */
    /*--page-scale: 0.90;
    --nav-height: 64px;
    --megamenu-gutter: clamp(12px, 2.5vw, 24px);*/
    /* hero image frame */
    /*--hero-img-w: clamp(540px, 36vw, 760px);
    --hero-img-h: clamp(320px, 28vw, 460px);
    --hero-img-shift-x: 8px;
    --hero-img-shift-y: -8px;*/
    /* cards */
    /*--feature-radius: 12px;
    --feature-border: #e9ecef;
    --feature-text: #0f172a;
    --feature-muted: #6b7280;
    --feature-accent: #05bfa7;*/
    /* silver palette */
    /*--accent: #aeb4bf;
    --accent-strong: #9097a3;
    --ink: #1f2328;
    --muted: #5f6672;
    --border-1: #c7cbd3;
    --border-2: #d8dbe2;
    --bg-app: #f5f6f8;
    --bg-panel: #ffffff;
    --steel-1: #f7f8fa;
    --steel-2: #e8ebf0;
    --steel-3: #d9dee6;*/
    /* brand (requested) */
    /*--brand-start: #3c7fbe;*/ /* gradient top  */
    /*--brand-end: #2f6aa3;*/ /* gradient bottom */
    /*--brand-border: #2a5d91;*/ /* outline */
    /*--brand-text: #ffffff;*/ /* on brand bg */
    /*--brand-1: var(--brand-start, #3c7fbe);
    --brand-2: var(--brand-end, #2f6aa3);
    --ink: var(--color-ink, #1f2328);
    --muted: var(--color-muted, #6b7280);
    --panel: var(--color-panel, #ffffff);
    --surface: var(--color-surface-1, #f7f9fc);
    --border: var(--color-border, #e5e7eb);
    --danger: var(--color-danger, #f05454);
    --radius: 14px;
    --radius-sm: 10px;
    --elev: 0 12px 28px rgba(0,0,0,.18);
    --trans: 220ms cubic-bezier(.2,.7,.2,1);
}*/

/* subtle metallic sheen */
/*@keyframes glow-pop {
    0% {
        box-shadow: 0 0 0 0 var(--accent-strong)
    }

    100% {
        box-shadow: 0 0 16px var(--accent-strong)
    }
}*/

/* =========================
   BASE LAYOUT / SCALE
   ========================= */
/*html {
    zoom: var(--page-scale);
}*/
/*
.navbar {
    position: sticky;
    top: 0;
    z-index: 4000;
}*/

/*.navbar {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 16px 20px;
    font-family: sans-serif;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;*/ /* Change color if needed */
        /*border-radius: 2px;
    }

.hamburger {
    display: none;
}


.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link,
.dropbtn {
    text-decoration: none;
    color: #333;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

    .nav-link:hover,
    .dropbtn:hover {
        color: #2e7d32;
    }*/


/* Dropdown container */
/*.dropdown {
    position: relative;
}*/

/* Dropdown menu */
/*.dropdown-full-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}*/

/* Show dropdown on hover */
/*.dropdown:hover .dropdown-full-wrapper {
    display: block;
}*/

/* Dropdown content styling */
/*.dropdown-content {
    display: flex;
    flex-direction: column;
}*/


/* Dropdown container */
/*.cards-dropdown {
    position: relative;
    display: inline-block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}*/

    /* Dropdown button */
    /*.cards-dropdown .dropbtn {
        cursor: pointer;
        padding: 10px 16px;
        color: #1e774f;
        font-weight: 600;
        text-decoration: none;
        user-select: none;
        transition: color 0.3s ease;
    }

        .cards-dropdown .dropbtn:hover,
        .cards-dropdown .dropbtn:focus {
            color: #4f7d28;
            outline: none;
        }*/

/* Dropdown content wrapper */
/*.dropdown-full-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;*/ /* hidden by default */
    /*background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 30px;
    min-width: 800px;
    display: flex;
    gap: 40px;
    color: #333;
}*/

/* Show dropdown on hover of container */
/*.cards-dropdown:hover .dropdown-full-wrapper,
.cards-dropdown:focus-within .dropdown-full-wrapper {
    display: flex;
}*/

/* Sidebar nav */
/*.dropdown-content > div:first-child {
    min-width: 180px;
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

.dropdown-content h3 {
    color: #1e774f;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
}*/

/* Sidebar links */
/*.dropdown-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-tab {
    display: block;
    padding: 8px 0;
    color: #3a3a3a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

    .sidebar-tab:hover,
    .sidebar-tab:focus {
        color: #333;
        outline: none;
    }



.solutions-dropdown-content {
    display: flex;
    flex-direction: row;*/ /* default, but explicit */
    /*padding: 30px;
    gap: 40px;
    min-width: 800px;
}*/

/* Sidebar on the left */
/*.solutions-sidebar {
    grid-column: span 2;
    background: #e9f1f8;
    padding: 1rem;
    border-right: 1px solid #ddd;
}*/

/* Cards container takes remaining 4 columns */
/*.solutions-cards {
    grid-column: span 4;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}*/

/* Individual card styles */
/*.solution-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px;
    min-width: 160px;
    transition: box-shadow 0.3s ease;
}

    .solution-card h4 {
        margin-bottom: 8px;
        color: #333;
    }

    .solution-card p {
        font-size: 0.9rem;
        color: #333;
    }





.feature-card {
    padding: 12px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

    .feature-card:hover {
        background: #f8f8f8;
    }


@supports not (zoom: 1) {
    body {
        transform: scale(var(--page-scale));
        transform-origin: top left;
        width: calc(100% / var(--page-scale));
        height: calc(100% / var(--page-scale));
    }
}

@media (max-width: 1200px) {
    html {
        zoom: 1;
    }

    @supports not (zoom: 1) {
        body {
            transform: none;
            width: 100%;
            height: auto;
        }
    }
}*/

/* =========================
   HORIZONTAL ICON MENU
   ========================= */

/*.menu-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color .2s ease, color .2s ease;
}

    .menu-item i {
        font-size: 18px;
        color: #333;
    }

.menu-label {
    position: absolute;
    bottom: -25px;
    background: #f1f1f1;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(5px);
    transition: all .2s ease;
    pointer-events: none;
    color: #333;
}

.menu-item:hover .menu-label {
    opacity: 1;
    transform: translateY(0);
}

.menu-item:hover {
    background: #f1f1f1;
}

.menu-item.active {
    background: #eaf1fb;
}

    .menu-item.active i {
        color: var(--brand-end);
    }

@media (max-width:768px) {


    .menu-item {
        flex: 1 1 20%;
    }
}



.settings-nav {
    width: 200px;
    border-right: 1px solid #ddd;
}

    .settings-nav ul {
        list-style: none;
        padding-left: 0;
    }

    .settings-nav li {
        padding: 12px 16px;
        cursor: pointer;
        font-weight: 500;
        border-left: 3px solid transparent;
    }

        .settings-nav li.active {
            background: #f0f4fb;
            border-left: 3px solid var(--brand-border);
        }

.small-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--brand-end);
    text-decoration: none;
}

    .small-link:hover {
        color: var(--brand-border);
        text-decoration: underline;
    }

.close-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}*/
/*start os the test*/
/* =========================
   HERO (full-bleed diagonal band)
   ========================= */
/*.hero-outer {
    position: relative;
    overflow: hidden;
    z-index: 0;
    min-height: calc(100vh - var(--nav-height, 64px));
    padding: clamp(48px, 8vh, 120px) 5% 20px 5%;
    height: 80vh;
}*/

    /* Diagonal pale band */
    /*.hero-outer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #e9f1f8;
        clip-path: polygon(0 0, 100% 0, 78% 52%, 60% 100%, 0 100%);
        z-index: -1;
    }*/

    /* Angle line accent */
    /*.hero-outer::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 12px;
        background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--feature-accent, #2f6aa3) 60%, transparent) 20%, var(--feature-accent, #2f6aa3) 50%, color-mix(in srgb, var(--feature-accent, #2f6aa3) 60%, transparent) 80%, transparent 100%);
        transform: skewY(-2.5deg);
        transform-origin: left bottom;
        pointer-events: none;
    }*/

/* =========================
   Inner layout
   ========================= */
/*.hero-combined {
    display: grid;
    grid-template-columns: minmax(520px, 1fr) minmax(420px, 1fr);
    align-items: center;
    gap: clamp(32px, 4vw, 56px);
    min-height: 560px;
}

.hero-title {
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 36px;
    font-weight: 800;
    color: black;*/
    /*    margin-bottom: 12px;*/
    /*margin-bottom: 0.5rem;
}

.hero-tagline,
.hero-desc,
.hero-sub {
    color: black;
}*/

/* Right image block */
/*.hero-right {
    justify-self: end;
    align-self: start;
    position: relative;
    transform: translate(-10px, -30px);
    max-width: 580px;
    height: 60vh;
}

    .hero-right img {
        position: static;
        width: 20vw;
        height: 60vh;
        border-radius: 14px;
        box-shadow: 0 12px 32px rgba(0,0,0,.18);
        display: block;
        object-fit: contain;
    }*/

/* Left block (large screens) */
/*@media (min-width: 1200px) {
    .hero-left {
        justify-self: start;
        align-self: start;
        position: relative;
        transform: translate(-10px, -100px);
        max-width: 30vw;
        height: 60vh;
        margin: 15% 20px 0 10%;
    }

    .close-menu {
        display: none;*/ /* hidden by default */
    /*}

    .hero-title {
        font-size: clamp(3rem, 2.5vw, 4rem);
        font-weight: 800;
        color: #0d1b0f;
        margin-bottom: 10px;
    }

    .hero-tagline {
        font-size: 1.25rem;
        color: #333;
        font-weight: 500;
        margin-bottom: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: #6ba539;
        margin-bottom: 4rem;
        font-weight: 600;
    }
}*/

/* =========================
   Slider
   ========================= */
/*.hero-slider {
    display: flex;
    align-items: center;*/ /* center arrows vertically */
/*justify-content: center;
    gap: 1rem;
    position: relative;
    margin-bottom: 2rem;
}

.hero-card {
    background: #fff;
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 4px 15px rgba(8, 18, 30, 0.06);
    min-width: 680px;
    min-height: 320px;*/
/* center content */
/*display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}*/
/*.hero-slider {
    display: flex;
    align-items: center;*/ /* center arrows vertically */
    /*justify-content: center;
    gap: 1rem;
    position: relative;
    margin-bottom: 2rem;
}*/

/* softer, brushed fade around the card */
/*.hero-card {
    position: relative;
    background: #fff;*/ /* keep white center */
    /*border-radius: 12px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 4px 8px rgba(8, 18, 30, 0.06);
    min-width: 580px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
    isolation: isolate;*/ /* keep halo behind content */
/*}

    .hero-card .hero-title {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #333;
        line-height: 1.3;
    }

    .hero-card .hero-desc {
        font-size: 1.2rem;
        font-weight: 400;
        color: #666;
        margin-top: 0;
        white-space: normal;
    }*/


    /* halo outside the card (white → light grey, feathered) */
    /*.hero-card::before {
        content: "";
        position: absolute;
        inset: -24px;*/ /* size of the “margin” */
        /*border-radius: 16px;
        z-index: -1;*/
        /* multiple soft radial washes around edges */
        /*background: radial-gradient(140% 120% at 15% 15%, rgba(255,255,255,.95) 0 45%, transparent 70%), radial-gradient(140% 120% at 85% 15%, rgba(255,255,255,.95) 0 45%, transparent 70%), radial-gradient(140% 120% at 85% 85%, rgba(242,245,249,.95) 0 45%, transparent 70%), radial-gradient(140% 120% at 15% 85%, rgba(242,245,249,.95) 0 45%, transparent 70%);
        filter: blur(10px);*/ /* feather the outer edge */
    /*}*/

    /* subtle inner stroke, like the sample */
    /*.hero-card::after {
        content: "";
        position: absolute;
        inset: 10px;
        border-radius: 10px;
        border: 1px solid rgba(232,237,245,.9);
        pointer-events: none;
    }

.hero-desc {
    font-size: 1.5rem;
    font-weight: 700;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    will-change: transform, opacity;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(15px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}*/

/* =========================
   50/50 split blocks under each side
   ========================= */
/*.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;*/ /* 50% / 50% */
    /*gap: 12px;
    margin-top: 16px;
}

.hero-cell {
    min-width: 0;
}

    .hero-cell * {
        max-width: 100%;
    }

@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
    }*/
    /* stack on small screens */
/*}*/

/* =========================
   HERO (full-bleed diagonal band)
   ========================= */
/*.hero-outer {
    position: relative;
    overflow: hidden;
    z-index: 0;
    min-height: calc(100vh - var(--nav-height));
    padding: clamp(48px, 8vh, 120px) 5% 20px 5%;
    height: 80vh;
    background-color: red;
}



    .hero-outer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #e9f1f8;
        clip-path: polygon(0 0, 100% 0, 78% 52%, 60% 100%, 0 100%);
        z-index: -1;
    }*/
/* inner layout */
/*.hero-combined {
    display: grid;
    grid-template-columns: minmax(520px,1fr) var(--hero-img-w);
    align-items: center;
    gap: clamp(32px,4vw,56px);
    min-height: 560px;
}

.hero-title {
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 56px;
    font-weight: 800;
    color: black;
    margin-bottom: 12px;
}

.hero-tagline, .hero-desc, .hero-sub {
    color: black;
}


.hero-right {
    justify-self: end;
    align-self: start;
    position: relative;
    transform: translate(-10px, -200px);
    max-width: 580px;
    height: 60vh;
    background: blue;
}

    .hero-right img {
        position: static;
        width: 20vw;
        height: 60vh;
        border-radius: 14px;
        box-shadow: 0 12px 32px rgba(0,0,0,.18);
        display: block;
    }
.hero-right {*/
/*  transform: translate(-200px, -700px);*/
/*padding-left: 5%;
}
@media (min-width: 1200px) {
    .hero-left {
        justify-self: start;
        align-self: start;
        position: relative;
        transform: translate(-10px, -200px);
        max-width: 30vw;
        height: 60vh;
        margin: 15% 20px 0px 10%;*/
/* margin-top: 80px;
        max-width: 580px;*/
/*background: yellow;
    }

    .hero-title {
        font-size: clamp(3rem, 2.5vw, 4rem);
        font-weight: 800;
        color: #0d1b0f;
        margin-bottom: 10px;
    }

    .hero-tagline {
        font-size: 1.25rem;
        color: #333;
        font-weight: 500;
        margin-bottom: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: #6ba539;
        margin-bottom: 1rem;
        font-weight: 600;
    }*/

/* Slider container */
/*.hero-slider {
        display: flex;
        align-items: center;*/ /* center arrows vertically */
/*justify-content: center;
        gap: 1rem;
        position: relative;
        margin-bottom: 2rem;
    }*/

/* Slider card */
/*.hero-card {
        background: #fff;
        border-radius: 12px;
        padding: 0.8rem 1.5rem;
        box-shadow: 0 4px 15px rgba(8, 18, 30, 0.06);
        min-width: 680px;
        min-height: 320px;*/
/* Center content vertically & horizontally */
/*display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }*/

/* Rotating text */
/*.hero-desc {
        font-size: 1.5rem;
        font-weight: 700;
        color: #555;
        white-space: nowrap;
        overflow: hidden;
        will-change: transform, opacity;
    }

    .slide-in-left {
        animation: slideInLeft 0.6s ease forwards;
    }

    @keyframes slideInLeft {
        0% {
            opacity: 0;
            transform: translateX(15px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }*/

/* Arrows */
/*.slider-arrow {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6ba539;
    transition: color 0.3s ease;*/
    /* Center arrow with card vertically */
    /*align-self: center;
}

    .slider-arrow:hover {
        color: #5a8f2e;
    }*/

/* Buttons */
/*.hero-buttons {
    margin-top: auto;
    display: flex;
    gap: 1rem;
}

.navbar-brands {
    display: none;
}

.hero-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .hero-btn.primary {
        background-color: #6ba539;
        color: #fff;
    }

        .hero-btn.primary:hover {
            background-color: #5a8f2e;
        }

    .hero-btn.secondary {
        background-color: #f8f8f8;
        color: #111;
        border: 1px solid #ddd;
    }

        .hero-btn.secondary:hover {
            background-color: #eaeaea;
        }*/
/* Mobile & Tablet shared styles */
/*@media (max-width: 991.98px) {*/
    /* Hero section */
    /*.hero-combined {
        display: flex;
        flex-direction: column;
        align-items: start;
        text-align: center;
        gap: 18px;
        padding: 20px 15px;
    }

    .navbar-links .dropdown.products,
    .navbar-links .dropdown.solutions {
        display: none !important;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;*/ /* center horizontally */
        /*flex-wrap: wrap;*/ /* stack if too long */
        /*gap: 12px;*/ /* spacing between Register + Watch Demo */
        /*margin-top: 10px;
    }

        .hero-buttons .hero-btn {
            min-width: 130px;*/ /* makes buttons equal size */
            /*text-align: center;
        }


    .feature-card h2,
    .solution-card h2,
    .solution-card p {
        word-wrap: break-word;*/ /* breaks long words if needed */
        /*overflow-wrap: anywhere;*/ /* modern alternative */
        /*white-space: normal;*/ /* allow wrapping instead of cutting */
        /*line-height: 1.4;*/ /* improves readability */
    /*}

    .hero-left,
    .hero-right {
        width: 100%;
    }

        .hero-right img {
            max-width: 90%;
            width: 2000px;
            height: 34vh;
            margin: 0 auto;
            display: block;
            padding-bottom: 20px;
        }*/

    /* Navbar */
    /*.navbar-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 60px;
        padding: 0 15px;
        width: 100%;
    }

    .navbar-brands {
        display: block;
        font-size: 22px;*/ /* adjust size */
        /*font-weight: bold;*/ /* make it stand out */
        /*color: #000;*/ /* black color */
        /*text-align: center;*/ /* center in the menu */
        /*margin-bottom: 16px;*/ /* space below it */
        /*text-decoration: none;*/ /* remove underline */
    /*}

    .hamburger {
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 2px;
        }

    .navbar-brand {
        margin: 0 auto;
        text-align: center;
        max-width: calc(100% - 100px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 0 10px;
    }

    .navbar-container > div:last-child {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        max-width: 100px;
    }

        .navbar-container > div:last-child select {
            max-width: 90px;
            padding: 6px 4px;
            font-size: 14px;
        }*/

    /* Slide-out menu */
    /*.navbar-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 280px;
        background: white;
        padding: 80px 20px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 1002;
        transition: left 0.3s ease;
        overflow-y: auto;
        display: none;
    }

        .navbar-links.active {
            display: block;
            left: 0;
        }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1001;
    }

    .navbar-links.active + .mobile-menu-overlay {
        display: block;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1003;
        color: #333;
    }*/

    /* Dropdown */
    /*.navbar-links .dropdown {
        width: 100%;
        margin-bottom: 15px;
    }

    .navbar-links .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
        padding: 12px 0;
        font-weight: 500;
        background: none;
        border: none;
        border-bottom: 1px solid #eee;
        font-size: 16px;
        cursor: pointer;
        position: relative;
    }

        .navbar-links .dropbtn:after {
            content: "\276F";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%) rotate(90deg);
            font-size: 20px;
            transition: transform 0.3s ease;
        }

    .navbar-links .dropdown.active .dropbtn:after {
        transform: translateY(-50%) rotate(-90deg);
    }

    .dropdown-full-wrapper {
        display: none;
        padding: 10px 0 0 15px;
        width: 100%;
    }

    .dropdown.active .dropdown-full-wrapper {
        display: block;
    }*/

    /* Cards (shared for Products & Solutions) */
    /*.dropdown-content,
    .solutions-cards {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .feature-card,
    .solution-card {
        border: 1px solid #eee;
        border-radius: 8px;
        background: #fafafa;
        padding: 15px;
    }

        .feature-card i,
        .solution-card i {
            font-size: 22px;
            margin-bottom: 8px;
            color: #007bff;
        }

        .feature-card h2,
        .solution-card h2 {
            font-size: 16px;
            margin: 0 0 6px;
        }

        .feature-card p,
        .solution-card p {
            font-size: 13px;
            margin: 0;
            color: #666;
        }*/

    /* Solutions sidebar */
    /*.solutions-dropdown-content {
        flex-direction: column;
        gap: 20px;
    }

    .solutions-sidebar {
        margin-bottom: 15px;
    }
}

@media (max-width: 767.98px) {*/
    /* Override the default card layout */
    /*.dropdown-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

    .navbar-links .cards-dropdown {
        display: none !important;
    }

    .download-icon {
        width: 42px;
        height: 42px;
        font-size: 10px;
        padding: 5px;
    }

    .hero-card {
        max-width: 90%;*/ /* narrower so it fits screen */
        /*padding: 12px 16px;*/ /* reduce padding */
        /*margin: 0 auto;*/ /* center on screen */
        /*border-radius: 10px;*/ /* slightly smaller corners */
    /*}

    .hero-title {
        font-size: 18px;*/ /* smaller title */
        /*line-height: 1.3;
        text-align: center;*/ /* better alignment for mobile */
    /*}

    .hero-desc {
        font-size: 14px;*/ /* smaller description */
        /*line-height: 1.4;
        text-align: center;
        margin-top: 6px;
    }

    .slider-arrow {
        font-size: 20px;*/ /* shrink arrows */
        /*padding: 6px;
    }

    .navbar-brands {
        display: block;
        font-size: 22px;*/ /* adjust size */
        /*font-weight: bold;*/ /* make it stand out */
        /*color: #000;*/ /* black color */
        /*text-align: center;*/ /* center in the menu */
        /*margin-bottom: 16px;*/ /* space below it */
        /*text-decoration: none;*/ /* remove underline */
    /*}

    .feature-card {
        flex-wrap: wrap;*/ /* let long names go into new line */
        /*align-items: flex-start;*/ /* icon + text align to top */
    /*}

        .feature-card::after {
            margin-left: auto;*/ /* keep chevron to far right */
        /*}*/

    /* Each product row */
    /*.feature-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1px 5px;
        border: 1px solid #eee;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

        .feature-card i {
            font-size: 20px;
            margin: 0;
            margin-right: 12px;
            color: #007bff;
        }

        .feature-card h2 {
            font-size: 16px;
            font-weight: 500;
            margin: 0;
            flex: 1;
            color: #333;
        }

        .feature-card p {
            display: none;*/ /* hide descriptions on mobile */
        /*}*/

        /* Chevron on right */
        /*.feature-card::after {
            font-size: 18px;
            color: #999;
            margin-left: 8px;
        }

    .solutions-dropdown-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }*/

    /* Sidebar as horizontal scrollable row */
    /*.solutions-sidebar {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 8px;
        margin-bottom: 10px;
    }

        .solutions-sidebar button {
            flex: 0 0 auto;
            padding: 8px 14px;
            border: 1px solid #ddd;
            border-radius: 20px;
            background: #fff;
            font-size: 14px;
            white-space: nowrap;
        }*/

    /* Cards in single column */
    /*.solutions-cards {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .solution-card {
        padding: 15px;
        border: 1px solid #eee;
        border-radius: 10px;
        background: #fafafa;
    }

        .solution-card p {
            font-size: 13px;
            color: #666;
        }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .dropdown-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .navbar-links .dropdown.products,
    .navbar-links .dropdown.solutions {
        display: none !important;
    }

    .solutions-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 18px;
    }

    .hero-card {
        max-width: 70%;
        padding: 16px 20px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .feature-card {
        display: block;
        padding: 16px;
        border: 1px solid #eee;
        border-radius: 10px;
        background: #fafafa;
    }

        .feature-card p {
            display: block;*/ /* allow short descriptions back on tablet */
        /*}

    .solutions-dropdown-content {
        display: grid;
        grid-template-columns: 200px 1fr;*/ /* sidebar + content */
        /*gap: 20px;
    }

    .solutions-sidebar {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .solutions-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .solution-card {
        padding: 18px;
        border-radius: 12px;
        border: 1px solid #eee;
        background: #fff;
    }
}

@media (max-width: 575.98px) {
    .hero-left {
        padding: 12px;*/ /* reduce side padding */
        /*text-align: center;*/ /* center text */
    /*}

    .hero-title {
        font-size: 20px;*/ /* smaller main title */
        /*line-height: 1.3;
        margin-bottom: 8px;
    }

    .hero-tagline {
        font-size: 14px;*/ /* smaller tagline */
        /*line-height: 1.4;
        margin-bottom: 6px;
    }

    .hero-sub {
        font-size: 13px;*/ /* shrink sub text */
        /*line-height: 1.3;
        margin-bottom: 12px;
    }*/

    /* Slider adjustments */
    /*.hero-slider {
        margin-top: 10px;
    }

    .hero-card {
        max-width: 40%;
        padding: 4px 5px;
        border-radius: 5px;
        margin: 0 auto;
    }

        .hero-card .hero-title {
            font-size: 18px;*/ /* shrink slider title */
            /*line-height: 1.4;
        }

        .hero-card .hero-desc {
            font-size: 14px;*/ /* shrink slider desc */
            /*line-height: 1.4;
        }*/

    /* Smaller arrows */
    /*.slider-arrow {
        font-size: 10px;
        padding: 4px;
    }*/

    /* Buttons stacked for small screens */
    /*.hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .site-footer {
        font-size: 13px;*/ /* smaller text */
        /*padding: 14px 8px;*/ /* less padding */
        /*background: #fff;*/ /* clean white background for mobile */
        /*color: #000;*/ /* solid black text for clarity */
    /*}
}*/
/*
@media (max-width: 767.98px) {
    .hero-left {
        margin-left: 0;
    }

    .hero-combined {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-right {
        width: 100%;
        height: clamp(240px, 50vw, 380px);
        transform: none;
    }

    .hero-outer::before {
        clip-path: polygon(0 0, 100% 0, 85% 55%, 70% 100%, 0 100%);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-left {
        margin-left: 0;
    }

    .hero-combined {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-right {
        width: 100%;
        height: clamp(240px, 50vw, 380px);
        transform: none;
    }

    .hero-outer::before {
        clip-path: polygon(0 0, 100% 0, 85% 55%, 70% 100%, 0 100%);
    }
}*/
/* =========================
   HERO SECTION
   ========================= */
/*.hero {
    background: linear-gradient(180deg, var(--steel-1) 0%, var(--steel-2) 52%, var(--steel-1) 100%), radial-gradient(120% 160% at 50% -30%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 60%), repeating-linear-gradient(90deg, rgba(255,255,255,0) 0 7px, rgba(255,255,255,.035) 7px 8px);
    color: var(--ink);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-1);
}

    .hero h1 {
        color: var(--ink);
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .hero .subtitle {
        color: var(--muted);
        font-size: 1.25rem;
        margin-bottom: 20px;
    }*/




/* =========================
   MEGA MENU & FEATURE CARDS
   ========================= */
/*.dropdown.cards-dropdown {
    position: static;
}

.dropdown-full-wrapper {
    position: fixed !important;
    top: var(--nav-height) !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
    z-index: 5000;
    display: none;
}

.cards-dropdown:hover .dropdown-full-wrapper,
.cards-dropdown:focus-within .dropdown-full-wrapper {
    display: block;
}

.dropdown-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: var(--megamenu-gutter);
    display: grid;
    grid-template-columns: repeat(6, minmax(180px,1fr));
    gap: 16px;
}

@supports not (zoom:1) {
    .dropdown-full-wrapper {
        top: calc(var(--nav-height) * var(--page-scale)) !important;
        left: 0 !important;
        right: auto !important;
        width: calc(100dvw * var(--page-scale)) !important;
        transform: scale(calc(1 / var(--page-scale))) !important;
        transform-origin: top left !important;
    }
}*/

/* ensure hero-outer sits below dropdown */
/*.hero-outer {
    position: relative;
    z-index: 0;
}

    .hero-outer::before {
        z-index: -1;
    }*/

/* =========================
   FEATURE CARDS & MODULE TILES
   ========================= */
/*.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: clamp(16px, 2.2vw, 24px);
    border: 1px solid var(--feature-border);
    border-radius: var(--feature-radius);
    background: #fff;
    text-decoration: none;
    color: var(--feature-text);
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

    .feature-card > i {
        font-size: clamp(20px,2.2vw,24px);
        color: var(--feature-accent);
        opacity: .95;
    }

    .feature-card h2 {
        margin: 0;
        font-size: clamp(18px,1.6vw,22px);
        line-height: 1.25;
        font-weight: 800;
        letter-spacing: .2px;
        color: var(--feature-text);
    }

    .feature-card p {
        margin: 0;
        font-size: clamp(13px,1.2vw,14.5px);
        line-height: 1.45;
        color: var(--feature-muted);
    }

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,.10);
        border-color: color-mix(in oklab, var(--feature-accent) 35%, #ffffff);
    }

    .feature-card:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 3px color-mix(in oklab, var(--feature-accent) 30%, transparent), 0 10px 24px rgba(0,0,0,.12);
    }

    .feature-card:active {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(0,0,0,.10);
    }

@media (min-width:1200px) {
    .feature-card.feature-card--wide {
        grid-column: span 2;
    }
}

@media (max-width:768px) {
    .feature-card {
        padding: 14px;
    }

        .feature-card h2 {
            font-size: 18px;
        }

        .feature-card p {
            font-size: 13px;
        }
}

@media (prefers-reduced-motion:reduce) {
    .feature-card {
        transition: none;
    }
}*/

/* Silver features band */
/*.features-section {
    padding: 40px 20px;
    text-align: center;
    background: var(--bg-app);
    border-top: 1px solid var(--border-1);
    border-bottom: 1px solid var(--border-1);
}

    .features-section h2 {
        color: var(--ink);
        margin-bottom: 10px;
    }*/

/* Module tile grid */
/*.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    padding: 20px 0;
}

.module-card {
    background: linear-gradient(#ffffff, #f6f7fa);
    border: 1px solid var(--border-2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background .15s, border-color .15s, box-shadow .15s, transform .08s;
    box-shadow: 0 1px 0 #fff inset, 0 1px 2px rgba(0,0,0,.04);
}

    .module-card:hover {
        background: linear-gradient(#f9fafc, #ecf0f6);
        border-color: #bdc3cc;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,.10);
    }

    .module-card.is-active {
        border-color: var(--accent-strong);
        box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-strong) 60%, white 40%) inset, 0 0 10px var(--accent-strong);
        transform: translateY(-1px);
        animation: glow-pop .25s ease-out;
    }

.module-icon {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--ink);
}

.module-card h3 {
    color: var(--ink);
    margin-top: 0;
}

.module-card p {
    color: var(--muted);
    font-size: .95rem;
}*/

/* About & footer */
/*.about-section {
    padding: 40px 20px;
    background: var(--bg-panel);
    text-align: center;
    border-top: 1px solid var(--border-1);
}

    .about-section h2 {
        color: var(--ink);
        margin-bottom: 10px;
    }

    .about-section p {
        max-width: 700px;
        margin: 0 auto;
        color: var(--muted);
        line-height: 1.5;
    }

.site-footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #777;
    background-color: #f8f9fa;
    border-top: 1px solid #e1e1e1;
}*/


/* =========================
   BRAND PRIMARY BUTTONS
   ========================= */
/*.cta-button,
.login-button,
.register-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(var(--brand-start), var(--brand-end));
    color: var(--brand-text);
    border: 1px solid var(--brand-border);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: background .15s, border-color .15s, box-shadow .15s, transform .08s, filter .15s;
    box-shadow: 0 1px 0 #fff inset, 0 10px 22px rgba(46,60,82,.08);
}

    .cta-button:hover,
    .login-button:hover,
    .register-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 1px 0 #fff inset, 0 14px 28px rgba(46,60,82,.12);
        filter: brightness(1.03);
    }

    .cta-button:active,
    .login-button:active,
    .register-button:active {
        transform: translateY(0);
    }

    .cta-button:focus-visible,
    .login-button:focus-visible,
    .register-button:focus-visible {
        outline: none;
        box-shadow: 0 0 0 1px #fff inset, 0 0 0 2px var(--brand-border), 0 0 14px color-mix(in srgb, var(--brand-border) 60%, transparent);
    }

    .cta-button.is-active,
    .login-button.is-active,
    .register-button.is-active {
        animation: glow-pop .25s ease-out;
    }*/



/*
    this datalist form thead popup*/

/* Buttons */
/* ========= THEME HOOKS ========= */


/* ========= OVERLAY (render-driven; if it's in DOM, it's open) ========= */
/*.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 4vh 2vw;
    overflow: auto;
    background: radial-gradient(40% 50% at 50% 40%, color-mix(in srgb, var(--brand-1) 12%, transparent) 0%, transparent 70%), rgba(0,0,0,.32);
    backdrop-filter: blur(2px);
    z-index: 3000;
    animation: fadeIn var(--trans) both;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}*/

/* ========= PANEL ========= */
/* --- Modal visibility safety overrides (place LAST) --- */

/* Panel should be visible by default */
/*.modal-content {
    opacity: 1 !important;
    transform: none !important;
    background: var(--panel, #fff) !important;
    border: 1px solid var(--border, #e5e7eb) !important;
}*/

/* Only animate when motion is allowed */
/*@media (prefers-reduced-motion: no-preference) {
    .modal-overlay .modal-content {
        animation: popIn var(--trans, 220ms) .04s both;
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}*/

/* If any old stylesheet had `display:none` on overlays, neutralize it */
/*.modal-overlay {
    display: flex !important;
}*/


/* Respect OS reduced motion */
/*@media (prefers-reduced-motion: reduce) {

    .modal-content {
        animation: none !important;
    }

    .modal-content {
        opacity: 1 !important;
        transform: none !important;
    }
}*/

/* ========= SECTIONS ========= */
/*.modal-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(#fff,#fafcff);
    border-bottom: 1px solid var(--border);
    color: var(--ink);
}

.modal-body {
    padding: 16px 18px;
    overflow: auto;
    max-height: 100%;
    background: linear-gradient(#fff,#fff), linear-gradient(#f9fafb,#f9fafb);
    background-clip: padding-box, border-box;
    scrollbar-width: thin;
}

.modal-footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border-top: 1px solid var(--border);
}*/

/* ========= BUTTONS ========= */
/*.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .95rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    transition: filter .15s, box-shadow .15s, border-color .15s, background-color .15s;
    color: var(--ink);
    background: #fff;
}

    .btn.primary {
        background: linear-gradient(180deg, var(--brand-1), var(--brand-2));
        color: #fff;
        border: none;
        box-shadow: 0 3px 4px rgba(0,0,0,.12);
    }

    .btn.secondary {
        background: #fff;
        color: var(--brand-2);
        border: 1px solid var(--brand-2);
    }

    .btn.ghost {
        background: transparent;
        border-color: transparent;
        color: var(--muted);
    }

    .btn.delete, .btn.danger {
        background: var(--danger);
        color: #fff;
        border: none;
    }

    .btn:hover {
        filter: brightness(.98);
    }

    .btn:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-1) 25%, transparent);
    }*/

/* ========= WIZARD FEEL ========= */
/*.actions-right > .btn + .btn {
    margin-left: .5rem;
}

.step-badge {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--brand-1);
    color: #fff;
    font-size: .9rem;
    margin-right: .5rem;
}*/

/* ========= FORMS ========= */
/*.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
}

    .form-grid .span-2 {
        grid-column: 1 / -1;
    }

label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: .9rem;
    color: var(--ink);
}

input, select, textarea {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .6rem .7rem;
    font-size: .95rem;
    outline: none;
    background: #fff;
    color: var(--ink);
    transition: border var(--trans), box-shadow var(--trans);
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--brand-1);
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-1) 22%, transparent);
    }*/

/* ========= WAREHOUSE LIST & PROMPT ========= */
/*.warehouse-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    gap: 10px;
}

    .warehouse-list li {
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 10px 12px;
        background: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.wh-name {
    font-weight: 700;
    color: var(--ink);
}

.wh-meta {
    color: var(--muted);
    font-size: .9rem;
}

.prompt-add {
    margin-top: 12px;
    padding: 12px;
    background: #f7fafc;
    border: 1px dashed var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.prompt-actions .btn {
    padding: .45rem .75rem;
}*/

/* ========= COLLAPSE (add-warehouse section) ========= */
/*.collapse {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: height var(--trans), opacity var(--trans), transform var(--trans);
}

    .collapse.show {
        height: auto;
        opacity: 1;
        transform: translateY(0);
    }*/

/* ========= RESPONSIVE ========= */
/*@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .modal-content, .modal-content.large {
        width: 96vw;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    font-size: 1rem;
}

.download-icon {
    background: #333;
    color: #fff;
    padding: 8px 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 1.1rem;
}

    .download-icon:hover {
        background: #8B1E1E;
        transform: translateY(2px);
    }

.kitenge-strip {
    margin: 20px auto;*/ /* top/bottom 20px, centered horizontally */
    /*width: 70%;
    height: 100px;*/ /* or auto with min-height */
    /*background-image: url('/images/full.jpeg');
    background-size: cover;*/ /* fills while keeping aspect ratio */
    /*background-position: center;
    background-repeat: no-repeat;
}

.offers-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}*/

/* Grid layout for cards */
/*.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}*/

/* Card styling */
/*.offers-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .offers-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

.plan-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

    .plan-features li {
        padding: 8px 0;
        font-size: 0.95rem;
        color: #000;
        display: flex;
        align-items: center;
    }

        .plan-features li::before {
            content: "✓";
            color: #333;
            margin-right: 8px;
            font-weight: bold;
        }

        .plan-features li.unavailable::before {
            content: "✗";
        }

.partners-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 300px;
    text-align: center;
}

    .partner-card img {
        max-width: 180px;
        max-height: 100px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .partner-card h3 {
        font-size: 1.3rem;
        color: #000;
        margin-bottom: 10px;
    }

    .partner-card p {
        font-size: 0.95rem;
        color: #555;
    }*/
