/* Desktop View: Submenu ko 2 Columns me divide karega */
@media (min-width: 992px) {
    .tech-dropdown-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        /* 2 Equal Columns */
        min-width: 390px !important;
        /* Double width for 2 columns */
        padding: 10px !important;
        gap: 5px 10px;
    }
}

@media (max-width: 991px) {
    .tech-dropdown-grid {
        /* display: block !important; */
        width: 100% !important;
    }
}

.footer {
    background-color: #001830;
    background-image: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.about-page {
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-widgets-1 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.of-txt-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}