/********** Template CSS **********/
:root {
    --primary: #009846;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
    --white: #FFF;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {

font-family: 'Lora', serif;

}

ul {
  list-style: none;      
  max-width: 600px;
  margin: 20px auto;
  padding: 0;
  font-size: 16px;
  color: #000;
}

ul li {
  position: relative;
  padding-left: 30px;       
  margin-bottom: 12px;
  line-height: 1.5;
  cursor: default;
}

ul li::before {
  content: "•";            
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);          
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
h2{
    font-size: 1.25rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background: var(--primary);
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color:var(--white) ;
    background: var(--primary);
    border-color: var(--white);
}
.btn-primary:hover{
    color: var(--primary);
    background: var(--white);
    border-color: var(--primary);
}

.btn-white {
    color:var(--primary) ;
    background:var(--white) ;
    border-color: var(--primary);
}
.btn-white:hover{
    color:  var(--white);
    background:var(--primary);
    border-color: var(--white);
}


.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 280px;
    height: 130px;
    top: 10px;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 50px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 90%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 70%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
   background: linear-gradient(
  rgba(0, 0, 0, 0.4),
  rgba(0, 0, 0, 0.4)
);
   /* background: rgba(0, 151, 70, 0.5);*/

    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
   background: linear-gradient(
  rgba(0, 0, 0, 0.4),
  rgba(0, 0, 0, 0.4)), url(../img/carousel-1.jpg) center center no-repeat;
  
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}



.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.svg) left bottom no-repeat;
    background-size: auto;
}




/*** About ***/
.video {
   background: linear-gradient(rgba(0, 152, 70, 0.85), rgba(0, 152, 70, 0.85)), url(../img/arkaplan-bg.svg) center center no-repeat;
background-size: cover;

}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Testimonial ***/
.testimonial {
     background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.svg) left bottom no-repeat;
    background-size: auto;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 3px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    color: var(--white);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--white);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    font-size: 15px;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #000;
}

.copyright a:hover {
    color: #FFFFFF !important;
}

.display-1 {
font-size: 40px;
}

.bradius-10{
    border-radius: 10px;
}

.footerDiv{
    background-color:var(--primary) ;
}

.text-pr{
    color: var(--primary);
}



/* Logo görüntüsü */
.footer-logo {
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* Hover efekti */
.footer-logo:hover {
  transform: scale(1.05);
}

.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 90px
}
.gallery-page__single {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #ededed;
  background: var(--site-white)
}
.gallery-page__single p {
  text-align: center;

  padding: 0 20px 20px
}
.gallery-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1
}
.gallery-page__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgba(var(--site-base-rgb), 0.9);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-102%);
  transform: translateY(-102%);
  z-index: 1
}
.gallery-page__single:hover .gallery-page__img:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%)
}
.gallery-page__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease
}
.gallery-page__single:hover .gallery-page__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}
.gallery-page__single h5 {
  text-align: center;
  font-size: 16px;
  padding: 20px 10px;
  font-weight: 600;
  z-index: 3;
  position: relative
}
.gallery-page__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2
}
.gallery-page__icon span {
  height: 30px;
  width: 30px;
  background-color: var(--dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  color: var(--site-white);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: .6;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2
}
.gallery-page__single:hover .gallery-page__icon span {
  opacity: 1;
  width: 40px;
  height: 40px
}
.gallery-page__icon span:hover {
  background-color: var(--white);
  color: var(--primary)
}


.google-map {
    position: relative;
    display: block;
    line-height: 0;
}


.map {
  position: relative;
  width: 100%;
  max-width: 600px;   
  height: 450px;      
  margin: 0 auto;    
}

@media (max-width: 768px) {
  .map {
    height: 300px;  
    width: 300px!important;
  }
  .border-start{
    border-left:none!important;
    padding-left: 0!important;
  }
}

.text-primary{
    color:var(--primary)!important ;
}


.brand-logo {
    height: auto;
    object-fit: cover;

    transition: 0.3s;
}
.brand-logo:hover {
   
    transform: scale(1.05);
}
.product-carousel{
    max-height: 500px!important;
}


.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}

.owl-carousel .owl-stage {
    display: flex !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}


.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.owl-carousel .owl-item > div {
    width: 100% !important;
    max-width: 400px;
}


.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.owl-nav {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 10;

}

.owl-nav button {
    background: white;
    border: none;
    font-size: 24px;
    color: green;
    pointer-events: all; /* butonlar tıklanabilir olur */
}

.owl-nav .owl-prev {
    margin-left: -20px;
}

.owl-nav .owl-next {
    margin-right: -20px;
}


.owl-custom-nav {
    display: flex;
    justify-content: center;
    gap: 20px; /* Oklar arası boşluk */
    margin-top: 20px;
    position: relative;
    z-index: 10;
}


