@import url('//fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,600i,700,700i,800,800i');
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++
AUTHOR : R_GENESIS
PROJECT : RGen Landing Page with Page Builder
This file licensed to R_GENESIS (http://themeforest.net/user/r_genesis) and it's strictly prohibited to copy or reuse it.
Copyright 2015-2017 R.Genesis.Art
++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
/* 
TABLE OF CONTENTS
********************************************
- LOGO IMAGE LIST
- POP UP CONTENT
- TAB CONTROLS
-  |- TAB STYLE 1
-  |- TAB STYLE 2
-  |- TAB STYLE 3
-  |- TAB STYLE 4
- PROGRESS BARS
- FILTERS
- CAROUSEL CONTROLS
- ZOOM CAROUSEL
- SWIPER CAROUSEL
- SWIPER GALLERY
- ACCORDION
-  |- ACCORDION STYLE 1
-  |- ACCORDION STYLE 2
- COUNTDOWN CONTROLS
- INFO BOXES
- HOVER BOXES
- NAVIGATION
- PRICE TABLES

********************************************/
.v-align {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.c-align {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
/*.mr-mixin (@a, @i) when (@a = all) 		{ .mr-@{i} { margin: unit(@i, px);} }
.mr-mixin (@a, @i) when (@a = top) 		{ .mr-t-@{i} { margin-top: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = right) 	{ .mr-r-@{i}, .info-obj.img-r.g@{i} .info { margin-right: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = bottom) 	{ .mr-b-@{i}, .info-obj.img-t.g@{i} .img  { margin-bottom: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = left) 	{ .mr-l-@{i}, .info-obj.img-l.g@{i} .info { margin-left: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = tb)		{ .mr-tb-@{i} { margin-top: unit(@i, px); margin-bottom: unit(@i, px); } }
.mr-mixin (@a, @i) when (@a = lr)		{ .mr-lr-@{i} { margin-left: unit(@i, px); margin-right: unit(@i, px); } }*/
/*.pd-mixin (@a, @i) when (@a = all) 		{ .pd-@{i} { padding: unit(@i, px);} }
.pd-mixin (@a, @i) when (@a = top) 		{ .pd-t-@{i} { padding-top: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = right) 	{ .pd-r-@{i} { padding-right: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = bottom) 	{ .pd-b-@{i} { padding-bottom: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = left) 	{ .pd-l-@{i} { padding-left: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = tb)		{ .pd-tb-@{i} { padding-top: unit(@i, px); padding-bottom: unit(@i, px); } }
.pd-mixin (@a, @i) when (@a = lr)		{ .pd-lr-@{i} { padding-left: unit(@i, px); padding-right: unit(@i, px); } }*/
/*.wh-mixin (@a, @i) when (@a = wpx) 		{ .px-w@{i} { width: unit(@i, px); } }
.wh-mixin (@a, @i) when (@a = wmin-px) 	{ .min-px-w@{i} { min-width: unit(@i, px); } }*/
/*.wh-mixin (@a, @i) when (@a = hpx) 		{ .px-h@{i} { height: unit(@i, px); } }
.wh-mixin (@a, @i) when (@a = hmin-px) 	{ .min-px-h@{i} { min-height: unit(@i, px); } }*/
/*
***************************************************************
LAYOUT
***************************************************************
*/
body.boxed {
  background-color: #f2f2f2;
}
body.boxed .main-wrapper {
  max-width: 1330px;
  min-width: 1200px;
  margin: auto;
  background-color: #fff;
}
.layout-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
/* .layout-row .layout-column > div {
	background-color: rgba(0,0,0,0.1);
} */
/* We tell all items to be 100% width */
.contantarea,
.aside {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  /* background-color: rgba(0,0,0,0.1); */
}
.aside {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
  /* background-color: rgba(0,0,0,0.2); */
}
.layout-row._1 .contantarea {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}
.layout-row._2 .contantarea {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}
.layout-row._3 .contantarea {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}
/* We rely on source order for mobile-first approach
 * in this case:
 * 1. header
 * 2. nav
 * 3. main
 * 4. aside
 * 5. footer
 */
/* Large screens */
@media all and (min-width: 992px) {
  /* We invert order of first sidebar and main
	* And tell the main element to take twice as much width as the other two sidebars 
	*/
  .contantarea {
    -webkit-box-flex: 2;
        -ms-flex: 2 0px;
            flex: 2 0px;
  }
  .left-aside {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .contantarea {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .right-aside {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
/*===========================================*/
/*	TABLET
/*===========================================*/
@media (min-width: 768px) and (max-width: 991px) {
  /* We tell both sidebars to share a row */
  .aside {
    -webkit-box-flex: 1;
        -ms-flex: 1 auto;
            flex: 1 auto;
    max-width: 100%;
  }
}
/*===========================================*/
/*	MOBILE
/*===========================================*/
@media (min-width: 200px) and (max-width: 767px) {
  .layout-row {
    display: block;
  }
  .aside {
    max-width: 100%;
  }
}
/*
***************************************************************
HEADER
***************************************************************
*/
/* Modern Header Styles */
.main-head {
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-head.header-sticky {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.brand-name:hover {
    transform: translateY(-1px);
    text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.4);
}

/* Modern Navigation Styles */
.menu-wrp .menu {
    display: flex;
    gap: 15px;
}

.menu-wrp .menu .menu-item a {
    color: #fff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.menu-wrp .menu .menu-item a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.menu-wrp .menu .menu-item a:hover:before {
    transform: translateX(100%);
}

.menu-wrp .menu .menu-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Modern Button Styles */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover:before {
    transform: translateX(100%);
}

.btn.btn-default.mini {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.btn-dark.solid.mini {
    background: #fff;
    color: #000;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-head > .container-fluid,
.main-head > .container {
  position: relative;
}

.main-head > .container-fluid > .flex-row,
.main-head > .container > .flex-row {
  width: 100%;
  display: flex;
  align-items: center;
}

.main-head .header-logo-wrp {
  display: inline-block;
  margin-bottom: -5px;
}

.main-head .header-logo {
  padding: 10px 0;
  height: auto;
  display: block;
}

.main-head .header-logo img {
  max-height: 35px;
  max-width: 100%;
}

.header-sticky > .bdr-b {
  border-bottom: none !important;
}

.header-sticky .sticky-hide {
  display: none;
}

.header-sticky .header-logo img {
  max-height: 30px;
}

.header-sticky > [class*="pd-tb"] {
  padding-top: 0;
  padding-bottom: 0;
}

/* Dark theme header styles */
.dark .main-head {
  background-color: rgba(45, 51, 69, 0.2); /* Dark temada biraz daha koyu saydam */
}

.dark .header-sticky {
  background-color: #1f2229;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .main-head {
    padding: 8px 15px; /* Mobilde daha az padding */
  }
  
  .main-head .header-logo img {
    max-height: 32px;
  }
  
  .header-sticky .header-logo img {
    max-height: 28px;
  }
}

.head-overlay {
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 99;
}
.header-sticky .head-row,
.header-sticky[class*="px-h"],
.header-sticky[class*="min-px-h"],
.header-sticky > [class*="px-h"],
.header-sticky > [class*="min-px-h"] {
  min-height: inherit;
  height: auto;
}
.header-hide {
  opacity: 0;
  top: -100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-show {
  opacity: 1;
  top: 0 !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
/*
***************************************************************
NAVIGATION
***************************************************************
*/
.menu {
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  /*----------  Main level  ----------*/
  /*----------  Second level drop-down container ----------*/
  /*----------  Mobile menu handler ----------*/
}
.menu ul {
  list-style: none;
}
.menu li a:hover {
  opacity: 1;
}
.menu .menu-item {
  position: relative;
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1px;
}
.menu .menu-item > a {
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 100%;
  white-space: normal;
  display: block;
  padding: 5px 15px;
  position: relative;
  border: 1px solid transparent;
}
.menu .menu-item.has-dropdown > a {
  padding-right: 25px;
  position: relative;
}
.menu .menu-item > .sub {
  position: absolute;
  z-index: 99;
  opacity: 0;
  -webkit-transition-property: none !important;
  transition-property: none !important;
  visibility: hidden;
  display: none;
}
.menu .menu-item > .sub:not([class*="pd-"]) {
  padding: 8px;
}
.menu .menu-item > .sub > li > a,
.menu .menu-item > .sub .dropdown > li > a {
  height: auto;
  font-size: 13px;
  padding: 5px 20px;
  display: block;
  position: relative;
}
.menu .has-dropdown {
  position: relative;
  /*----------  All other drop-down ----------*/
}
.menu .has-dropdown.active > .sub {
  display: block;
  opacity: 1;
  visibility: visible;
  top: 100%;
  left: 0px;
}
.menu .has-dropdown.active > .sub:not([class*="min-px-w"]) {
  min-width: 200px;
}
.menu .has-dropdown > .dropdown {
  left: 100%;
  top: 0;
  padding: 8px;
  position: absolute;
  z-index: 99;
  opacity: 0;
  display: none;
  visibility: hidden;
  margin-top: 0px;
  min-width: 200px;
}
.menu .has-dropdown.active > .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
}
.menu .sub-r {
  right: 0;
  left: auto !important;
}
.menu .has-dropdown > a:after,
.menu .sub-handler {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 10px;
  font-size: 13px;
  font-family: Font Awesome\ 5 Free;
  speak: none;
  font-style: normal;
  font-weight: 900;
  content: "\f105";
}
.menu .menu-item.has-dropdown > a:after {
  content: "\f107";
}
.menu .sub-handler {
  display: none;
  top: 1px;
  right: 0px;
  width: 30px;
  height: 30px;
  -webkit-transform: none;
          transform: none;
  text-align: center;
  line-height: 30px;
  z-index: 9999;
}
.menu .menu-item > .sub-handler {
  top: 6px;
}
.menu.inline-block {
  width: auto;
}
/*
====================================
Menu handle
====================================
*/
.nav-handle {
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  margin: auto;
  width: auto;
  text-align: center;
  display: none;
  line-height: 1px;
}
/*
====================================
Search popup
====================================
*/
.popup-search {
  padding: 0px;
}
.popup-search .mfp-close {
  color: #fff;
  width: 100px;
  height: 100px;
  font-size: 50px;
}
.popup-search .search-frm {
  position: relative;
  width: 80%;
}
.popup-search .search-frm .btn {
  height: 100%;
  border-radius: 0 4px 4px 0;
  font-size: 50px;
  width: 170px;
  opacity: 0.25;
}
.popup-search .search-frm .btn:hover {
  opacity: 1;
}
.popup-search .search-frm input {
  border-radius: 0px;
  width: 100%;
  color: #ffffff;
  font-size: 70px;
  padding: 20px 30px;
}
.popup-search .search-frm:hover input {
  border-color: #ffffff;
}
/*
***************************************************************
INLINE LIST
***************************************************************
*/
.inline-list {
  text-align: center;
  margin-bottom: 0;
}
.inline-list > li {
  display: inline-block;
}
.inline-list > li > img {
  margin: auto;
}
.gt-large.inline-list > li {
  margin: 10px 25px;
}
.gt-medium.inline-list > li {
  margin: 10px 20px;
}
.gt-small.inline-list > li {
  margin: 10px 10px;
}
.gt-mini.inline-list > li {
  margin: 10px 8px;
}
.gt-tiny.inline-list > li {
  margin: 10px 5px;
}
.size-large.inline-list > li {
  width: 200px;
}
.size-medium.inline-list > li {
  width: 180px;
}
.size-small.inline-list > li {
  width: 160px;
}
.size-mini.inline-list > li {
  width: 140px;
}
.size-tiny.inline-list > li {
  width: 100px;
}
.align-m.inline-list > li {
  vertical-align: middle;
}
.inline-grid {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.inline-grid > li,
.inline-grid .grid-cell {
  /* 	border: 1px solid #fff; */
}
.gt-large.inline-grid > li {
  margin: 10px 25px;
}
.gt-medium.inline-grid > li {
  margin: 10px 20px;
}
.gt-small.inline-grid > li {
  margin: 10px 10px;
}
.gt-mini.inline-grid > li {
  margin: 10px 8px;
}
.gt-tiny.inline-grid > li {
  margin: 10px 5px;
}
.grid-reverse.inline-grid {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.grid-col.inline-grid {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.grid-col-reverse.inline-grid {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.grid-right.inline-grid {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.grid-center.inline-grid {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.grid-top.inline-grid {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.grid-mid.inline-grid {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grid-bottom.inline-grid {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
/*
***************************************************************
INFO BOXES
***************************************************************
*/
.info-obj {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /*.img {
		overflow: hidden;
	}*/
}
.info-obj .img img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.info-obj .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0px;
}
.info-obj-wrp,
.info-obj {
  margin-bottom: 20px;
}
/*
Image position
------------------------------------
*/
.info-obj.mid {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-obj.bot {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.info-obj.img-r .img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.info-obj.img-t {
  width: 100%;
  display: block;
}
/*
Image sizes
------------------------------------
*/
.info-obj.xlarge .img {
  width: 170px;
  font-size: 170px;
}
.info-obj.large .img {
  width: 150px;
  font-size: 150px;
}
.info-obj.medium .img {
  width: 100px;
  font-size: 100px;
}
.info-obj.small .img {
  width: 70px;
  font-size: 70px;
}
.info-obj.mini .img {
  width: 50px;
  font-size: 50px;
}
.info-obj.tiny .img {
  width: 30px;
  font-size: 30px;
}
/*
Icon sizes
------------------------------------
*/
.info-obj.xlarge .iconwrp {
  max-height: 170px;
  min-height: 170px;
}
.info-obj.large .iconwrp {
  max-height: 150px;
  min-height: 150px;
}
.info-obj.medium .iconwrp {
  max-height: 100px;
  min-height: 100px;
}
.info-obj.small .iconwrp {
  max-height: 70px;
  min-height: 70px;
}
.info-obj.mini .iconwrp {
  max-height: 50px;
  min-height: 50px;
}
.info-obj.tiny .iconwrp {
  max-height: 30px;
  min-height: 30px;
}
.info-obj.xlarge .sq,
.info-obj.xlarge .rd {
  font-size: 100px;
}
.info-obj.large .sq,
.info-obj.large .rd {
  font-size: 90px;
}
.info-obj.medium .sq,
.info-obj.medium .rd {
  font-size: 60px;
}
.info-obj.small .sq,
.info-obj.small .rd {
  font-size: 38px;
}
.info-obj.mini .sq,
.info-obj.mini .rd {
  font-size: 25px;
}
.info-obj.tiny .sq,
.info-obj.tiny .rd {
  font-size: 16px;
}
/*
Image alignment
------------------------------------
*/
.info-obj.align-c .img {
  margin-left: auto;
  margin-right: auto;
}
.info-obj.align-r .img {
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 200px) and (max-width: 991px) {
  .info-obj.xlarge,
  .info-obj.large {
    display: block;
  }
  .info-obj.xlarge .info,
  .info-obj.large .info {
    margin-left: auto !important;
    margin-right: 0 !important;
    margin-top: 40px;
  }
}
/*
***************************************************************
HOVER BOXES
***************************************************************
*/
figure.hover-box1:not([class*="mr-"]) {
  margin: 0px;
}
.hover-box1 {
  position: relative;
  overflow: hidden;
}
.hover-box1 img {
  width: 100%;
}
.hover-box1 .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 0;
  z-index: 200;
  top: 0px;
  left: 0px;
}
.hover-box1 .box-title {
  padding: 15px 20px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
}
.hover-box1:hover .overlay {
  opacity: 1;
}
.hover-box1:hover img:not(.no-scale),
.hover-box1:hover .img-wrp:not(.no-scale) {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.hover-box1:hover .hover-hide {
  opacity: 0;
  display: none;
}
.hover-box1:hover .hover-up {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.hover-box1._1 .overlay {
  opacity: 1;
}
[class*="hover-box"] .ani-up.content {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
[class*="hover-box"] .ani-down.content {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
[class*="hover-box"] .ani-left.content {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
[class*="hover-box"] .ani-right.content {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
[class*="hover-box"]:hover .ani-down.content,
[class*="hover-box"]:hover .ani-up.content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
[class*="hover-box"]:hover .ani-left.content,
[class*="hover-box"]:hover .ani-right.content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
/*
***************************************************************
BANNER GRIDS - NEW
***************************************************************
*/
/* .masonry-wrp, */
.banner-grid-wrp {
  position: relative;
  margin: auto;
}
/* .masonry-wrp:after{
	content: '';
	display: table;
	clear: both;
}
.masonry-item, */
.banner-grid-item {
  float: left;
  /* position: absolute; */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  overflow: hidden;
}
.banner-grid-item .bnr-img {
  display: block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
/* .masonry-item img, */
.banner-grid-item img {
  width: 100%;
  display: block;
  max-width: 100%;
}
/**
 * Masonry grids
 */
.masonry-wrp .masonry-grid {
  position: relative;
}
.masonry-wrp .masonry-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*overflow: hidden;*/
}
.masonry-wrp .masonry-item img {
  width: 100%;
  display: block;
  max-width: 100%;
}
.masonry-wrp figure {
  display: block;
  position: relative;
  margin: 0px;
  overflow: hidden;
  /*background-color: #f00;*/
}
.masonry-wrp .ratio-square .portfolio-item {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.masonry-wrp .ratio-square figure {
  padding-top: 100%;
}
.masonry-wrp .ratio-square figure.half {
  padding-top: 50%;
}
.masonry-wrp .ratio-square figure.double {
  padding-top: 200%;
}
.masonry-wrp .ratio-square.gt4 figure.half {
  padding-top: calc(50% - 2px);
}
.masonry-wrp .ratio-square.gt10 figure.half {
  padding-top: calc(50% - 5px);
}
.masonry-wrp .ratio-square.gt20 figure.half {
  padding-top: calc(50% - 10px);
}
.masonry-wrp .ratio-square.gt30 figure.half {
  padding-top: calc(50% - 15px);
}
.masonry-wrp .ratio-square.gt40 figure.half {
  padding-top: calc(50% - 20px);
}
.masonry-wrp .ratio-square.gt4 figure.double {
  padding-top: calc(200% + 3px);
}
.masonry-wrp .ratio-square.gt10 figure.double {
  padding-top: calc(200% + 9px);
}
.masonry-wrp .ratio-square.gt20 figure.double {
  padding-top: calc(200% + 19px);
}
.masonry-wrp .ratio-square.gt30 figure.double {
  padding-top: calc(200% + 29px);
}
.masonry-wrp .ratio-square.gt40 figure.double {
  padding-top: calc(200% + 39px);
}
.masonry-wrp .ratio-horizontal .portfolio-item {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.masonry-wrp .ratio-horizontal figure {
  padding-top: 76%;
}
.masonry-wrp .ratio-horizontal figure.half {
  padding-top: 38%;
}
.masonry-wrp .ratio-horizontal figure.double {
  padding-top: 152%;
}
.masonry-wrp .ratio-horizontal.gt4 figure.half {
  padding-top: calc(38% - 2px);
}
.masonry-wrp .ratio-horizontal.gt10 figure.half {
  padding-top: calc(38% - 5px);
}
.masonry-wrp .ratio-horizontal.gt20 figure.half {
  padding-top: calc(38% - 10px);
}
.masonry-wrp .ratio-horizontal.gt30 figure.half {
  padding-top: calc(38% - 15px);
}
.masonry-wrp .ratio-horizontal.gt40 figure.half {
  padding-top: calc(38% - 20px);
}
.masonry-wrp .ratio-horizontal.gt4 figure.double {
  padding-top: calc(152% + 3px);
}
.masonry-wrp .ratio-horizontal.gt10 figure.double {
  padding-top: calc(152% + 9px);
}
.masonry-wrp .ratio-horizontal.gt20 figure.double {
  padding-top: calc(152% + 19px);
}
.masonry-wrp .ratio-horizontal.gt30 figure.double {
  padding-top: calc(152% + 29px);
}
.masonry-wrp .ratio-horizontal.gt40 figure.double {
  padding-top: calc(152% + 39px);
}
.masonry-wrp .ratio-vertical .portfolio-item {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.masonry-wrp .ratio-vertical figure {
  padding-top: 130%;
}
.masonry-wrp .ratio-vertical figure.half {
  padding-top: 65%;
}
.masonry-wrp .ratio-vertical figure.double {
  padding-top: 260%;
}
.masonry-wrp .ratio-vertical.gt4 figure.half {
  padding-top: calc(65% - 2px);
}
.masonry-wrp .ratio-vertical.gt10 figure.half {
  padding-top: calc(65% - 5px);
}
.masonry-wrp .ratio-vertical.gt20 figure.half {
  padding-top: calc(65% - 10px);
}
.masonry-wrp .ratio-vertical.gt30 figure.half {
  padding-top: calc(65% - 15px);
}
.masonry-wrp .ratio-vertical.gt40 figure.half {
  padding-top: calc(65% - 20px);
}
.masonry-wrp .ratio-vertical.gt4 figure.double {
  padding-top: calc(260% + 3px);
}
.masonry-wrp .ratio-vertical.gt10 figure.double {
  padding-top: calc(260% + 9px);
}
.masonry-wrp .ratio-vertical.gt20 figure.double {
  padding-top: calc(260% + 19px);
}
.masonry-wrp .ratio-vertical.gt30 figure.double {
  padding-top: calc(260% + 29px);
}
.masonry-wrp .ratio-vertical.gt40 figure.double {
  padding-top: calc(260% + 39px);
}
@media (min-width: 200px) and (max-width: 991px) {
  .masonry-wrp [class*="col-md-"] {
    width: 100%;
  }
}
/*
***************************************************************
PRICE TABLES
***************************************************************
*/
/*
====================================
Price table - 1
====================================
*/
.price-table-1 {
  position: relative;
  overflow: hidden;
}
.price-table-1 > .tag-text {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  display: block;
}
.price-table-1:hover {
  -webkit-box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.2);
}
/*
====================================
Price table - 2
====================================
*/
.price-table-2 {
  margin: auto;
}
.price-table-2 td,
.price-table-2 th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px;
}
.price-table-2 th {
  font-size: 20px;
  font-weight: 300;
}
.price-table-2 .feature-hd {
  font-size: 40px;
  vertical-align: bottom;
  padding-left: 0px;
}
.price-table-2 .free,
.price-table-2 .pro1 {
  width: 25%;
  text-align: center;
  padding: 0px;
  font-size: 24px;
  font-weight: 300;
}
.price-table-2 th > .hd {
  display: block;
  padding: 15px;
  border-radius: 5px 5px 0 0;
}
.price-table-2 th > .hd > strong {
  display: block;
  font-size: 40px;
  font-weight: inherit;
}
.price-table-2 td {
  font-size: 14px;
  vertical-align: middle;
}
.price-table-2 td p {
  margin-bottom: 0px;
}
.price-table-2 td .info-box {
  margin: 0px;
}
.price-table-2 .td-feature {
  padding-left: 2px;
  padding-right: 25px;
}
.price-table-2 .info-box5 .info {
  margin-top: 0px;
}
.price-table-2 .td-pro1,
.price-table-2 .td-free {
  text-align: center;
}
.price-table-2 .td-free {
  background-color: rgba(0, 0, 0, 0.02);
}
.price-table-2 .td-pro1 {
  background-color: rgba(255, 104, 88, 0.1);
}
.price-table-2 .plan-lbl {
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px 4px 8px;
  border-radius: 3px;
  background-color: #ccc;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: none;
}
.price-table-2 .td-pro1 .plan-lbl {
  background-color: #8BCE7B;
}
/*
***************************************************************
POP UP BLOCK CSS
***************************************************************
*/
.blocks-popups .mfp-hide {
  display: block !important;
}
.popup-content {
  max-width: 600px;
  min-width: 300px;
  position: relative;
  margin: auto;
  text-align: center;
  background-color: #ffffff;
}
.pop-body,
.pop-header {
  padding: 40px;
}
.popup-content .mfp-close {
  color: #ffffff;
  width: 40px;
  height: 40px;
  top: -40px;
  right: -9px;
  font-size: 30px;
}
.popup-content.reset {
  max-width: none;
  min-width: none;
  background-color: transparent;
  text-align: left;
}
.popup-content.container {
  padding: 0px;
}
.popup-content._1 .mfp-close {
  color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  font-size: 30px;
  top: 0;
  right: 0;
}
/*
***************************************************************
PROGRESS BARS
***************************************************************
*/
.progress {
  background-color: rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0px;
  margin-bottom: 20px;
  overflow: visible;
  height: auto;
}
.progress .progress-bar {
  position: relative;
  min-height: 5px;
  float: none;
  text-align: center;
  color: #fff;
  line-height: 20px;
  font-size: 11px;
}
.progress .percentage {
  position: absolute;
  top: -24px;
  background-color: #2D3345;
  color: #fff;
  right: 0px;
  font-weight: normal;
  font-size: 11px;
  line-height: 1;
  padding: 4px 6px 5px 6px;
  border-radius: 3px;
}
.progress .percentage i {
  position: absolute;
  top: 14px;
  color: #282c35;
  left: 50%;
  font-weight: normal;
  font-size: 14px;
  margin-left: -3px;
}
/*
***************************************************************
Countdown controls
***************************************************************
*/
.countdown-widget .inner-dashboard {
  overflow: auto;
  display: table;
  text-align: center;
  margin: auto;
}
.countdown-widget .dash {
  /* float: left; */
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 20px;
  display: table-cell;
}
.countdown-widget .dash:last-child {
  border-right: none;
}
.countdown-widget .inner-dash {
  overflow: hidden;
  height: 75%;
  position: relative;
  font-size: 60px;
  font-weight: inherit;
  line-height: 1.2;
  margin: 0 auto;
  padding: 0 1px;
  display: table;
  text-align: center;
}
.countdown-widget .dash_title {
  height: 25%;
  font-size: 14px;
  font-style: italic;
  font-weight: inherit;
  display: block;
  margin-bottom: 10px;
}
.countdown-widget .inner-dash > .digit {
  /* float: left; */
  position: relative;
  display: table-cell;
}
.countdown-widget .inner-dash > .digit .top {
  display: none !important;
}
.countdown-widget .inner-dash > .digit:last-child {
  margin-right: 0px;
}
.countdown-widget .inner-dash .dash_title {
  display: block;
}
.light.countdown-widget {
  color: #fff;
}
.light.countdown-widget .dash {
  border-color: rgba(255, 255, 255, 0.2);
}
.no-sep.countdown-widget .dash {
  border-right: none;
}
.countdown-widget.large .dash {
  padding: 0 30px;
}
.countdown-widget.large .inner-dash {
  font-size: 100px;
}
.countdown-widget.large .dash_title {
  font-size: 20px;
}
.countdown-widget.small .inner-dash {
  font-size: 40px;
}
.countdown-widget.small .dash_title {
  font-size: 13px;
  margin-bottom: 5px;
}
.countdown-widget.small .dash {
  padding: 0 15px;
}
.countdown-widget.mini .inner-dash {
  font-size: 26px;
}
.countdown-widget.mini .dash_title {
  font-size: 12px;
  margin-bottom: 3px;
}
.countdown-widget.mini .dash {
  padding: 0 15px;
}
.countdown-widget.tiny .inner-dash {
  padding: 0 2px;
  font-size: 18px;
}
.countdown-widget.tiny .dash_title {
  font-size: 10px;
  margin-bottom: 1px;
}
.countdown-widget.tiny .dash {
  padding: 0 10px;
}
/*
***************************************************************
FILTERS 
***************************************************************
*/
.filter-list {
  margin-bottom: 40px;
}
.filter-style1 .filter-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.filter-style1 .filter-list > [data-filter] {
  padding: 15px 20px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: inline-block;
  cursor: pointer;
}
.filter-style1 .filter-list > .active {
  border-color: #1f2229;
}
/*
***************************************************************
Carousel
***************************************************************
*/
.carousel-widget {
  overflow: hidden;
}
.carousel-widget .item {
  position: relative;
}
.carousel-widget.op-items .item {
  opacity: 0.4;
}
.carousel-widget.op-items .center .item {
  opacity: 1;
}
/*.carousel-widget .item,
.carousel-widget .owl-item,
.carousel-widget .owl-stage,
.carousel-widget,
.owl-carousel,
.owl-carousel .owl-stage-outer {
	height: 100%;
}*/
/*
====================================
Carousel controls
====================================
*/
.ctrl-1 .owl-controls {
  padding: 1px;
  height: auto;
}
.ctrl-1 .owl-nav {
  position: absolute;
  top: 50%;
  height: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
}
.ctrl-1 .owl-nav > div {
  position: absolute;
  left: 0px;
  opacity: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* flex-start | flex-end | center | space-between | space-around */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* flex-start | flex-end | center | baseline | stretch */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -30px;
}
.ctrl-1 .owl-nav > div:before {
  display: none;
}
.ctrl-1 .owl-nav > .owl-next {
  right: 0px;
  left: auto;
}
.ctrl-1 [data-dots="true"] .owl-nav {
  margin-top: -42px;
}
.ctrl-1 .owl-nav > div,
.swiper-button-prev,
.swiper-button-next {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  /*line-height: 56px;*/
  text-align: center;
  font-size: 40px;
  height: 60px;
  width: 60px;
  z-index: 999;
}
.swiper-button-prev {
  left: 0px;
}
.swiper-button-next {
  right: 0px;
}
.ctrl-1:hover .owl-nav > div {
  opacity: 1;
}
.ctrl-1.small-arrows .owl-nav > div {
  top: -20px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px;
}
.ctrl-1.small-arrows .owl-nav > .owl-next {
  right: -40px;
}
.ctrl-1.small-arrows .owl-nav > .owl-prev {
  left: -40px;
}
/*
Carousel dots
------------------------------------
*/
.owl-dots {
  text-align: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 0px;
}
.owl-dots > .owl-dot {
  border: 2px solid rgba(0, 0, 0, 0.4);
  margin: 0 5px;
}
.owl-dots .active {
  background-color: rgba(0, 0, 0, 0.4);
}
.ctrl-light .owl-dots > .owl-dot {
  border-color: rgba(255, 255, 255, 0.4);
}
.ctrl-light .owl-dots .active {
  background-color: rgba(255, 255, 255, 0.4);
}
.ctrl-light .owl-nav > div {
  color: #fff;
}
.ctrl-light .owl-nav > div:hover {
  background-color: #fff;
  color: #333;
}
.mr-0 .owl-dots {
  margin: 0px;
}
.ctrl-l .owl-dots {
  text-align: left;
}
.ctrl-r .owl-dots {
  text-align: right;
}
.pager-in .owl-controls {
  padding: 0;
}
.pager-in .owl-dots {
  position: absolute;
  width: 100%;
  z-index: 9999;
  bottom: 0;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #000;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
}
/*
====================================
Zoom carousel
====================================
*/
.zoom-carousel .swiper-wrapper,
.zoom-carousel .owl-stage-outer {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.zoom-carousel .swiper-slide > img,
.zoom-carousel .swiper-slide > .content,
.zoom-carousel .item > .content {
  position: relative;
  opacity: 0.4;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.zoom-carousel .swiper-slide-next > img,
.zoom-carousel .swiper-slide-prev > img,
.zoom-carousel .swiper-slide-next > .content,
.zoom-carousel .swiper-slide-prev > .content,
.zoom-carousel .item > .content {
  -webkit-transform: scale(0.86);
          transform: scale(0.86);
}
.zoom-carousel .swiper-slide-active > img,
.zoom-carousel .swiper-slide-active > .content,
.zoom-carousel .center .content {
  position: relative;
  z-index: 9;
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.3);
}
/*
====================================
Swiper Carousel
====================================
*/
.full.swiper-container {
  width: 100%;
  height: 100%;
}
.full.swiper-container .swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vertical.swiper-container {
  width: 100%;
  height: 100%;
}
.vertical.swiper-container .swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/*
====================================
Caption styles
====================================
*/
/*
caption style 1
------------------------------------
*/
.caption-1-hd {
  padding: 10px 30px;
  font-size: 70px;
  display: inline-block;
  margin-bottom: 1px;
}
.caption-1-sub-text {
  font-size: 30px;
  padding: 10px 30px;
  margin: 0px;
}
/*
====================================
Caption animations
====================================
*/
/*
caption animate 1
------------------------------------
*/
.caption-up .caption {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.caption-up .caption {
  -webkit-animation-name: rg_down;
          animation-name: rg_down;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.swiper-slide-active.caption-up .caption,
.swiper-slide-active .caption-up .caption,
.carousel-widget[data-center="false"] .active .caption-up .caption,
.carousel-widget[data-center="true"] .center .caption-up .caption {
  -webkit-animation-name: rg_fadeup;
          animation-name: rg_fadeup;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
/*
caption animate 2
------------------------------------
*/
.caption-left .caption {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.caption-left .caption {
  -webkit-animation-name: rg_left;
          animation-name: rg_left;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.swiper-slide-active .caption-left .caption,
.owl-carousel .active .caption-left .caption,
.owl-carousel[data-center] .center .caption-left .caption {
  -webkit-animation-name: rg_fadeleft;
          animation-name: rg_fadeleft;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
/*
====================================
Swiper gallery
====================================
*/
.swiper-gallery {
  position: relative;
  height: 100%;
}
.swiper-gallery .swiper-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper-gallery .gallery-top:not([class*="vh"]) {
  height: 100%;
}
.swiper-gallery .swiper-slide {
  background-size: cover;
  background-position: center;
}
.swiper-gallery .gallery-thumbs {
  position: absolute;
  height: 100px;
  padding: 10px 0;
  bottom: 0px;
  z-index: 999;
}
.swiper-gallery .gallery-thumbs .swiper-slide {
  width: 80px;
  height: 100%;
  opacity: 0.5;
  cursor: pointer;
  border: 5px solid transparent;
  background-repeat: no-repeat;
  background-size: cover;
}
.swiper-gallery .gallery-thumbs .swiper-slide:hover,
.swiper-gallery .gallery-thumbs .swiper-slide-active {
  opacity: 1;
  border-color: #fff;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
}
.swiper-gallery .gallery-thumbs:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.4);
}
.light.gallery-thumbs {
  background-color: rgba(255, 255, 255, 0.3);
}
/*
Swiper gallery 1
------------------------------------
*/
.swiper-gallery.layout-1 .gallery-thumbs:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.05);
}
.swiper-gallery.layout-1 .gallery-thumbs {
  position: relative;
}
/*
Swiper gallery 2
------------------------------------
*/
.swiper-gallery.layout-2 .gallery-thumbs {
  position: relative;
}
.swiper-gallery.layout-2 .gallery-thumbs .swiper-slide {
  border: none;
  opacity: 0.25;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.swiper-gallery.layout-2 .gallery-thumbs .swiper-slide:hover,
.swiper-gallery.layout-2 .gallery-thumbs .swiper-slide-active {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.swiper-gallery.layout-2 .gallery-thumbs {
  position: relative;
}
/*
Swiper slider
------------------------------------
*/
/*
***************************************************************
Accordion
***************************************************************
*/
.panel {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}
.panel:first-child .panel-hd a {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.acc-style1 .acc-hd,
.panel-hd a {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: block;
  padding: 15px 40px 15px 0;
  font-size: 22px;
  font-weight: 300;
}
.panel-hd i {
  position: absolute;
  width: 24px;
  height: 24px;
  line-height: 18px;
  border-radius: 20px;
  text-align: center;
  right: 2px;
  top: 21px;
  color: #eceef0;
  font-size: 24px;
}
.accordion-widget .active .acc-close,
.accordion-widget .acc-open,
.collapsed .panel-open,
.panel-close {
  display: block;
}
.accordion-widget .active .acc-open,
.accordion-widget .acc-close,
.panel-open,
.collapsed .panel-close {
  display: none;
}
.panel .panel-body {
  padding: 15px 0 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.8;
  color: #97a3ae;
}
.panel-group .panel + .panel {
  margin: 0px;
}
.dark .panel-hd a {
  color: #fff;
}
.dark .panel .panel-body {
  color: rgba(255, 255, 255, 0.6);
}
.dark .panel .panel-body,
.dark .panel .panel-hd a {
  border-color: rgba(255, 255, 255, 0.06);
}
.dark .panel-hd i {
  color: rgba(255, 255, 255, 0.1);
}
.accordion-widget .acc-content {
  overflow: hidden;
}
.acc-hd .info-obj {
  margin: 0;
}
.acc-hd .acc-open,
.acc-hd .acc-close {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
/*
====================================
Accordion style 1
====================================
*/
.acc-style1 {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.acc-style1 .acc-hd {
  cursor: pointer;
  color: #1f2229;
}
.acc-style1 .acc-content {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.acc-style1 .acc-open,
.acc-style1 .acc-close {
  right: 2px;
  opacity: 0.5;
}
.acc-style1.dark {
  border-color: rgba(255, 255, 255, 0.06);
}
.acc-style1.dark .acc-hd {
  color: #ffffff;
}
.acc-style1.dark .acc-hd,
.acc-style1.dark .acc-content {
  border-color: rgba(255, 255, 255, 0.06);
}
/*
====================================
Accordion style 2
====================================
*/
.acc-style2 .acc-hd {
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 10px 20px;
  color: #1f2229;
  border-radius: 2px;
}
.acc-style2 .acc-block {
  margin-bottom: 5px;
}
.acc-style2 .active.acc-hd {
  background-color: #1f2229;
  color: #fff;
  border-radius: 2px 2px 0 0;
}
.acc-style2 .active.acc-hd * {
  color: inherit;
}
.acc-style2 .acc-content {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 0 0 2px 2px;
}
.acc-style2 .acc-open,
.acc-style2 .acc-close {
  right: 15px;
  opacity: 0.5;
  font-size: 18px;
}
.acc-style2.dark .acc-hd {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}
.acc-style2.dark .active.acc-hd {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.acc-style2.dark .acc-content {
  border-color: rgba(255, 255, 255, 0.02);
  background-color: rgba(255, 255, 255, 0.02);
}
/*
***************************************************************
TABS
***************************************************************
*/
/*
====================================
Common tab structure
====================================
*/
.tab-pn {
  display: none;
}
[data-tb] {
  cursor: pointer;
}
.tabs-auto .tb-list,
.tab-widget .tb-list {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.tabs-auto .tb-list > li,
.tab-widget .tb-list > li {
  display: inline-block;
  cursor: pointer;
}
.tabs-auto .tb-pn,
.tab-widget .tb-pn {
  overflow: hidden;
  height: 0px;
  opacity: 0;
}
.tabs-auto .tb-pn.active,
.tab-widget .tb-pn.active {
  overflow: visible;
  height: auto;
  opacity: 1;
}
.tabs-auto .tb-pn.active,
.tab-widget .tb-pn.active,
.tabs-auto .tb-list > li.active,
.tab-widget .tb-list > li.active {
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
/*
====================================
Side tab structure
====================================
*/
.side-tab {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 20px;
}
.side-tab .tb-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0px;
}
.side-tab .tb-list > li {
  display: block;
}
/*
Tab positions & sizes
------------------------------------
*/
.side-tab.tb-r .tb-list {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}
.side-tab.side-xlarge .tb-list {
  width: 400px;
}
.side-tab.side-large .tb-list {
  width: 350px;
}
.side-tab.side-medium .tb-list {
  width: 250px;
}
.side-tab.side-small .tb-list {
  width: 200px;
}
.side-tab.side-mini .tb-list {
  width: 150px;
}
.side-tab.side-tiny .tb-list {
  width: 100px;
}
/*
====================================
Tab style 1
====================================
*/
.tab-style1 .tb-list {
  border-bottom-width: 2px;
  border-bottom-style: solid;
  max-height: 100%;
}
.tab-style1 .tb-list > li {
  margin: 0 -2px 0 0;
  padding: 8px 20px 6px 20px;
  border-radius: 4px 4px 0 0;
  color: #1f2229;
}
.tab-style1 .tb-list > li:not([class*="fs"]) {
  font-size: 16px;
}
.tab-style1 .tb-list > li:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.06);
}
.tab-style1 .tb-list > li.active:not([class*="bg-"]) {
  background-color: #1f2229;
}
.tab-style1 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #fff;
}
.tab-style1 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-bottom-color: #1f2229;
}
.tab-style1 .tb-content {
  background-color: rgba(0, 0, 0, 0.03);
}
.tab-style1 .tb-content:not([class*="pd-"]) {
  padding: 30px;
}
.tab-style1:not([data-tb-active*="bg-"]) > li:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.06);
}
/*
Tab style 1 : Side tabs
------------------------------------
*/
.tab-style1.side-tab .tb-list > li {
  padding-bottom: 7px;
}
.tab-style1.side-tab:not(.tb-r) .tb-list {
  border-right-width: 2px;
  border-right-style: solid;
  border-bottom: none;
}
.tab-style1.side-tab:not(.tb-r) .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-right-color: #1f2229;
}
.tab-style1.side-tab:not(.tb-r) .tb-list > li {
  border-radius: 4px 0 0 4px;
  margin-bottom: 2px;
}
.tab-style1.side-tab.tb-r .tb-list {
  border-left-width: 2px;
  border-left-style: solid;
  border-bottom: none;
}
.tab-style1.side-tab.tb-r .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-left-color: #1f2229;
}
.tab-style1.side-tab.tb-r .tb-list > li {
  border-radius: 0 4px 4px 0;
  margin-bottom: 2px;
}
/**
 * Dark theme of tabs
 */
.tab-style1.dark .tb-list > li {
  color: #ffffff;
}
.tab-style1.dark .tb-list > li:not([class*="bg-"]) {
  background-color: rgba(255, 255, 255, 0.06);
}
.tab-style1.dark .tb-list > li.active:not([class*="bg-"]) {
  background-color: #ffffff;
}
.tab-style1.dark .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #1f2229;
}
.tab-style1.dark .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-bottom-color: #ffffff;
}
.tab-style1.dark .tb-content {
  background-color: rgba(255, 255, 255, 0.03);
}
.tab-style1.dark.side-tab:not(.tb-r) .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-right-color: #ffffff;
}
.tab-style1.dark.side-tab.tb-r .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-left-color: #1f2229;
}
/*
====================================
Tab style 2
====================================
*/
.tab-style2 .tb-list {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-top-width: 1px;
  border-top-style: solid;
  z-index: 99;
  position: relative;
}
.tab-style2 .tb-list > li {
  margin: 0 15px -1px 0;
  padding: 8px 15px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.tab-style2 .tb-list > li:not([class*="fs"]) {
  font-size: 16px;
}
.tab-style2 .tb-list > li:not([class*="bdr-"]) {
  border-bottom-color: transparent;
}
.tab-style2 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #1f2229;
}
.tab-style2 .tb-list > li.active:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-color: #1f2229;
}
.tab-style2 .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-bottom-color: rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.1);
}
.tab-style2 .tb-content:not([class*="pd-"]) {
  padding: 30px 0;
}
/*
Tab style 2 : Side tabs
------------------------------------
*/
.tab-style2.side-tab .tb-list {
  border-bottom: none;
}
.tab-style2.side-tab:not(.tb-r) .tb-list {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-style2.tb-r .tb-list {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-style2.side-tab .tb-list > li {
  margin: 0;
  padding: 8px 15px;
  border-bottom-width: 1px;
  bofder-bottom-style: solid;
}
.tab-style2.side-tab .tb-list > li:not([class*="bdr-"]) {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.tab-style2.side-tab .tb-list > li.active:not([class*="bdr-"]) {
  border-bottom-color: #1f2229;
}
.tab-style2.side-tab .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #1f2229;
}
.tab-style2.side-tab:not(.tb-r) .tb-content {
  padding: 0 0 0 30px;
}
.tab-style2.tb-r .tb-content {
  padding: 0 30px 0 0;
}
/**
 * Dark theme of tabs
 */
.tab-style2.dark .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
.tab-style2.dark .tb-list > li.active:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-color: #ffffff;
}
.tab-style2.dark .tb-list:not([class*="bdr-default"]):not([class*="bdr-primary"]):not([class*="bdr-secondary"]):not([class*="bdr-white"]) {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.1);
}
.tab-style2.dark.side-tab:not(.tb-r) .tb-list {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.tab-style2.dark.tb-r .tb-list {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.tab-style2.dark.side-tab .tb-list > li:not([class*="bdr-"]) {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.tab-style2.dark.side-tab .tb-list > li.active:not([class*="bdr-"]) {
  border-bottom-color: #ffffff;
}
.tab-style2.dark.side-tab .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
/*
====================================
Tab style 3
====================================
*/
.tab-style3 .tb-list:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.1);
}
.tab-style3 .tb-list {
  z-index: 99;
  position: relative;
}
.tab-style3 .tb-list > li {
  margin: 0;
  padding: 10px 20px;
}
.tab-style3 .tb-list > li:not([class*="fs"]) {
  font-size: 16px;
}
.tab-style3 .tb-list > li:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #1f2229;
}
.tab-style3 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #fff;
}
.tab-style3 .tb-list > li.active:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.8);
}
.tab-style3 .tb-content:not([class*="pd-"]) {
  padding: 30px 20px;
}
/*
Tab style 3 : Side tabs
------------------------------------
*/
.tab-style3.side-tab:not(.tb-r) .tb-content {
  padding: 0 0 0 30px;
}
.tab-style3.tb-r .tb-content {
  padding: 0 30px 0 0;
}
/**
 * Dark theme of tabs
 */
.tab-style3.dark .tb-list:not([class*="bg-"]) {
  background-color: rgba(255, 255, 255, 0.06);
}
.tab-style3.dark .tb-list > li:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #ffffff;
}
.tab-style3.dark .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #1f2229;
}
.tab-style3.dark .tb-list > li.active:not([class*="bg-"]) {
  background-color: #ffffff;
}
/*
====================================
Tab style 4
====================================
*/
.tab-style4 .tb-list {
  z-index: 99;
  position: relative;
}
.tab-style4 .tb-list > li {
  margin: 0 -4px 0 0;
  padding: 10px 20px 9px 20px;
  border-width: 1px;
  border-style: solid;
}
.tab-style4 .tb-list > li:first-child {
  border-radius: 4px 0 0 4px;
}
.tab-style4 .tb-list > li:last-child {
  border-radius: 0 4px 4px 0;
}
.tab-style4 .tb-list > li:not([class*="fs"]) {
  font-size: 16px;
}
.tab-style4 .tb-list > li:not([class*="bdr-"]) {
  border-color: rgba(0, 0, 0, 0.1);
}
.tab-style4 .tb-list > li:not([class*="bg-"]) {
  background-color: rgba(0, 0, 0, 0.02);
}
.tab-style4 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #fff;
}
.tab-style4 .tb-list > li.active:not([class*="bdr-"]) {
  border-color: #1f2229;
}
.tab-style4 .tb-list > li.active:not([class*="bg-"]) {
  background-color: #1f2229;
}
.tab-style4 .tb-content {
  padding: 30px 0;
}
.dark.tab-style4 .tb-list > li:not([class*="bdr-"]) {
  border-color: rgba(255, 255, 255, 0.1);
}
.dark.tab-style4 .tb-list > li:not([class*="bg-"]) {
  background-color: rgba(255, 255, 255, 0.02);
}
.dark.tab-style4 .tb-list > li.active:not([class*="txt-default"]):not([class*="txt-primary"]):not([class*="txt-secondary"]):not([class*="txt-white"]) {
  color: #1f2229;
}
.dark.tab-style4 .tb-list > li.active:not([class*="bdr-"]) {
  border-color: #ffffff;
}
.dark.tab-style4 .tb-list > li.active:not([class*="bg-"]) {
  background-color: #ffffff;
}
/*
Tab style 4 : Side tabs
------------------------------------
*/
.tab-style4.side-tab .tb-list > li {
  margin: 0 0 -1px 0;
}
.tab-style4.side-tab .tb-list > li:first-child {
  border-radius: 4px 4px 0 0;
}
.tab-style4.side-tab .tb-list > li:last-child {
  border-radius: 0 0 4px 4px;
}
.tab-style4.side-tab:not(.tb-r) .tb-content {
  padding: 0 0 0 30px;
}
.tab-style4.tb-r .tb-content {
  padding: 0 30px 0 0;
}
/*
====================================
All tab sizes 
====================================
*/
.tab-style1.xlarge .tb-list > li,
.tab-style2.xlarge .tb-list > li,
.tab-style3.xlarge .tb-list > li,
.tab-style4.xlarge .tb-list > li {
  padding: 20px 40px;
  font-size: 40px;
}
.tab-style1.large .tb-list > li,
.tab-style2.large .tb-list > li,
.tab-style3.large .tb-list > li,
.tab-style4.large .tb-list > li {
  padding: 18px 30px;
  font-size: 30px;
}
.tab-style1.medium .tb-list > li,
.tab-style2.medium .tb-list > li,
.tab-style3.medium .tb-list > li,
.tab-style4.medium .tb-list > li {
  padding: 15px 26px;
  font-size: 20px;
}
.tab-style1.small .tb-list > li,
.tab-style2.small .tb-list > li,
.tab-style3.small .tb-list > li,
.tab-style4.small .tb-list > li {
  padding: 10px 20px;
  font-size: 18px;
}
.tab-style1.mini .tb-list > li,
.tab-style2.mini .tb-list > li,
.tab-style3.mini .tb-list > li,
.tab-style4.mini .tb-list > li {
  padding: 5px 12px;
  font-size: 12px;
}
/*
***************************************************************
video css
***************************************************************
*/
.background-video {
  background-position: top center;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
}
.background-video video,
.background-video source {
  bottom: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
}
.loaded .ytplayer-container {
  display: block;
}
.loaded .placeholder-image {
  opacity: 0;
}
.ytplayer-container {
  bottom: 0;
  height: 100%;
  left: 0;
  min-width: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.placeholder-image {
  height: 100%;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
}
.ytplayer-shield {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.ytplayer-player {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50% !important;
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/*
************************************************************
* Blog page
************************************************************/
.comment + .comment {
  margin: 0 0 20px 40px;
}
/*
***************************************************************
Page loader css
***************************************************************
*/
.pace-running #page {
  opacity: 0;
}
.pace-done #page {
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.pace {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 2000;
  position: fixed;
  height: 80px;
  width: 80px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.pace .pace-progress {
  -webkit-transform: none !important;
          transform: none !important;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  width: 80px !important;
  line-height: 80px;
  font-size: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-align: center;
}
.pace .pace-progress:after {
  content: attr(data-progress-text);
  display: block;
  position: relative;
  z-index: 55;
}
.pace .pace-progress:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  -webkit-animation: rg_loader 0.8s linear infinite;
          animation: rg_loader 0.8s linear infinite;
}
.pace.pace-inactive .pace-progress {
  display: none;
}
@-webkit-keyframes rg_loader {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@keyframes rg_loader {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
/* Loader CSS
=========================*/
.page-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #fff;
  left: 0px;
  top: 0px;
}
body > .page-loader {
  position: fixed;
}
.spinner {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top: 2px solid rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -20px;
  margin-top: -20px;
}
.dark.page-loader {
  background-color: #000;
}
.dark.page-loader .spinner {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.main-head.light.header-sticky {
    background-color: #000000 !important;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.15);
}

.main-head.light {
    background-color: rgba(41, 98, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}


.main-head.light.header-sticky {
    background-color: #000000 !important;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.15);
}


.menu-wrp .menu .menu-item a {
    color: #fff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-wrp .menu .menu-item a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Login butonu */
.btn.btn-default.mini {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn.btn-default.mini:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Register butonu */
.btn.btn-dark.solid.mini {
    background-color: #fff;
    color: #2962ff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn.btn-dark.solid.mini:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}


.language-selector .current-lang {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector .current-lang:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-selector .lang-dropdown {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.language-selector .lang-option {
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.language-selector .lang-option:hover {
    background-color: rgba(41, 98, 255, 0.1);
}


.header-sticky .menu-wrp .menu .menu-item a,
.header-sticky .btn.btn-default.mini {
    color: #fff;
}

.header-sticky .btn.btn-dark.solid.mini {
    background-color: #2962ff;
    color: #fff;
}

.header-sticky .language-selector .current-lang {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Ana menü container'ı */
.menu-wrp .menu {
    display: flex;
    gap: 10px;
}

/* Menü linkleri için yeni stil */
.menu-wrp .menu .menu-item a {
    color: #fff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

/* Hover efekti */
.menu-wrp .menu .menu-item a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Aktif menü öğesi */
.menu-wrp .menu .menu-item a.active,
.menu-wrp .menu .menu-item a:active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Altı çizili efekt */
.menu-wrp .menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.menu-wrp .menu .menu-item a:hover::after {
    width: calc(100% - 32px); /* padding'i hesaba katarak */
    opacity: 1;
}

/* Sticky durumunda menü stilleri */
.header-sticky .menu-wrp .menu .menu-item a {
    color: #fff;
}

.header-sticky .menu-wrp .menu .menu-item a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-sticky .menu-wrp .menu .menu-item a::after {
    background-color: #2962ff;
}

/* Aktif menü öğesi için özel stil */
.menu-wrp .menu .menu-item a.active {
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
}

/* Menü öğeleri arasında ayırıcı */
.menu-wrp .menu .menu-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive tasarım için medya sorguları */
@media (max-width: 991px) {
    .menu-wrp .menu {
        flex-direction: column;
        gap: 5px;
    }

    .menu-wrp .menu .menu-item a {
        width: 100%;
        text-align: center;
    }

    .menu-wrp .menu .menu-item:not(:last-child)::after {
        display: none;
    }
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.language-selector .current-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    justify-content: center;
}

.language-selector .lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    min-width: 120px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 0; /* Çoklu seçenek yoksa padding sıfırla */
}
.language-selector.open .lang-dropdown {
    display: block;
}

.language-selector .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-radius: 12px;
    justify-content: flex-start;
}

.language-selector .lang-option:hover {
    background: rgba(41, 98, 255, 0.08);
}

.emoji-flag {
    font-size: 20px;
}

.lang-text {
    font-size: 14px;
    font-weight: 500;
}

/* Header ve Brand Name Styles */
.main-head.light {
    background-color: rgba(41, 98, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.main-head.light.header-sticky {
    background-color: #000000 !important;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.15);
}

/* Brand name için yeni stiller */
.brand-name {
    font-size: 27px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.5px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2962ff, #768fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(41, 98, 255, 0.3),
                 0 0 20px rgba(41, 98, 255, 0.2),
                 0 0 30px rgba(41, 98, 255, 0.1);
}

/* Hover durumunda daha parlak efekt */
.logo-container:hover .brand-name {
    text-shadow: 0 0 15px rgba(41, 98, 255, 0.4),
                 0 0 25px rgba(41, 98, 255, 0.3),
                 0 0 35px rgba(41, 98, 255, 0.2);
}

/* Sticky durumunda beyaz gradient */
.header-sticky .brand-name {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(255, 255, 255, 0.3),
                 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Sticky durumunda hover efekti */
.header-sticky .logo-container:hover .brand-name {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7),
                 0 0 25px rgba(255, 255, 255, 0.5),
                 0 0 35px rgba(255, 255, 255, 0.3);
}

/* Logo container stilleri */
.logo-container {
    display: flex;
    align-items: center;
    
    height: 100%;
}

.logo {
    height: 80px;
    max-width: 250px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease; /* transform yerine all kullanarak daha smooth geçiş */
    border-radius: 50%; /* Yuvarlak yapmak için */
   
    padding: 5px; /* İçeriğe biraz padding ekleyelim */
  

    -webkit-backdrop-filter: blur(5px); /* Safari için */
}



/* Sticky header durumunda logo stilleri */
.header-sticky .logo {
    border-color: rgba(255, 255, 255, 0.1); /* Sticky durumda daha az belirgin border */
    background: rgba(0, 0, 0, 0.1); /* Koyu arka plan */
}

.header-sticky .logo:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.logo-container:hover .brand-name {
    transform: translateY(-1px);
}

/* Header sticky durumunda hover efekti */
.header-sticky .logo-container:hover .brand-name {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7),
                 0 0 25px rgba(255, 255, 255, 0.5),
                 0 0 35px rgba(255, 255, 255, 0.3);
}

/* Language selector stilleri */
.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.language-selector .current-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    justify-content: center;
}

.language-selector .lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    min-width: 120px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 0; /* Çoklu seçenek yoksa padding sıfırla */
}
.language-selector.open .lang-dropdown {
    display: block;
}

.language-selector .lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-radius: 12px;
    justify-content: flex-start;
}

.language-selector .lang-option:hover {
    background: rgba(41, 98, 255, 0.08);
}

.emoji-flag {
    font-size: 20px;
}

.lang-text {
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section Styles */
.hero-section {
    min-height: 75vh; /* 85vh'den 75vh'ye düşürdük */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    padding: 60px 0; /* 100px'den 60px'e düşürdük */
}

.hero-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(41,98,255,0.1), rgba(0,0,0,0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-content .title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content .title-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-content .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.hero-content .btn.btn-white {
  background: linear-gradient(90deg, #6D28D9, #2563EB); /* Mor-Mavi geçiş */
    color: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 40px 0;
    }

    .hero-content .title {
        font-size: 2.8rem;
    }

    .hero-content .title-sub {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh;
        padding: 30px 0;
    }

    .hero-content .title {
        font-size: 2.2rem;
    }

    .hero-content .title-sub {
        font-size: 1rem;
    }

    .hero-content .btn.btn-white {
        padding: 10px 24px;
    }
}

/* Description Section Stilleri */
.description-section {
    padding: 40px 0; /* 80px'den 40px'e düşürdük */
    background: #fff;
}

.description-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.description-section .row {
    margin-top: 0;
    align-items: flex-start;
}

.description-section .col-lg-6 {
    padding-top: 0;
}

.feature-img-wrap {
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.feature-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-img-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.description-content {
    padding-left: 50px;
    padding-bottom: 30px;
}

.description-title {
    font-size: 1.8rem;
    line-height: 1.4;
    color: linear-gradient(to right, #1a1c2e, #2d2b55);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.content-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 991px) {
    .description-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .description-title {
        font-size: 1.6rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .description-section {
        padding: 30px 0;
    }
    
    .description-title {
        font-size: 1.4rem;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-content .title {
        font-size: 2.5rem;
    }

    .hero-content .title-sub {
        font-size: 1.25rem;
    }
}

/* Logo ve Marka Stilleri */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 60px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.brand-name {
    font-size: 27px;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
    letter-spacing: -0.5px;
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
}

.logo-container:hover .brand-name {
    transform: translateY(-1px);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
}

/* Description Section Stilleri */
.description-section {
    padding: 40px 0;
    min-height: auto;
}

.feature-content {
    padding-top: 0;
    max-width: 600px;
    margin-left: 20px;
}

.description-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

@media (max-width: 991px) {
    .feature-content {
        margin-left: 0;
        margin-top: 30px;
        max-width: 100%;
    }

}

.description-section {
    position: relative;
    padding: 80px 0 40px 0; /* üst: 80px, alt: 40px yaptık */
    width: 100%;
}

.description-section .container {
    max-width: 1400px; /* Container genişliğini artırıyoruz */
    margin: 0 auto;
    padding: 0 30px;
}

.description-section .row {
    margin: 0 -20px; /* Row margin'ini artırıyoruz */
}

.description-section .col-lg-6 {
    padding: 0 20px; /* Kolon padding'ini artırıyoruz */
}

.feature-img-wrap {
    width: 100%;
    height: 100%;
}

.feature-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature-img-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-content {
    padding: 20px 0;
    height: 100%;
}

/* Features Zig-Zag Section Styles */
.features-zigzag-section {
    padding: 10px 0; /* 20px 0 80px 0'dan 40px 0'a değiştirdik */
    background: #fff;
    overflow: hidden;
    margin-top: -20px; /* Üstteki section ile arayı kapatmak için */
}

.feature-row {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.feature-row.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-img-wrap {
    position: relative;
}

.feature-img-wrap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-img-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-content {
    padding: 30px;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2962ff, #768fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .features-zigzag-section {
        padding: 60px 0;
    }

    .feature-row {
        margin-bottom: 60px;
    }

    .feature-content {
        padding: 20px 0;
        text-align: center;
    }

    .feature-title {
        font-size: 2rem;
    }

    .spacer-section {
        height: 40px !important;
    }
    
}

/* Zigzag Header Styles - YENİ EKLENEN */
.zigzag-header {
    margin-bottom: 40px; /* 80px'den 40px'e düşürdük */
    text-align: center;
    visibility: hidden; /* Başlangıçta gizli olsun */
}

.zigzag-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2962ff, #768fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    visibility: visible; /* Title görünür olsun */
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDown 0.8s ease forwards;
}

.zigzag-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #2962ff, #768fff);
    border-radius: 2px;
}

.zigzag-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.6;
    visibility: visible; /* Subtitle görünür olsun */
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.2s; /* Delay'i biraz azalttım */
}

/* Mevcut Responsive kısmına eklenecek */
@media (max-width: 991px) {
    .features-zigzag-section {
        padding: 60px 0;
    }

    .zigzag-header {
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .zigzag-title {
        font-size: 2.8rem;
    }

    .zigzag-subtitle {
        font-size: 1.15rem;
        max-width: 600px;
    }

    .feature-row {
        margin-bottom: 60px;
    }

    .feature-content {
        padding: 20px 0;
        text-align: center;
    }

    .feature-title {
        font-size: 2rem;
    }

    .spacer-section {
        height: 40px !important;
    }
}

@media (max-width: 768px) {
    .zigzag-header {
        margin-bottom: 40px;
    }

    .zigzag-title {
        font-size: 2.2rem;
    }

    .zigzag-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .zigzag-title {
        font-size: 1.8rem;
    }

    .zigzag-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Zigzag Header Animation Styles */
.animate-title {
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDown 0.8s ease forwards;
    animation-delay: 0.2s;
}

.animate-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
        visibility: visible;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
        visibility: visible;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

/* Hover efekti de ekleyelim */
.zigzag-title:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.zigzag-subtitle:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Sadece seoImg için özel stil */
img[src*="seoImg"] {
    max-height: 350px; /* Yüksekliği daha da azalttık */
    object-fit: cover; /* contain yerine cover kullanarak daha iyi bir görünüm */
    border-radius: 20px; /* Mevcut corner radius'u koruyoruz */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Mevcut gölgeyi koruyoruz */
}

/* Features Zig-Zag Section Styles */
.features-zigzag-section .container {
    margin-top: 0; /* -20px'i kaldırdık */
}

/* Mevcut features-zigzag-section stili */
.features-zigzag-section {
    padding: 20px 0 80px 0;
    background: #fff;
    overflow: hidden;
}

/* Blog Section Styles */
.blogs-section {
    background: #f8f9fa;
    padding: 40px 0; /* 3px 0 80px 0'dan 40px 0'a değiştirdik */
    margin-top: -20px; /* Üstteki section ile arayı kapatmak için */
}

.blogs-header {
    margin-bottom: 40px; /* 60px'den 40px'e düşürdük */
}

.blogs-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2962ff, #768fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blogs-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px; /* 30px'den 20px'e düşürdük */
    padding: 10px 0; /* 20px'den 10px'e düşürdük */
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.blog-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-img:before {
    opacity: 1;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #2962ff;
}

.blog-card-desc {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    color: #2962ff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.blog-card-link:after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover:after {
    transform: translateX(5px);
}

/* Blog Section Header */
.blogs-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.blogs-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.blogs-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2962ff, #768fff);
    border-radius: 2px;
}

.blogs-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* AI Toolkit Section Styles */
.ai-toolkit-section {
    background-color: #f8f9fa;
    padding: 40px 0; /* 20px'den 40px'e çıkardık */
    margin-top: -20px; /* Üstteki section ile arayı kapatmak için */
}

.toolkit-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3345; /* Zigzag-title ile aynı renk */
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    transform: translateY(-20px);
}

.toolkit-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #2d3345, #4a90e2); /* Zigzag-title ile aynı gradient */
    border-radius: 2px;
}

.toolkit-title.animated {
    opacity: 1;
    transform: translateY(0);
    color: #2d3345; /* Animasyon sonrası renk */
}

@media (max-width: 991px) {
    .toolkit-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .toolkit-title {
        font-size: 2.2rem;
    }
}

.toolkit-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem; /* 3rem'den 2rem'e düşürdük */
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* 30px'den 20px'e düşürdük */
    max-width: 1200px;
    margin: 0 auto;
}

.toolkit-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.toolkit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.toolkit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolkit-icon img {
    width: 30px;
    height: 30px;
}

.toolkit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.toolkit-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .toolkit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .toolkit-grid {
        grid-template-columns: 1fr;
    }
    
    .toolkit-title {
        font-size: 2rem;
    }
}

.toolkit-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.toolkit-item {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.toolkit-item:hover {
    transform: translateY(-5px);
    border-color: #6e8efb;
}

.toolkit-item h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin: 1rem 0;
    font-weight: 600;
}

.toolkit-item p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

@media (max-width: 991px) {
    .toolkit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .toolkit-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Logo Styles */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo {
    height: 80px;
    max-width: 270px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.footer-brand-name {
    font-size: 27px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 50px;
    }
    
    .footer-brand-name {
        font-size: 24px;
    }
}

/* Footer Styles */
footer.bg-dark {
    background-color: #1f2229;
    padding: 60px 0 30px;
}

footer .title.mini {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer .title-sub.mini {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.85;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer p {
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer .form-control {
    font-size: 15px;
    padding: 12px 15px;
    height: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer hr.light {
    opacity: 0.1;
    margin: 30px 0;
}

footer .copyright {
    font-size: 14px;
    opacity: 0.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Blog Detail Page Styles */
.blog-hero-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

.blog-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 0.6s ease-out;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 20vh;
    text-align: center;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.blog-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-up-delay {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/* Blog Content Section */
.blog-content-section {
    padding: 80px 0;
    background: #fff;
}

.blog-section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.blog-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-section .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.blog-section.visible .section-title {
    opacity: 1;
    transform: translateY(0);
}

.blog-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2962ff, #768fff);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.6s ease-out 0.3s;
    transform-origin: left;
}

.blog-section.visible .section-title::after {
    transform: scaleX(1);
}

.blog-section .section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.2s;
}

.blog-section.visible .section-content {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Reveal Animations */
[data-scroll-reveal] {
    visibility: hidden;
}

.sr-active {
    visibility: visible;
}

/* Remove Related Posts Section Styles */
.related-posts-section,
.related-post-card,
.related-post-card .post-image,
.related-post-card .post-content,
.related-post-card h3,
.related-post-card p,
.related-post-card .read-more {
    display: none;
}

/* Share Section */
.blog-share-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.blog-share-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2d3748;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-button.twitter { background: #1DA1F2; }
.share-button.facebook { background: #4267B2; }
.share-button.linkedin { background: #0077B5; }
.share-button.whatsapp { background: #25D366; }

/* Related Posts Section */
.related-posts-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.related-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-card .post-image {
    height: 200px;
    overflow: hidden;
}

.related-post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .post-image img {
    transform: scale(1.1);
}

.related-post-card .post-content {
    padding: 25px;
}

.related-post-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.related-post-card p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.related-post-card .read-more {
    color: #2962ff;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.related-post-card .read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2962ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.related-post-card .read-more:hover::after {
    transform: scaleX(1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .blog-hero-title {
        font-size: 2.8rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .blog-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        height: 50vh;
    }
    
    .blog-hero-title {
        font-size: 2.2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .blog-section .section-title {
        font-size: 1.8rem;
    }
    
    .blog-section .section-content {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .blog-hero-title {
        font-size: 1.8rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* İş Arama Bölümü Stilleri */
.google-style-search {
    padding: 20px 0;
    margin-bottom: 20px;
}

.search-inputs-container {
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    background: rgba(108, 55, 195, 0.02);
    border: 2px solid rgba(108, 55, 195, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.search-input-wrapper:hover {
    background: rgba(108, 55, 195, 0.04);
    border-color: rgba(108, 55, 195, 0.25);
    box-shadow: 0 4px 20px rgba(108, 55, 195, 0.08);
}

.search-input-wrapper:focus-within {
    background: rgba(108, 55, 195, 0.05);
    border-color: #6c37c3;
    box-shadow: 0 0 0 4px rgba(108, 55, 195, 0.12);
}

.search-input-wrapper input {
    width: 100%;
    border: none;
    background: none;
    padding-left: 32px;
    font-size: 15px;
    color: #1e293b;
    outline: none;
}

.search-input-wrapper input::placeholder {
    color: #94a3b8;
    font-size: 14px;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(108, 55, 195, 0.6);
    font-size: 14px;
}

.search-input-wrapper:focus-within .search-icon {
    color: #6c37c3;
}

.job-search-button {
    padding: 12px 32px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.job-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

/* Filtreler Bölümü */
.job-filters-container {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 15px;
}

.filters-row {
    display: flex;
    gap: 6px; /* Daha az boşluk */
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    z-index: 1001;
    padding: 0;
    margin: 10px 0;
}

.filter-dropdown {
    position: relative;
    flex: 0 0 auto;
    min-width: 140px; /* Daha küçük minimum genişlik */
    max-width: none;
}

.filter-btn {
    padding: 10px 18px;
    background: white;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 150px;
    justify-content: space-between;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, 
                rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.filter-btn:hover {
    border-color: #6c37c3;
    background: #F9F5FF;
    transform: translateY(-1px);
}

.filter-dropdown .filter-btn span {
  color: #6c37c3;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn span::after {
    content: attr(data-count);
    display: none;
    background: #6E34FF;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}

.filter-dropdown.has-selection[data-selection-count="2"] .filter-btn span::after,
.filter-dropdown.has-selection[data-selection-count="3"] .filter-btn span::after,
.filter-dropdown.has-selection[data-selection-count="4"] .filter-btn span::after,
.filter-dropdown.has-selection[data-selection-count="5"] .filter-btn span::after {
    display: flex;
}

.filter-dropdown .filter-btn i {
    font-size: 11px;
    color: #1a1a1a;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.filter-dropdown.has-selection .filter-btn span,
.filter-dropdown.has-selection .filter-btn i {
    color: #6E34FF !important;
    font-weight: 600;
    opacity: 1;
}

.filter-dropdown.has-selection .filter-btn {
    background: white;
    border: none;
    box-shadow: rgba(110, 52, 255, 0.3) 0px 4px 16px, 
                rgba(110, 52, 255, 0.1) 0px 1px 3px;
}



.filter-dropdown.has-selection .filter-btn:hover {
    box-shadow: rgba(110, 52, 255, 0.35) 0px 8px 20px, 
                rgba(110, 52, 255, 0.15) 0px 1px 3px;
}

.filter-dropdown.active .filter-btn i {
    transform: rotate(180deg);
    opacity: 1;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    width: 14px;
    height: 14px;
    margin: 0 6px 0 0;
}

.filter-option label {
    font-size: 13.5px;
}

.filter-btn:hover {
    background: rgba(108, 55, 195, 0.04);
    border-color: rgba(108, 55, 195, 0.25);
}

.filter-btn i {
    transition: transform 0.3s ease;
}

.filter-dropdown.active .filter-btn i {
    transform: rotate(180deg);
}

.filter-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    z-index: 999;
    display: none;
    padding: 8px 0;
}

.filter-option {
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option:hover {
    background: rgba(108, 55, 195, 0.05);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    margin-right: 8px;
}

.filter-option label {
    cursor: pointer;
    user-select: none;
    color: #4b5563;
    font-weight: 500;
}

/* Sonuçlar Bölümü */
.job-results-container {
    margin-top: 30px;
}

.job-list-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

@keyframes filterMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .search-inputs-container {
        flex-direction: column;
    }
    
    .job-search-button {
        width: 100%;
    }
}

/* Description Section Yeni Stiller */
.description-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 100px 30px;
    position: relative;
    overflow: visible;
    min-height: 850px;
    display: flex;
    align-items: flex-start;
    z-index: 1;
}

.description-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    min-height: 450px;
    position: relative;
    z-index: 2;
}

.job-filters-container {
    margin: 32px auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 20;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .description-section {
        min-height: 700px;
        padding: 80px 20px;
    }

    .description-section .container {
        min-height: 550px;
        padding: 30px;
    }
}

.google-style-search {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Responsive için medya sorgularını da güncelleyelim */
@media (max-width: 768px) {
    .description-section {
        padding: 80px 24px;
        min-height: 500px;
    }

    .description-section .container {
        padding: 24px;
    }

    .google-style-search {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .description-section {
        padding: 60px 16px;
        min-height: 400px;
    }

    .description-section .container {
        padding: 16px;
    }

    .google-style-search {
        padding: 20px;
        border-radius: 16px;
    }
}

/* Search Inputs Yeni Stiller */
.search-inputs-container {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.search-input-wrapper:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.search-input-wrapper:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
    background: #fafafa;
}

.search-input-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    padding-left: 36px;
    font-size: 16px;
    color: #1f2937;
    font-weight: 500;
    font-family: 'Inter', -apple-system, sans-serif;
    outline: none;
}

.search-input-wrapper input::placeholder {
    color: #9ca3af;
    font-weight: 400;
    font-size: 15px;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 18px;
    transition: all 0.2s ease;
}

.search-input-wrapper:focus-within .search-icon {
    color: #6366f1;
    transform: translateY(-50%) scale(1.1);
}

/* Filter Dropdowns Yeni Stiller */
.job-filters-container {
    margin: 32px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.filters-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-dropdown {
    position: relative;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
}

.filter-btn {
    width: 100%;
    padding: 7px 10px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    font-family: 'Inter', -apple-system, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filter-btn span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 14px;
    color: #6b7280;
}




.filter-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 12px 8px;
    z-index: 1000;
    display: none;
    border: 1px solid #e5e7eb;
    backdrop-filter: blur(8px);
    transform-origin: top;
    animation: filterDropdown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes filterDropdown {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.filter-option {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    margin: 2px 0;
}

.filter-option:hover {
    background: rgba(108, 55, 195, 0.06);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.filter-option input[type="radio"] {
    border-radius: 50%;
}

.filter-option input[type="checkbox"]:checked,
.filter-option input[type="radio"]:checked {
    background: #6c37c3;
    border-color: #6c37c3;
    box-shadow: 0 0 0 2px rgba(108, 55, 195, 0.1);
}

.filter-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.filter-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.filter-option label {
    font-size: 15px;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.2s ease;
}

.filter-option:hover label {
    color: #111827;
}

/* Job Search Button Yeni Stiller */
.job-search-button {
    padding: 0 32px;
    height: 56px;
    background: #6c37c3;
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(108, 55, 195, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.job-search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.job-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 55, 195, 0.35);
    background: #5c2ba8;
}

.job-search-button:hover::before {
    opacity: 1;
}

.job-search-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(108, 55, 195, 0.2);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .search-inputs-container {
        flex-direction: column;
        gap: 16px;
    }

    .filter-dropdown {
        min-width: 100%;
        max-width: 100%;
    }

    .job-search-button {
        width: 100%;
        height: 52px;
    }
}

@media (max-width: 576px) {
    .search-input-wrapper {
        padding: 14px 16px;
    }

    .filter-btn {
        padding: 12px 16px;
    }
}

.google-style-search {
    background: rgba(108, 55, 195, 0.02);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1010; 
}

.search-inputs-container {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1010; 
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    background: rgba(108, 55, 195, 0.03);
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 16px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    z-index: 1010; /* Yüksek z-index ekledik */
}

.location-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1015; /* En yüksek z-index değeri */
    max-height: 300px;
    overflow-y: auto;
    display: none;
    border: 1px solid #e2e8f0;
    margin-top: 4px;
}

.job-filters-container {
    margin: 32px auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 1005; /* Daha düşük z-index */
}

.filter-btn {
    width: 100%;
    padding: 14px 20px;
    background: rgba(108, 55, 195, 0.03);
    border: 1px solid rgba(108, 55, 195, 0.1);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #6c37c3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(8px);
}

.filter-btn:hover {
    background: rgba(108, 55, 195, 0.05);
    border-color: rgba(108, 55, 195, 0.2);
    box-shadow: 0 4px 20px rgba(108, 55, 195, 0.1);
}

.job-search-button {
    padding: 0 32px;
    height: 56px;
    background: #6c37c3;
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(108, 55, 195, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.job-search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.job-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 55, 195, 0.35);
    background: #5c2ba8;
}

.job-search-button:hover::before {
    opacity: 1;
}

.job-search-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(108, 55, 195, 0.2);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .search-inputs-container {
        flex-direction: column;
        gap: 16px;
    }

    .filter-dropdown {
        min-width: 100%;
        max-width: 100%;
    }

    .job-search-button {
        width: 100%;
        height: 52px;
    }
}

@media (max-width: 576px) {
    .search-input-wrapper {
        padding: 14px 16px;
    }

    .filter-btn {
        padding: 12px 16px;
    }
}

.filter-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(108, 55, 195, 0.15);
    box-shadow: 0 20px 40px rgba(108, 55, 195, 0.12);
}

.filter-option {
    background: transparent;
    transition: all 0.2s ease;
}

.filter-option:hover {
    background: rgba(108, 55, 195, 0.06);
}

.filter-btn {
    width: 80%;
    padding: 14px 20px;
    background: rgba(108, 55, 195, 0.02);
    border: 2px solid rgba(108, 55, 195, 0.15);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(8px);
}

.filter-btn span {
        color: #6c37c3;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 14px;
    color: #6c37c3;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.filter-dropdown.active .filter-btn span {
    color: #6c37c3;
    font-weight: 600;
}

.filter-dropdown.active .filter-btn i {
    transform: rotate(180deg);
    color: #6c37c3;
    opacity: 1;
}

/* Location Autocomplete Styles */
.location-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1005;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    border: 1px solid #e2e8f0;
    margin-top: 4px;
}

.location-suggestion {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.location-suggestion:last-child {
    border-bottom: none;
}

.location-suggestion:hover {
    background: #f8fafc;
}

.location-suggestion i {
    color: #6c37c3;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-info {
    flex: 1;
}

.location-name {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 4px;
}

.location-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.type-badge {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: rgba(108, 55, 195, 0.1);
    color: #6c37c3;
    font-weight: 500;
}

.location-suggestion:hover .location-name {
    color: #6c37c3;
}

/* Scrollbar Styles */
.location-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.location-autocomplete::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.location-autocomplete::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.location-autocomplete::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.no-location-results {
    padding: 20px;
    text-align: center;
    color: #64748b;
}

.no-location-results i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #94a3b8;
}

.no-location-results p {
    font-size: 14px;
    margin: 0;
}

.description-header {
    margin-bottom: 40px;
    padding: 20px 0;
}

.description-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6c37c3 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(108, 55, 195, 0.1);
    letter-spacing: -0.5px;
    line-height: 1.3;
    position: relative;
    animation: titleFadeIn 0.8s ease-out forwards;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.separator-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, #6c37c3, transparent);
    border-radius: 2px;
}

.separator-icon {
    width: 50px;
    height: 50px;
    background: #F9F5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(108, 55, 195, 0.15);
    overflow: hidden; /* Yuvarlak kesim için */
}

.separator-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.separator-icon:hover img {
    transform: scale(1.1);
}

.separator-icon i {
    font-size: 20px;
    color: #6c37c3;
    animation: iconPulse 2s infinite;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .description-title {
        font-size: 2rem;
    }
    
    .separator-line {
        width: 40px;
    }
}

@media (max-width: 576px) {
    .description-title {
        font-size: 1.75rem;
    }
    
    .title-separator {
        gap: 10px;
    }
    
    .separator-line {
        width: 30px;
    }
}

.description-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: subtitleFadeIn 0.8s ease-out forwards;
  animation-delay: 0.3s;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .description-subtitle {
        font-size: 1rem;
        margin-top: 12px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .description-subtitle {
        font-size: 0.95rem;
        margin-top: 10px;
    }
}

.description-section .container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(108, 55, 195, 0.1),
                0 10px 20px rgba(108, 55, 195, 0.05);
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 55, 195, 0.1);
    position: relative;
    overflow: visible; /* hidden yerine visible yapıyoruz */
    margin-top: 20px;
    z-index: 1; /* Düşük z-index */
}

.description-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 60px 20px;
    position: relative;
}

.google-style-search {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(108, 55, 195, 0.08);
    border: 1px solid rgba(108, 55, 195, 0.1);
    margin-bottom: 30px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .description-section .container {
        padding: 20px;
        border-radius: 16px;
    }
    
    .google-style-search {
        padding: 20px;
        border-radius: 16px;
    }
}

.filter-dropdown {
    position: relative;
    z-index: 1000; /* Yüksek z-index */
}

.filter-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(108, 55, 195, 0.15);
    padding: 12px 8px;
    z-index: 1001; /* En yüksek z-index */
    border: 1px solid rgba(108, 55, 195, 0.1);
    backdrop-filter: blur(8px);
}

.location-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001; /* En yüksek z-index */
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid rgba(108, 55, 195, 0.1);
    margin-top: 5px;
}

/* Search inputs için de z-index ekleyelim */
.search-input-wrapper {
    position: relative;
    z-index: 1000; /* Yüksek z-index */
}

.filters-row {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: space-between;
}

.filter-dropdown {
    flex: 1;
    width: calc(25% - 9px); /* 12px gap olduğu için 9px çıkarıyoruz */
    min-width: 0; /* min-width'i kaldırıyoruz ki eşit bölünebilsin */
}

.filter-btn {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .filters-row {
        flex-wrap: wrap;
    }
    
    .filter-dropdown {
        width: calc(50% - 6px);
        flex: 0 0 calc(50% - 6px);
    }
}

@media (max-width: 480px) {
    .filter-dropdown {
        width: 100%;
        flex: 0 0 100%;
    }
}

.feature-img-wrap {
    background: none;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    padding: 0;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: unset;
    max-width: 650px;
    transition: box-shadow 0.3s;
}

.feature-img-wrap video {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    width: 100%;
    height: auto;
    background: #fff;
    transition: box-shadow 0.3s;
}

.feature-img-wrap video:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18);
}

.feature-content {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 12px 0 12px 32px;
    margin: 0 0 0 16px;
    min-height: unset;
    transition: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #2962ff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.feature-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #2962ff, #8b5cf6);
    border-radius: 2px;
    margin-top: 6px;
}

.feature-text {
    font-size: 1.08rem;
    color: #3b4252;
    line-height: 1.7;
    font-weight: 500;
    margin-top: 8px;
}

@media (max-width: 991px) {
    .feature-content {
        padding: 8px 0 8px 0;
        margin: 0;
    }
    .feature-title {
        font-size: 1.2rem;
    }
}

/* Chrome, Safari, Edge için autocomplete arka planını sıfırla */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(108, 55, 195, 0.02) inset !important;
    box-shadow: 0 0 0 1000px rgba(108, 55, 195, 0.02) inset !important;
    -webkit-text-fill-color: #1f2937 !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Modern Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1c2e 0%, #2d2b55 100%);
    color: #fff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    grid-column: span 3;
    justify-self: start;
    margin-left: -10px;
    padding-left: 0;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    grid-column: span 2;
}

.footer-links h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #6c37c3;
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-contact {
    grid-column: span 5;
}

.footer-contact h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #6c37c3;
    border-radius: 2px;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form .submit-btn {
    background: #6c37c3;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form .submit-btn:hover {
    background: #7d45d4;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #6c37c3;
    transform: translateY(-3px);
}

.footer .copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-links {
        grid-column: span 1;
    }

    .footer-contact {
        grid-column: span 2;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-column: span 1;
    }

    .footer-contact {
        grid-column: span 1;
    }
}

/* Footer Logo ve Brand Name hizalama ve büyütme */
.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo-container .logo {
    height: 64px;
    width: 64px;
    max-width: 64px;
    min-width: 64px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.footer-brand-name {
    font-size: 2.3rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(255,255,255,0.2);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    height: 64px;
}

@media (max-width: 768px) {
    .footer-logo-container .logo {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        padding: 0 !important;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        display: block;
        margin: 0 auto;
    }
    .footer-brand-name {
        font-size: 1.5rem;
        height: 48px;
    }
    .footer-logo-container {
        gap: 12px;
    }
}

.filter-menu {
    padding: 8px 0 !important;
    border-radius: 12px !important;
    max-width: 300px !important;
    overflow-y: auto;
    max-height: 180px;
    position: absolute;
    left: 0;
    right: 0;
    max-width: 100vw;
    box-sizing: border-box;
}

.filter-option {
    padding: 5px 10px !important;
    gap: 10px !important;
    border-radius: 8px !important;
}

.filter-option label {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 14px !important;
    margin-right: 8px !important;
}

/* --- MOBİL HEADER DÜZENLEMELERİ --- */
@media (max-width: 768px) {
  .main-head {
    min-height: 48px !important;
    padding: 4px 8px !important;
  }
  .logo {
    height: 38px !important;
    max-width: 120px !important;
    padding: 2px !important;
  }
  .brand-name {
    font-size: 18px !important;
  }
  .nav-handle {
    display: block !important;
    color: #fff !important;
    font-size: 28px !important;
    right: 8px !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
  }
  .nav-handle i {
    color: #fff !important;
    font-size: 28px !important;
  }
  
  /* Language Selector Responsive - Tablet */
  .language-selector {
    margin-left: 4px !important;
  }
  .language-selector .current-lang {
    height: 28px !important;
    padding: 3px 8px !important;
    min-width: 70px !important;
    font-size: 14px !important;
  }
  .language-selector .emoji-flag {
    font-size: 16px !important;
    margin-right: 6px !important;
  }
  .language-selector .lang-text {
    font-size: 13px !important;
    margin-right: 4px !important;
  }
  .language-selector .fa-chevron-down {
    font-size: 10px !important;
  }
  .language-selector .lang-dropdown {
    min-width: 120px !important;
    right: -10px !important;
  }
  .language-selector .lang-option {
    padding: 6px 14px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 576px) {
  .main-head {
    min-height: 40px !important;
    padding: 2px 4px !important;
  }
  .logo {
    height: 30px !important;
    max-width: 90px !important;
    padding: 1px !important;
  }
  .brand-name {
    font-size: 15px !important;
  }
  .nav-handle {
    font-size: 24px !important;
    right: 4px !important;
  }
  .nav-handle i {
    font-size: 24px !important;
  }
}

@media (max-width: 768px) {
  .main-head:not(.header-sticky) .logo-container {
    align-items: center !important;
    height: 40px !important;
    min-height: 40px !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }
  .main-head:not(.header-sticky) .logo {
    height: 28px !important;
    max-width: 80px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    display: block;
  }
  .main-head:not(.header-sticky) .brand-name {
    font-size: 13px !important;
    line-height: 1 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
  }
}

/* Dropdown ve filtre overflow/z-index düzeltmeleri */
.filters-row,
.filter-dropdown,
.description-section,
.description-section .container,
.google-style-search {
  overflow: visible !important;
  z-index: auto;
}

.filter-menu {
  z-index: 3000 !important;
}

.language-selector {
  position: relative;
  display: inline-block;
  margin-left: 8px;
  font-family: inherit;
  z-index: 100;
}
.language-selector .current-lang {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px; /* 6px 12px'den 4px 10px'e düşürdük */
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
  border: 1px solid #e0e0e0;
  min-width: 90px;
  height: 32px;
}
.language-selector .current-lang:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.language-selector .emoji-flag {
  font-size: 20px;
  margin-right: 8px;
}
.language-selector .lang-text {
  font-size: 15px;
  font-weight: 500;
  margin-right: 6px;
  color: #fff;

}
.language-selector .fa-chevron-down {
  font-size: 12px;
  color: #888;
}
.language-selector .lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 140px;
  padding: 6px 0;
  border: 1px solid #e0e0e0;
  z-index: 999;
}
.language-selector.open .lang-dropdown {
  display: block;
}
.language-selector .lang-option {
  padding: 8px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 15px;
  transition: background 0.15s;
}
.language-selector .lang-option:hover {
  background: #f5f7fa;
}
.language-selector .lang-option .emoji-flag {
  margin-right: 10px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Language Selector Hover ve Sticky için güncelleme */
.language-selector .current-lang {
  background-color: rgba(255, 255, 255, 0.1);
  color: #2962ff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(41,98,255,0.06);
  transition: all 0.2s;
  height: 32px; 
  padding: 4px 10px; 
}
.language-selector .current-lang:hover,
.language-selector.open .current-lang {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12px 2px rgba(255,255,255,0.25);
  transform: translateY(-1px);
  color: #fff;
  transition: background 0.25s, box-shadow 0.25s;
}
.language-selector .current-lang .fa-chevron-down {
  color: #fff;
  transition: color 0.2s;
}
.language-selector .current-lang:hover .fa-chevron-down,
.language-selector.open .current-lang .fa-chevron-down {
  color: #fff;
}

/* Sticky durumda da beyaz kalsın */
.header-sticky .language-selector .current-lang {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #2962ff !important;
  border: 1px solid #e0e0e0 !important;
}
.header-sticky .language-selector .current-lang:hover,
.header-sticky .language-selector.open .current-lang {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid #2962ff !important;
}

.language-selector .current-lang {
  position: relative;
  overflow: hidden;
}
.language-selector .current-lang:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.13), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  z-index: 2;
}
.language-selector .current-lang:hover:before,
.language-selector.open .current-lang:before {
  transform: translateX(100%);
}
.language-selector .current-lang > * {
  position: relative;
  z-index: 3;
}
