/* ===================================
   Uniq Türkiye - Ana Sayfa CSS (index.css)
   =================================== */

/* Banner Section - Ana Sayfa Slider */
/* Slider içindeki yazılara Montserrat Thin (100) fontu uygula */
.index-banner-section,
.index-banner-section h1,
.index-banner-section h2,
.index-banner-section h3,
.index-banner-section p,
.index-banner-section span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
}

.index-banner-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.index-banner-carousel .index-slide-item {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.index-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
/*
.index-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(209, 33, 33, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.index-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(0, 0, 0, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.08) 87.5%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.08) 87.5%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(30deg, rgba(0, 0, 0, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.08) 87.5%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(150deg, rgba(0, 0, 0, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(0, 0, 0, 0.08) 87.5%, rgba(0, 0, 0, 0.08) 100%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    z-index: 2;
    opacity: 0.7;
    mix-blend-mode: multiply;
}
*/

.index-content-box {
    position: relative;
    z-index: 3;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Index Slide Layout */
.index-slide-layout {
    display: grid;
    grid-template-areas: 
        "left right"
        "bottom bottom";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    width: 100%;
    height: 100%;
    min-height: 80vh;
    gap: 2rem;
    align-items: start;
}

/* Index Left Side */
.index-left-side {
    grid-area: left;
    align-self: start;
    padding-top: 20rem;
    padding-left: 10rem;
}

.index-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: sliderTextFadeInUp 1s ease 0.5s forwards;
}

.index-separator-line {
    width: 600px;
    height: 2px;
    background: #4A7BC0;
    margin-bottom: 2rem;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: sliderLineExpand 0.8s ease 0.8s forwards;
}

.index-sub-title-2 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 100;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: sliderTextFadeInUp 1s ease 1.1s forwards;
}

@keyframes sliderTextFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sliderLineExpand {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Index Bottom Side */
.index-bottom-side {
    grid-area: bottom;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 4rem;
    padding-left: 10rem;
}

.index-description {
    flex: 1;
    max-width: 60%;
}

.index-description p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.index-button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.index-cta-button {
    display: inline-block;
    color: white;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: sliderTextFadeInUp 0.8s ease 1.4s forwards;
}

.index-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}
/*
.index-cta-button:hover {
    background: #6B8FCC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}


.index-cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.index-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}
*/

/* Index Slider Navigation */
.index-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.index-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-slider-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #6B8FCC;
    transform: translateY(-50%) scale(1.1);
}

.index-prev-btn {
    left: 30px;
}

.index-next-btn {
    right: 30px;
}

.index-about-section {
    position: relative;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

/* Video background */
.index-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for readability */
.index-about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 2;
}

/* Content */
.index-about-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.index-about-badge {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
}

.index-about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.index-about-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #e0e6f0;
    margin-bottom: 40px;
}

.index-about-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.index-feature-item {
    width: 250px;
}

.index-feature-item i {
    font-size: 36px;
    color: #4D73AE;
    margin-bottom: 10px;
}

.index-feature-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.index-feature-item p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 1rem;
    color: #9e9e9e;
}

/* Button */
.index-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: 0.3s ease;
}

.index-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Index Why Choose Us Sections */
.index-why-choose-us-one {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.index-why-choose-us-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Why Split Layout */
.index-why-split-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 550px;
    position: relative;
    z-index: 2;
}

/* Left Content Side */
.index-why-left-content {
    padding-right: 20px;
}

.index-why-content-wrapper {
    max-width: 100%;
}

/* Why CTA Block */
.index-why-cta-block {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.index-why-cta-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A7BC0, #6B8FCC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.index-why-cta-icon i {
    font-size: 20px;
    color: white;
}

.index-why-cta-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #000000;
    font-weight: 400;
    margin: 0;
}

/* Why Features List */
.index-why-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.index-why-feature-item-simple {
    font-family: 'Montserrat', sans-serif;
    color: #646464;
    font-size: 1rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.index-why-feature-arrow {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #4A7BC0, #6B8FCC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.index-why-feature-arrow i {
    font-size: 12px;
    color: white;
}

/* Right Image Side */
.index-why-right-image {
    position: relative;
}

.index-why-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    height: 600px;
    transform: translateY(-20px);
}

