﻿@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
* {
    box-sizing: border-box;
   
}

:root {
    --black-overlay: rgba(29, 124, 88, 1);
    --green-with-black: rgba(15, 62, 44, 0.1); /* Siyah ile karışık yeşil */
    --black-overlay: #1B4D3E; /* %10 siyah katmanı */
    /*--black-overlay:  #1B4D3E; %10 siyah katmanı */
}
/*#1d7c58*/
html, body {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 30px;
    margin: 55px !important;
    text-align: center;
    color: var(--black-overlay);

}

a:link, a:visited, a:active {
    color: var(--black-overlay) !important;
}

a:hover {
    background-color: white;
}

.header {
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    font-family: "Orbitron", sans-serif;
}

    .logo img {
        height: 60px;
        margin-left: 100px; /* Add some left margin to the logo */
    }

.navbar {
    display: flex;
    justify-content: flex-end; /* Changed to align the navbar to the right */
    align-items: center;
    margin-right: 20px; /* Add some right margin to the navbar */
}

    .navbar .nav {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .navbar .nav-link {
        position: relative;
        display: inline-block;
        background-color: transparent;
        text-decoration: none;
        color: white !important;
        font-weight: 800;
        transition: color 0.3s ease;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
    }

        .navbar .nav-link:hover {
            color: white;
        }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: white;
            transform-origin: bottom right;
            transition: transform 0.3s ease-out;
        }

        .navbar .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }


    .navbar .dropdown-menu {
        background-color: #fff; /* Drop-down arka plan rengini beyaz yapar */
    }

    .navbar .dropdown-item {
        color: var(--black-overlay); /* Drop-down öğe rengini siyah yapar */
        transition: background-color 0.3s ease;
    }

        .navbar .dropdown-item:hover {
            background-color: var(--black-overlay); /* Hover üzerinde arka plan rengini değiştirir */
            color: white !important; /* Hover üzerinde yazı rengini beyaz yapar */
        }

header .navbar-nav .nav-item {
    margin-right: 18px !important;
}

.navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* İkon ve metinlerin ortalanması */
}

    .navbar-nav .nav-item .nav-link {
        display: flex;
        flex-direction: column; /* İkonlar metnin üzerinde olacak şekilde düzenler */
        align-items: center;
        text-align: center;
        padding: 5px 0;
    }

.navbar-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* İkonun stil ayarları */
/* İkonların etrafında yarım çember oluşturma */
/* İkonların etrafında beşgen oluşturma */
/* İkonların etrafında altıgen oluşturma */
.icon-hexagon {
    position: relative;
    width: 55px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-overlay); /* Altıgenin arka plan rengi */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); /* Altıgen şekli */
    margin-bottom: 5px; /* İkon ile yazı arasındaki boşluk */
    transition: background-color 0.3s ease;
}

    /* İkonun stil ayarları */
    .icon-hexagon i {
        font-size: 20px; /* İkon boyutu */
        color: #fff; /* İkon rengi */
        position: relative;
        z-index: 2; /* İkonun altıgenin üzerinde görünmesini sağlar */
    }

/* Hover durumunda altıgenin rengini değiştirmek */
.navbar-nav .nav-link:hover .icon-hexagon {
    background-color: #145939; /* Altıgenin arka plan rengini hover durumunda değiştirir */
}

.navbar-nav .nav-item .nav-link span {
    font-size: 14px; /* Yazı boyutunu ayarlar */
}

.header.scrolled {
    background-color: var(--black-overlay);
}

