/* Hero Section */
.custom-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;  
    align-items: center;     
}

.custom-hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-carousel-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, left 1s ease-in-out;
}

.custom-carousel-slide.active {
    left: 0;
    opacity: 1;
}

.custom-hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(90%);
}

.custom-hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
    max-width: 1000px;
    padding: 20px 40px; 
    margin: 0 20px;      
    text-shadow: 3px 3px 9px rgba(0, 0, 0, 0.8); 
}

.custom-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.custom-hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.custom-hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.custom-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #43A047;
    color: #FFF;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-cta-button:hover {
    background-color: #388E3C;
}

.custom-carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 20;
}

.custom-prev-btn, .custom-next-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    user-select: none;
    border: none;
    outline: none;
}
@media (max-width: 1200px) {
    .custom-hero-content h1 {
        font-size: 36px;
    }

    .custom-hero-content h2 {
        font-size: 28px;
    }

    .custom-hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .custom-hero-content h1 {
        font-size: 32px;
    }

    .custom-hero-content h2 {
        font-size: 26px;
    }

    .custom-hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .custom-hero-content h1 {
        font-size: 28px;
    }

    .custom-hero-content h2 {
        font-size: 24px;
    }

    .custom-hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .custom-hero-content h1 {
        font-size: 24px;
    }

    .custom-hero-content h2 {
        font-size: 22px;
    }

    .custom-hero-content p {
        font-size: 14px;
    }

    .custom-cta-button {
        font-size: 12px;
        padding: 10px 20px;
    }
}




/* Biz Kimiz? */

.about-section {
    padding: 50px 0;
    text-align: center;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.title {
    font-size: 46px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
    transform: translateX(-100px); 
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}
.title-hizmet {
    font-size: 46px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
    transform: translateX(-100px); 
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}
.title-aku {
    font-size: 46px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
    transform: translateX(-100px); 
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}

.content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateX(100px); 
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}

.line {
    width: 100px;
    height: 4px;
    background-color: #ff0000;
    margin: 0 auto 20px;
} 

.content p {
    font-size: 28px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #ffc107;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 24px;
    margin-top: 30px;
}

.button:hover {
    background-color: #e0a800;
}

.show {
    opacity: 1;
    transform: translateX(0);
}



/* services */

.custom-services-section {
    margin-top: 50px;
    padding: 50px 0;
    text-align: center;
}

.custom-container {
    width: 80%;
    margin: 0 auto;
}

.custom-title-hizmet {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.custom-services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.custom-service-box {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 30%;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 0;
    opacity: 0;
    transform: translateX(100px); 
    transition: all 1.8s ease;
}

.custom-service-box:nth-child(1) {
    transition-delay: 0s;
    transition-duration: 0.6s;
}

.custom-service-box:nth-child(2) {
    transition-delay: 0.3s;
    transition-duration: 0.9s;
}

.custom-service-box:nth-child(3) {
    transition-delay: 0.6s;
    transition-duration: 1.2s;
}

.custom-service-box.show {
    opacity: 1;
    transform: translateX(0);
}

.custom-service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 193, 7, 0.2);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.custom-service-box:hover::before {
    opacity: 1;
}

.custom-service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-color: #ffc107;
}

.custom-service-box img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 2px solid #ffc107;
    transition: transform 0.3s ease;
}

.custom-service-box:hover img {
    transform: scale(1.1);
}

.custom-service-content {
    padding: 20px;
}

.custom-service-content h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.custom-service-content h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #ffc107;
    left: 0;
    bottom: -10px;
    transition: width 0.3s ease;
}

.custom-service-box:hover .custom-service-content h2::after {
    width: 100%;
}

.custom-service-content p {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.custom-service-box:hover .custom-service-content p {
    opacity: 1;
}

.custom-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    
}

.custom-buttons-container a {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.8s ease;
    text-decoration: none;
    display: inline-block;
    padding: 10px 30px;
    background-color: #ffc107;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 24px;
}

.custom-buttons-container a.show {
    opacity: 1;
    transform: translateY(0);
}


@media screen and (max-width: 576px) {
    .custom-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
}

.service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 18px;
    color: #fff;
    background: #4b8800;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-button i {
    font-size: 20px;
    margin-right: 10px;
}

.service-button:hover {
    background: #3a6c00;
    transform: scale(1.05);
}

.service-button:active {
    background: #2a4d00;
}


/* Services Responsive Start */

