/* Hakkımızda ana sayfa bloğu — sadece .about-ib-home altında, tema ile çakışmayı önler */
.about-ib-home {
    --about-ib-primary: #1f5551;
    --about-ib-primary-20: rgba(31, 85, 81, 0.2);
    --about-ib-primary-50: rgba(31, 85, 81, 0.5);
    --about-ib-primary-70: rgba(31, 85, 81, 0.7);
    --about-ib-bg: #f7f7f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 85vh;
    padding: 46px 0;
    /* background: var(--about-ib-bg); */
    /* font-family: var(--body-font, "Inter", sans-serif); */
}

.about-ib-home *,
.about-ib-home *::before,
.about-ib-home *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.about-ib-home .about-ib-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-ib-home .about-ib-grid {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 7fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 80px;
}

@media (max-width: 900px) {
    .about-ib-home .about-ib-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-ib-home .about-ib-container {
        padding: 0 24px;
    }
}

.about-ib-home .about-ib-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 836 / 713;
}

.about-ib-home .about-ib-img-wrap .about-ib-slider-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-ib-home .about-ib-img-wrap .about-ib-slider-img .swiper-wrapper,
.about-ib-home .about-ib-img-wrap .about-ib-slider-img .swiper-slide {
    height: 100%;
}

.about-ib-home .about-ib-img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    width: 36%;
    height: 62%;
    background: var(--about-ib-bg);
    -webkit-transform: translate(50%, 50%) rotate(45deg);
    transform: translate(50%, 50%) rotate(45deg);
    pointer-events: none;
}

.about-ib-home .about-ib-slider-img .swiper-slide > div {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
    -webkit-transition: opacity 2000ms 500ms;
    transition: opacity 2000ms 500ms;
}

.about-ib-home .about-ib-slider-img .swiper-slide.swiper-slide-active > div {
    opacity: 1;
}

.about-ib-home .about-ib-slider-img .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about-ib-home .about-ib-content-col,
.about-ib-home .about-ib-slider-content {
    overflow: hidden;
}

.about-ib-home .about-ib-slider-content.swiper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.about-ib-home .about-ib-slider-content .swiper-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.about-ib-home .about-ib-slider-content .swiper-slide {
    height: auto;
}

.about-ib-home .about-ib-slide-label-wrap {
    overflow: hidden;
}

.about-ib-home .about-ib-slide-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 5.6px;
    color: rgba(0, 0, 0, 0.38);
    line-height: 175%;
    margin: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 700ms 700ms;
    transition: transform 700ms 700ms;
}

.about-ib-home .swiper-slide.swiper-slide-active .about-ib-slide-label {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.about-ib-home .about-ib-text-wrap {
    overflow: hidden;
}

.about-ib-home .about-ib-text-inner {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 700ms 700ms;
    transition: transform 700ms 700ms;
    padding: 18px 0 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 22px;
}

.about-ib-home .swiper-slide.swiper-slide-active .about-ib-text-inner {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.about-ib-home .about-ib-text-inner h3 {
    font-size: clamp(18px, 1.6vw, 23px);
    font-weight: 700;
    line-height: 165%;
    letter-spacing: -0.5px;
    color: #111;
    margin: 0;
    font-family: var(--title-font, "Plus Jakarta Sans", sans-serif);
}

.about-ib-home .about-ib-text-inner p {
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 180%;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}

.about-ib-home .about-ib-icons-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 28px;
}

.about-ib-home .about-ib-icon-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0 18px;
    opacity: 0;
    -webkit-transform: translateY(36px);
    transform: translateY(36px);
    -webkit-transition: opacity 700ms, -webkit-transform 700ms;
    transition: opacity 700ms, transform 700ms;
}

.about-ib-home .about-ib-icon-col:not(:last-child) {
    border-right: 1px solid var(--about-ib-primary-20);
}

.about-ib-home .swiper-slide.swiper-slide-active .about-ib-icon-col:nth-child(1) {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 700ms;
    transition-delay: 700ms;
}

.about-ib-home .swiper-slide.swiper-slide-active .about-ib-icon-col:nth-child(2) {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 820ms;
    transition-delay: 820ms;
}

