* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

*:not(img, i, svg, iframe) {
    font-family: "poppins", sans-serif !important;
}

html,
body {
    position: relative;
    height: 100%;
}

/*.container {*/
/*    max-width: 1300px;*/
/*    margin: 0 auto;*/
/*}*/

body section:nth-child(2) {
    padding: 0rem 0rem 3rem 0rem;
}

a {
    text-decoration: none !important;
    color: black !important;
}

ul {
    padding: 0 !important;
    margin: 0 !important;
}

/*.container {*/
/*    height: 100%;*/
/*}*/

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0 !important;
    margin: 0 !important;
}

.custom-btn {
    padding: 0.7rem 3rem;
    border: 1px solid white;
    color: white;
    font-size: 1rem;
    background-color: transparent;
    transition: 0.2s;
    cursor: pointer;
    border-radius: 30px;
}

.custom-btn:hover {
    background-color: white;
    color: black;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #bababa;
}

::-webkit-scrollbar-thumb:hover {
    background: #B38D25;
}

:root {
    --dark-blue: #013464;
    --light-blue: #E5F3FF;
    --blue: #1D91FF;
}

section {
    padding: 3rem 0rem;
}
.acerapps-container>section:first-child {
    padding-top: 0;
}
/* header */
.header-top {
    width: 100%;
    height: 50px;
    background-color: var(--dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top>span {
    color: white;
    font-weight: 300;
    font-size: 14px;
}

.header-top>span>a>span {
    color: #fff;
}
.header-top>span>a>i {
    color: #fff;
}
.header-top>span:nth-child(1) {
    margin-left: 5rem;
}

.header-top>span:nth-child(2) {
    border: 1px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5rem;
}

.header-list {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
}

.header-list>ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0rem 5rem !important;
}

.header-list>ul>li:nth-child(1)>div {
    width: 100px;
    margin-right: 10rem;
}

.header-logo-img>img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.header-links {
    display: flex;
    gap: 2rem;
}

.header-contact-box {
    border: 2px solid var(--dark-blue);
    display: flex;
    border-radius: 50px;
    padding: 1rem 2rem;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.header-contact-box:hover {
    background-color: var(--dark-blue);
    color: white;
}

.header-contact-box i {
    font-size: 1.5rem;
}

.header-contact-box>span:nth-child(2)>p {
    font-size: 13px;
}

.header-contact-box>span:nth-child(2)>p:nth-child(2) {
    font-size: 17px;
    font-weight: 500;
}

.header-list>ul>li:nth-child(3) {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-list>ul>li:nth-child(3)>span:nth-child(1)>i {
    font-size: 1.3rem;
}

.header-links>li>a {
    color: black;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.header-links>li>a:hover {
    color: var(--blue);
}

.header-links>li>a::before {
    content: "";
    width: 0%;
    height: 3px;
    position: absolute;
    bottom: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--blue);
    border-radius: 30px;
    transition: 0.3s;
}

.header-links>li>a:hover::before {
    width: 50%;
}

.header-overlay {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgb(0, 0, 0, .25);
    z-index: 2;
    overflow: hidden;

    /* IMPORTANT: don't block clicks unless active */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    display: none;
}

.header-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    display: block;
}


.ham-menu {
    display: none;
    height: 50px;
    width: 40px;
    position: relative;
    z-index: 5;
}

.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: black;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}

.ham-menu.active span {
    background-color: black;
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.header-dp-icon {
    display: none;
}

.header-links-dp {
    position: absolute;
    left: -300px;
    top: 0;
    background-color: #fff;
    width: 200px;
    transition: 0.2s;
    height: 100vh;
    overflow: hidden;
    z-index: 3;
    padding-left: 1rem;
    padding-top: 2rem;
}

.active {
    left: 0;
}

.header-links-dp>ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header-links-dp>ul>li>a {
    color: black;
}

/* header */

/* section */
.deneyim-flex>span {
    width: 220px;
}
.title {
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--dark-blue);
    margin-bottom: 5rem;
    position: relative;
}

.title>h2 {
    position: relative;
}

.title>h2::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background-color: var(--dark-blue);
    border-radius: 30px;
}

