:root {
    --primary-color: #005082; /* Mavi */
    --primary-color-low: rgba(0, 80, 130, 0.5);
    --primary-color-dark: #003c66;

    --secondary-color: #adb5bd; /* Açık Gri */
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;


    --bg-color: #f8f9fa; /* Beyaz */
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e9ecef;

    --text-dark: #343a40; /* Koyu Gri */
    --text-dark-low: #495057;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa; /* Beyaz */
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #005082; /* Daha koyu ve soft mavi */
    --button-color-low: rgba(0, 80, 130, 0.5);
    --button-color-dark: #003c66;
}




.btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: var(--button-color);
    color: var(--text-light);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary i {
    margin-left: 10px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--button-color-dark);
    transform: translateY(-2px);
}

.btn-primary:hover i {
    transform: translateX(5px);
}



.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 100%;
}



[data-lineanim] svg line {
    stroke-width: 2;
    stroke: var(--primary-color-low)!important;
    stroke-linecap: round;
}




.loaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;  
    z-index: 99999999; 
    background-color: var(--card-bg);
}

.loaderWrapper .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    

}

.loaderWrapper .bg .boxFlex {
    display: flex;
    justify-content: center;
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.loaderWrapper .bg .boxFlex.horizontal {
    flex-direction: column;
    align-items: start;
}

.loaderWrapper .bg .boxFlex.vertical {
    flex-direction: row;
    align-items: start;
}

.loaderWrapper .bg .box {
    height: 100%;
    width: 100%;
}

.loaderWrapper .bg .box.horizontal {
    background-color: var(--card-bg);
}

.loaderWrapper .bg .box.vertical {
    background-color: var(--secondary-color);
}

.loaderWrapper .loaderLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42%;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 99999;
}

.loaderWrapper .loaderLogo .logoInner {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.loaderWrapper .loaderLogo svg {
    width: 100%;
    height: 100%;
}

.loaderWrapper .loaderLogo img {
    position: absolute;
    top: -15%;
    left: 40%;
    height: 130%;
    width: auto;
    object-fit: cover;


}


/* loader Responsive styles */

@media (max-width: 1250px) {
    .loaderWrapper .loaderLogo {
        width: 60%;
    }
}

@media (max-width: 1000px) {
    .loaderWrapper .loaderLogo {
        width: 70%;
    }

    .loaderWrapper .loaderLogo img {
        top: -16%;
        left: 40%;
        height: 120%;
    }
}

@media (max-width: 800px) {
    .loaderWrapper .loaderLogo {
        width: 80%;
    }
}



.hero-section {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 130px;
    z-index: 1;
}

.hero-section .bg {
    width: 100%;
    height: 100%;
    position: relative;

    
    display: flex;
    justify-content: space-between;
}

.hero-section .bg .box {

    width: 35%;
    height: 100%;
    position: absolute;
    top: 0;
    overflow: visible;
}

.hero-section .bg .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 4px),
        linear-gradient(rgba(7, 105, 131, 0.7), rgba(7, 105, 131, 0.7));
    background-size: 8px 8px;
    z-index: 2;
    opacity: 0.3;
}


.hero-section .bg .box.left {
    clip-path: polygon(0 0, 100% 0, calc(100% - 100px) 100%, 0 100%);
    width: 77%;
    left: 0;
    background: linear-gradient(120deg, 
        var(--primary-color-dark) 0%, 
        var(--primary-color) 50%);
    animation: heroLeft 2s ease-in-out forwards;
    animation-delay: 1.3s;
}

.hero-section .bg .box.right {
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0% 100%);
    right: 0;
    width: 26.3%;
    background: linear-gradient(240deg, 
        var(--primary-color-dark) 0%, 
        var(--primary-color) 50%);
    animation: heroRight 2s ease-in-out forwards;
    animation-delay: 1.3s;
}

@keyframes heroLeft {
    0% {
        transform: translateX(-20%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    100% {
        transform: translateX(0);
        clip-path: polygon(0 0, 100% 0, calc(100% - 100px) 100%, 0 100%);
    }
    
}

@keyframes heroRight {
    0% {
        transform: translateX(60%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    100% {
        transform: translateX(0);
        clip-path: polygon(100px 0, 100% 0, 100% 100%, 0% 100%);
    }
}

.hero-section .bg .middle {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 50%;
    transform: translateY(-50%);
    right: 19.5%;
    background: linear-gradient(120deg, 
        var(--primary-color-dark) 0%, 
        var(--primary-color) 50%);
    z-index: 100;
    border-radius: 50%;
    border: 20px solid var(--bg-color);

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .bg .middle .icon-div {
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--bg-color);
}

.hero-section .bg .middle .icon-div img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
}


.hero-section .bg .middle .icon-div i {
    font-size: 3rem;
    color: var(--primary-color-dark);
    transition: all 0.3s ease;
}

.hero-section .content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1000;
    color: var(--text-light);
    max-width: 1400px;
    width: 100%;
}

.hero-section .content-container .content {
    position: relative;
    z-index: 1000;
    padding: 0 20px;
    max-width: 800px;
}

.hero-section .content-container .content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-section .content-container .content h1 span {
    color: var(--tertiary-color);
}



.hero-section .content-container .content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Hero section responsive styles */
@media (max-width: 1250px) {

    .hero-section .bg .box.left {
        width:88%;
    }

    .hero-section .bg .box.right {
        width: 18%;
    }

    .hero-section .bg .middle {
        width: 120px;
        height: 120px;
        right: 8%;
    }

    .hero-section .bg .middle .icon-div {
        width: 80%;
        height: 80%;
    }

    .hero-section .bg .middle .icon-div i {
        font-size: 2rem;
    }
}

@media (max-width: 1000px) {
    .hero-section .bg .box.left {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        animation: none;
    }
    

    .hero-section .bg .box.right {
        display: none;
    }

    .hero-section .bg .middle {
        display: none;
    }

    .hero-section .content-container {
        transform: translateY(-50%) translateX(-50%);
        background: linear-gradient(120deg, 
            var(--primary-color-dark) 0%, 
            var(--primary-color) 50%);
        padding: 20px;
    }

    .hero-section .content-container .content h1 {
        font-size: 3rem;
    }

    .hero-section .content-container .content p {
        font-size: 1.5rem;
    }

    .hero-section .content-container .content h1 span {
        font-size: 2.5rem;
    }

    .hero-section {
        height: auto;
        width: 100%;
        margin-top: 4rem;
    }
    
}

@media (max-width: 800px) {
    .hero-section .content-container .content h1 {
        font-size: 2.2rem;
    }

    .hero-section .content-container .content p {
        font-size: 1.2rem;
    }

    .hero-section .content-container .content h1 span {
        font-size: 2.4rem;
    }

    .hero-section {
        margin-top: 4rem;
    }

}


@media (max-width: 600px) {
    .hero-section .content-container .content h1 {
        font-size: 2rem;
    }

    .hero-section .content-container .content p {
        font-size: 1rem;
    }

    .hero-section .content-container .content h1 span {
        font-size: 1.8rem;
    }

}

.container {
    position: relative;
    z-index: 1;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

