
  
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --primary-color: #1272b8; /* Koyu Mavi (Ana Renk) */
  --primary-color-hover: #379fd0; /* Açık Mavi (Hover için yeni ekledik) */
  --black-color: #1A2A36;
  --light-black-color: #4E4C49;
  --dark-color: #9B9B9B;
  --primary-color-200: #E8F0F1;
  --primary-color-400: #c4e9ed;
  --gray-color: #777F81;
  --bs-body-bg: #F9F4EC;
  --bs-dark-rgb: 80, 80, 80;
  --bs-gray-100: #EAE5DD;
  --bs-gray-300: #DCDCDC;
  --bs-primary-text-emphasis: var(--primary-color);
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-primary-rgb: 14, 113, 184; /* Koyu Mavinin RGB Değeri */
  --light-color: #fdfdfd;
  --swiper-theme-color: #111 !important;
  --cadet-blue-color: #9AB4B7;
}

/* Fonts – GLOBAL */
:root {
  --heading-font: "BC Barell", "Montserrat", sans-serif;
  --body-font: "Montserrat", sans-serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--dark-color);
  margin: 0;
}

p {
  color: var(--dark-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

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

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-gray {
  background-color: var(--bs-gray-100) !important;
}

.bg-accent-gradient {
  background: linear-gradient(90deg, #18A7E4 0%, #1BADEC 0.01%, #0A9CDB 100%);
}

.bg-primary-200 {
  background-color: var(--primary-color-200) !important;
}

.bg-primary-dim {
  background-color: var(--bs-primary-rgb) !important;
}

/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-minicik {
  padding-top: 4.125em;
  padding-bottom: 4.125em;
}

.padding-small {
  padding-top: 8.125em;
  padding-bottom: 8.125em;
}

.padding-medium {
  padding-top: 10em;
  padding-bottom: 10em;
}

.padding-large {
  padding-top: 12em;
  padding-bottom: 12em;
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}

.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}

.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}


/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 0.84px;
  line-height: 115%;
}

h6 {
  color: var(--light-black-color);
  font-family: var(--body-font);
  font-weight: 500;
  text-transform: uppercase;
}


/* - Content width
--------------------------------------------------------------*/
.container-md {
  max-width: 1465px;
}

.container-lg {
  max-width: 1750px;
}

/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/
.btn {
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  text-transform: uppercase;
  border-radius: 60px;
  letter-spacing: 0.1rem;
  transition: all 0.4s ease-in-out;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-color-hover); /* Açık Mavi */
  --bs-btn-hover-border-color: var(--primary-color-hover);
  --bs-btn-focus-shadow-rgb: 14, 113, 184; /* Koyu Mavi RGB */
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-color-hover);
  --bs-btn-active-border-color: var(--primary-color-hover);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary-color-hover);
  --bs-btn-disabled-border-color: var(--primary-color-hover);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary-color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--primary-color);
  --bs-gradient: none;
}



/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  color: var(--dark-color);
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

/* Form
------------------------------------------------------------- */
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: none;
}

.form-check-input:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--dark-color);
  outline: 0;
  box-shadow: none;
}

input,
select,
textarea {
  border-color: var(--dark-color);
  outline: 0;
  box-shadow: none;
}

select:focus {
  box-shadow: none;
}

/* Svg Color
------------------------------------------------------------- */
svg.light-color {
  color: var(--light-color);
}

svg.dark-color {
  color: var(--dark-color);
}

svg.primary-color {
  color: var(--primary-color);
}

svg.primary-color {
  color: var(--primary-color);
}

svg.primary-color-500 {
  color: var(--bs-primary-rgb);
}

/* Swiper
------------------------------------------------------------- */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.slider-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  border-radius: 0;
  background: #FFFFFF;
}

.slider-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}


/* modal video override
------------------------------------------------------------- */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}

/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/

a.nav-link {
  text-transform: uppercase;
  color: var(--light-black-color);
}

a.nav-link:focus {
  color: var(--light-black-color);
}

a.nav-link.active,
a.nav-link:hover {
  color: var(--primary-color) !important;
  outline: none;
}

#primary-header .dropdown .search::after {
  content: none;
}

#primary-header .search-dropdown .dropdown-menu {
  width: 260px;
}

#primary-header .search-dropdown .dropdown-menu input {
  min-width: 100%;
}

#primary-header .search-dropdown .dropdown-menu button {
  padding: 0 12px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}

