.displaynonelaptop{
    display:none;
}
.menuheading {
    color: #050748;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .2px;
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid #dadada;
}

.header-fluid-two .site-main-menu .mega-menu {
    text-align: left;
}

.header-fluid-two .site-main-menu .mega-menu {
    width: 100%;
}
.site-main-menu .mega-menu > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    width: 20%;
    padding: 0 15px;
}
    .site-main-menu .mega-menu > li > ul > li > a {
        font-size: 15px;
        line-height: 1.78;
        font-weight: 500;
        padding: 2px 0px;
    }
.intro11-content .title {
    font-size: 50px;
    line-height: 72px;
    font-weight: 700;
    color: #333333;
    max-width: 550px;
    margin-bottom: 50px;
}


.industries-section {
    text-align: center;
    padding: 60px 20px;
}

.subtitle {
    color: #4a6edb;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

.title {
    font-size: 32px;
    margin: 10px 0;
    color: #111;
}

.description {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 16px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: #fff;
    border: 1px solid #4d9754;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        background-color: #dcffdc;
    }

    .industry-card img {
        width: 40px;
        height: 40px;
    }

    .industry-card span {
        font-size: 16px;
        font-weight: 500;
        color: #222;
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .title {
        font-size: 26px;
    }

    .description {
        font-size: 15px;
    }

    .industry-card {
        padding: 15px;
        gap: 10px;
    }

        .industry-card img {
            width: 36px;
            height: 36px;
        }

        .industry-card span {
            font-size: 15px;
        }

    .intro11-content .title {
        font-size: 22px;
        line-height: 45px;
        font-weight: 700;
        color: #333333;
        max-width: 550px;
        margin-bottom: 20px;
    }
    .displaynonelaptop {
        display: block;
    }
}

@media (max-width: 480px) {
    .industries-section {
        padding: 40px 15px;
    }

    .title {
        font-size: 22px;
    }

    .description {
        font-size: 14px;
    }
}

