/* Ana Stil ve Layoutlar */
.kpe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section Stilleri */
.kpe-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}
  
/* Hero arka plan overlay stil */
.kpe-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}
  
/* Hero arka plan resmi için stil */
.kpe-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
  
/* Hero content içindeki öğeler */
.kpe-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
    padding: 20px 0;
    width: 100%;
}
  
.kpe-hero-text {
    flex: 1;
    text-align: left;
    padding-right: 30px;
}
  
.kpe-hero-image {
    width: 30%;
    height: 120%;
    align-items: center;
    position: relative;
}
  
/* PNG'nin şeffaf sınırlarında pulse efekti için */
.kpe-hero-image img {
    width: auto;
    height: auto;
    max-height: 600px;
    max-width: 100%;
    filter: drop-shadow(0 0 0 rgba(34, 156, 10, 0));
    animation: png-edge-pulse 2s ease-in-out infinite;
}
  
@keyframes png-edge-pulse {
    0% {
        filter: drop-shadow(0 0 0 rgba(34, 156, 10, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(34, 156, 10, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 0 rgba(34, 156, 10, 0.3));
    }
}
  
.kpe-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    text-align: left;
}
  
.kpe-heading-accent {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    display: block;
    color: #229c0a;
    text-shadow: rgba(34, 156, 10, 0.3) 4px 4px 0px;
    text-align: left;
}
  
.kpe-description {
    line-height: 32px;
    margin-bottom: 30px;
    margin-top: 20px;
    margin-bottom: 20px !important;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1rem;
}
  
.kpe-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}
  
.kpe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
    white-space: nowrap;
}
  
.kpe-btn-primary {
    background: linear-gradient(90deg, #229c0a, #229c0a);
    color: #000;
    font-weight: 800;
}
  
.kpe-btn-primary:hover {
    background: linear-gradient(90deg, #229c0a, #229c0a);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 156, 10, 0.3);
}
  
.kpe-btn-secondary {
    background: transparent;
    color: #229c0a;
    border: 2px solid #229c0a;
}
  
.kpe-btn-secondary:hover {
    background: rgba(34, 156, 10, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 156, 10, 0.3);
}

/* KPE Section Stilleri */
.kpe-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}
  
/* Header kısmı tam genişlik */
.kpe-header {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}
  
.kpe-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
  
.kpe-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtle-zoom 15s infinite alternate;
}
  
@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}
  
.kpe-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
}
  
.kpe-slogan {
    position: relative;
    color: white;
    padding: 50px 40px;
    max-width: 500px;
    z-index: 2;
    transform: translateY(0);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    animation: slogan-enter 1.2s ease-out forwards;
    text-align: left;
    background-color: transparent !important;
    clip-path: none;
    overflow: hidden;
}

.kpe-slogan:after {
    content: '';
    position: absolute;
    top: 30%;
    left: -10px;
    width: 120%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(-5deg);
    z-index: -1;
}

.kpe-slogan-accent {
    display: none;
}
  
.kpe-title {
    font-size: 40px;
    margin: 0 0 15px 0;
    font-weight: bold;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    position: relative;
}
  
.kpe-title:after {
    content: none;
}
  
.kpe-subtitle {
    font-size: 26px;
    margin: 8px 0;
    font-weight: 700;
    opacity: 0.95;
}
  
.kpe-website {
    margin-top: 25px;
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 0.9;
}
  
.kpe-content {
    display: flex;
    flex-direction: row;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
  
.kpe-modules {
    flex: 1;
    background-color: #000;
    color: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  
.kpe-modules:after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.kpe-info:after {
    content: '';
    position: absolute;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    z-index: 0;
}
  
.kpe-modules-title {
    font-size: 32px;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}
  
.kpe-modules-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 60px;
    height: 3px;
    background-color: #4CAF50;
    transform: translateX(-50%);
}
  
.kpe-modules-list {
    list-style-type: none;
    padding: 0;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: fit-content;
}
  
.kpe-module-item {
    font-size: 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    color: #4CAF50;
    position: relative;
    transition: transform 0.2s ease;
}
  
.kpe-module-item:hover {
    transform: translateX(5px);
}
  
.kpe-module-item:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 1px;
    height: 28px;
    /*background-color: rgba(76, 175, 80, 0.3);*/
}
  
.kpe-module-item:last-child:after {
    display: none;
}
  
.kpe-diamond {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #4CAF50;
    transform: rotate(45deg);
    margin-right: 18px;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
}
  
.kpe-info {
    background-color: #000 !important;
    flex: 1;
    padding: 40px;
    position: relative;
}
  
.kpe-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 120px;
    background-color: #4CAF50;
    opacity: 0.7;
}
  
.kpe-info-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
}
  
.kpe-info-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 50px;
    height: 3px;
    background-color: #4CAF50;
}
  
.kpe-info-text, .cpqd-description {
font-weight: 500; font-size: 18px; color: rgba(255, 255, 255, 0.9); margin: 0px auto 15px; text-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px; font-family: 'CRC';
}
  
.kpe-logo {
    text-align: center;
    margin: 40px 0;
    position: relative;
}
  
