/* Temel Stiller */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}
p{
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #858585;
}
.logo-img {
    height: 85px;
}

/* Header Stiller */
.navbar {
    padding: 1rem 2rem;
    background-color: #fff;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
}

.contact-btn {
    background-color: #0a3c0a;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9e4;
    padding: 4rem 0;
}

.hero-title {
    color: #0a3c0a;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    margin-bottom: 2rem;
    color: #555;
}

.primary-btn {
    background-color: #0a3c0a;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    font-weight: 500;
}

.hero-img {
    border-radius: 10px;
    overflow: hidden;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.section-title {
    color: #0a3c0a;
    font-weight: 600;
    margin-bottom: 2rem;
}

.feature-box {
    margin-bottom: 2rem;
}

.feature-icon {
    background-color: #e6f0e6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    color: #0a3c0a;
    font-size: 24px;
}

/* Services Section */
.services-section {
    background-color: #0a3c0a;
    color: white;
    padding: 4rem 0;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-number {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.blog-card {
    background-color:  #F5F3EC;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    margin: 30px 20px;
    border-radius: 10px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-weight: 600;
    color: #0a3c0a;
    margin-bottom: 1rem;
}
.blog-title a{color: #084208;}
.read-more {
    color: #0a3c0a;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #0a3c0a;
    color: white;
}

.accordion-header {
    /* background-color: rgba(255, 255, 255, 0.1); */
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-item{
    border-bottom: 1px solid #D2FA52;
}
.faqImg{height: 550px;}
/* Sustainability Section */
.sustainability-section {
    padding: 4rem 0;
}

.sustainability-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: #fff;
    color: #333;
    padding: 4rem 0 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-desc {
    margin-bottom: 2rem;
    color: #333;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #333;
    text-decoration: none;
}

.footer-contact input {
    background-color: rgba(255, 255, 255, 0.1);
    
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.footer-btn {
    background-color: #084208;
    color: white;
    border: none;
    padding: 10px 45px;
    border-radius: 5px;
    font-weight: 500;
}

.copyright {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 2rem;
}

.social-icons a {
    color: white;
    margin-left: 1rem;
    font-size: 1.2rem;
}

/* Banner Styles */
.page-banner {
    background-image: url('https://example.com/banner-image.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.blog-post-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-weight: 600;
    color: #0a3c0a;
    margin-bottom: 1rem;
}

.arrow-icon {
    width: 40px;
    height: 40px;
    background-color: #0a3c0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: auto;
}
.greenSection{
    height: 100px;
    background: #0a3c0a;
}

.service-box{
    align-items: start;
    justify-content: left;
}
a{color: #333;}
a:hover{text-decoration: none;color: #333;}
.btnIcon{
    margin-right: 20px;
    margin-left: 20px;
}
.blogBtn:hover{color: #fff;}
.sustainability-section .section-title{margin-bottom: 0;}
.sustainability-section h5{margin-bottom: 25px;}

/* Banner Styles */
.page-banner {
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
}

.section-title {
    color: #0a3c0a;
    font-weight: 600;
    margin-bottom: 2rem;
}

.content-img {
    border-radius: 10px;
    overflow: hidden;
}

.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 18px;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .card-img-wrapper {
    overflow: hidden;
  }
  
  .product-card img {
    transition: all 0.5s ease;
  }
  
  .product-card:hover img {
    transform: scale(1.05);
  }
  
  .icon-circle {
    transition: all 0.3s ease;
    opacity: 0.8;
  }
  
  .product-card:hover .icon-circle {
    background-color: #0d6935 !important;
    opacity: 1;
  }
  
  .hero-image {
    position: relative;
  }
  
  /* Custom green colors matching Baltazi's branding */
  .bg-baltazi {
    background-color: #0d6935;
  }
  
  .text-baltazi {
    color: #0d6935;
}
.card-overlay h5{
    background: #0000006b;
    border-radius: 10px;
    position: relative;
    bottom: 20px;
    margin: 20px;
}
.display-4{
    font-size: 3rem;
}
.bgDark{
    background: #000000bf;
}

/* Contact Page */
.bg-baltazi {
    background-color: #0d6935;
  }
  .border-baltazi {
    border-color: #0d6935 !important;
  }
  .text-baltazi {
    color: #0d6935;
  }
  
  .btn-baltazi {
    background-color: #0d6935;
    border-color: #0d6935;
  }
  
  .btn-baltazi:hover {
    background-color: #095129;
    border-color: #095129;
  }
  
  /* Form styling */
  .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 105, 53, 0.25);
    border-color: #0d6935;
  }
  
  /* Hero section */
  .hero-image {
    position: relative;
  }
  
  /* Contact info icon boxes */
  .icon-box {
    transition: all 0.3s ease;
  }
  
  .icon-box:hover {
    transform: scale(1.1);
  }
  
  /* Form elements */
  .form-control {
    transition: all 0.3s ease;
  }
  
/* Submit button hover effect */
button[type="submit"] {
    transition: all 0.3s ease;
  }
  
button[type="submit"]:hover {
    background-color: #095129 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contactForm{padding-top: 20px;}
.contactImg{height: 395px;}
@media (max-width: 767px) {
    .contact-btn{
        width: min-content;
    }
    .detayliBilgiBtn{
        margin-bottom: 15px;
    }
    .greenSection {
        height: 70px;
    }
    .faqImg {
        margin-top: 35px;
        height: 400px;
    }
    .sustainability-img{
        margin-top: 15px;
    }
}
















