/*-----------------------------------*\
  #main.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --rich-black-fogra-29: hsl(222, 44%, 8%);
  --middle-blue-green_40: hsla(174, 64%, 71%, 0.4);
  --midnight-green: hsl(186, 100%, 19%);
  --midnight-green_a25: hsla(186, 100%, 19%, 0.25);
  --independece: hsl(236, 14%, 39%);
  --verdigris: hsl(182, 100%, 35%);
  --ming: hsl(186, 72%, 24%);
  --space-cadet: hsla(226, 45%, 24%);
  --eerie-black: hsl(0, 0%, 13%);
  --alice-blue: hsl(187, 25%, 94%);
  --gray-web: hsl(0, 0%, 50%);
  --gainsboro: hsl(0, 0%, 87%);
  --white: hsl(0, 0%, 100%);
  --white_a20: hsla(0, 0%, 100%, 0.2);
  --white_a10: hsla(0, 0%, 100%, 0.1);
  --black: hsl(0, 0%, 0%);
  --cadet-blue-crayola: hsl(220, 14%, 75%);
  --dark-electric-blue: hsl(217, 9%, 45%);
  --shamrock-green: hsl(146, 51%, 41%);
  --sea-green_10: hsla(146, 75%, 30%, 0.1);
  --eerie-black: hsl(218, 12%, 13%);
  --ghost-white: hsl(230, 60%, 98%);
  --sea-green: hsl(146, 75%, 30%);
  --honeydew: hsl(146, 74%, 94%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --tan-crayola: hsl(27, 46%, 58%);

  /**
   * typography
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;

  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */



  --section-padding: 50px;

  /**
   * box shadow
   */

  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 2px 16px var(--midnight-green);

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
span,
time,
input,
button,
ion-icon {
  display: block;
  --ionicon-stroke-width: 40px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

mb-5{
    margin-bottom: 20px;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  font-family: var(--ff-rubik);
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1.7;
  overflow: scroll;
  overflow-x: hidden;
  height: 100%;
  /* Sayfa boyutunu ekranın tam yüksekliğine ayarla */
  margin: 0;
  display: flex;
  flex-direction: column;
}

body.loaded {
  overflow-y: visible;
}

body.nav-active {
  overflow: hidden;
}






/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

.headline-lg {
  font-size: 50px;
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md {
  font-family: var(--ff-oswald);
}

.headline-md,
.headline-sm {
  line-height: 1.3;
}

.headline-md,
.headline-sm {
  color: var(--midnight-green);
}

.headline-sm {
  font-size: var(--headline-sm);
}

.title-lg {
  font-size: var(--title-lg);
}

.title-md {
  font-size: var(--title-md);
}

.title-sm {
  font-size: var(--title-sm);
}

.social-list {
  display: flex;
}

.section {
  padding-block: var(--section-padding);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--verdigris);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:hover {
  background-color: var(--white);
  color: var(--verdigris)
}

.w-100 {
  width: 100%;
}

.grid-list {
  display: grid;
  gap: 40px 28px;

}

.text-center {
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed {
  opacity: 1;
}

[data-reveal="bottom"] {
  transform: translateY(50px);
}

[data-reveal="bottom"].revealed {
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  transform: translateX(0);
}
section#timeline {
  width: 80%;
  margin: 20px auto;
  position: relative;
}
section#timeline:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  margin: 0 0 0 -1px;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.2);
}
section#timeline article {
  width: 100%;
  margin: 0 0 20px 0;
  position: relative;
}
section#timeline article:after {
  content: '';
  display: block;
  clear: both;
}
section#timeline article div.inner {
  width: 40%;
  float: left;
  margin: 5px 0 0 0;
  border-radius: 6px;
}
section#timeline article div.inner span.date {
  display: block;
  width: 60px;
  height: 50px;
  padding: 5px 0;
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0 0 0 -32px;
  border-radius: 100%;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: #25303B;
  color: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 0 7px #25303B;
}
section#timeline article div.inner span.date span {
  display: block;
  text-align: center;
}
section#timeline article div.inner span.date span.day {
  font-size: 10px;
}
section#timeline article div.inner span.date span.month {
  font-size: 18px;
}
section#timeline article div.inner span.date span.year {
  font-size: 10px;
}
section#timeline article div.inner h2 {
  padding: 15px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
  border-radius: 6px 6px 0 0;
  position: relative;
}
section#timeline article div.inner h2:after {
  content: '';
  position: absolute;
  top: 20px;
  right: -5px;
    width: 10px; 
    height: 10px;
  -webkit-transform: rotate(-45deg);
}
section#timeline article div.inner p {
  padding: 15px;
  margin: 0;
  font-size: 14px;
  background: #fff;
  color: #656565;
  border-radius: 0 0 6px 6px;
}
section#timeline article:nth-child(2n+2) div.inner {
  float: right;
}
section#timeline article:nth-child(2n+2) div.inner h2:after {
  left: -5px;
}
section#timeline article:nth-child(1) div.inner h2 {
  background: #e74c3c;
}
section#timeline article:nth-child(1) div.inner h2:after {
  background: #e74c3c;
}
section#timeline article:nth-child(2) div.inner h2 {
  background: #2ecc71;
}
section#timeline article:nth-child(2) div.inner h2:after {
  background: #2ecc71;
}
section#timeline article:nth-child(3) div.inner h2 {
  background: #e67e22;
}
section#timeline article:nth-child(3) div.inner h2:after {
  background: #e67e22;
}
section#timeline article:nth-child(4) div.inner h2 {
  background: #1abc9c;
}
section#timeline article:nth-child(4) div.inner h2:after {
  background: #1abc9c;
}
section#timeline article:nth-child(5) div.inner h2 {
  background: #9b59b6;
}
section#timeline article:nth-child(5) div.inner h2:after {
  background: #9b59b6;
}



