@import url("../fonts/fonts.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #F5F5F4;
}

header {
    padding: 24px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1010;
    position: relative;
}

header ul {
    list-style: none;
    display: flex;
    gap: 48px;
}

header ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

header ul li a:hover {
    color: #627E74;
}

@media screen and (max-width: 1100px) {
    header .header-part:nth-child(2) {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    header {
        padding: 24px 4%;
    }
}

.btn {
    text-decoration: none;
    padding: 14px 32px;
    background-color: #627E74;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.btn:active,
.btn:focus,
.btn:focus-within,
.btn:hover {
    background-color: #4a665f !important;
}

@media screen and (max-width: 500px) {
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

}

.btn-sm {
    font-size: 14px;
    padding: 10px 24px;
}

.btn-xsm {
    font-size: 12px;
    padding: 4px 13px;
}

.hero-section {
    margin: 16px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 64px;
    height: calc(100vh - 160px);
    gap: 100px;
    border-radius: 32px;
    background-image: url('../images/hero-bg.png');
    background-position: center;
    background-size: cover;
}

.hero-section .hero-section-info {
    flex: 1 1 50%;
}

.hero-section .hero-section-image {
    max-height: 95%;
    height: 95%;
}

.hero-section .hero-section-image img {
    width: 100%;
    height: 100%;
}

.hero-section-info>span {
    font-size: 20px;
    color: #79716B;
    font-weight: 500;
}

.hero-section-info h1 {
    font-size: 56px;
    margin: 16px 0;
    color: #333;
    line-height: 1.2;
    font-weight: 300;
}

@media screen and (max-width: 1000px) {
    .hero-section {
        height: auto;
        padding-block: 30px;
    }

    .hero-section .hero-section-image {
        display: none;
    }

    .hero-section-info h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 468px) {
    .hero-section {
        padding: 40px;
    }
}

.hero-section-info h1 b {
    font-weight: 600;
    color: #627E74;
}

.hero-section-info p {
    font-size: 16px;
    color: #555;
    margin-block: 32px 48px;
    line-height: 1.4;
}

.divider {
    height: 32px;
    background-image: url('../images/divider.png');
    margin: 16px 10%;
    border-radius: 32px;
}

.references-section {
    margin: 16px 10%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.references-section .reference {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease-in-out;
}

.references-section .reference:hover {
    transform: scale(1.02);
}

@media screen and (max-width: 900px) {
    .references-section {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .references-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 450px) {
    .references-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 80px;
    padding-inline: 20px;
}

.section-header span {
    font-size: 16px;
    color: #79716B;
    font-weight: 500;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 32px;
    color: #627E74;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.section-header p {
    font-size: 16px;
    color: #57534D;
    text-align: center;
    line-height: 1.4;
}

.referances-section,
.about-section,
.projects-section,
.contact-section,
.blog-section,
.faq-section,
.services-section {
    background-color: #fff;
    margin: 16px 10%;
    border-radius: 32px;
}

@media screen and (max-width: 500px) {

    .referances-section,
    .about-section,
    .projects-section,
    .contact-section,
    .blog-section,
    .faq-section,
    .services-section {
        margin: 16px 4%;
    }
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-inline: 80px;
    padding-bottom: 80px;
}

.services-mobile {
    display: none;
    gap: 24px;
    padding: 0 10%;
    padding-bottom: 40px;
}

@media screen and (max-width: 900px) {
    .services-mobile {
        display: block;
    }

    body:has(.services-mobile) .services:not(.swiper) {
        display: none;
    }

}

.services-standalone {
    margin: 0 10%;
}

.services .service {
    background-color: var(--bg, #F3E8FF);
    border-radius: 32px;
    font-size: 24px;
    font-weight: 500;
    aspect-ratio: 169 / 152;
    background-image: var(--bg-image);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    overflow: hidden;
    --glow: var(--glow, #e99af4);
    transition: all .2s ease-in-out;
    display: block;
}

.services .service:hover {
    transform: scale(1.02);
}

.services .service span {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    color: #000;
    font-size: 24px;
    font-weight: 500;
}

.services .service::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: 0;
    z-index: 1;
    background: linear-gradient(180deg, var(--glow, #e99af4) 0%, rgba(0, 0, 0, 0) 100%);
    height: 50%;
    transform: rotate(-30deg);
    z-index: 0;
    opacity: 0.6;
}

@media screen and (max-width: 1000px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
        margin-inline: 40px;
    }
}

@media screen and (max-width: 756px) {
    .services {
        grid-template-columns: repeat(1, 1fr);
        margin-inline: 40px;
    }
}

.contact-section .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 180px;
    padding-bottom: 80px;
}

.contact .form-row {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-bottom: 16px;
}

@media screen and (max-width: 1000px) {
    .contact-section .contact {
        padding: 20px 40px;
    }

    .contact .form-row {
        flex-direction: column;
    }

}

.contact .form-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    width: 100%;
}

.form-input input,
.form-input textarea {
    width: 100%;
    flex: 1;
    padding: 16px;
    border: 1px solid #DDD;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Helvetica Neue', sans-serif;
    resize: vertical;
}

.contact .form-input textarea {
    resize: none;
}

.form-input button {
    margin-left: auto;
    margin-top: 30px;
}

.projects {
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 10%;
}

.projects-mobile {
    display: none;
    gap: 24px;
    padding: 0 10%;
}

@media screen and (max-width: 900px) {
    .projects-mobile {
        display: block;
    }

    body:has(.projects-mobile) .projects:not(.swiper) {
        display: none;
    }

}

.projects .project {
    background-color: #fff;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    transition: all .2s ease-in-out;
}

.projects .project:hover {
    transform: scale(1.02);
}

.project .project-thumb {
    padding: 4px;
    max-height: 280px;
}

.project .project-thumb img {
    width: 100%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    max-height: 280px;
    height: 280px;
    object-fit: cover;
}

.project .project-details {
    text-decoration: none;
    margin: 24px 24px 0 24px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    border-bottom: 1px solid #E7E5E4;
}

.project .project-details .project-desc {
    font-size: 14px;
    color: #57534D;
}

.project .project-details .project-title {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.project-footer {
    margin: 24px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #57534D;
}

.project-footer .project-tech {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.project-footer .project-tech img {
    width: 16px;
    height: 16px;
}

.project-footer .project-date {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-header .project-footer {
    margin: 24px 0;
    border-bottom: 1px solid #E7E5E4;
    padding-bottom: 24px;
}


@media screen and (max-width: 900px) {
    .projects {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }

}

@media screen and (max-width: 570px) {
    .projects {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 40px;
    }

}


.blogs {
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 10%;
}

.blogs-mobile {
    display: none;
    gap: 24px;
    padding: 0 10%;
}

@media screen and (max-width: 900px) {
    .blogs-mobile {
        display: block;
    }

    body:has(.blogs-mobile) .blogs:not(.swiper) {
        display: none;
    }

}

.blogs .blog {
    background-color: #fff;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    transition: all .2s ease-in-out;
}

.blogs .blog:hover {
    transform: scale(1.02);
}

.blog .blog-thumb {
    padding: 4px;
    max-height: 280px;
}

.blog .blog-thumb img {
    width: 100%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    max-height: 280px;
    height: 280px;
    object-fit: cover;
}

.blog .blog-details {
    text-decoration: none;
    margin: 24px 24px 0 24px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    border-bottom: 1px solid #E7E5E4;
}

.blog .blog-details .blog-desc {
    font-size: 14px;
    color: #57534D;
}

.blog .blog-details .blog-title {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.blog .blog-footer {
    margin: 24px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #57534D;
}

.blog .blog-footer .blog-tech {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.blog .blog-footer .blog-tech img {
    width: 16px;
    height: 16px;
}

.blog .blog-footer .blog-date {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 900px) {
    .blogs {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 570px) {
    .blogs {
        grid-template-columns: repeat(1, 1fr);
    }

}

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    border-radius: 40px;
    background-image: url('../images/banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 16px 10%;
}

.about-section {
    padding-inline: 22%;
    padding-block: 160px 0px;
    background-image: url('../images/about-bg.png');
    background-position: center;
    background-repeat: no-repeat;
}

.about-section .section-header p {
    font-weight: 300;
    font-size: 20px;
}

.about-section .section-header p b {
    font-weight: 600;
}


@media screen and (max-width: 800px) {
    .about-section {
        padding-inline: 40px;
        padding-block: 80px 0px;
    }
}

@media screen and (max-width: 400px) {
    .about-section {
        padding-inline: 20px;
        padding-block: 40px 0px;
    }
}



.faq {
    padding: 0 10%;
    padding-bottom: 80px;
}

.faq article {
    border: 1px solid #fff;
    margin: 1em auto;
    background-color: #F5F5F4;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 300;
    color: #57534D;
}

.faq article label {
    display: flex;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    width: 100%;
    height: 100%;
    padding: 24px 32px;
    cursor: pointer;
}

.faq article label::after {
    content: "+";
    margin-left: auto;
    font-size: 26px;
    font-weight: 400;
}

.faq article:has(input[type="radio"]:checked) label::after {
    content: "-";
    margin-left: auto;
    font-size: 26px;
    font-weight: 400;
}

.faq article div {
    padding: 0 32px;
}

.faq input[type="radio"] {
    appearance: none;
    position: fixed;
    top: -100vh;
    left: -100vh;
}

.faq input[type="radio"]~div {
    max-height: 0;

    transition: all 0.5s;
    opacity: 0;
}

.faq input[type="radio"]:checked~div {
    max-height: 500px;
    padding: 0 32px 24px 32px;
    opacity: 1;
}



footer {
    background-color: #fff;
    padding: 80px;
    margin: 16px 10% 80px 10%;
    border-radius: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

footer .footer-part h3 {
    font-size: 40px;
    color: #57534D;
    margin-bottom: 24px;
}

footer .footer-part p {
    font-size: 16px;
    color: #57534D;
    margin-bottom: 29px;
}

footer .footer-part>span {
    font-size: 14px;
    color: #79716B;
    margin-top: 48px;
    display: inline-block;
}

footer .footer-part:first-child {
    flex: 1 1 40%;
}

footer .footer-part:nth-child(2) {
    flex: 1 1 20%;
}

footer .footer-part:last-child {
    display: flex;
    justify-content: space-between;
    flex: 1 1 40%;
}

footer .footer-part:last-child ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
}

footer .footer-part:last-child ul li a {
    text-decoration: none;
    color: #79716B;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 16px;
}

footer .footer-list {
    flex: 1 1 50%;
}

@media screen and (max-width: 1100px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    footer .footer-part {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    footer .footer-part:last-child {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    footer .footer-part:last-child ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    footer .footer-part:first-child,
    footer .footer-part:nth-child(2),
    footer .footer-part:last-child {
        flex: unset;
    }

}

@media screen and (max-width: 500px) {
    footer {
        padding: 40px;
    }

}


.page-header {
    background-color: #fff;
    margin: 16px 10%;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.page-header .page-header-content {
    flex: 1 1 40%;
}

.page-header-b {
    flex: 1 1 20%;
}

.page-header .page-header-thumb {
    flex: 1 1 40%;
    text-align: right;
}

.page-header span {
    font-size: 16px;
    color: #79716B;
    font-weight: 500;
    margin-bottom: 12px;
    display: inline-block;
}

.page-header h2 {
    font-size: 48px;
    color: #627E74;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 15px;
    color: #57534D;
    line-height: 1.4;
}

@media screen and (max-width: 900px) {
    .page-header {
        padding: 40px;
    }

    .page-header-thumb {
        display: none;
    }
}

@media screen and (max-width: 560px) {
    .page-header h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 410px) {
    .page-header h2 {
        font-size: 26px;
    }
}


.blog-search {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
    margin-top: -40px;
}

.blog-search input {
    width: 320px;
    max-width: 100%;
}

@media screen and (max-width: 500px) {
    .blog-search input {
        width: 200px;
    }

}

.about-stats {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
    margin: 16px 10%;
}

.about-stats .about-stat {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
}

.about-stats .about-stat span {
    display: block;
    font-size: 14px;
    color: #57534D;
    margin-top: 10px;
    font-weight: 400;
}

@media screen and (max-width: 780px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 400px) {
    .about-stats {
        grid-template-columns: repeat(1, 1fr);
    }

}

.references {
    margin: 16px 10%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 80px;
}

.references .reference {
    background-color: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E7E5E4;
    transition: all .2s ease-in-out;
}

.references .reference:hover {
    transform: translateY(-4px);
}

@media screen and (max-width: 900px) {
    .references {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .references {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .references {
        grid-template-columns: repeat(1, 1fr);
    }
}

.vision-section {
    margin: 16px 10%;
    display: flex;
    gap: 16px;
}

.vision-section .section-header {
    background-color: #fff;
    align-items: start;
    padding: 80px;
    border-radius: 32px;
}

.vision-section .section-header p {
    text-align: left;
    padding-inline: 20px;
}

.vision-section .vision-image {
    flex: 1 0 30%;
}

.vision-section .vision-image img {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    height: 100%;
}

@media screen and (max-width: 1000px) {
    .vision-section {
        flex-direction: column-reverse;
    }

    .vision-section .vision-image img {
        height: 200px;
    }

}

@media screen and (max-width: 500px) {
    .vision-section .section-header {
        padding: 40px;
        align-items: center;
    }

    .vision-section .section-header {
        padding-inline: 20px;
    }

    .vision-section .section-header p {
        text-align: center;
        padding-inline: 0;
        font-size: 14px;
    }
}

.settings-page {
    margin: 16px 10%;
}

.settings-sidebar {
    background-color: #fff;
    border-radius: 32px;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
}

.settings-sidebar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
    padding: 8px 16px;
}

.settings-sidebar a:hover {
    color: #627E74;
    background-color: #F5F5F4;
}

.settings-content {
    padding: 20px;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 16px;
}

.cke_notifications_area {
    display: none;
}

.blog-page {
    margin: 16px 10%;
    display: flex;
    gap: 16px;
    position: relative;
}

.blog-page .blog-main {
    flex: 1 1 80%;
}

@media screen and (max-width: 900px) {
    .blog-page {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .blog-page .blog-main,
    .blog-page .blog-menu {
        flex: unset;
        position: relative;
    }

    .blog-page .blog-menu {
        margin-bottom: 40px;
    }
}


.blog-main .blog-header {
    background-color: #fff;
    border-radius: 40px 40px 0 0;
    padding: 48px;
}

.blog-main .blog-thumb img {
    width: 100%;
    border-radius: 0 0 40px 40px;
    max-height: 460px;
    height: 460px;
    object-fit: cover;
    margin-bottom: 24px;
}

.blog-header h1 {
    font-size: 32px;
    color: #627E74;
    margin-bottom: 32px;
    font-weight: 600;
    margin-top: 12px;
}

.blog-header p {
    font-size: 14px;
    color: #57534D;
    line-height: 1.4;
}

.blog-header-upper {
    color: #57534D;
    font-size: 14px;
}

.blog-header-upper span {
    font-size: 14px;
    color: #79716B;
    font-weight: 500;
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid #DDD;
}

.blog-content {
    background-color: #fff;
    border-radius: 40px;
    padding: 48px;
    color: #57534D;
}

.blog-menu {
    flex: 1 1 20%;
    background-color: #fff;
    border-radius: 32px;
    padding: 24px;
    height: fit-content;
    font-weight: 500;
    position: sticky;
    top: 30px;
}

.blog-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E7E5E4;
}

.blog-menu ul li a {
    text-decoration: none;
    color: #57534D;
    font-weight: 400;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
}

.blog-menu ul li.active a .blog-menu ul li a.active {
    color: #000;
    font-weight: 600;
}

.blog-menu ul li a:hover {
    color: #000;
}

.services-page-header {
    display: flex;
    margin: 16px 10%;
    gap: 16px;
}

.services-page-header-content {
    flex: 1 1 70%;
    background-color: #fff;
    border-radius: 40px;
    padding: 80px;
}

.services-page-header-content h1 {
    font-size: 40px;
    color: #627E74;
    font-weight: 600;
    margin-block: 12px;
}

.services-page-header-content span {
    font-size: 16px;
    color: #79716B;
    font-weight: 500;
}

.services-page-header-content .project-count {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 24px;
    color: #57534D;
}

.services-page-header-content p {
    font-size: 15px;
    color: #57534D;
    line-height: 1.4;
    padding-top: 40px;
    border-top: 1px solid #E7E5E4;
}

.services-page-header-thumb {
    flex: 1 1 30%;
    text-align: right;
}

.services-page-header-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

@media screen and (max-width: 900px) {
    .services-page-header {
        flex-direction: column;
        gap: 0;
    }

    .services-page-header-content {
        border-radius: 40px 40px 0 0;
        padding: 40px;
    }

    .services-page-header-thumb {
        border-radius: 0 0 40px 40px;
        height: 200px;
        max-height: 200px;
    }

    .services-page-header-thumb img {
        border-radius: 0 0 40px 40px;
        height: 200px;
        max-height: 200px;
    }

    .services-page-header-content {
        padding: 40px;
    }

}

.services-content {
    margin: 16px 10%;
    background-color: #fff;
    border-radius: 40px;
    padding: 64px 80px;
    color: #57534D;
    font-size: 16px;
}

.services-content h2 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #E7E5E4;
    display: flex;
    align-items: center;
}

.services-content h2:not(:first-child) {
    margin-top: 80px;
}

.services-content h2::before {
    content: '■';
    font-size: 12px;
    margin-right: 8px;
    transform: rotate(45deg);
    color: #A6A09B;
    display: inline-block;
}

@media screen and (max-width: 500px) {
    .services-content {
        padding: 32px 24px;
    }
}

.project-header {
    margin-bottom: 64px;
}

.project-header h1 {
    font-size: 40px;
    color: #627E74;
    margin-bottom: 24px;
    margin-top: 12px;
    font-weight: 600;
    margin-top: 12px;
}

.project-header span {
    font-size: 14px;
    color: #79716B;
    font-weight: 400;
    margin-bottom: 12px;
}

.project-techstacks {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.project-techstacks .project-techstack {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    background-color: #F5F5F4;
    color: #000;
    padding: 12px 24px;
    border-radius: 16px;
    white-space: nowrap;
}

.project-techstacks .project-techstack img {
    width: 24px;
    height: 24px;
}

.techstack-logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.project-page-thumb img {
    width: 100%;
    border-radius: 32px;
    max-height: 500px;
    height: 364px;
    object-fit: cover;
    margin-bottom: 40px;
}

.mobile-header {
    display: none;
    position: absolute;
    inset: 0;
    background-color: #fff;
    padding-top: 80px;
    z-index: 1000;
    height: fit-content;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    top: -100vh;
    animation: mobile-header-anim 0.3s ease forwards;
}

.mobile-header.active {
    display: block;
    top: 0;
}

@keyframes mobile-header-anim {
    from {
        top: -100vh;
    }

    to {
        top: 0;
    }
}



.mobile-header ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 32px;
}

.mobile-header ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 26px;
}

.mobile-header-toggle {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1011;
    display: none;
}

.mobile-header-toggle img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    .mobile-header-toggle {
        display: block;
    }

}

/* Navigation Buttons for Mobile Sliders */
.swiper-button-next,
.swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
    margin-top: -22px !important;
    background-color: rgba(98, 126, 116, 0.9) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(98, 126, 116, 1) !important;
    transform: scale(1.1) !important;
}

.swiper-button-next {
    right: 10px !important;
}

.swiper-button-prev {
    left: 10px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: bold !important;
}

/* Hide navigation on desktop */
@media screen and (min-width: 901px) {
    .swiper-button-next-services,
    .swiper-button-prev-services,
    .swiper-button-next-projects,
    .swiper-button-prev-projects,
    .swiper-button-next-blog,
    .swiper-button-prev-blog {
        display: none !important;
    }
}

/* ============================================
   BREADCRUMB NAVIGATION STYLES
   ============================================ */
.breadcrumb-container {
    background: #f8f9fa;
    padding: 12px 20px;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 8px;
    color: #adb5bd;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #627E74;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #495057;
    text-decoration: underline;
}

.breadcrumb-item:last-child {
    color: #495057;
    font-weight: 500;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .breadcrumb-container {
        padding: 8px 15px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 5px;
    }
}

/* ============================================
   LAZY LOADING STYLES
   ============================================ */
img[data-src] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
    min-height: 50px;
    opacity: 0.7;
}

img.loaded {
    animation: none;
    background: none;
    opacity: 1 !important;
}

img.error {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.error::after {
    content: "Resim yüklenemedi";
    font-size: 12px;
    color: #6c757d;
}

/* Loading animation */
@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Smooth fade-in transition */
img {
    transition: opacity 0.3s ease-in-out;
}