.owl-prev-custom,
.owl-next-custom {
    background-color: var(--primary);
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}


.owl-prev-custom:hover,
.owl-next-custom:hover {
    background-color: var(--white);
    color: var(--primary);
}

.product-img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;

}

.product-img-home{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  max-height: 400px!important;
  max-width: 225px!important;
}

.product-info-home{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  max-height: 400px!important;
  max-width: 225px!important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
}

.product-info-home h4,
.product-info-home span {
    text-align: center;
}

.owl-carousel .owl-item {
    margin-right: 10px !important; /* 25px yerine daha küçük bir değer ver */
}

.product-info{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
     overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}




/*-----------------------------------------------*/

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.service-box {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
}

.overlay {

    color: white;
    height: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay img {
    width: 50px;
    margin: 0 auto 15px;
}

.overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.overlay p {
    font-size: 14px;
    margin-bottom: 15px;
}




@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* tabletlerde 2 sütun */
    }
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr; /* mobilde tek sütun */
    }
}


.clamp-2 {
  display: -webkit-box!important;
  -webkit-line-clamp: 2!important;
  -webkit-box-orient: vertical!important;
  overflow: hidden!important;
  text-overflow: ellipsis!important;
}


.bgc-navbar{
    background-color: var(--white);
    border-bottom: 1px solid var(--primary)!important;
    border-top: none!important;
}

.lang{
    width: 25px;
    height: 25px;
  
}

.d-flex{
    display: flex!important;
    justify-content: center;
    align-items: center;
}

.bckg-primary{
    background-color: var(--primary); !important;
}

.dropdown-item{
     padding: .9rem 1rem;
}
.dropdown-item:hover, .dropdown-item:focus{
    background-color: var(--primary)!important;
    color: var(--white);
}


.footer-about {
  display: inline-block;
  text-align: center;
  max-width: 300px; 
}


.contact-box {
  background: var(--primary);
  transition: all 0.3s ease;
}
.contact-box {
  background-color: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(10px); 
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.contact-box:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.contact-box i {
  color: var(--primary); !important; 
}
.contact-box p a {
  color: #2f2f2f;
  text-decoration: none;
}
.contact-box p a:hover {
  text-decoration: underline;
}
.biyografi p{
    font-size: 17px;
}

#refCarousel {
  width: 100%;
  overflow: hidden;
}

#refCarousel .owl-stage-outer {
  overflow: hidden;
}

#refCarousel .owl-item {
  box-sizing: border-box;
  padding: 10px;
}



@media (min-width: 992px) and (max-width: 1200px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 15px !important;
}
.logo{
    width:200px!important;
}

.nav-link {
    padding: .5rem .5rem;
}
.navbar .navbar-brand {
    top:25px!important;
}

.fontsize14{
    font-size: 14px;
}
}

@media (min-width: 1200px) and (max-width: 1398px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 25px !important;
}
.fontsize14{
    font-size: 14px;
}
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 15px !important;
}
.logo{
    width:200px!important;
}
.nav-link {
    padding: .5rem .5rem;
}
}






.homeaboutus {
  display: flex;
  align-items: center;
  min-height: 600px;
  overflow: hidden;
  width: 100%;
}

.homeaboutusimg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}


.homeaboutusimg-wrapper {
    width: 100%;
    max-width: 512px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
}


.awards {
  min-width: 150px!important;
  text-align: center;
  margin-top: 50px;
}
.awards figure {
  display: block;
  margin: 0;
}
.awards figure img {
  height: 60px;
}
.awards h5 {
  font-weight: 500;
  font-size: 15px;
  color: inherit;
  text-transform: capitalize;
  letter-spacing: 0;
  color: #fff
}
.awards .odometer {
  font-size: 34px;
  color: #fff;
  font-weight: 600;
  padding: 0 !important;
  
}

.odometer-bg{
   background: var(--primary);
   padding: 10px 20px;
   border-radius: 10px;
   min-height: 120px;
   text-align: center;
   color: var(--white);

}
.odometer-bg.bg-1{
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 10px;
    min-height: 120px;
    text-align: center;
    color: var(--white);
}


.odometer {
 min-width: 90px;
 line-height: 1;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
  padding: 0px;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
  left: 0;
}

.homeaboutus .section-title + div {
  min-height: 150px; 
}


@media (max-width: 768px) {
  .slogan2 {
    font-size: 1rem !important; 
  }

  .slogan1{
    font-size: 1.5rem !important;
  }

  .bannerbutton {
    padding: 0.5rem 1.5rem !important; 
    font-size: 0.9rem !important;
  }
}


.carousel-inner{
    min-height: 400px;
}

.product-carousel{
    min-height: 480px;
}