/*-----------------------------------*\
  #hizmetler
\*-----------------------------------*/





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}




/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 16px;
  z-index: 4;
  background-color: var(--rich-black-fogra-29);

}

.header.active {
  position: fixed;
  background-color: var(--rich-black-fogra-29);
  animation: headerActive 0.5s ease forwards;
}

@keyframes headerActive {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--white);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--rich-black-fogra-29);
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item {
  border-block-start: 1px solid var(--white_a10);
}

.navbar-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 24px;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/
.slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
}

/* Slider image slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

/* Active slide */
.slide.active {
  opacity: 1;
}

.slider-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active {
  background-color: #717171;
}

.hero-banner {
  display: none;
}

.hero {
  background-color: var(--midnight-green);
  height: 100vh; /* Tam ekran yapacak şekilde ayarlayın */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-subtitle {
  color: var(--white);
  font-weight: var(--fw-500);
}

.hero-subtitle::before {
  top: 50%;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--white);
}

.hero-title {
    margin-block: 20px 30px;
    display: flex;
    align-items: center;
   
}
.hero-content {
  padding-top: 120px;  /* İstenilen mesafeye göre ayarlayın */
}

.hero-card {
  background-color: var(--white);
  border-radius: var(--radius-12);
  padding: 20px;
}

.hero-card .card-text {
  color: var(--eerie-black);
  border-block-end: 1px solid var(--midnight-green_a25);
  padding-block-end: 12px;
  margin-block-end: 14px;
}

.hero-card .input-wrapper {
  position: relative;
}

.hero-card .input-field {
  color: var(--eerie-black);
  border-block-end: 1px solid var(--gainsboro);
  padding-inline-end: 18px;
}

.hero-card .input-wrapper ion-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--verdigris);
}

.hero-card .btn {
  width: 100%;
  justify-content: center;
  margin-block-start: 16px;
} 





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/


*/ .service {
  text-align: center;

}

.service .section-subtitle {
  color: var(--midnight-green);
  font-size: 2.5rem;
  margin-block-end: 50px;
  padding-top: 5px;
}

.h2-section-title {
  font-size: 2.5rem;
  padding: 25px;
}

h4 .card-title {
  font-weight: var(--fw-900);
  font-family: var(--ff-oswald);

}


.service .section-title {
  font-size: 2rem;
  margin-block-end: 50px;
}

.service-card {
  padding: 40px;
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-6);
  text-align: center;
  font-size: 1.7rem;
  /* Font boyutunu daha büyük yap */
}

.service-card .tick-icon {
  color: var(--violet-blue-crayola);
  margin-right: 5px;
}

.service-card .card-title {
  color: var(--midnight-green);
  font-size: 1.9rem;
  margin-block: 16px 10px;
}

.service-card .btn-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-block-start: 10px;
  color: var(--midnight-green);
  font-weight: var(--fw-700);
  transition: var(--transition-1);
}

