.c-item {
    height: 690px;
  }
  
  .c-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
  }


.container-slogan {
    text-align: center;
    width: 100%;
    height: 300px;
    position: relative;
    background-color: #fbf5f5;
}
.slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .container-slogan {
        height: 250px;
    }
    .slogan {
        padding: 80px;
        font-size: 50px;
    }
    
}

@media screen and (max-width: 768px) {
    .container-slogan {
        height: 200px;
        padding-top: 10px;
    }
    .slogan {
        padding: 50px;
        font-size: 40px;
    }
}

@media screen and (max-width: 480px) {
    .container-slogan {
        height: 150px;
    }
    .slogan {
        padding-bottom: 30px;
        font-size: 25px;
    }
}

.container-about {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin: 10px;
}

.about-foto {
    width: 50%;
    height: auto;
    padding: 20px;
}

.about-foto img {
    width: 100%;
    height: 550px;
    border-radius: 10px;
}

.about-icerik {
    width: 50%;
    height: 500px;
    padding: 20px;
}
.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #303030;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    margin-top: 30px;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
  .button:hover .icon {
    transform: translate(4px);
  }
  
  .button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }

.about-icerik h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px; 
}
.highlight-heating {
    color: var(--black-color);
}


.about-icerik p {
    font-size: 22px;
    line-height: 1.6;
    color: #666; 
    margin-top: 20px; 
}

.more-info {
    text-align: right;
    margin-top: 20px;
}

.more-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: var(--black-color)
}

@media screen and (max-width: 1024px) {
    .about-foto {
        width: 100%; 
    }

    .about-foto img {
        max-height: 450px; 
    }

    .about-icerik {
        width: 100%; 
        height: auto; 
    }

    .about-icerik h2 {
        font-size: 35px; 
    }

    .about-icerik p {
        font-size: 18px;
    }
    
}

@media screen and (max-width: 768px) {
    .about-foto {
        width: 100%;
        height: auto;
    }
    .container-about {
        height: auto;
        flex-direction: column;
    }

    .about-foto img {
        max-height: 350px; 
    }
    .about-icerik {
        width: 100%;
        height: auto;
    }

    .about-icerik h2 {
        font-size: 30px;
        margin-bottom: 10px; 
    }

    .about-icerik p {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
    .container-about {
        height: auto; 
        flex-direction: column; 
    }

    .about-foto {
        width: 100%; 
    }

    .about-foto img {
        max-height: 250px; 
    }

    .about-icerik {
        width: 100%; 
        height: auto; 
    }

    .about-icerik h2 {
        font-size: 25px; 
    }

    .about-icerik p {
        font-size: 14px;
    }
}

.product-icerik {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}
.highlight-our {
    color: var(--black-color);
}
.product-icerik h1 {
    font-size: 60px;
    font-weight: bold;
    color: #303030
}

.product-icerik p {
    font-size: 24px; 
    line-height: 1.5; 
    color: #666; 
    margin-top: 20px; 
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-item img {
    width: 100%;
    max-height: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px 10px 0 0;
    display: block;
    margin: 0 auto;
}

.product-item .product-info {
    background-color: rgba(255, 255, 255, 0.8); 
    color: #fff; 
    padding: 10px; 
    text-align: center; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    transition: opacity 0.3s ease; 
}

.product-item:hover .product-info {
    opacity: 1; 
}

.product-item .product-info h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
}

.product-item .product-info p {
    font-size: 10px;
    color: #666;
    margin-bottom: 20px;
}

.product-item .product-info a {
    display: block;
    padding: 8px 16px;
    background-color: #e84242;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product-item .product-info a:hover {
    background-color: #c62d2d;
} */


.container-product-2 {
    width: 80%;
    padding: 40px;
    box-sizing: border-box;
    margin: 0 auto;
}

.highlight-our {
    color: #4b8800;
}

.product-2-info,
.products-2-logo {
    width: 48%;
    box-sizing: border-box;
}

.product-2-info {
    float: left;
    text-align: left;
    padding: 20px;
    margin-top: 50px;
}

.products-2-logo {
    margin-top: 20px;
    padding: 20px;
    float: right;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.product-logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    overflow: hidden;
    perspective: 1000px; 
}

.product-logo-container img {
    width: 100%;
    height: 100%;
    display: block;
    backface-visibility: hidden; 
    transition: transform 0.6s ease; 
}

.product-logo-container .logo-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: rotateY(180deg); 
    backface-visibility: hidden; 
    transition: transform 0.6s ease;
}

.product-logo-container:hover img {
    transform: rotateY(180deg); 
}

.product-logo-container:hover .logo-back {
    transform: rotateY(0); 
}

.container-product-2:after {
    content: "";
    display: table;
    clear: both;
}

.product-2-info p,
.products-2-logo p {
    margin: 0;
    padding: 0;
    font-size: 28px;
    line-height: 1.6;
}

.product-2-info {
    padding-left: 5%;
}

.products-2-logo {
    padding-right: 5%;
}

/* Her logo için arka plan resmi eklemek */
.logo-1 .logo-back {
    background-image: url('/images/logolar/control-unit-arkaplan.png');
}

.logo-2 .logo-back {
    background-image: url('/images/logolar/electric-radiator-controllers-arkaplan.png');
}

.logo-3 .logo-back {
    background-image: url('/images/logolar/eco-design-arkaplan.png');
}

