/* header.header.header-6 {
    position: sticky;
    top: 0;
    background: #b3d1fa;
    z-index: 1000;
} */
 .header.header-6 .navbar {
    padding: 10px 0;
 }
 .header.header-6 .navbar-brand img {
    max-width: 240px;
    margin-top: 5px;
}
 .feature-style-5 .single-feature{
    height: 440px;
 }
 .footer .footer-widget .logo img{
    width: 240px;
 }
 .pricing-active {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-style-3 .contact-form-wrapper form .single-input i{
    width: 10px;
}

/* CARD COMMON */
.single-pricing-wrapper {
    flex: 1;
    min-width: 250px;
}

/* IMAGE CARD */
.pricing-section .image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

/* IMAGE */
.pricing-section .image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* OVERLAY */
.pricing-section .image-card .card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    padding: 25px;
    color: #fff;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.2)
    );
}

/* TEXT */
.pricing-section .image-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.pricing-section .image-card .line {
    width: 60px;
    height: 2px;
    background: #ccc;
    margin-bottom: 15px;
}

.pricing-section .image-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* NORMAL CARD STYLE */
.pricing-section .single-pricing {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

/* SLIDER WRAPPER */
.industry-slider {
    overflow: hidden;
}

/* CARD */
.industry-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 10px;
}

/* IMAGE */
.industry-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

/* OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    color: #fff;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.2)
    );
}

/* TITLE */
.overlay h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* LINE */
.overlay span {
    display: block;
    width: 50px;
    height: 2px;
    background: #fff;
    margin: 10px 0;
}

/* TEXT */
.overlay p {
    font-size: 14px;
    line-height: 1.5;
}

/* GAP FIX FOR SLICK */
.slick-list {
    margin: 0 -10px;
}

.tech-section {
    padding: 60px 20px;
    text-align: center;
}

.tech-section h2 {
    font-size: 28px;
    margin: 10px 0;
}

.tech-section h2 span {
    color: #1e73be;
}

.tech-section .badge {
    background: #e6f0ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.tech-section .tabs {
    margin: 30px 0;
    border-bottom: 1px solid #dfdfdf;
    display: flex;
    justify-content: space-around;

}

.tech-section .tab {
    background: none;
    border: none;
    margin: 0 10px;
    padding: 10px;
    cursor: pointer;
    font-weight: 500;
}

.tech-section .tab.active {
    border-bottom: 2px solid #1e73be;
    color: #1e73be;
}

.tech-section .tab-content {
    display: none;
}

.tech-section .tab-content.active {
    display: block;
}

/* GRID */
.tech-section .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD */
.tech-section .card {
    background: #fff;
    /* padding: 20px; */
    border-radius: 10px;
    transition: 0.3s;
    border: none;
}

/* .tech-section .card img {
    width: 40px;
    height: 40px;
} */

.tech-section .card p {
    margin-top: 10px;
    font-size: 14px;
}

/* HOVER */
.tech-section .card:hover {
    transform: translateY(-5px);
}
 

    .form-input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        outline: none;
    }

    .single-input i {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .parsley-errors-list {
        margin: 6px 0 0;
        padding: 0;
        list-style: none;
        color: #ff0000;
        font-size: 14px;
        font-weight: 500;
    }

    .parsley-errors-list li {
        margin-top: 2px;
    }

    .parsley-error {
        border: 1px solid red !important;
    }

    .parsley-success {
        border: 1px solid green !important;
    }
    .contact-style-3 .contact-form-wrapper form .single-input {
        margin-bottom: 0px;
    }
    .error-msg{
        height: 30px;
    }

    .button {
        padding: 12px 30px;
        border: none;
        background: #2563eb;
        color: #fff;
        border-radius: 6px;
        cursor: pointer;
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .tech-section .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .tech-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {

    .tech-section .tabs {
        flex-wrap: nowrap;       /* no wrap */
        overflow-x: auto;        /* scroll enable */
        justify-content: flex-start;
        padding-bottom: 5px;
    }

    .tech-section .tabs::-webkit-scrollbar {
        display: none;           /* hide scrollbar */
    }

    .tech-section .tab {
        flex: 0 0 auto;          /* prevent shrinking */
    }
}