.service-card .btn-text:is(:hover, :focus-visible) {
  opacity: 0.9;
}


.service-card .circle-icon {
  font-size: 0.7rem;
  /* İkon boyutunu ayarlayın */
  margin-right: 5px;
  /* İkon ile metin arasındaki boşluğu ayarlayın */
  color: var(--midnight-green);
}

.bullet-icon {
  color: var(--midnight-green);
  /* Yuvarlak ikonların rengi */
  background-color: var(--midnight-green);
  /* Yuvarlak ikonların arka plan rengi */
  width: 1em;
  /* Yuvarlak ikon genişliği */
  height: 1em;
  /* Yuvarlak ikon yüksekliği */
  border-radius: 50%;
  /* Yuvarlak border radius */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.5em;
  /* İkon boyutunu ayarlayın */
  margin-right: 5px;
  /* İkon ile metin arasındaki boşluğu ayarlayın */
  padding: 0.2em;
  /* İkon içeriği ile border arasındaki boşluğu ayarlayın */
}





/*-----------------------------------\
  #ABOUT
\-----------------------------------*/

.about {
  padding-block-end: 0;
}

.about .container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about .section-text {
  margin-block: 20px 35px;
}



.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}

.tab-btn {
  background-color: var(--alice-blue);
  color: var(--midnight-green);
  padding: 7px 30px;
  border-radius: var(--radius-6);
  font-weight: var(--fw-700);
}

.tab-btn.active {
  background-color: var(--verdigris);
  color: var(--white);
}

.tab-text {
  color: var(--midnight-green);
  margin-block: 35px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: 10px;
}

.about-item ion-icon {
  color: var(--verdigris);
  font-size: 2.2rem;
  flex-shrink: 0;
}
















/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

* {
  margin: 0;
  padding: 0;
}

a {
  color: #fff;
  text-decoration: none;
}

.pg-footer {
  font-family: 'Roboto', sans-serif;

}


.footer {
  background-color: #004658;
  color: #fff;
  height: auto;

}

.footer-wave-svg {
  background-color: transparent;
  display: block;
  height: auto;
  position: relative;
  top: -1px;
  width: 100%;
}

.footer-wave-path {
  fill: #fff;
}

.footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 20px 15px;
  position: relative;
}

.footer-content-column {
  box-sizing: border-box;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  color: #fff;
}

.footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-logo-link {
  display: inline-block;
}

.footer-menu {
  margin-top: 30px;
}

.footer-menu-name {
  color: #fffff2;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}

.footer-menu-list {
  list-style: none;
  margin-bottom: 0;
  margin-top: 10px;
  padding-left: 0;
}

.footer-menu-list li {
  margin-top: 5px;
}

.footer-call-to-action-description {
  color: #fffff2;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 15px;
}

.footer-call-to-action-button:hover {
  background-color: #fffff2;
  color: #00bef0;
}

.button:last-of-type {
  margin-right: 0;
}

.footer-call-to-action-button {
  background-color: #027b9a;
  border-radius: 21px;
  color: #fffff2;
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  padding: 13px 30px;
  margin: 0 10px 10px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s;
  cursor: pointer;
  position: relative;
  margin-left: -10px;
}

.footer-call-to-action {
  margin-top: 30px;
}

.footer-call-to-action-title {
  color: #fffff2;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
  margin-bottom: 0;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
  color: #fff;
  text-decoration: none;
}





.footer-social-links {
  bottom: 0;
  height: 54px;
  position: absolute;
  right: 0;
  width: 236px;
}

.footer-social-amoeba-svg {
  height: 54px;
  left: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 236px;
}

.footer-social-amoeba-path {
  fill: #027b9a;
}

.footer-social-link.linkedin {
  height: 26px;
  left: 3px;
  top: 11px;
  width: 26px;
}

.footer-social-link {
  display: block;
  padding: 10px;
  position: absolute;
}

.hidden-link-text {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  top: 50%;
}

.footer-social-icon-svg {
  display: block;
}

.footer-social-icon-path {
  fill: #fffff2;
  transition: fill .2s;
}

.footer-social-link.twitter {
  height: 28px;
  left: 62px;
  top: 3px;
  width: 28px;
}

.footer-social-link.youtube {
  height: 24px;
  left: 123px;
  top: 12px;
  width: 24px;
}

.footer-social-link.github {
  height: 34px;
  left: 172px;
  top: 7px;
  width: 34px;
}

.footer-copyright {
  background-color: #027b9a;
  color: #fff;
  padding: 15px 30px;
  text-align: center;
}

.footer-copyright-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
}