@media (max-width: 999px) {
  a.nav-link {
    font-size: 30px;
    padding: 15px 0 15px 0 !important;
  }
}


/* 4.2 Slider Section
/*----------------------------------------------*/
section#slider .banner-content {
  width: 40%;
  background: rgba(253, 253, 253, 0.90);
}

section#slider .main-slider-button-next,
.main-slider-button-prev {
  z-index: 111111;
  height: fit-content;
  opacity: 0.9;
}

section#slider .main-slider-button-next.swiper-button-disabled,
.main-slider-button-prev.swiper-button-disabled {
  opacity: 0.6;
}

@media only screen and (max-width: 999px) {
  section#slider .banner-content {
    width: 66%;
  }
}

/* 4.3 About Section
/*----------------------------------------------*/
svg.play-icon {
  animation: play 1.5s alternate infinite ease-in;
}

@keyframes play {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1.1);
  }

}


/* 4.4 Services Section
/*----------------------------------------------*/
.service-post img.service-img {
  transition: all 0.5s ease-in-out;
}

.service-post:hover img.service-img {
  opacity: 0.2;
}


/* 4.5 Projects Section
/*----------------------------------------------*/

button.filter-button {
  border: 0;
  background: transparent;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
}

button.filter-button.active,
button.filter-button:hover {
  color: var(--bs-light);
  background: var(--primary-color);
}

/*----------------------------------------------*/
/* 5 PAGES STYLE */
/*----------------------------------------------*/

/*--------------------------------------------------------------
5.1 About page 
--------------------------------------------------------------*/

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


/*--------------------------------------------------------------
  5.2 Blog page 
  --------------------------------------------------------------*/
.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}


/*--------------------------------------------------------------
 5.3 Pricing page 
  --------------------------------------------------------------*/
.plan-post {
  border: 1px solid var(--primary-color);
}

span.price-tick {
  color: var(--primary-color);
}

.price-option {
  height: 320px;
}


/*--------------------------------------------------------------
 5.4 reviews page
--------------------------------------------------------------*/

.reviews-components {
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--primary-color);
}

.rate {
  color: var(--primary-color);
}



/*--------------------------------------------------------------
5.5 faqs page 
--------------------------------------------------------------*/

/* accordian style override  */

.accordion {
  --bs-accordion-border-color: var(--primary-color);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23d06051&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23d06051&width=30');
  --bs-accordion-border-radius: 0px;
}

.accordion-header {
  margin-bottom: 0;
  border-top: 1px solid var(--primary-color);
}

.accordion-button {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  letter-spacing: 0.065rem;
  text-transform: uppercase;
}

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

.accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background-color: transparent;
  box-shadow: none;
}

/* Sticky Header (Sabit Menü) Ayarları */
#primary-header {
  position: -webkit-sticky; /* Safari desteği için */
  position: sticky;
  top: 0;
  z-index: 1030; /* Slider ve diğer içeriklerin üstünde kalmasını sağlar */
  background-color: var(--light-color); /* Menünün arka plan rengi (şeffaf olmaması için) */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Sayfa kaydırıldığında menüyü ayırmak için hafif gölge */
}

/* 4.4 Services Section (Kart Görünümü Güncellemesi)
/*----------------------------------------------*/
.service-card {
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(26, 42, 54, 0.1) !important; /* --black-color'dan türetilen hafif bir gölge */
}

.service-card .card-img-wrapper img {
  transition: all 0.5s ease-in-out;
}

.service-card:hover .card-img-wrapper img {
  transform: scale(1.1); /* Resme şık bir zoom efekti */
}

/* 4.6 References Section (Logo Grid Yapısı)
/*----------------------------------------------*/
.ref-item {
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  cursor: pointer;
}

/* Üzerine gelince arkaya hafif gri bir fon atar */
.ref-item:hover {
  background-color: var(--bs-gray-100); 
}

.logo-img {
  max-height: 80px; /* Logoların devasa boyutlara çıkmasını engeller */
  width: auto;
  object-fit: contain; /* Görselin en-boy oranını bozmadan sığdırır */
  filter: grayscale(100%); /* Varsayılan olarak logoları gri yapar */
  opacity: 0.6;
  transition: all 0.4s ease;
}

.ref-item:hover .logo-img {
  filter: grayscale(0%); /* Üzerine gelince logonun orijinal rengi geri gelir */
  opacity: 1;
  transform: scale(1.05); /* Çok hafif bir büyüme efekti */
}