.hero-div {
    position: relative;
    height: 120vh; /* Increased height */
    width: 100%;
    overflow: visible;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.caption {
    position: absolute;
    left: 50%;
    bottom: -50px; /* Burada -50px demek kutunun yarısı taşacak demek! */
    transform: translateX(-50%);
    width: 70%;
    background: linear-gradient(to bottom, rgba(10,25,47,0.98) 0%, rgba(29,124,88,0.95) 100%);
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 24px;
    font-weight: bold;
    z-index: 29;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    opacity: 0;
}

    .caption.visible {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .caption span {
        display: inline-block;
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 15px;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

.custom-caption-text {
    font-size: 21px;
    font-style: italic;
    color: white; /* veya var(--primary-color) */
   
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}



#portfolio .section-title {
    text-align: center;
    margin: 25px;
}

    #portfolio .section-title h3 {
        margin-bottom: 10px;
        color: #333;
        font-weight: bold;
    }

.button-groupa {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Menüleri ortalar */
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-menu .button-groupa input[type="button"] {
    background-color: var(--black-overlay);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

        .button-groupa button.active,
        .button-groupa button:hover {
            background: rgba(85, 194, 152, 0.2);
            color: black;
        }

.gallery-list {
    display: flex;
    flex-wrap: wrap;
    min-height: 800px;
}

.gallery-grid {
    flex: 1 0 30%;
    margin-bottom: 30px;
}

.gallery-single {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

    .gallery-single img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 1.2s ease;
    }

    .gallery-single .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 1.2s ease;
    }

    .gallery-single .des {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 10px 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-single:hover img {
        transform: scale(1.1);
    }

    .gallery-single:hover .overlay,
    .gallery-single:hover .des {
        opacity: 1;
    }

#about {
    margin-top: 130px !important;
}

.about h2 {
    margin: 40px;
}

.about h3 {
    margin-bottom: 40px;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.content-box {
    box-sizing: border-box;
    background: white;
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 1.2s;
    flex: 1 1 calc(33.333% - 40px);
}

    .content-box:hover {
        transform: scale(1.05);
    }

.header-box {
    background-color: rgba(29, 124, 88, 1);
    color: white;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    height: 80px;
}

    .header-box h3 {
        font-size: 1.5rem;
        margin: 0;
        display: flex;
        align-items: center;
    }

.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(29, 124, 88, 1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 52px;
}

.icon {
    color: white;
    font-size: 24px;
}

.content-box p {
    font-size: 1rem;
    text-align: justify;
    padding: 15px;
    line-height: 32px;
    letter-spacing: 1.5px;
}

#galeri h2 {
    font-size: 2rem;
    margin: 30px;
    text-align: center;
}

.row-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.resimalan {
    height: 300px;
    margin-left: 40px;
    margin-right: 40px;
    flex: 1 1 calc(50% - 140px);
}

    .resimalan img {
        width: 100%;
    }

.references h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

.reference-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.reference-item {
    height: 175px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 20px;
    transition: transform 1.2s;
    text-align: center;
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
}

    .reference-item:hover {
        transform: scale(1.1);
    }

    .reference-item .img-container {
        padding: 10px;
        text-align: center;
        height: 80%;
        width: 100%;
    }

        .reference-item .img-container img {
            width: 50%;
            height: 100%;
            border-radius: 5px;
        }

.stats-image {
    text-align: center;
    margin-bottom: 20px;
}

    .stats-image img {
        max-width: 100%;
        height: 550px;
        border-radius: 5px;
    }

.stats-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-box {
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    flex: 1 1 calc(25% - 20px);
    margin: 10px;
    font-weight: 600;
    transition: 1.2s;
}

    .stat-box:hover {
        transform: scale(1.2);
    }

.footer {
    background-color: var(--black-overlay);
    box-shadow: 0px 4px 10px var(--black-overlay);
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top:10px;
}

@media (max-width: 700px) {
    .header .container {
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .about .row {
        flex-direction: column;
    }

    .hero {
        font-size: 24px;
    }

    .content-box {
        flex: 1 1 100%;
    }

    .row-flex {
        gap: 20px;
    }
}

.surec-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.arrow {
    width: 200px;
    height: 70px;
    background-color: var(--black-overlay);
    box-shadow: 0px 4px 10px var(--black-overlay);
    margin-right: 50px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
    text-align: center;
    position: relative;
    transition: 1.2s;
}

    .arrow::before {
        content: '';
        width: 100px;
        height: 100px;
        background-color: var(--black-overlay);
        position: absolute;
        top: 0;
        left: 100%;
        clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    }

    .arrow:last-child {
        margin-right: 0;
    }

@keyframes changeColor {
    0% {
        background-color: var(--black-overlay);
    }

    50% {
        background-color: red;
    }

    100% {
        background-color: var(--black-overlay);
    }
}

.arrow:hover {
    transform: translate(45px, 0px);
}

.surec-a {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff; /* Optional: to ensure the shadow is visible */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    border-radius: 8px; /* Optional: to add rounded corners */
}

    .surec-a h2 {
        color: var(--black-overlay);
    }

    .surec-a p {
        color: #34495e;
    }

.whatsapp-container {
    position: fixed;
    right: 20px;
    bottom: 75px;
    z-index: 1000;
}

.whatsapp-button {
    display: block;
    width: 50px;
    height: 50px;
}

    .whatsapp-button i {
        width: 60px;
        height: 60px;
        background-color: red;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
    }

    .whatsapp-button img:hover {
        transform: scale(1.1);
    }

.flag {
    width: 20px;
    height: 15px;
    margin-right: 8px;
}

.ribbon {
    position: relative;
    margin: 0 auto 20px;
    padding: 10px 40px;
    text-align: center;
    background: linear-gradient(to bottom, #181818 0%, #1d7c58 100%);
    box-shadow: 0px 4px 10px var(--black-overlay);
    background-size: 200% 200%;
    color: white;
    font-size: 30px;
    font-weight: bold;
    transition: 1.2s;
    animation: gradientShift 5s linear infinite;
    background-size: 200% 200%;
  
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.ribbon::before, .ribbon::after {
    content: '';
    width: 80px;
    height: 100%;
    background: var(--black-overlay);
    box-shadow: 0px 4px 10px var(--black-overlay);
    background-size: 200% 200%;
    position: absolute;
    z-index: -1;
    top: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25% 50%);
    animation: gradientShift 5s linear infinite;
}

.ribbon::before {
    left: -60px;
}

.ribbon::after {
    right: -60px;
    transform: scaleX(-1);
}







.hakkimizda-h3 {
    line-height: 60px;
    text-align: center;
}

.hakkimizda-p {
    margin-top: 15px;
}



.expertise-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.expertise-title {
    font-size: 2.5em;
    color: #333;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

    .expertise-title .highlight {
        color: var(--black-overlay);
        text-decoration: underline;
    }

.expertise-description {
    font-size: 1.2em;
    color: #666;
    margin-top: 20px;
}

.highlight {
    position: relative;
    display: inline-block;
}

    .highlight::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 5px;
        left: 0;
        bottom: -5px; /* Çizginin yazının hemen altında olmasını sağlar */

        border-radius: 2px;
    }

    .highlight::after {
        content: "";
        position: absolute;
        width: 16px;
        height: 5px;
        left: 0;
        bottom: -5px; /* Hareket eden çubuğun aynı hizada olmasını sağlar */
        background-color: var(--black-overlay); /* Hareket eden çubuğun rengi */
        animation: highlight-run 5s infinite linear;
    }

@keyframes highlight-run {
    0% {
        left: 0;
    }

    100% {
        left: calc(100% - 16px);
    }
    /* Çubuğun tüm genişlik boyunca hareket etmesini sağlar */
}




.progress-containers {
    width: 100%;
    margin: 20px 0;
}

.progress-barss, .progress-bars {
    margin: 10px 0;
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    color: white;
}

    .progress-barss .skill-titles, .progress-bars .skill-titles {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        font-weight: bold;
    }

    .progress-barss .number-percentages, .progress-bars .number-percentages {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        font-weight: bold;
        color: white;
        transition: left 4s ease-in-out;
    }

.progresss {
    height: 100%;
    background-color: var(--black-overlay);
    box-shadow: 0px 4px 10px var(--black-overlay);
    width: 0;
    border-radius: 5px;
    transition: width 5s ease-in-out;
}

.iletisim {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.Marka {
    color: var(--black-overlay);
    box-shadow: 0px 4px 10px var(--black-overlay);
    background-color: #fff;
    padding: 20px;
    font-weight: bold;
    font-size: 20px;
    width: 25%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Added to display "Cebat" on top and "Teknoloji" below */
    text-align: center; /* Center align the text */
    font-family: "Orbitron", sans-serif;

}

    .Marka .top {
        font-size: 34px; /* Larger font size for "Cebat" */
        margin-bottom: 5px; /* Small margin between "Cebat" and "Teknoloji" */
    }

    .Marka .bottom {
        font-size: 24px; /* Smaller font size for "Teknoloji" */
        font-style: italic; /* Italicize "Teknoloji" for emphasis */
    }

.Fabrika, .Ofis {
    color: var(--black-overlay);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Box-shadow şeffaf ayarlandı */
    background-color: #fff;
    padding: 20px;
    width: 35%;
    margin: 0 10px;
    transition: background-color 1.8s ease, color 1.8s ease, box-shadow 1.8s ease; /* Tüm ilgili özelliklere geçiş eklendi */
}

    .Fabrika:hover, .Ofis:hover {
        color: #fff; /* Yazı renginin beyaza geçişi */
        background-color: var(--black-overlay); /* Arka plan renginin geçişi */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Box-shadow geçişi */
    }



    .Fabrika div, .Ofis div {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .Fabrika p, .Ofis p {
        margin: 5px 0;
    }



.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 60px;
    width: 50px;
    height: 50px;
    text-align: center;
    z-index: 1000;
    display: none;
    transition: background-color 0.3s;
}

.progress-circle {
    width: 35px;
    height: 35px;
    background: conic-gradient(var(--black-overlay) 0%, #eee 0%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .progress-circle span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
    }

.back-to-top.show {
    display: block;
}



@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}



.sb-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

.sb-item {
    margin-bottom: 10px;
    position: relative;
}

.sb-mask {
    width: 50px;
    height: 50px;
    background-color: var(--black-overlay);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    position: relative; /* Label'in doğru pozisyonda olması için */
    transition: width 1s ease, right 0.5s ease, opacity 0.3s ease;
}

    .sb-mask i {
        font-size: 24px;
        color: white; /* İkonların rengi beyaz */
    }

.sb-label {
    position: absolute;
    top: 0;
    right: 0; /* Başlangıç pozisyonu ikonun sağında */
    height: 50px;
    line-height: 50px;
    background-color: var(--black-overlay);
    color: white;
    padding: 0 15px;
    border-radius: 7px;
    width: 0; /* Başlangıçta genişlik 0 */
    opacity: 0; /* Başlangıçta görünmez */
    display: flex;
    align-items: center;
    white-space: nowrap; /* Metni tek satırda tut */
    margin-right: 5px;
    ;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.sb-mask:hover .sb-label {
    right: 100%; /* İkonun sağından itibaren genişlemeye başla */
    width: 130px; /* Genişliği artır */
    opacity: 1;
    visibility: visible;
}







.container-box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hakkimizda_content {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 8px;
    position: relative; /* Üçgenin konumlandırılması için gerekli */
}


.hakkimizda_icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-overlay);
    color: #fff;
    width: 120px;
    height: 130px;
    flex-shrink: 0;
    padding: 0 10px;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    margin-right: 8px;
}

    .hakkimizda_icon-container::after {
        content: '';
        position: absolute;
        right: -20px; /* Üçgenin sağ tarafa hizalanması */
        top: 20px; /* Üçgenin üstten hizalanması, başlığa yakın yerleştirir */
        width: 0;
        height: 0;
        border-left: 20px solid var(--black-overlay); /* Üçgenin rengi (arka plan rengiyle aynı) */
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }

    .hakkimizda_icon-container:hover {
        background-color: black;
    }

    .hakkimizda_icon-container i:hover {
        color: var(--black-overlay);
    }

    .hakkimizda_icon-container:hover::after {
        border-left-color: black;
    }

.icon {
    font-size: 40px;
}

.text-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hakkimizda-title {
    margin: 0 0 2px 0;
    font-size: 24px;
    color: var(--black-overlay);
    text-align: left;
    position: relative;
}

.description {
    margin: 0;
    font-size: 16px;
    color: #666;
    text-align: justify;
    line-height: 1.5;
}


.faaliyet-alan-section {
    width: 30%;
    margin: 1.66%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .faaliyet-alan-section:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.faaliyet-alan-icon-wrapper i {
    font-size: 100px;
    color: var(--black-overlay);
    transition: color 0.3s ease;
}

.faaliyet-alan-section:hover .faaliyet-alan-icon-wrapper i {
    color: #145a42;
}

.faaliyet-alan-title {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.1); /* Hafif siyah arka plan */
}





.p-proje {
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
    color: VAR(--black-overlay);
}

/* Üçgenlerin kaybolma animasyonu */
.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
}

.iletisim .Fabrika i , .Ofis i {
    margin-right: 8px;
}

.kalin {
    color: VAR(--black-overlay);
}

/* Buzz animasyonu */
/* Buzz animasyonu tanımlaması */
@keyframes buzz {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-2px);
    }

    40% {
        transform: translateX(2px);
    }

    60% {
        transform: translateX(-2px);
    }

    80% {
        transform: translateX(2px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Buzz hover efekti */
.buzz:hover {
    animation: buzz 0.2s linear 2; /* 0.2 saniyede iki kez titrer */

}

@keyframes slideRight {
    0% {
        transform: translateX(0); /* Başlangıçta orijinal pozisyon */
        opacity: 1;
    }

    100% {
        transform: translateX(600px); /* Sağa 20px kayar */
        opacity: 0;
    }
}

/* Hover sırasında sağa kayma efekti */
.slide-right:hover i{
    animation: slideRight 0.8s ease forwards; /* Sağa kayma animasyonu */
    
}



.stat-box {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

/* Altıgen şekil oluşturma */
.hexagon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.hexagon-shape {
    position: relative;
    width: 130px;
    height: 110px;
    background-color: var(--black-overlay);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

    /* Altıgen içindeki yazı */
    .hexagon-shape h3 {
        margin: 0;
        font-size: 24px;
        color: white;
    }

    .hexagon-shape p {
        margin: 0;
        font-size: 14px;
        color: white;
        margin-top: 5px;
    }
.ayrac {
    height: 5px; /* Yüksekliği içerik boyutuna göre ayarla */
    width: 100%;
    background-color: var(--black-overlay);
    display: flex;
    justify-content: center; /* Resmi yatayda ortalar */
    align-items: center; /* Resmi dikeyde ortalar */
    margin-top: 180px;
    margin-bottom: 80px;
}

    .ayrac img {
        height: 50px; /* Resmin yüksekliği artırıldı */
        margin: 0 10px; /* Resmin sağ ve sol tarafına boşluk */
        background-color: white; /* Resim çevresindeki çizgiyi görebilmek için */
    }