.duyurular-flex {
    /*display: flex;*/
    /*justify-content: center;*/
    /*gap: 2rem;*/

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.duyurular-flex>div>div:nth-child(1) {
    width: 100%;
}

.duyurular-flex>div>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.duyurular-box {
    position: relative;
}

.duyurular-box-content {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-height: 55px;
    background-color: var(--light-blue);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    transition: 0.3s;
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.duyurular-box-content>span:nth-child(1)>i {
    visibility: hidden;
    opacity: 0;
    font-size: 1.2rem;
    transition: 0.3s;
}

.duyurular-box:hover .duyurular-box-content {
    max-height: 100%;
    background-color: var(--dark-blue);
    color: white;
}

.duyurular-box:hover span:first-child>i {
    visibility: visible;
    opacity: 1;
}

.duyurular-box:hover span:first-child {
    color: var(--blue) !important;
}

.duyurular-box-content>span:nth-child(1) {
    display: flex;
    justify-content: space-between;
    width: 100%;
    transition: .2s ease;
}

.hakkimizda-flex {
    display: flex;
    height: 100%;
}

.hakkimizda {
    position: relative;
}

/*.hakkimizda::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 50%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*    background-image: url(../assest/images/hakkimizda-img.png);*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*}*/

.hakkimizda::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--light-blue);
    z-index: -1;
}
.misyon-vizyon {
    position: relative;
}
.misyon-vizyon::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url(../assest/images/vizyon-img.png);
    background-position: center;
    background-size: cover;
}

.misyon-vizyon::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--light-blue);
    z-index: -1;
}
.vizyon-img {
    width: 50%;
    padding-top: 4rem;
}
.vizyon-img>img {
    width: 100%;
    height: 38%;
    object-fit: scale-down;
}
.hakkimizda-content {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--dark-blue);
    justify-content: center;
    gap: 3rem;
    padding: 4rem 2rem 4rem 2rem;
}

.hakkimizda-content>span {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hakkimizda-img {
    width: 40%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hakkimizda-img img {
    transform: scale(.9);
    object-fit: cover;
}
.detay-flex {
    display: flex;
    height: 100%;
}
.detay-content {
    width: 60%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--dark-blue);
    justify-content: center;
    gap: 1rem;
    padding: 2rem 3rem;
}

.detay-content>span {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.detay-img {
    width: 50%;
    height: 450px;
    position: relative;
}
.detay-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hkmz-btn {
    background-color: var(--blue);
}

.hkmz-btn:hover {
    background-color: var(--dark-blue);
    color: white;
}

.hakkimizda-content>h2 {
    position: relative;
}

.hakkimizda-content>h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 12%;
    height: 4px;
    background-color: var(--dark-blue);
    border-radius: 30px;
}

.title-abso {
    position: absolute;
    right: 0;
    top: 0;
}

.title>div>span>a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-blue) !important;
}
/*.hizmetlerimiz-flex {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/
.hizmetlerimiz-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /*grid-template-rows: repeat(2, 1fr);*/
    /*height: 100%;*/
    /*gap: 2rem;*/
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.hizmetlerimiz-box {
    display: flex;
    flex-direction: column;
    /*height: auto;*/
    overflow: hidden;
    transition: 0.2s ease;
}

.hizmetlerimiz-img {
    width: 100%;
    height: auto;
}

/*.hizmetlerimiz-img>div {*/
/*    width: 415px;*/
/*}*/

.hizmetlerimiz-img>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hizmetlerimiz-content>span {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hizmetlerimiz-content>span>a {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--dark-blue);
}

.hizmetlerimiz-content {
    width: 100%;
    max-height: 55px;
    padding: 1.5rem;
    color: var(--dark-blue);
    overflow: hidden;
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hizmetlerimiz-box:hover .hizmetlerimiz-content {
    max-height: 100%;
    background-color: var(--light-blue);
    color: var(--blue);
}

.deneyim-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 6.5rem 0rem;
}

.deneyim-flex>span {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.deneyim-flex>span>span:nth-child(1) {
    font-size: 3rem;
}

.deneyim {
    position: relative;
}

.deneyim::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    z-index: -1;
}
.iletisim-hizmetlerimiz {
    padding: 0;
}
.iletisim {
    position: relative;
}

.iletisim::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-blue);
    z-index: -1;
}
.iletisim-page::before {
    background-color: #fff;
}
.iletisim-flex {
    width: 100%;
    color: var(--dark-blue);
    padding: 5rem 0rem;
    display: flex;
}

