/*-----web development page -----*/

:root {
    --custommaincolor: black;
    --customsecondarycolor: #ffc107;
    --highlight-text: #f0791f;
}

.high-light-text {
    color: var(--highlight-text);
}

.what-we-do-overview-container {
    background-color: var(--custommaincolor);
    margin-top: 100px;
    padding: 50px;
    border-radius: 15px;
    text-align: justify;
    color: white;
}

.what-we-do-overview-container h4 {
    color: var(--highlight-text);
    padding-block: 1rem;
    font-size: 1.8rem;
}

.what-we-do-overview-container p {
    color: white;
    font-weight: bold;
    text-align: justify;
}

.what-we-do-img img {
    border-radius: 15px;
    display: flex;
}

.what-we-do-overview .header-button {
    border: 1px solid white;
    letter-spacing: 5px;
    margin-top: 5rem;
    margin-bottom: 2rem;
    font-size: 2rem;
}


/*----custom  css project items start ---- */

.my-project-items .project-items .project-image .project-content.style2 {
    position: absolute;
    top: 25px!important;
    background-color: transparent;
    z-index: 10;
}

.my-project-items .project-items .overylay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.my-project-items .project-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.my-project-items .project-content p {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: 0;
    overflow: hidden;
    margin: 0 0 1rem 0;
}

.my-project-items .project-items:hover .project-content p {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
}

.my-project-items .project-content-link {
    margin-bottom: 43px;
    text-align: end;
}

.my-project-items .project-content-link a {
    background-color: var(--highlight-text);
    padding: 13px;
    border-radius: 30px;
    color: white;
}

.my-project-items .project-items .project-image .project-content.style2 {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    padding: 27px 12px;
}

.my-project-items .project-items img {
    transition: filter 0.4s ease;
}

.my-project-items .project-items:hover img {
    filter: blur(7px);
}

.my-project-items .project-items .project-image .project-content.style2:hover:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 6px;
    content: "";
    background-color: white;
    transition: all 0.4s ease-in-out;
}

.my-project-items .project-items:hover .project-image .project-content::before {
    height: 50%;
}

.my-project-items .project-items .project-image .project-content.style2 p {
    color: var(--theme);
    font-weight: 500;
    margin-bottom: 5px;
    text-align: justify;
}


/*----custom  css project items end ---- */

.our-tech-stack img {
    background-color: white;
    border-radius: 5px;
    aspect-ratio: 1;
    object-fit: contain;
}

.our-tech-stack {
    background-color: var(--custommaincolor);
    margin-block: 1rem;
    padding: 3rem;
}


/*----custom  what we do / mobile development start ---- */

.tech-wrapper {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: wrap;
    justify-content: center;
    align-items: stretch;
    display: flex;
}

.tech-card {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    background-color: white;
    border: 1px solid #7c7c7c;
    border-radius: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 10.3em;
    height: 10.3em;
    padding: 1.1em;
    display: flex;
    box-shadow: 0 2px 15px 2px #0003;
}

@media screen and (min-width: 1440px) {
    .tech-card {
        width: 9.1em;
        height: 9.1em;
    }
}

.tech-image {
    object-fit: contain;
    width: 90%;
    height: 90%;
}