.about-ib-home .swiper-slide.swiper-slide-active .about-ib-icon-col:nth-child(3) {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 940ms;
    transition-delay: 940ms;
}

.about-ib-home .about-ib-icon-col svg {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.about-ib-home .about-ib-icon-col p {
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    color: var(--about-ib-primary-70);
    max-width: 140px;
    margin: 0;
}

.about-ib-home .about-ib-bottom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 36px;
    padding-top: 52px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-ib-home .about-ib-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 44px;
    background: var(--about-ib-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-decoration: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
    clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
    -webkit-transition: background 0.3s, -webkit-clip-path 0.3s;
    transition: background 0.3s, clip-path 0.3s;
}

.about-ib-home .about-ib-btn:hover {
    background: #2a6d68;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
    color: #fff;
}

.about-ib-home .about-ib-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.about-ib-home .about-ib-bullet {
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-ib-home .about-ib-bullet.active {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.about-ib-home .about-ib-bullet .about-ib-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8c8c8;
    -webkit-transition: background 0.3s, -webkit-transform 0.3s;
    transition: background 0.3s, transform 0.3s;
    position: relative;
    z-index: 2;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.about-ib-home .about-ib-bullet:hover .about-ib-dot {
    background: #999;
}

.about-ib-home .about-ib-bullet.active .about-ib-dot {
    background: var(--about-ib-primary);
}

.about-ib-home .about-ib-bullet .about-ib-dot.about-ib-dot--anim {
    -webkit-animation: aboutIbDotPulse 4s ease-out forwards;
    animation: aboutIbDotPulse 4s ease-out forwards;
}

@-webkit-keyframes aboutIbDotPulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(31, 85, 81, 0.5);
        box-shadow: 0 0 0 0 rgba(31, 85, 81, 0.5);
    }
    25% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-box-shadow: 0 0 0 8px rgba(31, 85, 81, 0);
        box-shadow: 0 0 0 8px rgba(31, 85, 81, 0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(31, 85, 81, 0);
        box-shadow: 0 0 0 0 rgba(31, 85, 81, 0);
    }
}

@keyframes aboutIbDotPulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(31, 85, 81, 0.5);
        box-shadow: 0 0 0 0 rgba(31, 85, 81, 0.5);
    }
    25% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-box-shadow: 0 0 0 8px rgba(31, 85, 81, 0);
        box-shadow: 0 0 0 8px rgba(31, 85, 81, 0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(31, 85, 81, 0);
        box-shadow: 0 0 0 0 rgba(31, 85, 81, 0);
    }
}

.about-ib-home .about-ib-bullet svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-ib-home .about-ib-bullet .about-ib-ring {
    stroke-dasharray: 226.2;
    stroke-dashoffset: 226.2;
    stroke: #c0c0c0;
    stroke-width: 6;
    fill: none;
    -webkit-transition: none;
    transition: none;
}

.about-ib-home .about-ib-bullet.active .about-ib-ring {
    stroke: var(--about-ib-primary);
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 4s linear;
    transition: stroke-dashoffset 4s linear;
    -webkit-filter: drop-shadow(0 0 2px rgba(31, 85, 81, 0.35));
    filter: drop-shadow(0 0 2px rgba(31, 85, 81, 0.35));
}

@media (prefers-reduced-motion: reduce) {
    .about-ib-home .about-ib-bullet,
    .about-ib-home .about-ib-bullet .about-ib-dot,
    .about-ib-home .about-ib-bullet .about-ib-ring {
        -webkit-animation: none !important;
        animation: none !important;
        -webkit-transition: none !important;
        transition: none !important;
    }

    .about-ib-home .about-ib-bullet.active {
        -webkit-transform: none;
        transform: none;
    }

    .about-ib-home .about-ib-bullet .about-ib-dot.about-ib-dot--anim {
        -webkit-animation: none !important;
        animation: none !important;
    }
}

@media (max-width: 575px) {
    .about-ib-home .about-ib-icons-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-ib-home .about-ib-icon-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--about-ib-primary-20);
        padding-bottom: 20px;
    }
}