.iletisim-text {
    width: 50%;
    height: 100%;
    color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.iletisim-form {
    width: 50%;
    height: 100%;
}

.iletisim-text>h3 {
    position: relative;
}

.iletisim-text>h3::before {
    content: "";
    position: absolute;
    bottom: -0.7rem;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: var(--dark-blue);
    border-radius: 30px;
}

.iletisim-text>a {
    color: var(--blue) !important;
}

.form-btn {
    background-color: var(--blue);
    margin-top: 1.1rem;
}

.form-btn:hover {
    background-color: var(--dark-blue);
    color: white;
}
.acerapps-row {
    gap: 0.6rem;
}
.iletisim-form form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.iletisim-form form input,
textarea {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--dark-blue);
    padding-bottom: 1rem;
    width: 100%;
}

.iletisim-form form input,
textarea:focus {
    outline: none;
    box-shadow: none;
}
.just-validate-error-label {
    position: absolute;
}
textarea {
    resize: vertical;
    max-height: 100px;
}

.referanslar-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.referanslar-box {
    border: 2px solid gray;
    padding: 1rem 4rem;
    transition: 0.3s;
}

.referanslar-box:hover {
    border-color: var(--dark-blue);
}

.referanslar-box>div {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.referanslar-box>div>img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.big-title {
    height: 350px;
    background-image: url(../assest/images/banner-bg.png);
    background-position: center;
    background-size: cover;
}

.big-title-flex {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    gap: 1rem;
}

.big-title-flex>span>a {
    color: white !important;
}

.big-title-flex>span>font {
    color: var(--blue);
}

.avantajlar {
    display: flex;
    justify-content: space-between;
}

.avantajlar-box {
    padding: 2rem;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

.avantajlar-box>h4 {
    font-weight: 400;
    color: var(--dark-blue);
}

.avantajlar-box>p {
    color: #777777;
}

.avantajlar-box>div {
    width: 60px;
}

.avantajlar-box>div>img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.avantajlar-box:hover {
    border: 1px solid var(--blue);
    background-color: var(--light-blue);
}

.avantajlar-box:hover p {
    color: var(--blue);
}

.avantajlar-box:hover h4 {
    color: var(--blue);
}

/* section */

/* footer */

.footer {
    position: relative;
    padding: 5rem 0rem 0rem 0rem;
}

.footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    top: 0;
    left: 0;
    z-index: -1;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    color: white;
}

.footer-flex>li>ul>li>a {
    color: white !important;
}

.footer-flex>li {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 240px;
}

.footer-flex>li>div {
    font-size: 1.3rem;
}

.footer-flex>li>ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-flex>li:nth-child(1)>div {
    width: 100px;
}

.footer-flex>li:nth-child(1)>div>a>img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.footer-flex>li:nth-child(4)>ul>li>a>span>i {
    color: white !important;
}
.footer-flex i {
    color: var(--blue);
}
.footer-flex>li:nth-child(4)>ul>li>a {
    border-radius: 50%;
    border: 1px solid white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-flex>li:nth-child(4)>ul>li:nth-child(4)>span {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-flex>li:nth-child(4)>ul>li>span>a {
    color: white !important;
}

.footer-flex>li:nth-child(4)>ul>li>span {
    display: flex;
    gap: 1rem;
}

.footer-flex>li:nth-child(4)>ul>li:nth-child(3)>span {
    display: flex;
    gap: 20px;
}

.footer-hr {
    border: 1px solid white;
    opacity: 1;
    margin-top: 7rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    color: white;
}

.footer-bottom>p>font {
    color: var(--blue);
}
.footer-services-link {
    padding-left: 1rem;
    display: none;
}

.service-footer span {
    cursor: pointer;
}

.footer-services-link a {
    color: #fff !important;
}
.service-footer>span>i {
    margin-left: 0.6rem;
    color: white !important;
}
/* footer */

/* slider */
.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    /*width: 320px;*/
    width: 100%;
    height: 50px;
    text-align: left;
}
.referanslar-slider {
    height: auto !important;
}
.swiper-pagination-bullet {
    width: 25px !important;
    height: 25px !important;
    background-color: transparent !important;
    border: 1px solid white !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    border: 1px solid var(--blue) !important;
    background-color: var(--blue) !important;
}

.banner-img {
    background-image: url(../assest/images/banner-bg.png) !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    z-index: 3;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    height: 100vh;
    width: 100%;
    z-index: 99;
    position: relative;
    color: white;
    gap: 1.5rem;
    text-align: start;
}

.banner-content>p {
    color: var(--blue);
    font-weight: 300;
}

.banner-content>h2 {
    font-weight: 400;
    font-size: 3rem;
    width: 60%;
}

.banner-content-color {
    background: rgb(1, 52, 100);
    background: linear-gradient(90deg, rgba(1, 52, 100, 1) 1%, rgba(0, 86, 167, 0.8) 100%);
    height: 100%;
    width: 100%;
    position: relative;
}

.banner-content-color .container {
    height: 100%;
}

.banner-content-color>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ilkem-site {
    position: absolute;
    bottom: 20px;
    right: 20px;
    height: 50px;
    z-index: 99;
    padding: 0;
}

.ilkem-site>span {
    display: flex;
    gap: 1rem;
}

.ilkem-site>span>span:nth-child(1)>a>div {
    width: 50px;
}

.ilkem-site>span>span:nth-child(1)>a>div>img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.ilkem-site>span>span:nth-child(2)>a {
    color: white !important;
}

.referances-area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.referances-area div {
    border: 1px solid var(--blue);
    border-radius: 20px;
    padding: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.referances-area div img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}



/* slider */
@media (max-width:1400px) {
    /*.duyurular-flex>div>div:nth-child(1) {*/
    /*    width: 550px;*/
    /*}*/

    .hizmetlerimiz-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        /*gap: 2.5rem;*/
    }

    .referanslar-flex {
        justify-content: center;
        gap: 2rem;
    }

}

@media (max-width:1200px) {
    .header-top>span:nth-child(1) {
        margin-left: 2rem;
    }

    .header-top>span:nth-child(2) {
        margin-right: 2rem;
    }

    .header-list>ul {
        margin: 0rem 2rem !important;
    }

    .header-contact-box>span:nth-child(2)>p {
        font-size: 13px;
    }

    .header-contact-box>span:nth-child(2)>p:nth-child(2) {
        font-size: 15px;
    }

    .header-list>ul>li:nth-child(1)>div {
        margin-right: 8rem;
    }

    .header-list>ul>li:nth-child(3) {
        gap: 0.6rem;
    }

    /*.duyurular-flex>div>div:nth-child(1) {*/
    /*    width: 455px;*/
    /*}*/
}

@media (max-width:992px) {

    .header-list>ul>li:nth-child(2),
    .header-list>ul>li:nth-child(3) {
        display: none;
    }

    .header-dp-icon,
    .ham-menu {
        display: block;
    }

    .header-list>ul>li:nth-child(1)>div {
        margin-right: 0rem;
    }

    /*.duyurular-flex {*/
    /*    flex-direction: column;*/
    /*    align-items: center;*/
    /*}*/

    /*.duyurular-box-content {*/
    /*    height: 145px;*/
    /*}*/

    /*.duyurular-box .duyurular-box-content:hover {*/
    /*    height: 145px;*/
    /*}*/

    /*.hizmetlerimiz-img>div {*/
    /*    width: 325px;*/
    /*}*/

    .footer-flex {
        flex-wrap: wrap;
        gap: 4rem;
    }

    .avantajlar {
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-contact-box {
        flex-direction: column;
        padding: 0.5rem;
        width: 170px;
    }


    .banner-content>h2 {
        width: 100%;
    }

    .duyurular-box-content h5 {
        font-size: 1rem;
    }

    .deneyim-flex>span>span:nth-child(1) {
        font-size: 2.8rem;
    }


    .referances-area {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width:768px) {
    .banner-content {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hakkimizda-content {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 4rem 0;
    }

    .hakkimizda-img {
        display: none;
    }

    .hakkimizda::before {
        display: none;
    }

    .hakkimizda::after {
        left: 0;
        width: 100%;
    }

    .hakkimizda-content>h2::before {
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
    /*.hizmetlerimiz-grid {*/
    /*    gap: 1rem;*/
    /*}*/
    .hizmetlerimiz-content {
        height: 100%;
        color: var(--blue);
        background-color: var(--light-blue);
    }

    .hizmetlerimiz-box {
        width: 100%;
        height: auto;
    }

    .hizmetlerimiz-img>div {
        width: 100%;
    }

    .deneyim-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .detay-flex {
        flex-direction: column;
        gap: 1rem;
    }
    .detay-img {
        width: 100%;
    }
    .detay-content {
        width: 100%;
        padding: 1rem;
    }

    .duyurular-flex {
        grid-template-columns: repeat(1, 1fr);
    }

    .hizmetlerimiz-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hizmetlerimiz-content {
        max-height: 66px;
    }

    .misyon-vizyon::before {
        content: none;
    }

    .misyon-vizyon::after {
        width: 100%;
    }
}

@media (max-width:576px) {
    .ilkem-site>span {
        overflow: hidden;
        width: 50px;
    }

    .ilkem-site {
        position: absolute;
        bottom: 20px;
        right: 20px;
        z-index: 99;
        padding: 0rem;
    }

    /*.duyurular-flex>div>div:nth-child(1) {*/
    /*    width: 395px;*/
    /*}*/

    /*.duyurular-box-content {*/
    /*    bottom: 1rem;*/
    /*    height: 165px;*/
    /*}*/

    /*.duyurular-box .duyurular-box-content:hover {*/
    /*    height: 165px;*/
    /*}*/

    .hizmetlerimiz-title {
        display: flex;
        justify-content: start;
    }

    .hizmetlerimiz-title>h2::before {
        left: 0;
        transform: translateX(0);
    }

    .hizmetlerimiz-title>div>span>a {
        font-size: 14px;
    }

    .referanslar-title {
        display: flex;
        justify-content: start;
    }

    .referanslar-title>h2::before {
        left: 0;
        transform: translateX(0);
        font-size: 1rem;
    }

    .referanslar-title>div>span>a {
        font-size: 12px !important;
    }

    .referanslar-title>div>span>a {
        font-size: 14px;
    }

    .iletisim-flex {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .iletisim-form,
    .iletisim-text {
        width: 100%;
    }

    .referances-area {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:425px) {
    /*.duyurular-flex>div>div:nth-child(1) {*/
    /*    width: 285px;*/
    /*}*/

    .duyurular-box-content {
        height: 75px;
    }

    .footer-bottom>p {
        font-size: 12px;
    }
}

/* Click layer fix: keep header content above overlay when overlay hidden */
header { position: relative; z-index: 3; }




/* --- Mobile DP Menu active --- */
.header-links-dp{ pointer-events:none; }
.header-links-dp.active{
  left: 0 !important;
  pointer-events:auto;
}


/* --- Force clickable cursor --- */
a, button, .custom-btn, .btn, .btn-whatsapp, .ilkem-site a, .header-contact-box a{
  cursor: pointer !important;
  pointer-events: auto !important;
}


/* Teşvik Haritası */
.zd-tesvik-wrap{display:flex;gap:18px;align-items:stretch}
#zd-tesvik-map{height:560px;border-radius:14px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.08)}
#zd-tesvik-panel{min-height:560px;border-radius:14px;background:#fff;box-shadow:0 10px 30px rgba(0,0,0,.08);padding:18px}
#zd-tesvik-legend{display:flex;flex-wrap:wrap;gap:10px;margin:10px 0 14px}
.zd-legend-item{display:inline-flex;gap:8px;align-items:center;font-weight:600;font-size:14px}
.zd-legend-item i{width:14px;height:14px;border-radius:4px;display:inline-block}
.zd-panel-head{display:flex;flex-direction:column;gap:10px;margin-bottom:12px}
.zd-panel-head h3{margin:0;font-size:22px}
.zd-badge{color:#fff;font-weight:800;border-radius:999px;padding:6px 10px;display:inline-block;width:max-content}
.zd-panel-body p{margin:0 0 10px;line-height:1.6}
@media (max-width: 991px){
  .zd-tesvik-wrap{flex-direction:column}
  #zd-tesvik-map,#zd-tesvik-panel{min-height:420px;height:420px}
}


/* City detail tables in teşvik haritası panel */
.tesvik-detail { font-size: 14px; line-height: 1.5; }
.tesvik-detail h4 { margin: 12px 0 6px; font-size: 13px; letter-spacing: .02em; text-transform: uppercase; color: #334155; }
.tesvik-detail table.city-table { width: 100%; border-collapse: collapse; margin: 10px 0; }
.tesvik-detail table.city-table td { border: 1px solid rgba(148,163,184,.6); padding: 8px; vertical-align: top; }
.tesvik-detail table.city-table tr:nth-child(1) td { font-weight: 600; background: rgba(241,245,249,.9); }