.btn-rec {
  border-radius: 999px !important;
  padding: 12px 26px;
  font-weight: 600;
  background: var(--primary-color); /* Koyu Mavi */
  color: #fff;
  border: 0;
}

.nav-link:focus, .nav-link:hover {
  background-color: var(--primary-color-hover) !important; /* Açık Mavi */
  color: #fff !important;
}

/* ... (diğer map-tabs ayarları kalabilir) ... */

.map-tabs .btn-rec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 700;
  background: var(--primary-color); /* Koyu Mavi */
  color: #fff;
  border: 0;
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

.map-tabs .nav-link:hover .btn-rec { 
  transform: translateY(-1px);
  background: var(--primary-color-hover); /* Üzerine gelince Açık Mavi */
}



/* aktif/pasif */
.map-tabs .nav-link:not(.active) .btn-rec{ opacity: .6; }
.map-tabs .nav-link.active .btn-rec{ opacity: 1; }

/* hover */
.map-tabs .nav-link:hover .btn-rec{ transform: translateY(-1px); }


.sticky-social{
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-social__item{
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);

  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}

.sticky-social__item i{
  font-size: 20px;
  line-height: 1;
}

/* Hover efekti */
.sticky-social__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

/* İstersen marka renkleri */
.sticky-social__item.wa{ color:#25D366; }
.sticky-social__item.fb{ color:#1877F2; }
.sticky-social__item.ig{ color:#E4405F; }
.sticky-social__item.in{ color:#0A66C2; }

/* Mobilde biraz küçült */
@media (max-width: 768px){
  .sticky-social{ right: 10px; }
  .sticky-social__item{ width: 20px; height: 20px; }
  .sticky-social__item i{ font-size: 10px; }
}

/* Çoklu Dil Kontrolü (Sitenizin <html> etiketindeki lang özelliğine göre çalışır) */
html[lang="tr"] .lang-en { display: none; }
html[lang="en"] .lang-tr { display: none; }

/* Sticky Menü Ana Kapsayıcı */
.rec-sticky-menu {
  position: fixed;
  bottom: 0; /* Ekranın en altı */
  left: 0;   /* En sol */
  display: flex;
  flex-direction: column-reverse; /* Buton altta, linkler üstte açılacak şekilde */
  align-items: flex-start;
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Altta Duran İnce Buton Kısmı */
.rec-sticky-handle {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 10px 25px; /* Yatayda daha geniş bir buton */
  border-radius: 0 6px 0 0; /* Sadece sağ üst köşeyi yuvarladık */
  cursor: pointer;
  writing-mode: horizontal-tb; /* Normal yatay yazı */
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  text-align: center;
}

.rec-sticky-menu:hover .rec-sticky-handle {
  background-color: #1a252f;
}

/* Açılır Menü Kısmı (Üste Doğru Açılır) */
.rec-sticky-links {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 0; /* Başlangıçta yüksekliği yok */
  width: auto; /* Genişlik içeriğe göre */
  min-width: 150px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease;
  white-space: nowrap;
}

/* Hover (Üzerine Gelindiğinde) Durumu */
.rec-sticky-menu:hover .rec-sticky-links {
  height: auto; /* İçerik kadar yükselir */
  padding: 15px 20px;
  border: 1px solid #f0f0f0;
  border-bottom: none;
}

/* Link Tasarımları */
.rec-sticky-links li {
  margin-bottom: 12px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 8px;
}

.rec-sticky-links li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.rec-sticky-links a {
  text-decoration: none;
  color: #555555;
  font-size: 14px;
  font-weight: 500;
  display: block;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.rec-sticky-links a:hover {
  color: #007bff;
  padding-left: 5px;
}

/* Footer contact: mobilde düzgün kırılım */
.footer-contact .contact-item{
  display:flex;
  align-items:flex-start;
  gap:.5rem;
  margin:.35rem 0;
}

.footer-contact .contact-ico{
  flex:0 0 16px;
  margin-top:.15rem; /* ikonun metinle hizası */
}

.footer-contact .contact-text{
  flex:1 1 auto;
  min-width:0; /* uzun metinlerde taşmayı engeller */
  line-height:1.35;
}

.footer-contact .contact-label{
  font-weight:600;
  margin-right:.35rem;
  white-space:nowrap; /* "Merkez:" kırılmasın */
}

.footer-contact .contact-value{
  word-break:break-word;
  overflow-wrap:anywhere;
}