/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
    --bblu: #1B2B47;
     
}
 /******* KATALOG SAYFASI CSS**********/

  /*********KATALOG SAYFASI CSS********/
  
h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** hero Etiketi****/
.container-fluid {
    position: relative;
  }
  
  #myVideo {
    width: 100%;
  }
  
  #centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Yazının rengini beyaz yaptım, siz kendi tercihinize göre değiştirebilirsiniz */
    font-size: 160%;
  }


/*** 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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}
/*** Navbar yeni***/
.nav-item {
    padding: 0.5rem 0xp;
  }
  
  .dropdown-hover:hover>.dropdown-menu {
  display: inline-block;
  }
  
  .dropdown-hover>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
  }

/*** Navbar eski***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: rgba(255, 255, 255, 0.8); /* %80 beyaz saydam */
    transition: .5s;
}

.service-item * {
    transition: .5s;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.instagram-feed img,
.instagram-feed video {
  width: 100%; /* Konteynerin genişliğine göre ayarla */
  height: 250px; /* Sabit bir yükseklik belirle */
  object-fit: cover; /* İçeriği kırp ve kutuya sığdır */
}

/* style.css dosyası içeriği */
.instagram-feed li {
    position: relative;
    /* Diğer stiller */
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah arka plan */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
  }
  
  .instagram-feed li:hover .overlay {
    opacity: 1;
  }
  
  .instagram-logo {
    background-image: url('instagram-logo.png'); /* Instagram logosunun URL'si */
    background-size: cover;
    width: 50px; /* Logonun genişliği */
    height: 50px; /* Logonun yüksekliği */
  }

  .section-bg {
    background-color: #f5f6f7;
}
section {
    padding: 80px 0;
    overflow: hidden;
}
*, ::after, ::before {
    box-sizing: border-box;
}
user agent stylesheet
section {
    display: block;
    unicode-bidi: isolate;
}
body {
    font-family: var(--font-default);
    color: var(--color-default);
    overflow-x: hidden;
}
body {
    margin: 0;
    
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
:root {
    --color-default: #364d59;
    --color-primary: #feb900;
    --color-secondary: #52565e;
}
:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Work Sans", sans-serif;
}
:root {
    --swiper-navigation-size: 44px;
}
:root {
    --swiper-theme-color: #007aff;
}
:host, :root {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}
:host, :root {
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}
:host, :root {
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}
 
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #B78D65;
    border-color: #dee2e6 #dee2e6 #fff;
}
.rounded {
    border-radius: 50px;
  }
  .carousel-caption {
    background-color: rgba(0,0,0,0.5);
    border-radius: 15px;
  }
  .card {
    border: 1px solid #000;
  }
  
  .carousel {
    cursor: pointer;
  }
  

  /*********KATALOG- ZİNCİRLER SAYFASI********/
  .hover-overlay-container {
    position: relative;
    width: 100%;
    height: auto;
}

.hover-overlay-container:hover .overlay-text-container {
    opacity: 1;
}

.hover-overlay-container .overlay-image {
    display: block;
    width: 100%;
    height: auto;
}

.hover-overlay-container .overlay-text-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color:#00000052;
}

.hover-overlay-container .overlay-text-container .overlay-text {
    color: #fff;
    font-size: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
 
.lazy {
    display: block;
    width: 100%;
}

 
/* Navbar Genel Stilleri */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Masaüstü Dropdown Menü Genişliği - Tam Sayfa */
@media (min-width: 992px) {
  .dropdown-menu.w-100 {
    width: 100vw !important;
    min-width: 100vw !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    border-radius: 0;
    border: none;
    border-top: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed !important;
    top: auto !important;
  }
  
  .dropdown-menu.w-100 .container-fluid {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 100%;
  }
  
  .dropdown-menu.w-100 .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .dropdown-menu.w-100 .list-group-item {
    padding: 8px 15px;
    white-space: nowrap;
  }
  
  .dropdown-menu.w-100 .list-group-item:first-child {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  
  /* Navbar pozisyonunu düzeltme */
  .navbar {
    position: static !important;
  }
}

/* Offcanvas Sidebar Stilleri */
.offcanvas {
  max-width: 300px;
  transition: transform 0.3s ease-in-out;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
  padding: 1rem 1.5rem;
}

.offcanvas-title {
  font-weight: 600;
}

.offcanvas-body {
  padding: 0;
}

/* Accordion Stilleri */
.accordion-button {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 0, 0, 0.03);
  color: inherit;
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-item {
  border: none;
}

.list-group-item {
  border-radius: 0 !important;
  border-left: none;
  border-right: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s;
}

.list-group-item:hover {
  background-color: #f8f9fa;
}

.list-group-item.accordion-button {
  padding-right: 2.5rem;
}

/* İç içe menüler için girinti */
.list-group-flush.ps-3 .list-group-item {
  padding-left: 2.5rem;
}

.list-group-flush.ps-4 .list-group-item {
  padding-left: 3.5rem;
}

/* Mobil görünüm ayarları */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }
  
  .offcanvas {
    max-width: 80%;
  }
}