.footer-copyright-link {
  color: #fff;
  text-decoration: none;
}







/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px) {

  /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}

@media (min-width:480px) and (max-width:599px) {

  /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}

@media (min-width:600px) and (max-width: 800px) {

  /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}

@media (min-width:801px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */

}

@media (min-width:1025px) {
  /* big landscape tablets, laptops, and desktops */

}

@media (min-width:1281px) {
  /* hi-res laptops and desktops */

}




@media (min-width: 760px) {
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    height: 300px;
    position: relative;
  }

  .footer-wave-svg {
    height: 50px;
  }

  .footer-content-column {
    width: 24.99%;
  }
}

@media (min-width: 568px) {
  /* .footer-content-column {
      width: 49.99%;
  } */
}
@media (max-width: 767px) {
  .container {
    /* Kenarlara boşluk ekleyin */
    max-width: none;
     
  }
  .service-list, .about-list {
    grid-template-columns: 1fr; /* Her öğeyi kendi satırında göster */
  }
  
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--eerie-black);
}

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}







/*-----------------------------------*\
  #PRODUCT
\*-----------------------------------*/







/*-----------------------------------*\
  #MAIN CONTENT
\*-----------------------------------*/






/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .btn {
    display: block;
  }

  .nav-open-btn {
    margin-inline-start: auto;
  }

  .header .container {
    gap: 40px;
  }



  /**
   * HERO
   */

  .hero-title {
    line-height: 1.125;
  }

  .hero .wrapper {
    display: flex;
    gap: 16px;
  }

  .hero-card .input-wrapper {
    flex-grow: 1;
  }

  .hero-card .input-field {
    height: 100%;
  }

  .hero-card .btn {
    width: max-content;
    margin-block-start: 0;
  }





  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * ABOUT
   */

  .about-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-banner {
    max-width: max-content;
    margin-inline: auto;
  }



  /**
   * LISTING
   */

  .listing .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  .listing .grid-list>li:first-child {
    grid-column: 1 / 3;
  }



  /**
   * FOOTER
   */



}


/**
 * responsive for large than 992px screen
 */


@media (max-width: 991px) {
  .service-title {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 940px;
  }



  /**
   * HERO
   */

  .hero-banner {
    display: block;
    max-width: max-content;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }



  /**
   * SERVICE
   */
  .service {
    text-align: center;
    /* Hizmetlerimiz başlığını ortalamak için */
  }

  .service-title {
    margin-top: 20px;
    margin-bottom: 10px;
    /* Hizmetlerimiz başlığının üst boşluğunu ayarlamak için */
  }

  .service-list {
    grid-template-columns: repeat(4, 1fr);
  }


  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: flex-end;
  }

  .about-content {
    padding-block-end: var(--section-padding);
  }

  .about-banner {
    margin-inline-end: -80px;
  }



  /**
   * BLOG
   */

  .blog .grid-list {
    grid-template-columns: 1fr 1fr;
  }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1200px;
  }



  /**
   * HEADER
   */

  .header {
    padding-block: 24px;
  }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar {
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
  }



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 0.8fr 1fr;
    gap: 96px;
  }



  /**
   * LISTING
   */

  .listing .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * BLOG
   */

  .blog .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * FOOTER
   */



}



/* Eğer flexbox kullanıyorsanız */

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

/*-----------------------------------*\
 * #GALLERY SLIDER
\*-----------------------------------*/

