* {
    font-family: 'Montserrat', sans-serif;
}
body {
    position: relative;
    min-height: 100vh;
    padding-bottom: 350px;
}

#header {
    padding: 10px 0;
    display: flex;
    align-items: center;
    height: 140px;
    background-color: #fff;
    border-top: 3px solid #328a58;
    border-bottom: 3px solid #328a58;
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 1000;
}
#header .header-wrapper {
    display: flex;
    padding-left: 110px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#header .logo {
    max-height: 120px;
}

#main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 30px;
}

#main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    align-items:flex-end;
}

#main-nav ul li {
    margin-right: 35px;
}

#main-nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    white-space: nowrap;

}
@media screen and (max-width:1500px){
    #main-nav ul li a{
        font-size:16px;
    }
}
@media screen and (max-width:1200px){
    #main-nav ul li a{
        font-size:13px;
    }
}
#main-nav ul li a.has-child {
    position: relative;
    margin-right: 20px;
}

#main-nav ul li a.has-child:after {
    content: 'V';
    position: absolute;
    font-weight: bold;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

#main-nav .dropdown-menu {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    min-width: 200px;
}

#main-nav .dropdown-item {
    color: #000;
    font-size: 18px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

#main-nav .dropdown-item:hover {
    background-color: #328a58;
    color: #fff;
}

#main-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "";
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-bottom: 0;
    border-left: 5px solid transparent;
}

.navbar-wrapper {
    width: 80%;
}

.search-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 20%;
}

.left-side,
.right-side {
    display: flex;
    align-items: center;
}

.search {
    background-color: #094c3c;
    border-radius: 50px 0 0 50px;
    width: 100%;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 20px;
}

.search-text {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.search-text:hover {
    color: #fff;
}



@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

#main-info-one {
    margin-top: 70px;
}

.info-one-title {
    font-size: 3rem;
}

#info-cards {
    margin-top: 170px;
}

.info-card-wrapper {
    position: relative;
}

.info-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.info-card .info-card-top img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    border-radius: 10px;
}

.info-card .info-card-top {
    position: absolute;
    top: -130px;
    left: calc(50% - 70px);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 10px 20px;
    box-sizing: border-box;
    border-radius: 20px 20px 0 0;
    z-index: -1;
}

.info-card .info-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-card .info-card-content .info-card-title {
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
    font-weight: 600;
    margin: 0;
}

.info-card .info-card-content .info-card-text {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    margin: 0;
}

.info-card .info-card-content .info-card-seperator {
    width: 70%;
    height: 2px;
    margin: 10px 0;
    background-color: #000000;
}

.info-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.info-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.info-card-link:hover .info-card {
    transform: translateY(-10px);
}

#main-info-three {
    margin-top: 70px;
}

.image-info-area {
    width: 100%;
    display: flex;
    align-items: center;
}

.image-info-area .image-wrapper {
    width: 40%;
    position: relative;
    box-shadow: 0 0 10px 5px rgb(0 0 0 / 25%);
}

.image-info-area .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-info-area .info {
    width: 60%;
    background-color: #daead6;
    padding: 70px;
    border-radius: 0 20px 20px 0;
}

.image-info-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.image-info-link:hover {
    text-decoration: none;
    color: inherit;
}