.logo-4 .logo-back {
    background-image: url('/images/logolar/havlupan-arkaplan.png');
}
.logo-5 .logo-back {
    background-image: url('/images/logolar/fan-arkaplan.png');
}
.logo-6 .logo-back {
    background-image: url('/images/logolar/elektronik-arkaplan.png');
}
.logo-7 .logo-back {
    background-image: url('/images/logolar/basic-heating-element-arkaplan.png');
}
.logo-8 .logo-back {
    background-image: url('/images/logolar/panel-fan-controller-arkaplan.png');
}
.logo-9 .logo-back {
    background-image: url('/images/logolar/dry-products-arkaplan.png');
}


@media screen and (max-width: 1024px) {
    .product-2-logo {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }

    .product-logo-container {
        width: 100px;
        height: 100px;
    }
    .container-product-2 {
        padding: 30px 10px;
    }

    .product-icerik h1 {
        font-size: 2em;
    }

    .product-2-info p {
        font-size: 20px; 
        line-height: 1.4; 
    }
    
}

@media screen and (max-width: 768px) {
    .product-2-logo {
        grid-template-columns: repeat(1, 1fr); 
        gap: 15px;
    }

    .product-logo-container {
        width: 100px;
        height: 100px;
    }
    .container-product-2 {
        padding: 30px 10px;
    }

    .product-icerik h1 {
        font-size: 2em;
    }

    .product-2-info p {
        font-size: 16px; 
        line-height: 1.4; 
    }
}
@media screen and (max-width: 480px) {
    .product-2-info {
        width: 100%; 
        margin-bottom: 20px;
    }

    .products-2-logo {
        width: 100%; 
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px;
        justify-content: center;
        margin: 0 auto; 
    }

    .product-logo-container {
        width: 140px;
        height: 140px;
    }
}

/* home - why chouse us start */

.container-why {
    padding: 50px;
    text-align: center;
    background-color: #ffffff;
    width: auto;
    margin: 30px;
}
.container-why h1 {
    font-size: 60px;
    color: #303030;
    font-weight: bold;
}
.container-why p {
    font-size: 20px;
    line-height: 1.5;
    color: #666;
    margin-top: 20px;
    max-width: 100%;
}

.additional-box {
    width: calc(25% - 40px);
    height: 360px;
    margin: 20px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.why-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 100px;
}

.additional-box:hover {
    transform: translateY(-25px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.additional-box h1 {
    margin-top: 20px;
    font-size: 30px;
    color: var(--black-color);
}

.additional-box p {
    margin-top: 20px;
    font-size: 15px;
    max-width: 100%;
}

.additional-box i {
    margin-bottom: 10px;
    font-size: 50px;
}

.box-fast,
.box-test,
.box-flex,
.box-eco {
    height: 100%;
}
/* home - why chouse us end  */

/* baglanti start */

.baglanti {
    padding: 50px 10%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.baglanti-icerik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.baglanti-metni {
    flex-basis: 50%;
    text-align: right;
    padding-right: 20px;
}

.baglanti-metni h2 {
    font-size: 60px;
    font-weight: bold;
    color: #303030
}

.baglanti-metni h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    border-bottom: #97a18a solid 1px;
}

.baglanti-metni p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.baglanti-gorsel {
    flex-basis: 50%;
    text-align: center;
}

.baglanti-gorsel img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media screen and (max-width: 1024px) {
    .baglanti {
        padding: 40px 5%; 
    }

    .baglanti-metni h2 {
        font-size: 48px; 
    }

    .baglanti-metni h3 {
        font-size: 24px; 
    }

    .baglanti-metni p {
        font-size: 16px; 
    }
}

@media screen and (max-width: 768px) {
    .baglanti {
        flex-direction: column; 
        padding: 30px 5%; 
    }

    .baglanti-metni {
        text-align: center; 
        padding-right: 0; 
        padding-bottom: 20px; 
    }

    .baglanti-metni h2 {
        font-size: 36px; 
    }

    .baglanti-metni h3 {
        font-size: 22px; 
    }

    .baglanti-metni p {
        font-size: 15px;
    }

    .baglanti-gorsel {
        text-align: center; 
    }
}

@media screen and (max-width: 480px) {
    .baglanti {
        padding: 20px 5%; 
        display: flex;
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }

    .baglanti-icerik {
        flex-direction: column; 
        align-items: center; 
    }

    .baglanti-metni {
        flex-basis: auto; 
        padding-right: 0; 
        margin-bottom: 20px; 
    }

    .baglanti-gorsel {
        flex-basis: auto; 
    }

    .baglanti-gorsel img {
        width: 100%;
        height: auto;
    }

    .baglanti-metni h2 {
        font-size: 28px; 
    }

    .baglanti-metni h3 {
        font-size: 18px; 
    }

    .baglanti-metni p {
        font-size: 14px; 
    }
}






@media screen and (max-width: 1024px) {
    .container-why {
        padding: 30px; 
        margin: 10px; 
    }

    .container-why h1 {
        font-size: 40px; 
    }

    .container-why p {
        font-size: 18px; 
    }

    .additional-box {
        width: calc(100% - 40px); 
        height: auto; 
        margin: 10px 0; 
    }

    .why-item {
        margin-top: 50px; 
    }

    .additional-box h1 {
        font-size: 25px; 
    }

    .additional-box p {
        font-size: 15px;
    }

    .additional-box i {
        font-size: 40px;
    }
    
}

@media screen and (max-width: 768px) {
    .container-why {
        padding: 20px; 
        margin: 10px;
    }

    .container-why h1 {
        font-size: 30px; 
    }

    .container-why p {
        font-size: 15px; 
    }

    .additional-box {
        width: calc(100% - 40px); 
        height: auto; 
        margin: 10px 0; 
    }

    .why-item {
        margin-top: 30px; 
    }

    .additional-box h1 {
        font-size: 18px;
    }

    .additional-box p {
        font-size: 12px; 
    }

    .additional-box i {
        font-size: 25px; 
    }
} 