@font-face {
    font-family: "eurostile";
    src: url("../fonts/eurostile/l") format("woff2"), url("../fonts/eurostile/d.woff") format("woff"), url("../fonts/eurostile/a") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
}


html,
body,
div,
span,
p {
    font-family: "eurostile", sans-serif;
    padding: 0px;
    margin: 0px;

    color: #343432;

    scroll-behavior: smooth;

}

.div-header {
    width: 100%;
    height: 45px;
    background: rgb(248, 248, 248);

    border-bottom: 1px solid rgb(230, 230, 230);

    position: fixed;
    top: 0px;
    left: 0px;
    padding: 10px 15px;
    z-index: 999;
}

.div-header .div-name {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    width: 250px;
    text-align: start;
}

.div-header .div-name .img-logo {
    width: 60px;
    height: auto;
    vertical-align: middle;
    margin-top: -5px;
}

.div-header .div-nav-actions {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 280px);
    text-align: end;
}

.div-header .div-nav-actions .div-nav-action-item {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 15px;
    margin-inline-start: 15px;
    cursor: pointer;
    user-select: none;
    color: rgb(150, 150, 150);
    font-weight: bold;

    font-style: none;
    text-decoration: none;
}

.div-header .div-nav-actions .div-nav-action-item:hover {
    color: rgb(103, 152, 71);
}


.div-section {
    width: calc(100% - 50px);
    padding: 25px;
    text-align: center;

    font-size: 20px;
    font-weight: bold;
}

.div-section.first {
    margin-top: 60px;
    font-size: 42px;
    padding-top: 7%;
    padding-bottom: 80px;
    font-weight: bold;
}

.div-section.second {
    padding: 25px 15%;
    width: 70%;

    background: rgb(248, 248, 248);

    padding-bottom: 200px;
}


.div-section.third {
    width: 70%;
    margin: auto;
    margin-bottom: 20px;
}


.div-section.forth {
    width: 70%;
    margin: auto;
    margin-bottom: 20px;
    background: rgb(248, 248, 248);
}


.div-section.fifth {
    padding: 25px 15%;
    width: 70%;
    /* background: rgb(248, 248, 248); */
}





.div-section p {
    font-weight: normal;
    font-size: 18px;
    padding-top: 15px;
}

.div-section.fifth .contact-item {
    padding-top: 5px;
    font-size: 16px;
    font-weight: normal;
    display: inline-block;
    margin: 15px 25px;
    margin-bottom: 0px;
}

.div-section.fifth .contact-item a {
    color: inherit;
}





.div-section.first .div-sub-title {
    font-size: 24px;
}

.div-section.first .div-sub-title.small {
    font-size: 20px;
}


.div-section.first .img-logo {
    width: 200px;
}


.div-technologies-table {
    background: white;
    width: 80%;
    margin: auto;

    margin-top: -170px;
    margin-bottom: 10px;

    border-radius: 14px;
    border: 1px solid rgb(230, 230, 230);


    height: fit-content;
    position: relative;

    display: table;

}


.div-technologies-table .div-tbl-col {

    width: 20%;
    display: table-cell;
    vertical-align: top;
    text-align: center;

    border-right: 1px solid rgb(230, 230, 230);
    padding: 15px;

    font-size: 16px;

    height: 100%;

}

.div-technologies-table .div-tbl-col:last-child {
    border-right: none;
    border-bottom: none;
}

.div-technologies-table .div-tbl-col .div-title {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 10px;
}

.div-project {
    font-weight: normal;
    text-align: start;
    padding-bottom: 10px;
}


.div-project .div-project-name {
    padding-top: 15px;
}

.div-project .div-project-description {
    font-size: 18px;
}

.div-project .div-tags {
    font-size: 14px;
    padding-bottom: 10px;
}

.div-project .div-tags i {
    font-style: normal;
    background: rgb(248, 248, 248);
    border: 1px solid rgb(230, 230, 230);
    padding: 2px 5px;
    margin-inline-end: 10px;
    margin-top: 10px;
    border-radius: 5px;
    display: inline-block;
}


.p-footer {
    font-size: 13px !important;
    border-top: 1px solid rgb(230, 230, 230);
    margin-top: 15px;
}







/* Team Section Styles */
.div-section.team {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.div-team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 40px auto 0;
    gap: 30px;
}

.div-team-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.div-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.div-team-member-image {
    margin-bottom: 15px;
}

.div-team-member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3498db;
}

.div-team-member-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.div-team-member-position {
    font-size: 16px;
    color: #3498db;
    margin-bottom: 15px;
}

.div-team-member-bio {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.div-team-member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.div-team-member-social a img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.div-team-member-social a img:hover {
    transform: scale(1.2);
}