.image-info-link:hover .image-info-area {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.image-info-area {
    transition: transform 0.3s ease;
}

/* Wave Background */
.wave-background {
    position: absolute;
    top: -203px;
    left: 0;
    width: 100%;
    height: 803px;
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-color: #000;
}

/* Hero Slider Styles */
.hero-swiper {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
/* Orta Logo Stili */
.hero-center-logo {
    position: absolute;
    left: 47%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-center-logo img {
    width: 100%;
    height: auto;
}

.slide-inner {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.slide-inner:hover {
    transform: scale(1.02);
}

.slide-content-strip {
    background: #3e3e3e78;
    backdrop-filter: blur(10px);
    padding: 25px 40px 25px 120px;
    border-radius: 0 45px 45px 0;
    display: flex;
    align-items: center;
    margin-left: calc(8% - 110px);
    margin-top: 120px;
}

.slide-content-strip h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

#hero-slider {
    margin-top: 200px;
    position: relative;
    z-index: 2;
}

/* Sol Taraf Stilleri */
.hero-left {
    height: 600px;
}

.hero-static {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding: 40px;
}


.hero-static:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-static-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.hero-static-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-static-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Sağ Taraf Slider Stilleri */
.hero-swiper {
    width: 100%;
    height: 600px;
}

.slide-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    position: relative;
}


.slide-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.slide-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
}

.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

footer {
    background-color: #111111;
    color: #fff;
    z-index: 99;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 10vh;
    margin-top: 70px;
    overflow: hidden;
}

.footer-background-image {
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: -100px;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: start;
}

.footer-right {
    width: 50%;
    padding: 50px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-right: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fff;
}

ul.footer-list {
    padding: 0;
    margin-top: 20px;
}

ul.footer-list li {
    margin-bottom: 10px;
}

ul.footer-list li a {
    color: #fff;
    text-decoration: none;
}

.footer-contact {
    background: url(../images/footer-contact-bg.png) no-repeat center center/contain;
    width: 100%;
}

.footer-contact-icon {
    width: 35px;
    height: 35px;
    background-color: #353333;
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.footer-contact-icon img {
    width: 30px;
}

.footer-contact-text a {
    color:#fff;
    text-decoration: none;
}

.footer-contact-text a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 992px) {
    body{
        padding-bottom: 580px;
        padding-top: 30px;
    }
    #header .header-wrapper {
        padding: 0;
    }
    #header .right-side {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .col-6.hero-left {
        width: 100%;
    }

    .hero-static {
        margin-top: -150px;
    }
    
    .hero-static-content {
        padding-top: 0;
    }

    .hero-static-content h1 {
        font-size: 4rem;
        text-align: center;
    }

    .hero-center-logo {
        top: auto;
        bottom: 15%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    #hero-slider{
        margin-top:50px;
    }
    #header .logo {
    max-height: 100px;
    }
    .col-6.hero-left {
        width: 100%;
    }

    .hero-static {
        margin-top: -250px;
    }

    .hero-static-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-static-content {
        padding-top: 0;
    }

    .hero-static-content h1 {
        font-size: 3.5rem;
        text-align: center;
    }

    .hero-center-logo {
        top: auto;
        bottom: 15%;
        transform: translateX(-50%);
    }

    #header {
        height: 80px;
        top:0;
    }
    .footer-right .col-3,
    .footer-right .col-9 {
        width: 100% !important;
    }
    .page-wrapper {
        padding-top: 120px;
    }
}

@media screen and (max-width: 992px) {
    .mobile-margin {
        margin-top: 20px;
    }
    #info-cards {
        margin-top: 120px;
    }
    .info-card .info-card-content .info-card-title {
        font-size: 1.2rem;
    }
    .info-card .info-card-content .info-card-text {
        font-size: 0.8rem;
    }
    .info-card {
        background-color: #fff;
        padding: 10px;
        margin-bottom: 110px;
    }
    #info-cards .info-card.no-margin {
        margin-bottom: 0;
    }
    .info-card .info-card-top img {
        height: 70px;
        width: 70px;
        object-fit: contain;
        border-radius: 10px;
    }
    .info-card .info-card-top {
        position: absolute;
        top: -100px;
        left: calc(50% - 55px);
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 20px 20px 10px 20px;
        box-sizing: border-box;
        border-radius: 20px 20px 0 0;
        z-index: -1;
    }
    .image-info-area {
        flex-direction: column;
    }
    .image-info-area .image-wrapper {
        width: 100%;
    }
    .image-info-area .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .image-info-area .info {
        width: 100%;
        border-radius: 0 0 20px 20px;
        margin-bottom: 20px;
    }
    .footer-right {
        width: 100%;
    }
}

.mobile-menu-wrapper {
    justify-content: flex-end;
}

.menu-container {
    display: flex;
    justify-content: flex-end;
    padding-right: 25px;
}

.hamburger {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}

.bar {
    width: 100%;
    height: 5px;
    background: black;
    border-radius: 5px;
    transition: 0.4s;
}

.menu.active .bar:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.menu.active .bar:nth-child(2) {
    opacity: 0;
}

.menu.active .bar:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.5s ease-in-out;
}

.mobile-menu.active {
    clip-path: circle(150% at 100% 0);
}

.menu-items {
    list-style: none;
    text-align: center;
    padding-left:0;
}

.menu-items li {
    margin: 20px 0;
}

.menu-items a {
    text-decoration: none;
    font-size: 24px;
    color: black;
    font-weight: bold;
}

.mobile-menu .dropdown-menu {
    background-color: transparent;
    border: none;
    padding-left: 20px;
}

.mobile-menu .dropdown-item {
    color: #000;
    padding: 8px 15px;
}

.mobile-menu .dropdown-item:hover {
    background-color: rgba(50, 138, 88, 0.1);
}

#main-nav ul li.menu-item-has-children {
    position: relative;
}

#main-nav ul li.menu-item-has-children > a:after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 5px solid #000;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

#main-nav ul li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    border-radius: 8px;
    z-index: 1000;
    flex-direction: column;
}

#main-nav ul li.menu-item-has-children:hover > .sub-menu {
    display: flex;
}