.gallery-container {
  position: relative;
  width: 100%;
  margin: 40px auto;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide-item {
  min-width: 300px; /* Her bir slaytın minimum genişliği */
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

.slide-item a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-item a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px hsla(0, 0%, 0%, 0.2);
}

.gallery-image {
  width: 100%;
  height: 220px;
  object-fit: cover; /* Resimlerin kutuya tam sığmasını sağlar */
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: hsla(0, 0%, 100%, 0.8);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  color: var(--davys-gray);
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: var(--blue-ryb);
  color: var(--white);
}

.slider-btn.prev-btn {
  left: 15px;
}

.slider-btn.next-btn {
  right: 15px;
}

/* Tablet */
@media (min-width: 768px) {
  .slide-item {
    min-width: 33.33%;
  }
}

/* Masaüstü */
@media (min-width: 1024px) {
  .slide-item {
    min-width: 25%; /* Masaüstünde 4 resim gösterir */
  }
}

.float-wp{
  background: green;
      color: white;
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      left: 20px;
      z-index: 150;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      border-radius: 50%;
      transition: all 0.4s ease;
  }

  .float-wp:hover{
    background: #fff;
    color: #121212;
    }
  
  .float-phone{
  background: #121212;
      color: white;
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 100px;
      left: 20px;
      z-index: 150;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      border-radius: 50%;
      transition: all 0.4s ease;
  }

  .float-phone:hover{
    background: white;
    color: #121212;
    }
    
.news-card {
  background-color: var(--white);
  border: 1px solid var(--gainsboro);
  border-radius: var(--radius-8);
  overflow: hidden;
  height: 100%;
  transition: var(--transition-2);
}

.news-card:is(:hover, :focus-within) {
  transform: translateY(-10px);
  box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.1);
}

/* --- RESİM ORTALAMA İÇİN GÜNCELLENEN BÖLÜM --- */
.news-card .card-banner.img-holder {
  border-radius: var(--radius-8);
  overflow: hidden;
  /* YENİ EKLENEN ÖZELLİKLER */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ------------------------------------------- */

.news-card .card-content {
  padding: 20px;
}

.news-card .card-date {
  color: var(--blue-ryb);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  margin-block-end: 10px;
}

.news-card .card-title {
  color: var(--eerie-black-1);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-700);
  line-height: 1.4;
  margin-block-end: 10px;
  transition: var(--transition-1);
}

.news-card:is(:hover, :focus-within) .card-title {
  color: var(--blue-ryb);
}

.news-card .card-text {
  color: var(--davys-gray);
  font-family: var(--ff-rubik);
  line-height: 1.8;
}

/* Sadece #haberler ID'li bölümün içindeki grid-list'i hedefler */
#haberler .grid-list {
  display: grid;
  gap: 30px; /* Kartlar arasındaki boşluk */
}

/* Tablet boyutları için (768px ve üstü) - 2 Sütun */
@media (min-width: 768px) {
  #haberler .grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Masaüstü boyutları için (992px ve üstü) - 3 Sütun */
@media (min-width: 992px) {
  #haberler .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*-----------------------------------*\
 * #FAQ (Sıkça Sorulan Sorular)
\*-----------------------------------*/

.faq-container {
  max-width: 800px;
  margin-inline: auto;
  margin-block-start: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--gainsboro);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  color: var(--eerie-black-1);
  transition: var(--transition-1);
}

.faq-question:is(:hover, :focus-visible) {
  color: var(--blue-ryb);
}

.faq-question i {
  font-size: 16px;
  color: var(--blue-ryb);
  transition: transform 0.3s ease;
  flex-shrink: 0; /* İkonun küçülmesini engeller */
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
  color: var(--davys-gray);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* Aktif durum için stiller */
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Cevabın uzunluğuna göre artırılabilir */
}


/*-----------------------------------*\
 * #FEATURED SERVICES
\*-----------------------------------*/

.featured-services-list {
  display: grid;
  gap: 30px;
  margin-block-start: 50px;
}

.featured-service-card {
  background-color: var(--white);
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-8);
  border: 1px solid var(--gainsboro);
  transition: var(--transition-2);

  /* --- EŞİT YÜKSEKLİK İÇİN EKLENEN KODLAR --- */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-service-card:is(:hover, :focus-within) {
  transform: translateY(-10px);
  box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.1);
  border-color: var(--blue-ryb);
}

.featured-service-card .card-icon {
  color: var(--blue-ryb);
  font-size: 50px;
  margin-inline: auto;
  margin-block-end: 25px;
}

.featured-service-card .card-title {
  color: var(--eerie-black-1);
  font-family: var(--ff-oswald);
  font-weight: var(--fw-700);
  margin-block-end: 10px;
}

.featured-service-card .card-text {
  color: var(--davys-gray);
  line-height: 1.8;
}


/* RESPONSIVE AYARLARI */

/* Tablet (2 sütun) */
@media (min-width: 768px) {
  .featured-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Masaüstü (4 sütun) */
@media (min-width: 1200px) {
  .featured-services-list {
    grid-template-columns: repeat(4, 1fr);
  }
}