/* Modern light theme tweaks */
    body { background: #f8fafc; color: #0f172a; font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
    .hero { padding: 80px 0; }
    .card-ghost { background: white; border-radius: 12px; box-shadow: 0 6px 20px rgba(15,23,42,0.06); }
    .btn-primary { background: #2f6880; border: none; }
    .btn-primary:hover { background: #184f66; border: none; }
    .feature-icon { width:64px;height:64px;border-radius:12px; display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg,#eef2ff,#fff); box-shadow: 0 6px 18px rgba(99,102,241,0.06); }
    .logo-grid img { max-height:48px; opacity:.85; filter:grayscale(.0); }
    .testimonial { background: linear-gradient(180deg,#ffffff,#fbfdff); border-radius:10px; padding:16px; box-shadow:0 6px 18px rgba(2,6,23,0.04); }
    .form-floating .form-control { border-radius:8px; }
    @media (max-width:767px){ .hero { padding:40px 0; } } 

    .owl-carousel .item img {
    /* max-height: 70px; */
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 0 auto;
    }
    .owl-carousel .item img:hover {
    transform: scale(1.1);
    opacity: 1;
    }

    .pain-card, .solution-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    }

    .pain-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.1);
    }

    .solution-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,100,255,0.1);
    }

    .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    transition: all 0.3s ease;
    }

    .pain-card:hover .icon-wrap {
    background: #dc3545;
    color: #fff;
    }

    .solution-card:hover .icon-wrap {
    background: #004AAD;
    color: #fff;
    }

    .bg-primary-subtle {
    background-color: #e8f0ff;
    }

    .bg-danger-subtle {
    background-color: #ffe8e8;
    }

    .card {box-shadow: 0 3px 10px rgba(16, 24, 40, 0.4);}
    .accordion-button { background-color: #f8fafc; font-weight: 500;}

    footer a {
    color: #fff !important;
    }

    footer a:hover {
    color: #fff !important;
    }

    footer h6, footer h4 {
    letter-spacing: 0.5px;
    }

    footer .fa-phone, footer .fa-envelope {
    color: #fff;
    opacity: 0.8;
    }

    footer .fa-phone:hover, footer .fa-envelope:hover {
    opacity: 1;
    }

    footer .footer-upper {
    position: relative;
    z-index: 2;
    }

    footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    }

    footer::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    }

    .segment-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    }
    .segment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.15);
    }
    .segment-card img {
    transition: transform 0.3s ease;
    }
    .segment-card:hover img {
    transform: scale(1.1);
    }
    .navbar{padding: 0;}
    .testimonial-logo {width: 200px !important;}

    .navbar {
    position: relative;
    z-index: 1000;
    }

    .navbar img {
    max-height: 60px;
    width: auto;
    }

    .odoo-logo {
    max-height: 50px;
    }

    @media (max-width: 767px) {
    .navbar .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .navbar-brand,
    .odoo-logo {
        margin: 5px 0;
    }
    }

    /* .testimonial-logo {
    object-fit: cover;
    border: 2px solid #e9ecef;
    } */
    .testimonial-carousel .card {
    background: #fff;
    transition: all 0.3s ease;
    min-height: 300px;
    }
    .testimonial-carousel .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.15);
    }
    .owl-dots {
    text-align: center;
    margin-top: 10px;
    }
    .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 4px;
    display: inline-block;
    transition: all 0.3s;
    }
    .owl-dot.active span {
    background: #004aad;
    }