#main-nav ul li .sub-menu li {
    margin: 0;
    width: 100%;
}

#main-nav ul li .sub-menu li a {
    padding: 8px 20px;
    display: block;
    font-size: 18px;
    transition: all 0.3s ease;
}

#main-nav ul li .sub-menu li a:hover {
    background-color: #328a58;
    color: #fff;
}

.mobile-menu .menu-item-has-children .sub-menu {
    display: none;
    padding-left: 0;
}

.mobile-menu .menu-item-has-children.active .sub-menu {
    display: block;
}

.mobile-menu .menu-item-has-children > a:after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 5px solid #000;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

/* Mobil menü için stiller */
.mobile-menu .menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu .menu-items li {
    padding: 10px 0;
}

.mobile-menu .menu-items li:last-child {
    border-bottom: none;
}

.mobile-menu .menu-items a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.mobile-menu .menu-item-has-children {
    position: relative;
}

.mobile-menu .menu-item-has-children > a:after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
    transition: transform 0.3s ease;
}

.mobile-menu .menu-item-has-children.active > a:after {
    transform: rotate(180deg);
}

.mobile-menu .sub-menu {
    list-style: none;
    padding: 0;
    height: 0;
    overflow: hidden;
}

.mobile-menu .sub-menu li {
    padding: 8px 0;
    border-bottom: none;
}

.mobile-menu .sub-menu a {
    font-size: 16px;
    color: #666;
}

.mobile-menu .sub-menu a:hover {
    color: #328a58;
}

/*PAGES*/

.page-content a {
    text-decoration:none;
    color:#000;
}

.page-content a:hover {
    text-decoration:underline;
}

.page-wrapper {
    padding-top: 240px;
}

.page-left-side,
.page-right-side {
    padding: 0;
}

.page-info {
    border-radius: 45px 0 0 45px;
    padding: 20px;
    position: relative;
}
.page-info:after{
    content:'';
    width:20px;
    height:20px;
    background:#f7f7f7;
    position:absolute;
    right:0;
    clip-path: path("M0,0 H20 V20 Q10 0 0 0 Z");
    bottom:-20px;
}
.right-side-wrapper {
    border-radius: 0 45px 45px 45px;
    padding: 20px;
}
.wrapper {
    border-radius: 45px;
    padding: 20px;
}
.page-offer {
    border-radius: 45px;
    padding: 20px;
    margin-top: 20px;
    margin-right: 20px;
}

.right-side-wrapper .right-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.right-side-wrapper .right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.page-info,
.right-side-wrapper,
.page-offer,
.wrapper {
    background-color: #f7f7f7;
}

.page-left-side .page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-left-side .page-title h1 {
    color: white;
    font-size: 2rem;
    padding: 10px 10px;
    text-align: center;
    font-weight: 600;
    border-radius: 45px;
    display: block;
}

.page-left-side .page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page .page-title h1 {
    color: white;
    font-size: 2rem;
    padding: 10px 10px;
    text-align: center;
    font-weight: 600;
    border-radius: 45px;
    display: block;
}

.biz-kimiz h1 {
    background-color: #094c3c;
}

.temizlik h1 {
    background-color: #4263ab;
}

.teknik h1 {
    background-color: #28b660;
}

.guvenlik h1 {
    background-color: #5b7161;
}

.bahce-bakim h1 {
    background-color: #c3b380;
}

.right-side-wrapper .right-title {
    margin-bottom: 50px;
}

.right-side-wrapper .right-title h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #000;
}

.page-offer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.page-offer .page-offer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:30px;
}

