/* Custom Enhancements for NaviTechnology */

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #f8faff;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.1);
    background: #ffffff;
}

.benefit-card .icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-card .icon span {
    color: #fff;
    font-size: 30px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #343a40;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

/* Product Cards */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    background: #007bff;
    border-color: #007bff;
}

.product-card:hover h3,
.product-card:hover p,
.product-card:hover .icon span,
.product-card:hover strong {
    color: #fff !important;
}

.product-card .icon {
    margin-bottom: 20px;
}

.product-card .icon span {
    font-size: 50px;
    color: #007bff;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.learn-more-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.product-card:hover .learn-more-btn {
    color: #fff;
}

/* Client Logo Strip */
.client-strip {
    background: #fdfdfd;
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.client-logo {
    opacity: 0.6;
    transition: opacity 0.3s;
    max-height: 50px;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Logo Carousel Styling */
.logo-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 120px;
}

.logo-carousel .item img {
    max-width: 100%;
    max-height: 80px;
    width: auto !important;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-carousel .item img:hover {
    opacity: 1;
}

/* Use Case Cards */
.use-case-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

.use-case-card .icon {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.use-case-card .icon span {
    color: #007bff;
    font-size: 24px;
}

.use-case-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #343a40;
}

.use-case-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

.use-case-card p strong {
    color: #343a40;
    display: block;
    margin-bottom: 5px;
}

.logo-carousel .owl-stage {
    transition-timing-function: linear !important;
}

/* Improved Typography */
.subheading {
    letter-spacing: 3px;
    font-weight: 800;
    color: #007bff !important;
}

/* Product Page Sections */
.product-section {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.product-section.alt-bg {
    background: #fbfcfe;
}

.product-section h2 {
    font-weight: 800;
    color: #343a40;
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.product-section ul {
    list-style: none;
    padding-left: 0;
}

.product-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.product-section ul li::before {
    content: "\ead2";
    /* Icomoon arrow/check */
    font-family: 'icomoon';
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1.2rem;
}

.product-image-wrap {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    background: #fff;
    padding: 20px;
}

.product-image-wrap:hover {
    transform: scale(1.02);
}

.spec-table {
    width: 100%;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.spec-table th {
    background: #007bff;
    color: #fff;
    padding: 15px 20px;
    font-weight: 600;
}

.spec-table td {
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* Animated Email Button */
.btn-animated-email {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.15);
    display: inline-flex;
    align-items: center;
    border: none;
    background: #007bff;
    color: #fff !important;
}

.btn-animated-email:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.3);
    background: #0069d9;
}

.btn-animated-email .icon-envelope-o {
    font-size: 1.5rem;
    animation: pulse-email 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    display: inline-block;
}

@keyframes pulse-email {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}