* {
    font-family: "Montserrat", sans-serif;

}

html, body {
    margin: 0;
    padding: 0;

}

a {
    text-decoration: none !important;
}

.topheader {
    background-color: #f07e08;
    padding: 10px;
    font-size:15px;
}

.nav-link{
    font-size: 15px;
}

.topha {
    padding-right: 5px;
}


.topheader a, .topheader {
    color: #fff;
}

.navbar-nav .nav-link {
    font-weight: bold;
}

.footerbg {
    background-color: #f07e08;
    color: #fff;
}

.footerbgimg {
    background-color: #fff;
}

.footerbgimg img {
    width: 100%;
    height: auto;
    padding: 0 25px;
}

.fh6 {
    font-weight: bold;
}

.footermenu, .footermenu li {
    margin: 0;
    padding: 0;
    list-style: none;

}

.footermenu a {
    color: #000;
    display: block;
    padding: 5px 0;
}

.topfa {
    padding-right: 5px;
    color: #000;
}


/* Page Header */
.page-header {
    background: linear-gradient(to right, #94be12, #c3de68);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-header h1 {
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    display: inline-flex;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.breadcrumb-item, .breadcrumb-item a {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Cards */
.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 201, 38, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #ef7e08;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .icon-box {
    background: #94be12;
    color: #fff;
}

.contact-card h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p, .contact-card a {
    color: var(--text-light);
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    background: var(--light-bg);
    padding: 0 0 5rem 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 49%, var(--light-bg) 50%);
}

/* Form */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-title {
    margin-bottom: 2rem;
    text-align: center;
}

.section-title h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-light);
}

.form-floating {
    margin-bottom: 1rem;
}

#contact_form .form-control,#contact_form  .form-select {
    border: 2px solid #ddd;
    padding: 1rem;
    height: calc(3.5rem + 2px);
    font-size: 1rem;
}

#contact_form .form-control:focus, #contact_form  .form-select:focus {
    border-color: #ddd;
    box-shadow: 0 0 0 0.15rem rgba(239, 126, 8, 0.15);
}

#contact_form  textarea.form-control {
    height: auto;
    resize: none;
}

.form-floating > label {
    padding: 1rem;
}

.btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Map */
.map-wrapper {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(114, 114, 114, 0.5);
    border: 1px solid #eee;
}

#map_canvas {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }

    .map-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

.map-wrapper {
}

/* Genel */
body {
    background: #f2f2f2;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Tüm kartlar için temel stil */
.card {
    background-color: #ffffff;
    border: none;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    transition: none; /* Animasyon yok */
}

/* Sadece .cardh sınıfına sahip kartlar hover animasyonuna sahip */
.cardh {
    transition: all 0.3s ease;
}
.cardh:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* Kart başlıkları */
.card-header {
    background: #fff;
    color: #343a40;
    font-size: 1.15rem;
    font-weight: 600;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    padding: 1rem 1.25rem;
}

/* Tab menüsü */
.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    border: none;
    background-color: #dee2e6;
    margin-right: 6px;
    border-radius: 10px;
    padding: 10px 20px;
    color: #495057;
    font-weight: 500;
    transition: 0.3s;
}

.nav-tabs .nav-link.active {
    background-color: #6c757d;
    color: white;
}

/* Tab içerikleri */
.tab-content {
    padding: 25px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Bilgi tablosu */
.table th {
    background-color: #f1f3f5;
    color: #495057;
    font-weight: 600;
    width: 30%;
    vertical-align: middle;
}

.table td {
    background-color: #ffffff;
    vertical-align: middle;
    color: #333;
}

/* Firma logosu alanı */
.firmalogo {
    background: linear-gradient(135deg, #e4e4e4, #ffffff);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.firmalogo:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.firmalogo img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    border-radius: 10px;
    filter: grayscale(15%);
    transition: filter 0.3s ease;
}

.firmalogo img:hover {
    filter: grayscale(0%);
}

/* Hizmet kartları */
.urunresim img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.card-body h5 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.card-body a {

    font-weight: 500;
}


/* Referans görselleri */
.card-body.text-center img {
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.card-body.text-center img:hover {
    transform: scale(1.03);
}


/* Responsive düzeltmeler */
@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .urunresim img {
        height: 150px;
    }
}

footer{
    background-color: #fff;
}


.sabitsayfa ul {
    margin: 0;
    padding: 0
}

.sabitsayfa li {
    display: block;
    padding: 5px 0;
    margin: 5px 25px
}

.sabitsayfa p {
    text-indent: 28px;
    line-height: 30px;
    margin-bottom: 5px
}

.sabitsayfa h1 {
    font-size: 1.5rem; /* Smaller size */
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sabitsayfa h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sabitsayfa h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sabitsayfa h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.sabitsayfa h5 {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.sabitsayfa h6 {
    font-size: 0.625rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
    .sabitsayfa h1 {
        font-size: 1.25rem;
    }

    .sabitsayfa h2 {
        font-size: 1rem;
    }

    .sabitsayfa h3 {
        font-size: 0.875rem;
    }
}

/* Temel stiller */
.owl-carousel .item img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 10px;
}

/* NAV (Önce Konumlandırma) */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 25px;
    pointer-events: none;
    z-index: 10;
}

.cardx {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensures all cards are the same height */
    position: relative;
    overflow: hidden;
}

.cardx::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; /* Start from the center */
    width: 50%; /* Initial width of the orange line */
    height: 4px; /* Height of the orange line */
    background-color: #ff5722; /* Orange color */
    transform: translateX(-50%); /* Center the line */
    transition: width 0.3s ease; /* Smooth animation */
}

.cardx:hover::after {
    width: 100%; /* Full width on hover */
}

.owl-nav button {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    pointer-events: all;
}

.owl-nav button:hover {
    background-color: #ff5722;
    color: white;
    transform: scale(1.1);
}

/* Dots */
.owl-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
}

.owl-dots .owl-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.owl-dots .owl-dot.active {
    background-color: #ff5722;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.6);
}



.urunresim {
    position: relative;
    width: 100%;
    height: 223px;
    overflow: hidden;
}

.urunresim img {
    object-fit: scale-down;
    width: 100% !important;
    height: 100% !important;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.urunresim img:hover {
    -webkit-transform: rotate(0deg) scale(1.1, 1.1);
    -moz-transform: rotate(0deg) scale(1.1, 1.1);
    -ms-transform: rotate(0deg) scale(1.1, 1.1);
    transform: rotate(0deg) scale(1.1, 1.1);
}

.bayilerbg {
    background: #ddd;
}


/* Referanslar*/
.owl-carousel4 .item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.owl-carousel4 .cardx {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.owl-carousel4 .cardx:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

hr{
    border-top: 1px solid #888;
}