.kpe-logo:before, .kpe-logo:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background-color: #eee;
}
  
.kpe-logo:before {
    left: 20%;
}
  
.kpe-logo:after {
    right: 20%;
}
  
.kpe-logo-img {
    max-width: 180px;
    position: relative;
    z-index: 1;
}
  
.kpe-contact-title {
    font-size: 28px;
    margin: 35px 0 20px 0;
    color: #ffffff;
    position: relative;
}
  
.kpe-contact-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: #4CAF50;
}
  
.kpe-contact-info {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}
  
.kpe-contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    color: #ffffff;
}
  
.kpe-contact-item:hover {
    transform: translateX(5px);
}
  
.kpe-icon-phone, .kpe-icon-email, .kpe-icon-location {
    width: 28px;
    height: 28px;
    margin-right: 12px;
    display: inline-block;
    background-color: #4CAF50;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 28px;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.4);
}
  
/* Responsive tasarım için */
@media (max-width: 992px) {
    .kpe-slogan {
        padding: 30px;
        max-width: 450px;
    }
    
    .kpe-title {
        font-size: 32px;
    }
    
    .kpe-subtitle {
        font-size: 24px;
    }
    
    .kpe-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .kpe-heading {
        font-size: 3rem;

    }
    .kpe-btn{padding: 10px 20px; font-size: 13px; font-weight: 600}
      
    .kpe-heading-accent {
        font-size: 3rem;

    }
    .kpe-content {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .kpe-header {
        height: 380px;
    }
    
    .kpe-slogan {
        max-width: 90%;
        padding: 25px;
    }
    
    .kpe-title {
        font-size: 28px;
    }
    
    .kpe-subtitle {
        font-size: 22px;
    }
    
    .kpe-logo:before, .kpe-logo:after {
        width: 40px;
    }
    
    .kpe-logo:before {
        left: 15%;
    }
    
    .kpe-logo:after {
        right: 15%;
    }
    
    .kpe-module-item {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .kpe-content {
        padding: 0 10px;
    }
    
    .kpe-slogan {
        max-width: 100%;
        padding: 20px;
    }
    
    .kpe-title {
        font-size: 24px;
    }
    
    .kpe-subtitle {
        font-size: 20px;
    }
    
    .kpe-modules-title, .kpe-info-title {
        font-size: 26px;
    }
}

.kpe-module-item a{color: #229c0a;font-weight: 600;font-size: 20px;} 





.cpqd-container .kpe-module-item{display: block!important;}
.cpqd-container .kpe-module-item a{color: #229c0a;}
.cpqd-container .kpe-module-item .kpe-diamond{background-color: #229c0a; box-shadow: 0 0 15px rgba(34, 156, 10, 0.5);}
.cpqd-container .kpe-modules-list{margin:0px!important;}
.cpqd-container .kpe-module-item p{color:#cccdcc;}
.cpqd-container .cpqd-features-grid{grid-template-columns: repeat(2, 1fr)!important; align-items: flex-start;}
.cpqd-feature-card{height: auto!important}
.cpqd-features-grid .kpe-module-item a{    font-size: 20px;}
.cpqd-features-grid .kpe-module-item p{font-size:16px;}
.cpqd-feature-card .kpe-modules-list{ display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease; height: 30px!important;}
.cpqd-feature-card:hover .kpe-modules-list{ opacity: 1;
  visibility: visible; height: auto!important;}

body{background: black}

.cpqd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.cpqd-hero {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 90px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.cpqd-logo {
    text-align: center;
    margin-bottom: 30px;
}
.cpqd-logo img {
    max-width: 35%;
    height: auto;
}
.cpqd-logo-subtitle {
    text-shadow: rgba(8, 252, 172, 0.3) 5px 5px 0px;
    font-size: 2.5rem;
    color: #229c0a;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 10px;
}
.cpqd-intro {
    color: white;
}

.cpqd-title {
    color: #229c0a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 60px;
}

.cpqd-cta-button {
    background-color: #229c0a;
    color: rgb(0, 0, 0);  
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}
.cpqd-cta {
    text-align: center;
    margin: 50px 0 20px;
}
.cpqd-container .kpe-module-item a {
    color: #229c0a;
}
.kpe-module-item a {
    color: #229c0a;
    font-weight: 600;
    font-size: 20px;
}
.module-description{
    font-size: 1.1rem;
}




     .kpe-modules{
        justify-content: flex-start; /* dikeyde yukarı */
        align-items: flex-start;     /* yatayda sola */
        

    }

        .kpe-modules-list {
        margin: 0;
    }



@media (max-width: 767px) {
     .kpe-modules{
        justify-content: flex-start; /* dikeyde yukarı */
        align-items: flex-start;     /* yatayda sola */
        

    }

        .kpe-modules-list {
        margin: 0;
    }



    .kpe-hero-image, .kpe-info::before, .kpe-logo{display: none;}

    .kpe-modules, .kpe-info{padding:20px;}
    .cpqd-container{padding: 40px 30px;}
}




@media (min-width: 767px) {
    .kpe-modules{max-width: 450px}
}