.index-why-main-image {
    width: 100%;
    height: 100%;
}

.index-why-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 🔹 Şeffaf geçiş efekti (overlay) */
.index-why-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* yarı saydam siyah */
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 20px;
}

/* 🔹 Hover olduğunda overlay belirir, görsel yakınlaşır */
.index-why-image-wrapper:hover .index-why-main-image::after {
    opacity: 0.3;
}

.index-why-image-wrapper:hover img {
    transform: scale(1.05); /* görsel hafif yakınlaşır */
}

/* Responsive Design for Why Choose Us */
@media (max-width: 1200px) {
    .index-why-split-layout {
        gap: 30px;
    }
    
    .index-why-title h3 {
        font-size: 2.5rem;
    }
    
    .index-why-image-wrapper {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .index-why-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .index-why-left-content {
        padding-right: 0;
    }
    
    .index-why-title h3 {
        font-size: 2.2rem;
    }
    
    .index-why-image-wrapper {
        height: 450px;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .index-why-choose-us-one {
        padding: 80px 0;
    }
    
    .index-why-split-layout {
        min-height: auto;
        gap: 25px;
    }
    
    .index-why-title h3 {
        font-size: 2rem;
    }
    
    .index-why-title p {
        font-size: 0.95rem;
    }
    
    .index-why-cta-block {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 18px;
    }
    
    .index-why-features-list {
        gap: 10px;
    }
    
    .index-why-feature-item-simple {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .index-why-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .index-why-title h3 {
        font-size: 1.7rem;
    }
    
    .index-why-badge {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .index-why-cta-text p {
        font-size: 0.9rem;
    }
    
    .index-why-image-wrapper {
        height: 350px;
    }
}

.index-why-choose-us-two {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.index-why-choose-us-two::before {
    display: none;
}

/* Why Split Layout Two */
.index-why-split-layout-two {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

/* Left Content Side Two */
.index-why-left-content-two {
    padding-right: 20px;
}

.index-why-content-wrapper-two {
    max-width: 100%;
}

/* Why Features Inline */
.index-why-features-inline {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.index-why-feature-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.index-why-feature-icon-inline {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.index-why-feature-icon-inline i {
    font-size: 60px;
    color: #4A7BC0;
    background: transparent;
    text-shadow: none;
}

.index-why-feature-text-inline h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    margin: 0;
    text-align: center;
}

/* Why Actions Two */
.index-why-actions-two {
    margin-top: 20px;
}

.index-btn-primary-two {
    display: inline-block;
    background: linear-gradient(135deg, #4A7BC0, #6B8FCC);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.index-btn-primary-two:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

/* Right Content Side Two */
.index-why-right-content-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Info Blocks */
.index-why-info-blocks {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.index-why-info-block h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.index-why-info-block p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.index-why-info-separator {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

/* Image Wrapper Two */
.index-why-image-wrapper-two {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    height: 600px;
}

.index-why-main-image-two {
    width: 100%;
    height: 100%;
}

.index-why-main-image-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.index-why-image-wrapper-two:hover .index-why-main-image-two img {
    transform: scale(1.05);
}

/* Bottom Block */
.index-why-bottom-block {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #4A7BC0, #6B8FCC);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.index-why-bottom-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.index-why-bottom-icon i {
    font-size: 20px;
    color: white;
}

.index-why-bottom-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Design for Why Choose Us Two */
@media (max-width: 1200px) {
    .index-why-split-layout-two {
        gap: 30px;
    }
    
    .index-why-title-two h2 {
        font-size: 2.5rem;
    }
    
    .index-why-image-wrapper-two {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .index-why-split-layout-two {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .index-why-left-content-two {
        padding-right: 0;
        text-align: center;
    }
    
    .index-why-title-two h2 {
        font-size: 2.2rem;
    }
    
    .index-why-features-inline {
        justify-content: center;
        gap: 60px;
    }
    
    .index-why-right-content-two {
        order: -1;
    }
    
    .index-why-image-wrapper-two {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .index-why-choose-us-two {
        padding: 80px 0;
    }
    
    .index-why-split-layout-two {
        min-height: auto;
        gap: 25px;
    }
    
    .index-why-title-two h2 {
        font-size: 2rem;
    }
    
    .index-why-title-two p {
        font-size: 0.95rem;
    }
    
    .index-why-features-inline {
        gap: 30px;
        margin-bottom: 25px;
    }
    
    .index-why-feature-icon-inline {
        width: 60px;
        height: 60px;
    }
    
    .index-why-feature-icon-inline i {
        font-size: 45px;
    }
    
    .index-why-feature-text-inline h4 {
        font-size: 1.1rem;
    }
    
    .index-why-info-blocks {
        padding: 20px;
    }
    
    .index-why-info-block h4 {
        font-size: 1.1rem;
    }
    
    .index-why-info-block p {
        font-size: 0.85rem;
    }
    
    .index-why-image-wrapper-two {
        height: 280px;
    }
    
    .index-why-bottom-block {
        padding: 18px 22px;
    }
    
    .index-why-bottom-icon {
        width: 45px;
        height: 45px;
    }
    
    .index-why-bottom-text h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .index-why-title-two h2 {
        font-size: 1.7rem;
    }
    
    .index-why-badge-two {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .index-why-features-inline {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .index-why-feature-icon-inline {
        width: 50px;
        height: 50px;
    }
    
    .index-why-feature-icon-inline i {
        font-size: 35px;
    }
    
    .index-why-image-wrapper-two {
        height: 250px;
    }
    
    .index-why-bottom-block {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px 20px;
    }
}

/* Why Content */
.index-why-content,
.index-why-content-two {
    position: relative;
    z-index: 2;
}

/* Why Badge */
.index-why-badge i {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4A7BC0;
}

.index-why-badge-two i {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4A7BC0;
}

.index-why-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    margin-bottom: 20px;
    color: #4A7BC0;
}

.index-why-badge-two span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    margin-bottom: 20px;
    color: #4A7BC0;
}

/* Why Title */
.index-why-title h3,
.index-why-title-two h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000000;

}

.index-why-title p,
.index-why-title-two p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #646464;
    margin-bottom: 18px;
}

/* Why Features */
.index-why-features {
    margin-bottom: 50px;
}

.index-why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.index-why-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    transition: width 0.3s ease;
}

.index-why-feature-item:hover::before {
    width: 8px;
}

.index-why-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.index-why-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.index-why-feature-icon i {
    font-size: 28px;
    color: white;
}

.index-why-feature-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.index-why-feature-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Why Grid */
.index-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.index-why-grid-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.index-why-grid-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.index-why-grid-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A7BC0, #6B8FCC);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.index-why-grid-icon i {
    font-size: 32px;
    color: white;
}

.index-why-grid-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.index-why-grid-item p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

/* Why Image Containers */
.index-why-image-container,
.index-why-image-container-two {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.index-why-image-container-two {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.index-why-image-overlay,
.index-why-image-overlay-two {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
}

.index-why-overlay-content h3,
.index-why-overlay-content-two h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.index-why-overlay-content p,
.index-why-overlay-content-two p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Why Actions */
.index-why-actions,
.index-why-actions-two {
    display: flex;
    gap: 20px;
    align-items: center;
}

.index-feature-block {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.index-feature-block:hover {
    transform: translateY(-5px);
}

.index-feature-block .icon {
    font-size: 3rem;
    color: #4A7BC0;
    margin-bottom: 1rem;
}

.index-feature-block h4 {
    color: #333;
    margin-bottom: 1rem;
}

.index-feature-block .text {
    color: #666;
    line-height: 1.6;
}

/* Index Stats Section */
.index-stats-section {
    padding: 80px 0;
    background: #4A7BC0;
    color: white;
}

.index-stats-section .sec-title h2 {
    color: white;
}

.index-stats-section .sec-title .text {
    color: rgba(255, 255, 255, 0.8);
}

.index-counter-block {
    text-align: center;
    padding: 2rem;
}

.index-counter-block .count-text {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.index-counter-block .counter-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Index Call to Action */
.index-call-to-action-three {
    position: relative;
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.index-call-to-action-three .index-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.index-call-to-action-three .auto-container {
    position: relative;
    z-index: 2;
}

.index-call-to-action-three h2 {
    color: white;
    margin-bottom: 1rem;
}

.index-call-to-action-three .text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Index Owl Carousel Customization */
.index-banner-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.index-banner-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.index-banner-carousel .owl-dots .owl-dot.active {
    background: #4A7BC0;
    transform: scale(1.2);
}

.index-banner-carousel .owl-dots .owl-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/*** 

====================================================================
        Call To Action Three
====================================================================


.call-to-action-three {
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}
.call-to-action-three .bg-shape {
    background-image: url(../images/shape-11.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 62.9%;
    z-index: 1;
}
@media (max-width: 1199.98px) {
.call-to-action-three .bg-shape {
    width: 80%;
}
}
@media (max-width: 991.98px) {
.call-to-action-three .bg-shape {
    display: none;
}
}
.call-to-action-three .bg-image {
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 61.1%;
}
.call-to-action-three .bg-image:before {
    background-color: #121923;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.7;
}
@media (max-width: 991.98px) {
.call-to-action-three .bg-image {
    width: 100%;
}
}
.call-to-action-three .sec-title {
margin-bottom: 25px;
}
.call-to-action-three .sec-title h2 {
font-size: 32px;
}
@media (max-width: 767.98px) {
.call-to-action-three .sec-title h2 {
    font-size: 28px;
}
.call-to-action-three .sec-title h2 br {
    display: none;
}
}
.call-to-action-three .title-column {
    position: relative;
    z-index: 3;
}
.call-to-action-three .title-column h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
}
.call-to-action-three .title-column .inner-column {
    padding-right: 30px;
}
@media (max-width: 991.98px) {
.call-to-action-three .title-column h2 {
    font-size: 24px;
}
.call-to-action-three .title-column .inner-column {
    padding: 0;
    text-align: center;
}
}
@media (max-width: 767.98px) {
.call-to-action-three .title-column h2 {
    font-size: 20px;
}
}
.call-to-action-three .btn-column {
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
}
.call-to-action-three .btn-column .inner-column {
    text-align: right;
    padding-top: 15px;
}
.call-to-action-three .theme-btn {
    background-color: #4A7BC0;
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 20px;
}
***/

/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Headline 1 - Typewriter effect with blue glow */
.headline-1 {
    transform: translateY(40px);
    overflow: hidden;
}

.headline-1.animate {
    opacity: 1;
    transform: translateY(0);
    color: #0b0b0b;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: typewriterGlow 1.3s ease-out;
}

/* Headline 2 - Typewriter effect with green glow */
.headline-2 {
    transform: translateY(40px);
    overflow: hidden;
}

.headline-2.animate {
    opacity: 1;
    transform: translateY(0);
    color: #000000;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: typewriterGlow 1.3s ease-out;
}

/* Headline 3 - Typewriter effect with glow */
.headline-3 {
    transform: translateY(40px);
    overflow: hidden;
}

.headline-3.animate {
    opacity: 1;
    transform: translateY(0);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: typewriterGlow 1.3s ease-out;
}

/* Keyframe Animations */

@keyframes typewriterGlow {
    0% {
        transform: translateY(100px);
        opacity: 0;
        text-shadow: 0 0 0px rgba(255, 255, 255, 0);
    }
    30% {
        transform: translateY(20px);
        opacity: 0.6;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    70% {
        transform: translateY(-5px);
        opacity: 0.9;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    }
}

/* Additional effects for each headline - No background effects */
.headline-1.animate {
    position: relative;
}

.headline-2.animate {
    position: relative;
}

.headline-3.animate {
    position: relative;
}

/* Slide animations for Neden Uniq Türkiye sections */
.scroll-slide-right {
    opacity: 1 ;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scroll-slide-left {
    opacity: 1;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.scroll-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Animation for Items */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 991.98px) {
.call-to-action-three .btn-column .inner-column {
    text-align: center;
    padding-top: 0;
}
}