.page-offer .page-offer-content span {
    text-align: center;
    width: 100%;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.offer-button{
    background-color: #28b660;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.temizlik .offer-button{
    background-color: #4263ab;
}

.guvenlik .offer-button{
    background-color: #5b7161;
}

.bahce-bakim .offer-button{
    background-color: #c3b380;
}

.teknik .offer-button{
    background-color: #28b660;
}

.offer-button:hover{
    background-color: #000;
    color: white;
}

.page-wrapper .left-image{
    height: 100%;
    display: flex;
    justify-content: center;
}

.page-wrapper .left-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.page-bottom{
    margin-top: 20px;
}

.right-content h3{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 20px;
}

.right-content{
    background-color: #f7f7f7;
    border-radius: 45px;
    padding: 20px;
}

.right-content p{
    margin-bottom: 40px;
    padding-left: 20px;
}

@media screen and (max-width:992px) {
    .page-left-side .page-title h1 {
        font-size: 2.2rem;
    }
    .right-side-wrapper .right-title h2 {
        font-size: 2rem;
    }
    .page-offer .page-offer-content span {
        font-size: 1.2rem;
    }
    .page-offer .page-offer-content{
        padding: 10px;
    }
}

@media screen and (max-width:768px) {
    .page-wrapper{
        padding-top: 100px;
    }
    .page-info,.right-side-wrapper{
        margin-top:20px;
        border-radius:45px;
    }
    .page-offer {
        margin-bottom:20px;
    }
    .page-bottom .right-content{
        margin-bottom:20px;
    }
    .page-info:after{
display:none;
}
.hero-swiper {
    height: 300px;
}
.slide-content-strip{
    margin-top:100px !important;
}
}

.contact-btn-wrapper {
    display: flex;
    align-items: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #5b7262;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #455a4b;
    color: white;
    transform: translateY(-2px);
}

.contact-btn img {
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 992px) {
    .contact-btn-wrapper {
        display: none;
    }
}

.is-basvuru h1 {
    background-color: #094c3c;
}

.basvuru-form {
    padding: 20px;
}

.basvuru-form .form-control,
.basvuru-form .form-select {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.basvuru-form .form-control:focus,
.basvuru-form .form-select:focus {
    border-color: #094c3c;
    box-shadow: 0 0 0 0.2rem rgba(9, 76, 60, 0.25);
}

.basvuru-form .form-label {
    color: #666;
    margin-bottom: 8px;
}

.basvuru-btn {
    background-color: #094c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.basvuru-btn:hover {
    background-color: #0b3e32;
    color: white;
    transform: translateY(-2px);
}

.custom-file-upload {
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .basvuru-form {
        padding: 10px;
    }
}

.sync h1 {
    background-color: #094c3c;
}

.sync-features {
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-icon {
    flex: 0 0 80px;
    margin-right: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    color: #094c3c;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.service-list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap; /* Öğelerin taşmasını önler */
    justify-content: center;
    gap: 20px;
}

.service-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-item h3 {
    color: #4263ab;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.service-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.service-features {
    margin-top: 40px;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
}

.features-title h3 {
    color: #4263ab;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    color: #666;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
}

@media screen and (max-width: 768px) {
        .service-list {
        flex-direction: column; /* Mobilde dikey hizalama */
        align-items: center; /* Öğeleri ortalar */
    }

    .service-item {
        width: 90%; /* Küçük ekranlarda daha iyi görünüm */
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 20px;
    }
}
@media screen and (max-width: 1600px){
    .hero-center-logo {
    position: absolute;
    left: 46%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
}
.guvenlik .service-item h3 {
    color: #5b7161;
}

.guvenlik .service-item ul li:before {
    color: #5b7161;
}

.guvenlik .features-title h3 {
    color: #5b7161;
}

.guvenlik .features-list li:before {
    color: #5b7161;
}

.guvenlik .service-item:hover {
    border-left: 4px solid #5b7161;
}

.guvenlik .service-features {
    border-left: 4px solid #5b7161;
}

.teknik .service-item h3 {
    color: #28b660;
}

.teknik .service-item ul li:before {
    color: #28b660;
}

.teknik .features-title h3 {
    color: #28b660;
}

.teknik .features-list li:before {
    color: #28b660;
}

.teknik .service-item:hover {
    border-left: 4px solid #28b660;
}

.teknik .service-features {
    border-left: 4px solid #28b660;
    background-color: #f5fff9;
}

.teknik .service-item {
    transition: all 0.3s ease;
    border: 1px solid #e9e9e9;
}

.teknik .service-item:hover {
    background-color: #f5fff9;
    transform: translateX(5px);
}

.bahce-bakim .service-item h3 {
    color: #c3b380;
}

.bahce-bakim .service-item ul li:before {
    color: #c3b380;
}

.bahce-bakim .features-title h3 {
    color: #c3b380;
}

.bahce-bakim .features-list li:before {
    color: #c3b380;
}

.bahce-bakim .service-item:hover {
    border-left: 4px solid #c3b380;
}

.bahce-bakim .service-features {
    border-left: 4px solid #c3b380;
    background-color: #fffdf7;
}

.bahce-bakim .service-item {
    transition: all 0.3s ease;
    border: 1px solid #e9e9e9;
}

.bahce-bakim .service-item:hover {
    background-color: #fffdf7;
    transform: translateX(5px);
}

.bahce-bakim .right-title h2 {
    color: #8b7f5c;
}

.swiper2 {
    overflow: hidden; /* Taşan içeriği gizle */
}

.swiper2 .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.swiper2 .swiper-slide {
    position: relative;
    z-index: 2;

    opacity: 0; /* Varsayılan olarak tüm slaytları gizle */
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.swiper2 .swiper-slide.swiper-slide-active {
    opacity: 1; /* Sadece aktif slaytı göster */
    visibility: visible;
}

