/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f3c614;
}

.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.cta-button {
    background-color: #f3c614;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e5b50a;
}

.products-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}


.products-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.container {
    /* max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; */
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Aralığı azaltmak için space-between kullandık */
}

.col-md-3 {
    flex: 1 1 24%; /* Genişliği %24 olarak ayarladık */
    /* max-width: 24%; */
    box-sizing: border-box;
    margin: 5px; /* Margin'i azaltarak sütunlar arasındaki boşluğu azalttık */
    border:1px solid #d7cfbb;
    border-radius: 5px;
    /* box-shadow: 0 1px 3px rgb(0 0 0 / 0.2); */
    /* transition: transform 0.3s, box-shadow 0.3s; */
}

.col-md-3:hover {
    /* transform: scale(1.04); */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); */
}

.product {
    background-color: #fff;
    border-radius: 5px;  
    padding: 15px;
    text-align: center;
}

.product img {
    width:100%; /* Genişliği %100 yaparak görüntüleri sıkılaştırdık */
    border: 0px solid #919191;
    padding: 2px;
    border-radius: 4px;
}

.product a {
    color: lightyellow;
    text-decoration: none;
    font-weight: bold;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer .social-links {
    margin: 10px 0;
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #f3c614;
}


/*   navbar links*/
@media (max-width: 1080px) {
    .col-md-3.card_text {
        max-width: 31%;
        flex: 1 1 100%;
    }
    .col-md-3.owl_price {
        max-width: 100%;
       
        flex: 1 1 100%;
    }
    #select_owl{
        max-width: 100%;
        flex: 1 1 100%;
    }
    .col-md-3.icon_center {
        max-width: 31%;
        flex: 1 1 100%;
    }

}


@media (max-width: 900px) {
    .col-md-3.card_text {
        max-width: 48%;
        flex: 1 1 100%;
    }
    .col-md-3.icon_center {
        max-width: 48%;
        flex: 1 1 100%;
        font-size: 15px;
    }
    .col-md-3.owl_price {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .col-md-3.card_text  {
        max-width: 46%;
        flex: 1 1 100%;
    } 
    .col-md-3.icon_center  {
        max-width: 46%;
        flex: 1 1 100%;
        font-size: 14px;
    } 
    .col-md-3.owl_price {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 400px) {
 
    .col-md-3.icon_center  {
        max-width: 46%;
        flex: 1 1 100%;
        font-size: 12px;
    } 
}

@media (max-width: 900px) {
    #select_owl{
        max-width: 100%;
        flex: 1 1 100%;
    }
}
/*****************************************/
@media (max-width:800px) {
    .col-md-6.adr_map{
        max-width: 100%;
      padding-top: 30px;
        font-size: 15px;
    }
}

/* @media (max-width:768) {
    .col-md-6.adr_map{
        max-width: 100%;
      
        font-size: 15px;
    }
} */


.card_text{
    font-size:0px;
}  
  
.rowdesign{
    background-color:#fff; border-radius:6px; padding:10px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.2);
}

.icon_center{
    display: flex;
    flex-direction: column; /* Stacks image and text vertically */
    justify-content: center; /* Center items vertically within the container */
    align-items: center; /* Center items horizontally within the container */
    text-align: center; /* Center text inside the div */
    height: 250px; /* Set a specific height for visual balance */
    border: 0px solid #ddd; /* Optional: Add a border for visualization */
    padding:10px; /* Optional: Add padding for better spacing */
    box-sizing: border-box; /* Include padding in the height */
    color: #939393;
}
.foot_cont{

}