/* Accordion düğmeleri için stil */
.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* List group item hover efekti */
.list-group-item-action:hover {
  background-color: #f8f9fa;
}
/* Hakkımızda linkiyle tamamen aynı stil */
.offcanvas-body .accordion-button,
.offcanvas-body .accordion-collapse .list-group-item {
  font-family: var(--bs-font-sans-serif); /* Bootstrap'ın varsayılan fontu */
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
  /*padding: 0.75rem 1.5rem;*/
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Video için düzenleme */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 20px 0; /* Navbar ile arasına boşluk */
    overflow: hidden;
    background: #000;
    transform: scale(1.01); /* Kenardaki logo artıklarını gizlemek için */
}

#responsiveVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* YouTube logo ve kontrolleri için ekstra gizleme */
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

/* YouTube logo ve kontrolleri gizleme */
.ytp-watermark,
.ytp-chrome-top-buttons,
.ytp-title-channel,
.ytp-title-text {
    display: none !important;
    opacity: 0 !important;
}

/* Mobil için özel ayar */
@media (max-width: 768px) {
    .video-wrapper {
        padding-bottom: 75%; /* Mobilde daha yüksek */
    }
    
    /* Mobilde ekstra gizleme */
    #responsiveVideo {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin: 20px 0;
    overflow: hidden;
    background: #fff;
}

.video-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(5% 0 5% 0);
}

#responsiveVideo {
    position: absolute;
    top: -5%;
    left: 0;
    width: 100%;
    height: 110%;
    border: none;
}

.freeze-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5%;
    background-color: #fff;
    z-index: 10;
    pointer-events: none;
    opacity: 0.95;
}

.top-freeze {
    top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bottom-freeze {
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.click-shield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

/* Mobil için özel ayarlar */
@media (max-width: 768px) {
    .video-wrapper {
        padding-bottom: 75%;
        margin: 10px 0; /* Mobilde daha az margin */
    }
    
    .video-mask {
        clip-path: inset(8% 0 8% 0);
    }
    
    #responsiveVideo {
        top: -8%;
        height: 116%;
    }
    
    .freeze-overlay {
        height: 8%;
    }
    
    .top-freeze {
        box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    }
    
    .bottom-freeze {
        box-shadow: 0 -3px 8px rgba(0,0,0,0.15);
    }
}
 
  

  .carousel-item {
    transition: transform 0.6s ease-in-out;
  }
  .carousel-item img {
    max-height: 500px;
    object-fit: contain;
  }
  .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
  }
  .list-group-item {
    padding: 0.5rem 0;
  }



  
/*<!-- Gerekli CSS  services  bölümü anasayfa hariç  -->*/
 .service-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  scroll-behavior: smooth;
  gap: 20px;
}
.service-slider::-webkit-scrollbar {
  display: none; /* Chrome */
}

.service-slider > .col-lg-3 {
  flex: 0 0 auto;
  width: 300px; /* veya ihtiyacınıza göre */
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.slider-prev {
  left: -30px;
}
.slider-next {
  right: -30px;
}


.start {
  text-align: start;
  justify-content: flex-start;
}
.end {
  text-align: start;
  justify-content: flex-end;
}