@media (max-width: 992px) {
    .custom-service-box {
        width: 45%; 
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .custom-services {
        flex-direction: column; 
        align-items: center;
    }
    .custom-service-box {
        width: 100%; 
        margin-bottom: 20px;
    }
}
@media (max-width: 576px) {
    .custom-services {
        flex-direction: column; 
        align-items: center;
    }
    .custom-service-box {
        width: 100%; 
        margin-bottom: 20px;
    }
}
/* services responsive end */



.new-services {
    padding: 50px 0;
    background-color: #57279f;
}

.new-services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.new-service-item {
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    text-align: left;
    opacity: 0; 
    transform: translateX(100px); 
    transition: all 0.5s ease-out; 
}
.new-service-item.show {
    opacity: 1;
    transform: translateX(0); 
}

.new-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.new-service-title {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
}

.new-service-description {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 0;
}

/* new services responsive start */


@media (max-width: 992px) {
    .new-service-item {
        width: 45%;
    }
}

@media (max-width: 767px) {
    .new-service-title {
        font-size: 20px;
    }

    .new-service-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .new-service-icon {
        width: 40px;
        height: 40px;
    }

    .new-service-title {
        font-size: 18px;
    }

    .new-service-description {
        font-size: 14px;
    }
}

/* new services responsive end */


/* slider start */

.custom-slider {
    position: relative;
    width: 70%;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.slider-item {
    position: absolute;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    text-align: center;
    z-index: 1;
    transform: scale(0.6);
    width: 200px;
    left: 40%;
    transform: translateX(-50%);
}

.slider-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
    width: 300px;
}

.slider-item.prev, .slider-item.next {
    opacity: 0.5;
    z-index: 1;
    transform: scale(0.6);
}

.slider-item.prev {
    left: 20%;
}

.slider-item.next {
    left: 65%;
}

.slider-controls {
    position: absolute;
    top: 35%;
    left: 10%;
    right: 10%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-controls button {
    background: #4b8800;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    font-size: 22px;
}

.slider-controls button:hover {
    background: #3a6c00;
}

.slider-controls button:active {
    background: #2a4d00;
}

.brand-name {
    margin-top: 30px;
    font-size: 32px;
    font-weight: bold;
    color: #333;
}



/* slider end */

/* slider responsive start */

@media (max-width: 1200px) {
    .custom-slider {
        width: 80%;
        height: 450px;
    }

    .slider-item.active {
        width: 280px;
    }

    .slider-item {
        width: 180px;
        left: 40%;
    }
    .slider-item img {
        width: 90%;
        height: auto;
    }

    .brand-name {
        font-size: 28px;
    }

    .slider-controls button {
        padding: 12px;
        font-size: 20px;
    }
    .slider-item.prev {
        left: 20%;
    }
    
    .slider-item.next {
        left: 70%;
    }
    .slider-controls {
        top: 25%;
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 992px) {
    .custom-slider {
        width: 85%;
        height: 400px;
    }

    .slider-item.active {
        width: 250px;
    }

    .slider-item {
        width: 160px;
        left: 35%;
    }
    .slider-item img {
        width: 80%;
        height: auto;
    }

    .brand-name {
        font-size: 24px;
    }
    .slider-item.prev {
        left: 15%;
    }
    
    .slider-item.next {
        left: 65%;
    }
    .slider-controls {
        top: 30%;
        left: 5%;
        right: 5%;
    }

    .slider-controls button {
        padding: 10px;
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .custom-slider {
        width: 90%;
        height: 350px;
    }

    .slider-item.active {
        width: 220px;
    }

    .slider-item {
        width: 140px;
        left: 30%;
    }

    .slider-item img {
        width: 70%;
        height: auto;
    }

    .brand-name {
        font-size: 20px;
    }
    .slider-item.prev {
        left: 10%;
    }
    
    .slider-item.next {
        left: 65%;
    }
    .slider-controls {
        top: 25%;
        left: 5%;
        right: 5%;
    }

    .slider-controls button {
        padding: 8px;
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .custom-slider {
        width: 100%;
        height: 300px;
    }

    .slider-item.active {
        width: 200px;
    }

    .slider-item {
        width: 90px;
        left: 25%;
    }

    .slider-item img {
        width: 60%;
        height: auto;
    }

    .brand-name {
        font-size: 18px;
    }

    .slider-controls button {
        padding: 6px;
        font-size: 14px;
    }
    .slider-item.prev {
        left: 10%;
    }
    
    .slider-item.next {
        left: 65%;
    }
    .slider-controls {
        top: 25%;
        left: 5%;
        right: 5%;
    }
}

/* slider responsive end */

/* aküler start */

.akuler {
    margin-top: 70px;
    margin-bottom: 50px;
}

.slider-p {
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    font-size: 24px;
    color: #333;
    font-weight: bold;
    gap: 40px; 
    padding-bottom: 30px;
    margin-bottom: 50px;
}
.slider-p a {
    text-decoration: none;
}

.slider-button {
    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: #ff0000;
    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: 24px;
    position: relative;
}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.slider-button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.slider-button:hover .icon {
    transform: translate(4px);
}

.slider-button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.slider-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%;
    }
}

@media (max-width: 1200px) {
    .slider-p {
        font-size: 22px;
        gap: 15px;
    }

    .slider-button {
        font-size: 22px;
        padding-block: 0.4rem;
        padding-inline: 1rem;
    }

    .icon {
        width: 22px;
        height: 22px;
    }
}
@media (max-width: 992px) {
    .slider-p {
        font-size: 20px;
        gap: 10px;
    }

    .slider-button {
        font-size: 20px;
        padding-block: 0.3rem;
        padding-inline: 0.8rem;
    }

    .icon {
        width: 20px;
        height: 20px;
    }
}
@media (max-width: 767px) {
    .slider-p {
        font-size: 18px;
        gap: 8px;
        padding: 15px;
    }

    .slider-button {
        font-size: 18px;
        padding-block: 0.3rem;
        padding-inline: 0.6rem;
    }

    .icon {
        width: 18px;
        height: 18px;
    }
}
@media (max-width: 576px) {
    .slider-p {
        font-size: 16px;
        gap: 5px;
        padding: 10px;
        flex-direction: column;
    }

    .slider-button {
        font-size: 16px;
        padding-block: 0.2rem;
        padding-inline: 0.5rem;
    }

    .icon {
        width: 16px;
        height: 16px;
    }
}
  

/* aküler end */
