/**------------------------------------------------------------STYLE START---------------------------------------------------------------**\
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  /* gradient */

  --bg-gradient-onyx: linear-gradient(
    to bottom right, 
    hsl(240, 1%, 25%) 3%, 
    hsl(0, 0%, 19%) 97%
  );
  --bg-gradient-jet: linear-gradient(
    to bottom right, 
    hsla(240, 1%, 18%, 0.251) 0%, 
    hsla(240, 2%, 11%, 0) 100%
  ), hsl(240, 2%, 13%);
  --bg-gradient-yellow-1: linear-gradient(
    to bottom right, 
    hsl(45, 100%, 71%) 0%, 
    hsla(36, 100%, 69%, 0) 50%
  );
  --bg-gradient-yellow-2: linear-gradient(
    135deg, 
    hsla(45, 100%, 71%, 0.251) 0%, 
    hsla(35, 100%, 68%, 0) 59.86%
  ), hsl(240, 2%, 13%);
  --border-gradient-onyx: linear-gradient(
    to bottom right, 
    hsl(0, 0%, 25%) 0%, 
    hsla(0, 0%, 25%, 0) 50%
  );
  --text-gradient-yellow: linear-gradient(
    to right, 
    hsl(45, 100%, 72%), 
    hsl(35, 100%, 68%)
  );

  /* solid */

  --jet: hsl(0, 0%, 22%);
  --onyx: hsl(240, 1%, 17%);
  --eerie-black-1: hsl(240, 2%, 13%);
  --eerie-black-2: hsl(240, 2%, 12%);
  --smoky-black: hsl(0, 0%, 7%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --orange-yellow-crayola: hsl(45, 100%, 72%);
  --vegas-gold: hsl(45, 54%, 58%);
  --light-gray: hsl(0, 0%, 84%);
  --light-gray-70: hsla(0, 0%, 84%, 0.7);
  --bittersweet-shimmer: hsl(0, 43%, 51%);

  /*
    typography
   */

  /* font-family */
  --ff-poppins: 'Poppins', sans-serif;

  /* font-size */
  --fs-1: 24px;
  --fs-2: 18px;
  --fs-3: 17px;
  --fs-4: 16px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fs-7: 13px;
  --fs-8: 11px;

  /* font-weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  /*
    shadow
   */
  
  --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
  --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
  --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
  --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
  --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);

  /*
    transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease-in-out;

}





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

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

a { text-decoration: none; }

li { list-style: none; }

img, ion-icon, a, button, time, span { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

input, textarea {
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: var(--orange-yellow-crayola);
  color: var(--smoky-black);
}

:focus { outline-color: var(--orange-yellow-crayola); }

html { font-family: var(--ff-poppins); }

body { background: var(--smoky-black); }





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

.sidebar {
  background: var(--eerie-black-2);
  border: 1px solid var(--jet);
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--shadow-1);
  z-index: 1;
}

article {
  background: var(--eerie-black-2);
  border: 1px solid var(--jet);
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--shadow-1);
  z-index: 1;
  margin-bottom: -70px;
}

.separator {
  width: 100%;
  height: 1px;
  background: var(--jet);
  margin: 16px 0;
}

.icon-box {
  position: relative;
  background: var(--border-gradient-onyx);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--orange-yellow-crayola);
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--eerie-black-1);
  border-radius: inherit;
  z-index: -1;
}

.icon-box ion-icon { --ionicon-stroke-width: 35px; }

article { display: none; }

article.active {
  display: block;
  animation: fade 0.5s ease backwards;
}

@keyframes fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.h2,
.h3,
.h4,
.h5 {
  color: var(--white-2);
  text-transform: capitalize;
}

.h2 { font-size: var(--fs-1); }

.h3 { font-size: var(--fs-2); }

.h4 { font-size: var(--fs-4); }

.h5 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.article-title {
  position: relative;
  padding-bottom: 7px;
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--text-gradient-yellow);
  border-radius: 3px;
}

.has-scrollbar::-webkit-scrollbar {
  width: 5px; /* for vertical scrollbar */
  height: 5px; /* for horizontal scrollbar */
}

.has-scrollbar::-webkit-scrollbar-track {
  background: var(--onyx);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: var(--orange-yellow-crayola);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-button { width: 20px; }

.content-card {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 15px;
  padding-top: 45px;
  border-radius: 1rem;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  z-index: 1;
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.content-card:hover {
  filter: drop-shadow(2px 2px 5px rgba(252, 241, 86, 0.686));
}

.content-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

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

main {
  margin: 15px 12px;
  margin-bottom: 75px;
  min-width: 259px;
}

/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  margin-bottom: 15px;
  max-height: 112px;
  overflow: hidden;
  transition: var(--transition-2);
}

.sidebar.active { max-height: 405px; }

.sidebar-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.avatar-box {
  background: var(--bg-gradient-onyx);
  border-radius: 20px;
}

.info-content .name {
  color: var(--white-2);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  letter-spacing: -0.25px;
  margin-top: 5px;
  margin-bottom: 5px;
  background: linear-gradient(to right, #FFDB70 30%,#fecc38 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-content .title {
  color: var(--white-1);
  background: var(--onyx);
  font-size: medium;
  font-weight: bold;
  width: max-content;
  padding: 3px 12px;
  border-radius: 8px;
}

.info-content .title:hover {
  color: #FFDB70;
}

.info_more-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 0 15px;
  font-size: 13px;
  color: var(--orange-yellow-crayola);
  background: var(--border-gradient-onyx);
  padding: 10px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  z-index: 1;
}

.info_more-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  transition: var(--transition-1);
  z-index: -1;
}

.info_more-btn:hover,
.info_more-btn:focus { background: var(--bg-gradient-yellow-1); }

.info_more-btn:hover::before,
.info_more-btn:focus::before { background: var(--bg-gradient-yellow-2); }

.info_more-btn span { display: none; }

.sidebar-info_more {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
}

.sidebar.active .sidebar-info_more {
  opacity: 1;
  visibility: visible;
}

.contacts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}

.contact-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info {
  max-width: calc(100% - 46px);
  width: calc(100% - 46px);
}

.contact-title {
  color: var(--light-gray-70);
  font-size: var(--fs-8);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info :is(.contact-link, time, address) {
  color: var(--white-2);
  font-size: var(--fs-7);
}

.contact-info :is(.contact-link, time, address):hover {
  color: #FFDB70; 
}

.contact-info address { font-style: normal; }

.social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  padding-left: 7px;
}

.social-item .social-link {
  color: var(--light-gray-70);
  font-size: 18px;
}


.social-item .social-link:hover { color: var(--orange-yellow-crayola); }


/*-----------------------------------*\
  #NAVBAR
\*-----------------------------------*/
.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: hsla(240, 1%, 17%, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--jet);
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow-2);
  z-index: 1002;
  transition: bottom 0.3s ease-in-out;
  height: 60px; /* Varsayılan yükseklik */
  display: flex;
  align-items: center;
  justify-content: center;
}


.navbar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.navbar-link {
  color: var(--light-gray);
  font-size: var(--fs-8);
  padding: 20px 7px;
  transition: color var(--transition-1);
  font-weight: bold;
}

.navbar-link:hover,
.navbar-link:focus { color: #FFDB70; }

.navbar-link.active { color: var(--orange-yellow-crayola); }

.navbar-link i {
  font-size: 20px;
}

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

.about .article-title { margin-bottom: 15px; }

.about-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

.about-text p { margin-bottom: 15px; }

.about-texthizmet {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

.about-texthizmet p { 
  font-size: 18px;
  margin-bottom: 15px; 
}


/**
 * #service 
 */

.service { margin-bottom: 35px; }

.service-title { margin-bottom: 20px; }

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-item {
  width:100%;
  height:100%;
  margin:0 auto;
  overflow:hidden;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  position: relative;
  border-radius: 30px;

}

.service-item:hover {
  transform: scale(1.01);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  filter: drop-shadow(2px 2px 5px rgba(252, 241, 86, 0.686));
}

.service-item {
  position: relative;
  background: var(--border-gradient-onyx);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  z-index: 1;
  
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

.service-icon-box { margin-bottom: 10px; }

.service-icon-box img { margin: auto; }

.service-content-box { text-align: center; }

.service-item-title:hover { color:#FFDB70; }

.service-item-title { margin-bottom: 7px; }

.service-item-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-3);
  line-height: 1.6;
}


/*
  #testimonials 
 */

.testimonials { margin-bottom: 30px; }

.testimonials-title { margin-bottom: 20px; }

.testimonials-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin: 0 -15px;
  padding: 25px 15px;
  padding-bottom: 35px;
  overflow-x: auto;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.testimonials-item {
  min-width: 100%;
  scroll-snap-align: center;
  margin-bottom: 20px;
}

.testimonials-avatar-box {
  position: absolute;
  top: 10px;
  left: 0;
  transform: translate(15px, -25px);
  background: var(--bg-gradient-onyx);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
}

.testimonials-item-title { margin-bottom: 7px; }

.testimonials-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hakkındatext {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  word-break: break-word;
}


/*
 #testimonials-modal
 */

.modal-container {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 10001;
  pointer-events: none;
  visibility: hidden;
}

.modal-container::-webkit-scrollbar { display: none; }

.modal-container.active {
  pointer-events: all;
  visibility: visible;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsl(0, 0%, 5%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 0.8;
  visibility: visible;
  pointer-events: all;
}

.testimonials-modal {
  background: var(--eerie-black-2);
  position: relative;
  padding: 15px;
  margin: 15px 12px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  box-shadow: var(--shadow-5);
  transform: scale(1.2);
  opacity: 0;
  transition: var(--transition-1);
  z-index: 2;
}

.modal-container.active .testimonials-modal {
  transform: scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--onyx);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-2);
  font-size: 18px;
  opacity: 0.7;
}

.modal-close-btn:hover,
.modal-close-btn:focus { opacity: 1; }

.modal-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.modal-avatar-box {
  background: var(--bg-gradient-onyx);
  width: max-content;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-2);
}

.modal-img-wrapper > img { display: none; }

.modal-title { margin-bottom: 4px; }

.modal-content time {
  font-size: var(--fs-6);
  color: var(--light-gray-70);
  font-weight: var(--fw-300);
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

    /* Modal stilleri */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
    }
    .modal-content {
      padding: 20px;
      border-radius: 10px;
      max-width: 600px;
      width: 90%;
      position: relative;
    }
    .modal-header {
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 10px;
    }
    .close-btn {
      position: absolute;
      right: 15px;
      top: 10px;
      cursor: pointer;
      font-size: 20px;
    }
/*
 #clients 
 */

.clients-item {
  min-width: 50%;
  scroll-snap-align: start;
}

.clients-item img {
  width: 100%;
  filter: grayscale(40%);
  transition: var(--transition-1);
}

.clients-item img:hover { filter: grayscale(0); }

.clients-items {
  min-width: 50%;
  scroll-snap-align: start;
}

.clients-items img {
  width: 100%;
  transition: var(--transition-1);
}

.clients-items img:hover {
  transform: scale(1.02);
}




/*-----------------------------------*\
  #RESUME
\*-----------------------------------*/

.article-title { margin-bottom: 30px; }


/*
 education and experience 
 */

.timeline { margin-bottom: 30px; }

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.timeline-list {
  font-size: var(--fs-6);
  margin-left: 45px;
}

.timeline-item { position: relative; }

.timeline-item:not(:last-child) { margin-bottom: 20px; }

.timeline-item-title {
  font-size: var(--fs-6);
  line-height: 1.3;
  margin-bottom: 7px;
}

.timeline-list span {
  color: var(--vegas-gold);
  font-weight: var(--fw-400);
  line-height: 1.6;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -30px;
  width: 1px;
  height: calc(100% + 50px);
  background: var(--jet);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -33px;
  height: 6px;
  width: 6px;
  background: var(--text-gradient-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jet);
}

/*-----------------------------------*\
  #PORTFOLIO
\*-----------------------------------*/

.filter-list { display: none; }

.filter-select-box {
  position: relative;
  margin-bottom: 25px;
  z-index:1001;
}

.filter-select {
  background: var(--eerie-black-2);
  color: #FFDB70;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
}

.filter-select.active .select-icon { transform: rotate(0.5turn); }

.select-list {
  background: var(--eerie-black-2);
  position: absolute;
  top: calc(100% + 6px);
  width: 100%;
  padding: 6px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in-out;
  list-style: none;
  margin: 0;
}

.select-list.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.filter-select.active + .select-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.select-item button {
  background: var(--eerie-black-2);
  color: #FFDB70;
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  text-transform: capitalize;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
}

.select-item button:hover { --eerie-black-2: hsl(240, 2%, 20%); }

.project-item { display: none; }

.project-item.active {
  display: block;
  animation: scaleUp 0.25s ease forwards;
}

@keyframes scaleUp {
  0% { transform: scale(0.5); }
  100% { transform: scale(1); }
}

.project-item > a { width: 100%; }

.project-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 1rem;
  border: 2px solid #FFDB70;
  transition: 0.25s ease;
}

.project-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  transition: var(--transition-1);
}

.clients-itemc {
  min-width: 50%;
  scroll-snap-align: start;
}

.clients-itemc img {
  width: 100%;
  transition: var(--transition-1);
}

.clients-itemc > a:hover img { transform: scale(1.05); }


.project-item > a:hover .project-img::before { background: hsla(0, 0%, 0%, 0.5); }

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-1);
  transform: scale(1.02);
}

.project-item > a:hover img { transform: scale(1.05); }

.cards > figure:hover img { transform: scale(1.05); }

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog-categoryp p {
  color: #FFDB70;
  font-size: var(--fs-4);
  font-weight: medium;
}

.blog-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.mapbox {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--jet);
  overflow: hidden;
}

.mapbox figure { height: 100%; }

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form { margin-bottom: 10px; }

.form-title { margin-bottom: 20px; }

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-input {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  outline: none;
}

.form-input::placeholder { font-weight: var(--fw-500); }

.form-input:focus { border-color: var(--orange-yellow-crayola); }

textarea.form-input {
  min-height: 100px;
  height: 120px;
  max-height: 200px;
  resize: vertical;
  margin-bottom: 25px;
}

textarea.form-input::-webkit-resizer { display: none; }

.form-input:focus:invalid { border-color: var(--bittersweet-shimmer); }

.form-btn {
  position: relative;
  width: 100%;
  background: var(--border-gradient-onyx);
  color: var(--orange-yellow-crayola);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: var(--fs-6);
  text-transform: capitalize;
  box-shadow: var(--shadow-3);
  z-index: 1;
  transition: var(--transition-1);
}

.form-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.form-btn ion-icon { font-size: 16px; }

.form-btn:hover { background: var(--bg-gradient-yellow-1); }

.form-btn:hover::before { background: var(--bg-gradient-yellow-2); }

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-btn:disabled:hover { background: var(--border-gradient-onyx); }

.form-btn:disabled:hover::before { background: var(--bg-gradient-jet); }


/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/*
  responsive larger than 450px screen
 */

@media (min-width: 450px) {

  /**
   * #PORTFOLIO, BLOG 
   */

  .project-img { height: auto; }

}

/*
  responsive larger than 580px screen
 */

@media (min-width: 580px) {

  /*
    CUSTOM PROPERTY
   */

  :root {

    /*
      typography
     */

    --fs-1: 32px;
    --fs-2: 24px;
    --fs-3: 26px;
    --fs-4: 18px;
    --fs-6: 15px;
    --fs-7: 15px;
    --fs-8: 12px;

  }

  /*
    #REUSED STYLE
   */

  .sidebar, article {
    width: 520px;
    margin-inline: auto;
    padding: 30px;
  }

  .article-title {
    font-weight: var(--fw-600);
    padding-bottom: 15px;
  }

  .article-title::after {
    width: 40px;
    height: 5px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 18px;
  }

  /*
    #MAIN
   */

  main {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  /*
    #SIDEBAR
   */

  .sidebar {
    max-height: 180px;
    margin-bottom: 30px;
  }

  .sidebar.active { max-height: 584px; }

  .sidebar-info { gap: 25px; }

  .avatar-box { border-radius: 30px; }

  .avatar-box img { width: 120px; }

  .info-content .name { margin-bottom: 15px; }

  .info-content .title { padding: 5px 18px; }

  .info_more-btn {
    top: -30px;
    right: -30px;
    padding: 10px 15px;
  }

  .info_more-btn span {
    display: block;
    font-size: var(--fs-8);
  }

  .info_more-btn ion-icon { display: none; }

  .separator { margin: 32px 0; }

  .contacts-list { gap: 20px; }

  .contact-info {
    max-width: calc(100% - 64px);
    width: calc(100% - 64px);
  }

  /*
    #NAVBAR
   */

  .navbar { border-radius: 20px 20px 0 0; }

  .navbar-list { gap: 20px; }

  .navbar-link { --fs-8: 14px; }

  /*
    #ABOUT
   */

  .about .article-title { margin-bottom: 20px; }

  .about-text { margin-bottom: 40px; }

  /* service */

  .service-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
  }

  .service-icon-box {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .service-content-box { text-align: left; }

  /* testimonials */

  .testimonials-title { margin-bottom: 25px; }

  .testimonials-list {
    gap: 30px;
    margin: 0 -30px;
    padding: 30px;
    padding-bottom: 35px;
  }

  .content-card {
    padding: 30px;
    padding-top: 25px;
  }

  .testimonials-avatar-box {
    transform: translate(30px, -30px);
    border-radius: 20px;
  }

  .testimonials-avatar-box img { width: 80px; }

  .testimonials-item-title {
    margin-bottom: 10px;
    margin-left: 95px;
  }

  .testimonials-text {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }

  /* testimonials modal */

  .modal-container { padding: 20px; }

  .testimonials-modal {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 25px;
    padding: 30px;
    border-radius: 20px;
  }

  .modal-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal-avatar-box {
    border-radius: 18px;
    margin-bottom: 0;
  }

  .modal-avatar-box img { width: 65px; }

  .modal-img-wrapper > img {
    display: block;
    flex-grow: 1;
    width: 35px;
  }

  /* clients */

  .clients-item { min-width: calc(33.33% - 35px); }

  /*
    #RESUME
   */

  .timeline-list { margin-left: 65px; }

  .timeline-item:not(:last-child)::before { left: -40px; }

  .timeline-item::after {
    height: 8px;
    width: 8px;
    left: -43px;
  }

  /*
    #PORTFOLIO, BLOG
   */

  .project-img { border-radius: 1rem; }

  /*
    #CONTACT
   */

  .mapbox {
    height: 380px;
    border-radius: 18px;
  }

  .input-wrapper {
    gap: 30px;
    margin-bottom: 30px;
  }

  .form-input { padding: 15px 20px; }

  textarea.form-input { margin-bottom: 30px; }

  .form-btn {
    --fs-6: 16px;
    padding: 16px 20px;
  }

  .form-btn ion-icon { font-size: 18px; }

}

/*
  responsive larger than 768px screen
 */

@media (min-width: 768px) {

  /*
    REUSED STYLE
   */

  .sidebar, article { width: 700px; }

  .has-scrollbar::-webkit-scrollbar-button { width: 100px; }

  /*
    SIDEBAR
   */

  .contacts-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }

  /*
    NAVBAR
   */

  .navbar-link { --fs-8: 15px; }

  /*
    ABOUT
   */

  /* testimonials modal */

  .testimonials-modal {
    gap: 35px;
    max-width: 680px;
  }

  .modal-avatar-box img { width: 80px; }

  /*
    PORTFOLIO
   */

  .article-title { padding-bottom: 20px; }

  .filter-select-box { display: none; }

  .filter-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding-left: 5px;
    margin-bottom: 30px;
  }

  .filter-item button {
    color: var(--light-gray);
    font-size: var(--fs-5);
    transition: var(--transition-1);
  }

  .filter-item button:hover { color: var(--orange-yellow-crayola); }

  .filter-item button.active { color: var(--orange-yellow-crayola); }

  /*
    CONTACT
   */

  .input-wrapper { grid-template-columns: 1fr 1fr; }

  .form-btn {
    width: 100%;
    margin-left: auto;
  }
}

/*
 responsive larger than 1024px screen
 */

@media (min-width: 1024px) {

  /*
    CUSTOM PROPERTY
   */

  :root {

    /*
     shadow
    */

    --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.125);
    --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.125);
    --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.125);

  }

  /*
    REUSED STYLE
   */

  .sidebar, article {
    width: 950px;
    box-shadow: var(--shadow-5);
  }

  .blogm img {
    min-height:100%;
  }

  /*
    MAIN 
   */

  main { margin-bottom: 60px; }

  .main-content {
    position: relative;
    width: max-content;
    margin: auto;
  }

  .image {
      margin-left: 10px;
      margin-top: 20px;
  }

  /*
    NAVBAR
   */

  .navbar {
    position: absolute;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: max-content;
    border-radius: 0 20px;
    padding: 0 20px;
    box-shadow: none;
  }

  .navbar-list {
    gap: 30px;
    padding: 0 20px;
  }

  .navbar-link { font-weight: var(--fw-500); }

  /*
    ABOUT
   */

  /* service */

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
  }

  /* testimonials */

  .testimonials-item { min-width: calc(50% - 15px); }

  /* clients */

  .clients-item { min-width: calc(25% - 38px); }
}

/*
  responsive larger than 1250px screen
 */

@media (min-width: 1250px) {

  /*
    RESET
   */

  body::-webkit-scrollbar { width: 20px; }

  body::-webkit-scrollbar-track { background: var(--smoky-black); }

  body::-webkit-scrollbar-thumb {
    border: 5px solid var(--smoky-black);
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: 20px;
    box-shadow: inset 1px 1px 0 hsla(0, 0%, 100%, 0.11),
                inset -1px -1px 0 hsla(0, 0%, 100%, 0.11);
  }

  body::-webkit-scrollbar-thumb:hover { background: hsla(0, 0%, 100%, 0.15); }

  body::-webkit-scrollbar-button { height: 60px; }

  /*
    REUSED STYLE
   */

  .sidebar, article { width: auto; }

  article { min-height: 100%; }

  /*
    MAIN
   */

  main {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }

  .main-content {
    min-width: 75%;
    width: 75%;
    margin: 0;
  }

  .modal__contentvideo{
    width: 50%;
  }

  /*
    SIDEBAR
   */

  .sidebar {
    position: sticky;
    top: 60px;
    max-height: max-content;
    height: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    z-index: 1;
  }

  .sidebar-info { flex-direction: column; }

  .avatar-box img { width: 150px; }

  .info-content .name {
    white-space: nowrap;
    text-align: center;
  }

  .info-content .title { margin: auto; }

  .info_more-btn { display: none; }

  .sidebar-info_more {
    opacity: 1;
    visibility: visible;
  }

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

  .contact-info :is(.contact-link) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-info :is(.contact-link, time, address) {
    --fs-7: 14px;
    font-weight: var(--fw-300);
  }

  .separator:last-of-type {
    margin: 15px 0;
    opacity: 0;
  }

  .social-list { justify-content: center; }
}

    .back-button {
      position: absolute;
      top: 60px;
      right: 10px;
      padding: 10px 15px;
      color: rgb(103, 103, 103);
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
      z-index: 1001;
      display: flex;
      font-size: 25px;
    }

    .back-button ion-icon {
      font-size: 40px;
      margin-right: 5px;
      margin-left: 2px;
      color: #FFDB70;
    }

    .back-button ion-icon:hover {
      color: #ffbf00;
    }

.search-box {
  border: 1px solid #FFDB70;
  color: #FFDB70;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 20px; 
  padding: 10px; 
  width: 100%; 
  max-width: 400px;
}

.search-box:hover {
  border-color: #ffbf00;
  background-color:  rgba(147, 146, 146, 0.1);
}

.search-boxbaglanti {
  border: 1px solid #FFDB70;
  color: #FFDB70;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 20px; 
  padding: 10px; 
  width: 100%; 
  max-width: 400px;
}

.search-boxbaglanti:hover {
  border-color: #ffbf00;
  background-color:  rgba(147, 146, 146, 0.1);
}

#noResultsMessage {
  font-size: 18px;
  color: #ff0800;
  background-color: #1a1a1a;
  padding: 10px;
  border-radius: 8px;
  display: none; 
  text-align: center; 
  margin-top: 20px; 
  font-weight: bold; 
}

#noMessage {
  font-size: 18px;
  color: #FFDB70;
  background-color: #1a1a1a;
  padding: 10px;
  border-radius: 8px;
  display: none; 
  text-align: center; 
  margin-top: 20px; 
  font-weight: bold; 
}

.dropdown {
  position: relative;
}

.dropdown-menu1 {
  position: absolute;
  display: none;
  list-style: none;
  background: hsla(240, 2%, 13%, 0.975);
  backdrop-filter: blur(10px);
  border: 1px solid #FFDB70;
  border-radius: 6px;
  min-width: 130px;
  padding: 10px 0;
  z-index: 1006;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu1 li:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  width: 90%;
  margin: 6px auto 0;
  background: radial-gradient(circle, #FFDB70 60%, transparent 100%);
}

.dropdown-menu1 li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #FFDB70;
  border-radius: 6px;
}

.dropdown-menu1 li a:hover {
  background-color: #FFDB70;
  color: hsl(240, 1%, 17%);
  border-radius: 6px;
}

.dropdown-menu2 {
  position: absolute;
  display: none;
  list-style: none;
  background: hsla(240, 2%, 13%, 0.975);
  backdrop-filter: blur(10px);
  border: 1px solid #FFDB70;
  border-radius: 6px;
  min-width: 130px;
  padding: 10px 0;
  z-index: 1006;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu2 li:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  width: 90%;
  margin: 6px auto 0;
  background: radial-gradient(circle, #FFDB70 60%, transparent 100%);
}


.dropdown-menu2 li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #FFDB70;
  border-radius: 6px;
}

.dropdown-menu2 li a:hover {
  background-color: #FFDB70;
  color: hsl(240, 1%, 17%);
  border-radius: 6px;
}

.dropdown-menu3 {
  position: absolute;
  display: none;
  list-style: none;
  background: hsla(240, 2%, 13%, 0.975);
  backdrop-filter: blur(10px);
  border: 1px solid #FFDB70;
  border-radius: 6px;
  min-width: 130px;
  padding: 10px 0;
  z-index: 1006;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu3 li:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  width: 90%;
  margin: 6px auto 0;
  background: radial-gradient(circle, #FFDB70 60%, transparent 100%);
}

.dropdown-menu3 li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #FFDB70;
  border-radius: 6px;
}

.dropdown-menu3 li a:hover {
  background-color: #FFDB70;
  color: hsl(240, 1%, 17%);
  border-radius: 6px;
}

.dropdown-menu4 {
  position: absolute;
  display: none;
  list-style: none;
  background: hsla(240, 2%, 13%, 0.975);
  backdrop-filter: blur(10px);
  border: 1px solid #FFDB70;
  border-radius: 6px;
  min-width: 130px;
  padding: 10px 0;
  z-index: 1006;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu4 li:not(:last-child)::after {
  content: "";
  display: block;
  height: 1px;
  width: 90%;
  margin: 6px auto 0;
  background: radial-gradient(circle, #FFDB70 60%, transparent 100%);
}

.dropdown-menu4 li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #FFDB70;
  border-radius: 6px;
}

.dropdown-menu4 li a:hover {
  background-color: #FFDB70;
  color: hsl(240, 1%, 17%);
  border-radius: 6px;
}

#dropdownToggle {
  display: flex;
}
#dropdownToggle ion-icon {
  margin-top:5px;
  margin-left: 3px;
}

#dropdowntoggle {
  display: flex;
}
#dropdowntoggle ion-icon {
  margin-top:5px;
  margin-left: 2px;
}

#dropdowntogglee {
  display: flex;
}
#dropdowntogglee ion-icon {
  margin-top:5px;
  margin-left: 2px;
}

#dropdowntoggleee {
  display: flex;
}
#dropdowntoggleee ion-icon {
  margin-top:5px;
  margin-left: 2px;
}

    .countdown-container {
      background-color: hsl(0, 0%, 7%);
      padding: 20px 20px;
      border-radius: 0.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      text-align: center;
      border: 1px solid #FFDB70;
      margin-bottom: 10px;;
    }

    .countdown-container h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #FFDB70;
    }

    .countdown-container h3 {
      font-size: 1.1rem;
      font-weight: 400;
      margin-top: 15px;
      color: #909090;
    }

    .countdown-container h4 {
      font-size: 1rem;
      font-weight: 400;
      color: #909090;
    }

    .time {
      display: flex;
      justify-content: center;
      gap: 10px;
      font-size: 1.5rem;
      color: #FFDB70;
    }

    .time-box {
      background-color: hsl(240, 2%, 12%);
      padding: 10px 20px;
      border-radius: 15px;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .label {
      font-size: 0.8rem;
      margin-top: 5px;
      display: block;
      color: #909090;
    }

.scrolling-text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background: hsl(0, 0%, 7%);
  padding: 5px 0;
  position: relative;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 0.5rem;  
  border: 1px solid #FFDB70;
  margin-bottom: 10px;
}

.scrolling-text span {
  color: #FFDB70;
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* Masaüstü: Aşağı açılır */
@media (min-width: 1024px) {
  .dropdown-menu1 {
    top: 110%;
    left: -15%;
  }

  .dropdown-menu2 {
    top: 110%;
    left: -20%;
  }

  .dropdown-menu3 {
    top: 110%;
    left: -25%;
  }

  .dropdown-menu4 {
    top: 110%;
    left: -30%;
  }
  
  .search-boxbaglanti {
  margin: 0; 
}

  .modal__contentvideo{
    width: 50%;
  }
}

/* Mobil: Yukarı açılır */
@media (max-width: 1024px) {
  .dropdown-menu1 {   
    bottom: 110%;
    left: -40%;
  }
  .dropdown-menu2 {   
    bottom: 110%;
    left: -50%;
  }
  .dropdown-menu3 {   
    bottom: 110%;
    left: -60%;
  }
  .dropdown-menu4 {   
    bottom: 110%;
    right: 0;
  }
  #dropdownToggle ion-icon {
  transform: rotate(180deg);
}
  #dropdowntoggle ion-icon {
  transform: rotate(180deg);
}
  #dropdowntogglee ion-icon {
  transform: rotate(180deg);
}
  #dropdowntoggleee ion-icon {
  transform: rotate(180deg);
}
  .search-boxbaglanti {
  margin: 0; 
}

.card-titleaza {
  font-size: 13px;
}

.back-button{
  top:20px;
}

    .time-box {
      padding: 7.5px 15px;
    }

.countdown-container h2 {
      font-size: 1.2rem;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .dropdown-menu1 {
    min-height: max-content;
    left: -15%;
  }
  .dropdown-menu2 {
    min-height: max-content;
    left: -20%;
  }
  .dropdown-menu3 {
    min-height: max-content;
    left: -25%;
  }
  .dropdown-menu4 {
    min-height: max-content;
    left: -30%;
  }
  .modal__contentvideo{
    width: 50%;
  }
}

@media screen and (min-width: 700px) and (max-width: 768px) {
.back-button{
  top:80px;
  right: 40px;
}
}

@media screen and (min-width: 933px) and (max-width: 1024px) {
.back-button{
  top:60px;
}
}

@media screen and (min-width: 820px) and (max-width: 1180px) {
.back-button{
  top:80px;
  right: 40px;
}
}

@media screen and (min-width: 912px) and (max-width: 1368px) {
.back-button{
  top:80px;
  right: 100px;
}
  .modal__contentvideo{
    width: 50%;
  }
}

@media screen and (min-width: 853px) and (max-width: 1280px) {
.back-button{
  top:80px;
  right: 60px;
}
}

/**------------------------------------------------------------STYLE END-----------------------------------------------------------------**\

/**-----------------------------------------------------------OUTPUT START----------------------------------------------------------------**\
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
}

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

button,
select {
  text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

summary {
  display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

img,
video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.right-0 {
  right: 0px;
}

.top-1\/2 {
  top: 50%;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.m-6 {
  margin: 1.5rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-4 {
  margin-right: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-8 {
  margin-top: 2rem;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.h-0 {
  height: 0px;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-32 {
  height: 8rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.max-h-full {
  max-height: 100%;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-full {
  width: 100%;
}

.max-w-0 {
  max-width: 0rem;
}

.max-w-screen-md {
  max-width: 768px;
}

.max-w-screen-xl {
  max-width: 1280px;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1 {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\.5 {
  --tw-translate-y: -0.375rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-1 {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-1\.5 {
  --tw-translate-y: 0.375rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-45 {
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-6 {
  --tw-rotate: -6deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-6 {
  --tw-rotate: 6deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.resize {
  resize: both;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.justify-start {
  justify-content: flex-start;
}

.gap-14 {
  gap: 3.5rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-8 {
  gap: 2rem;
}

.space-x-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.overflow-hidden {
  overflow: hidden;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.border {
  border-width: 1px;
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-current {
  background-color: currentColor;
}

.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-2\.5 {
  padding: 0.625rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-5 {
  padding: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-28 {
  padding-bottom: 7rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

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

.font-nothingyoucoulddo {
  font-family: Nothing You Could Do, cursive;
}

.font-serif {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.font-signika {
  font-family: Signika, sans-serif;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}

.text-neutral-700 {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.underline {
  text-decoration-line: underline;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.tap-highlight-transparent {
  -webkit-tap-highlight-color: transparent;
}

.smooth-edges {
  -webkit-backface-visibility: hidden;
}

.animate-wave {
  animation-name: wave;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}

@keyframes wave {
  0% {
    transform: rotate( 0.0deg)
  }

  10% {
    transform: rotate(14.0deg)
  }

  20% {
    transform: rotate(-8.0deg)
  }

  30% {
    transform: rotate(14.0deg)
  }

  40% {
    transform: rotate(-4.0deg)
  }

  50% {
    transform: rotate(10.0deg)
  }

  60% {
    transform: rotate( 0.0deg)
  }

  100% {
    transform: rotate( 0.0deg)
  }
}

.hover\:rotate-0:hover {
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:opacity-75:hover {
  opacity: 0.75;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-4:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.group:hover .group-hover\:max-w-full {
  max-width: 100%;
}

@media (prefers-color-scheme: dark) {
  .dark\:border-neutral-800 {
    --tw-border-opacity: 1;
    border-color: rgb(38 38 38 / var(--tw-border-opacity));
  }

  .dark\:bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  }

  .dark\:bg-neutral-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 23 23 / var(--tw-bg-opacity));
  }

  .dark\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }

  .dark\:text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
  }

  .dark\:text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity));
  }

  .dark\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
  }

  .dark\:text-slate-200 {
    --tw-text-opacity: 1;
    color: rgb(226 232 240 / var(--tw-text-opacity));
  }

  .dark\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }

  .dark\:placeholder-gray-400::-moz-placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(156 163 175 / var(--tw-placeholder-opacity));
  }

  .dark\:placeholder-gray-400::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(156 163 175 / var(--tw-placeholder-opacity));
  }
}

@media (min-width: 640px) {
  .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .sm\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }

  .sm\:transition-none {
    transition-property: none;
  }
}

@media (min-width: 768px) {
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:m-12 {
    margin: 3rem;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:ml-5 {
    margin-left: 1.25rem;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:mr-8 {
    margin-right: 2rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:flex-grow {
    flex-grow: 1;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:gap-20 {
    gap: 5rem;
  }

  .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:border-0 {
    border-width: 0px;
  }

  .md\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:text-start {
    text-align: start;
  }

  .md\:transition-none {
    transition-property: none;
  }
}

/**------------------------------------------------------------OUTPUT END-----------------------------------------------------------------**\

/**----------------------------------------------------------OPPORTUNITY START-------------------------------------------------------------**\
*/

.card {
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 10px rgba(248, 232, 2, 0.25) ;
  margin: 3%;
  min-height: max-content;
  border-radius: 1rem;
  flex: 1;
}

.card:hover {
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(252, 241, 86, 0.686) ;
}

.cardyönetim {
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 10px rgba(248, 232, 2, 0.25) ;
  margin: 3%;
  max-height: max-content;
  max-width: 300px;
  border-radius: 1rem;
  flex: 1;
  text-align: center;
}

.cardyönetim:hover {
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(252, 241, 86, 0.686) ;
}

.cardyönetim-body {
  border: 5px;
  border-radius: 1rem;
}

.cardaza {
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  box-shadow: 0px 5px 10px rgba(248, 232, 2, 0.25) ;
  margin: 3%;
  max-height: max-content;
  max-width: 200px;
  border-radius: 1rem;
  flex: 2;
  text-align: center;
}

.cardaza:hover {
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(252, 241, 86, 0.686) ;
}

.card-titleyönetim {
  color: #FFDB70;
  font-weight: 900;
  font-size: 25px;
}

.card-titleaza {
  color: #FFDB70;
  font-weight: 900;
  font-size: 18px;
}

.card-titlesanal {
  color: #FFDB70;
  font-weight: 900;
  font-size: 20px;
}

.card-titlehizmet {
  color: #FFDB70;
  font-weight: bold;
  font-size: 20px;
}

.card-titleiletisim {
  color: #FFDB70;
  font-weight: bold;
  font-size: 18px;
  text-align:center;
}

.card-titlemuhtar {
  color: #FFDB70;
  font-weight: bold;
  font-size: 18px;
}

.card-titlepaylas {
  color: #FFDB70;
  font-weight: bold;
  font-size: 18px;
  text-align:center;
}

li {
  padding-bottom: 5px;
  color: #2e2e2e;
}

.cardyönetim-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 1rem;
  border: 2px solid #FFDB70;
  transition: 0.25s ease;
  max-height: 400px;
  max-width: 300px;
}

.cardyönetim-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  transition: var(--transition-1);
}

.cardyönetim-image:hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.cardaza-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 1rem;
  border: 2px solid #FFDB70;
  transition: 0.25s ease;
  max-height: 300px;
  max-width: 200px;
}

.cardaza-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  transition: var(--transition-1);
}

.cardaza-image:hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.card-img-topduyuru {
max-height: 200px;
}

.card-img-topyillik {
max-height: 200px;
}

.card-content > a:hover img { transform: scale(1.05); }
.cards > a:hover img { transform: scale(1.05); }

.oppurtunity_sectionyönetim {
  display: flex;
  justify-content: center; /* yatay ortalama */
  align-items: center;
}

.oppurtunity_sectionaza {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center; /* öğeleri yatayda ortalar */
  align-items: center;
  padding: 20px;
}

.cards {
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(248, 232, 2, 0.25) ;
  margin: 5%;
  border-radius: 1rem;
  display: inline-block;
}


.cards:hover {
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(252, 241, 86, 0.686) ;
}

@media only screen and (max-width: 1024px) {
  .oppurtunity_sectionaza {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center; /* öğeleri yatayda ortalar */
  padding: 20px;
}

  .cardblog-img-top {
  min-width: 320px;
  max-height: 200px;
  }

  .card-img-tophizmet {
    max-width: 450px;
    max-height: 350px;
  }

    .card-img-topduyuru {
    min-width: 400px;
    max-height: 250px;
  }

    .card-img-topyillik {
    max-width: 400px;
    max-height: 250px;
  }

  .project-img {
    max-width: 350px;
    max-height: 200px;
  }
}

@media only screen and (min-width: 990px) {
  .card-img-tophizmet {
    min-width: 450px;
    max-height: 600px;
  }
  
  .card-img-topduyuru {
    min-width: 400px;
    max-height: 200px;
  }

  .card-img-topyillik {
    min-width: 300px;
    max-height: 200px;
  }
}

.section-header {
  margin-bottom: 30px;
}

.section-header p {
  text-align: center;
  font-weight: 400;
  line-height: 26px;
}

.section-title {
  font-size: 45px;
  color: #FFDB70;
  display: inline-block;
  font-weight: 700;
  position: relative;
  border: transparent;
  margin: 0;
}

/* BUTTON */
.detaybutton {
    margin-top: 5%;
    width: max-content;
    height: 30%;
    text-align: center;
    color: #ffd100;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 15px;
    border-radius: 1rem;
    border: 2px solid #ffd100;
    padding: 20px 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.detaybutton:hover {
    background-color: #ffd100;
    color: #2e2e2e;
    border-color: #d6d6d6;
}

.detaybutton::before {
    content: "";
    background-color: white;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    position: absolute;
    transform: translateX(-100%) rotate(45deg);
    transition: all 0.3s;
}

.detaybutton:hover::before {
    transform: translateX(100%) rotate(45deg);
}

hr {
  width: 100%;
  border-style: solid;
  border-width: 1px;
  border-color: #FFDB70;
  border-radius: 5rem;
}

.upbutton {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 15px;
  z-index: 1001;
  width: 3rem;
  height: 3rem;
  padding: 6px 12px;
  background-color: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #cecece;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
}

.upbutton i {
    align-items: center;
  justify-content: center;
}

.upbutton:hover {
  color: #FFDB70;
}

.radiobutton {
  position: fixed;
  bottom: 45px;
  right: 0;
  z-index: 1001;
  font-size: 2.5rem;
  border: none;
  outline: none;
  color: #FFDB70;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

.radiobutton:hover {
  color: #ffd100;
}

html {
  scroll-behavior: smooth;
}

/**----------------------------------------------------------OPPORTUNITY END-------------------------------------------------------------**\

/**-------------------------------------------------------------BLOG START----------------------------------------------------------------**\
*/

:root {
  --primary: #f7b801;
  --secondary: #ffd100;
}

.blogm {
  margin-bottom: 20px;
  margin-top: 30px;
  width:100%;
  height:100%;
  overflow:hidden;
  position: relative;
  border-radius: 1rem;
  filter: drop-shadow(2px 2px 5px rgba(248, 232, 2, 0.25));
}

.blogm:hover {
  filter: drop-shadow(2px 2px 5px rgba(252, 241, 86, 0.686));
}

.blogn {
  margin-top: 30px;
  width:100%;
  height:100%;
  overflow:hidden;
  position: relative;
  border-radius: 1rem;
  filter: drop-shadow(2px 2px 5px rgba(248, 232, 2, 0.25));
}

.blogn:hover {
  filter: drop-shadow(2px 2px 5px rgba(252, 241, 86, 0.686));
}

.bloggif {
  margin-top: -20px;
  width:100%;
  height:100%;
  overflow:hidden;
  position: relative;
  border-radius: 1rem;
  filter: drop-shadow(2px 2px 5px rgba(248, 232, 2, 0.25));
}

.bloggif:hover {
  filter: drop-shadow(2px 2px 5px rgba(252, 241, 86, 0.686));
}

.image {
  border: 2px solid #FFDB70; 
  border-radius:1rem;
}
.image img {
  object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.image img:hover {
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.imagehq {
  border: 2px solid #FFDB70; 
  border-radius:1rem;
}

.imagehq img {
  object-fit: cover;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.imagehq img:hover {
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.center {
  display: flex;
  /* margin-left: auto;
  margin-right: auto;
  width: 90%; */
}

@media screen and (min-width: 80rem) {
  .containerw {
    margin: 0 auto;
  }
  .containerhakkında {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .containerhakkında .item {
    width:80%;
  }
}

  .youtubealbumsp {
    position:relative;
    height:285px;
    overflow:hidden;
    border: 2px solid #FFDB70; border-radius: 2rem;
    width:100%;
    margin:0 auto;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;

    }
  
  .youtubealbumsp:focus,
  .youtubealbumsp:hover {
    box-shadow: 0 .65em .8em -.4em #ffd100;
    transform: translateY(-.45em);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  
  }
    .youtubealbumsp iframe, .youtubealbumsp object, .youtubealbumsp embed {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    }

  .youtube-responsive-container {
    position:relative;
    padding-bottom:56.25%;
    padding-top:30px;
    height:0;
    overflow:hidden;
    border: 2px solid#ffd100; border-radius: 2rem;
    width:100%;
    margin:0 auto;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    margin-bottom:15px;
    }
  
  .youtube-responsive-container:focus,
  .youtube-responsive-container:hover {
    box-shadow: 0 .65em .8em -.4em #FFDB70;
    transform: translateY(-.45em);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  
  }
    .youtube-responsive-container iframe, .youtube-responsive-container object, .youtube-responsive-container embed {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    }

/**-------------------------------------------------------------BLOG END----------------------------------------------------------------**\

/**---------------------------------------------------------PAGINATION START------------------------------------------------------------**\
*/

/* CARDS */
.card-container {
    min-height: calc(100vh - 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 1em;
}

.card-containergaleri {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 1em;
}

.blog-metam {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-left:10px;
    margin-bottom: 10px;
  }
  
  .blog-metam :is(.blog-category, time) {
    color: var(--light-gray-70);
    font-size: var(--fs-6);
    font-weight: var(--fw-300);
  }
  
  .blog-metam .dot {
    background: var(--light-gray-70);
    width: 4px;
    height: 4px;
    border-radius: 4px;
  }

  .blog-metagaleri {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-left:10px;
    margin-bottom: 0px;
  }
  
  .blog-metagaleri :is(.blog-category, time) {
    color: var(--light-gray-70);
    font-size: var(--fs-6);
    font-weight: var(--fw-300);
  }
  
  .blog-metagaleri .dot {
    background: var(--light-gray-70);
    width: 4px;
    height: 4px;
    border-radius: 4px;
  }
  
.card {
    position: relative;
    color: #2e2e2e;
    max-width: 23em;
    width: 23em;
    min-height: max-content;
    margin: 1.5em;
    box-shadow: 0px 5px 10px rgba(248, 232, 2, 0.25);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
}

.card-info {
    position: relative;
    color: #222;
    padding: 0.6em 2.2em 2.2em;
}

.card-info h3 {
    color:#FFDB70;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0.3em;
    text-align: center;
}

.card-info p {
    color: #575757;
    font-size: 0.8em;
    text-align: center;
}

.card-infos {
    position: relative;
    color: #222;
    padding: 0.6em 2.2em 2.2em;
}

.card-infos h3 {
    color:#FFDB70;
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 0.3em;
}

.card-infos p {
    color: var(--light-gray);
    font-size: 1em;
    margin-bottom: 0.3em;
}

.card-infogaleri {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* öğeler arası boşluk isterseniz */
    padding: 2em;
    margin-top: -10px;
    margin-bottom: -10px;
}


.card-infogaleri ion-icon {
    color: var(--light-gray);
    font-size: 30px;
    margin-left: 10px; 
    margin-right: 10px; 
}

  .like-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color:var(--light-gray); /* beğenilmemiş renk (gri) */
    transition: color 0.3s;
  }
  .like-button.liked ion-icon{
    color: red; /* beğenilmiş renk */
  }

  .downloadbtn ion-icon:hover {
    color: red;
  }

  .copy-link-button ion-icon:hover {
    color: red;
  }

/* PAGINATION */
.pagination {
    text-align: center;
    margin: 1.9em 1.9em 3.8em;
    user-select: none;
}

.pagination li {
    display: inline-block;
    margin: 0.3em;
    box-shadow: 0 5px 25px rgba(1, 1, 1, 0.3);
}

.pagination li a {
    color: #FFDB70;
    text-decoration: none;
    font-size: 1em;
    line-height: 2.6em;
}

.previous-page,
.next-page {
    background: #333;
    width: 5em;
    border-radius: 45px;
    cursor: pointer;
}

.previous-page,
.next-page .active{
    color: #FFDB70;
    width: 5em;
    border-radius: 45px;
    cursor: pointer;
}

.previous-page:hover {
    transform: translateX(-5px);
}

.next-page:hover {
    transform: translateX(5px);
}

.current-page,
.dots {
    background: #333;
    width: 2.8em;
    border-radius: 50%;
    cursor: pointer;
}

.current-page:hover,
.dots:hover {
    transform: translateY(-5px);
}

.pagination li.active {
    background-color: #FFDB70;
}
.pagination li.active a{
    color:#333;
}

.pagination li.disable {
    background: #333;
}
.pagination li.disable a{
    color: #FFDB70;
}

.spotify-item {
    width:100%;
    height:100%;
    margin:0 auto;
    overflow:hidden;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    position: relative;
    border-radius: 30px;
    margin-bottom:15px;
  }
  
  .spotify-item:focus,
  .spotify-item:hover {
  filter: drop-shadow(2px 2px 5px rgba(252, 241, 86, 0.686));
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  
  }
  
  .spotify-item img:hover{
    transform: scale(1.02);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  
  }

  .spotify-item {
    position: relative;
    border-radius: 14px;
    box-shadow: var(--shadow-2);
    z-index: 1;
    background:none; 
    border:1px solid #FFDB70; 
    border-radius: 1rem;
  }
  
  .spotify-item::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    z-index: -1;
  }

/* MEDIA QUERIES */

@media (min-width: 100px) and (max-width: 800px) {
    .card {
        position: relative;
        max-width: 20em;
        height: max-content;
        margin: 1.5em;
        box-shadow: 0px 5px 10px rgba(248, 232, 2, 0.25);
        border-radius: 1rem;
        overflow: hidden;
        cursor: pointer;
    }
    .card-content {
        display: inline-block;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 2em;
    }
    .pagination {
        display: flex;
        justify-content: center;
        flex-direction: row;
        width: 100%;
    }
}

@media (min-width: 800px) and (max-width: 1200px) {
    .card {
        position: relative;
        color: #2e2e2e;
        max-width: 20em;
        width: 20em;
        height: auto;
        margin: 1.5em;
        box-shadow: 0px 5px 10px rgba(248, 232, 2, 0.25);
        border-radius: 1rem;
        overflow: hidden;
        cursor: pointer;
    }
    .card-content {
        display: inline-block;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin: 2em;
    }
    .pagination {
        display: flex;
        justify-content: center;
        flex-direction: row;
        width: 100%;
    }
}

.detaybutton ion-icon {
    width:15px;
    height:15px;
}

.social-icons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
  }

.social-icon__links {
    font-size: 2rem;
    color: #E2E2E2;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__links:hover {
    transform: translateY(-10px);
    color: #FFDB70;
  }

/**---------------------------------------------------------PAGINATION END------------------------------------------------------------**\

/**---------------------------------------------------------DROPDOWN START-------------------------------------------------------------**\
*/

.dropbtn {
  font-weight: inherit;
  color: white;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  opacity: 1;
  color: #FFDB70;
}

.dropdownb {
  position: relative;
  display: inline-block;
}

.dropdownb button {
  font-size: 1.4em;
}

.dropdownb-content {
  display: none;
  z-index: 1;
}

.dropdownb-content h4 {
  font-size: 15px;
}

.dropdownb-content li {
  font-size: inherit;
  font-weight: inherit;
  color: white;
  border: none;
  cursor: pointer;
}

.dropdownb-content li :hover {
  color: #FFDB70;
}

.show {display: block;}

.icon-boxs {
  position: relative;
  background: var(--border-gradient-onyx);
  width: 100px;
  height: 100px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--orange-yellow-crayola);
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.icon-boxs::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--eerie-black-1);
  border-radius: inherit;
  z-index: -1;
}

.icon-boxs ion-icon { --ionicon-stroke-width: 35px; }

@media (max-width: 1024px) {
.icon-boxs {
min-width: 100px;
}
}

/**---------------------------------------------------------DROPDOWN END-------------------------------------------------------------**\

/**---------------------------------------------------------FOOTER START--------------------------------------------------------------**\
*/

.footer {
  position: relative;
  width: 100%;
  background: #1E1E1F;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer h1 {
color:  #FFDB70;
font-size: var(--fs-3);
font-weight: var(--fw-500);
letter-spacing: -0.25px;
margin-bottom: 10px;
}

.social-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #E2E2E2;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
  color: #FFDB70;
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
  color: #FFDB70;
}

.menu__link.active {
  font-size: 1.2rem;
  color: #FFDB70;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__links {
  color: #FFDB70;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  font-weight:bold;
}

.menu__links:hover {
  opacity: 1;
  color: #FF0000;
}

.developerbtn {
  display: flex;
  gap: 10px; /* Butonlar arası boşluk */
  justify-content: center; /* Ortalamak istersen */
  flex-wrap: wrap; /* Genişlik daralınca alt satıra geçsin */
}

.yillikozet {
  color:  #fff;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  font-weight:bold;
}

.yazıiçi__linksozet {
  color:  #FFDB70;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
}

.yazıiçi__linksozet:hover {
  opacity: 1;
  color: #ffbf00;
}

.yazıiçi__links {
  color:  #FFDB70;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  font-weight:bold;
}

.yazıiçi__links:hover {
  opacity: 1;
  color: #ffbf00;
}

.yazıiçi__linksdeveloper {
  color:  #FFDB70;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  font-weight:bold;
}

.yazıiçi__linksdeveloper:hover {
  opacity: 1;
  color: #FF0000;
}

.footer p {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../img/tempimg/template/footer.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

/**---------------------------------------------------------FOOTER END--------------------------------------------------------------**\

/**-------------------------------------------------------PRELOADER START------------------------------------------------------------**\
*/

.loader {
  position: fixed;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  perspective: 800px;
  z-index:1010;
  justify-content: center;
}

.yazı {
display: flex;
justify-content: center;
width: max-content;
margin-top: 110px;  
text-align:center;
font-weight: 600;
font-size: 16px;
background: linear-gradient(45deg, #ffe570 20%,#fedd48 30%, #ffd100 50%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.yazı:hover {
margin-top: 110px;  
text-align:center;
font-weight: 600;
font-size: 16px;
background: linear-gradient(45deg, #ff0000 20%,#ff0000 30%, #ff0000 50%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;  
}

.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 5px solid #ffd100;
}

.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 5px solid #ffffff;
}

.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 5px solid #383838;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

/**-------------------------------------------------------PRELOADER END------------------------------------------------------------**\

/**--------------------------------------------------------POPUP START--------------------------------------------------------------**\
*/

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --hue: 240;
  --first-color: hsl(var(--hue), 16%, 18%);
  --first-color-alt: hsl(var(--hue), 16%, 12%);
  --title-color: hsl(var(--hue), 8%, 15%);
  --text-color: hsl(var(--hue), 8%, 35%);
  --body-color: hsl(var(--hue), 100%, 99%);
  --container-color: hsl(0, 0%, 7%);

  /*========== Font and typography ==========*/
  --big-font-size: 1.5rem;
  --normal-font-size: .938rem;

  /*========== z index ==========*/
  --z-modal: 1001;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 1.75rem;
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

button{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button{
  cursor: pointer;
  border: none;
  outline: none;
}

img{
  max-width: 100%;
  height: auto;
}

/*=============== MODAL ===============*/
.modal{
  display: grid;
  place-items: center;
}

.modal__buttonsp{
  display: inline-block;
  background-color: hsl(240, 2%, 12%);
  color: #FFDB70;
  margin-top: 1rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: .5rem;
  transition: .3s;
}

.modal__buttonsp:hover{
  background-color: #FFDB70;
  color: hsl(240, 2%, 12%);
}

.modal__buttondeveloper{
  display: inline-block;
  background-color: #ffffffe6;
  color: #111827;
  margin-top: 1rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: .5rem;
  transition: .3s;
}

.modal__buttondeveloper:hover{
  background-color: #111827;
  color: #FF0000;
}

.modal__buttonapp{
  display: inline-block;
  background-color: hsl(240, 2%, 12%);
  color: #FFDB70;
  margin-top: 0rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: .5rem;
  transition: .3s;
}

.modal__buttonapp:hover{
  background-color: #FFDB70;
  color: hsl(240, 2%, 12%);
}

.modal__buttonduyuru{
  display: inline-block;
  background-color: hsl(0, 100%, 19%);
  color: #c8c8c8;
  margin-top: 0rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: .5rem;
  transition: .3s;
}

.modal__buttonduyuru:hover{
  background-color: #c8c8c8;
  color: hsl(0, 100%, 19%);
}

.modal__containeryt{
  animation: arkaPlanaHareketKat 7.5s ease-in-out infinite;
  background-size: 400% 400%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  overflow-y: auto;
  transition: all .3s;
  z-index: 1003;
  visibility: hidden;
  opacity: 0;

  /*=== Effect 3 ===*/
   perspective: 1000px; 
}

@keyframes arkaPlanaHareketKat{
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}

.modal__containeryt.show-modal {
  visibility: visible;
  opacity: 1;
}

.modal__content{
  position: relative;
  background-color: hsl(0, 0%, 7%);
  text-align: center;
  padding: 2rem 2rem 2rem;
  border-radius: 1rem 1rem 0 0;
  transition: all .3s;
  /*=== Effect 2 === */
   transform: scale(.5) translateY(10%);
}

.modal__contentsoru{
  position: relative;
  background-color: hsl(0, 0%, 7%);
  text-align: center;
  min-width: 50%;
  padding: 2rem 2rem 2rem;
  border-radius: 1rem 1rem 0 0;
  transition: all .3s;
  /*=== Effect 2 === */
   transform: scale(.5) translateY(10%);
}

.modal__contentvideo{
  position: relative;
  background-color: hsl(0, 0%, 7%);
  text-align: center;
  padding: 2rem 2rem 2rem;
  border-radius: 1rem 1rem 0 0;
  transition: all .3s;
  min-width: 50%;
  /*=== Effect 2 ===*/
  transform: scale(.5) translateY(10%);
}

.modal__close{
  display: inline-flex;
  border-radius: .25rem;
  color: #ff0000;
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 2rem;
  cursor: pointer;
}

.modal__close > h1 {
float: left;
}

.modal__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -15px;
  margin-bottom: 10px;
}

.modal__header-rowsoru {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -15px;
  margin-bottom: 10px;
}


.modal__closesp{
  border-radius: .25rem;
  color: #FFDB70;
  font-size: 1.5rem;
  right: 2rem;

}

.modal__closesp > h1 {
float: left;
}

.modal__titlesp{
  font-size: 1rem;
  color: #FFDB70;
  font-weight: 900;
}

.modal__titlesoru{
  font-size: 1rem;
  color: #FFDB70;
  font-weight: 700;
  text-align: left;
  flex-grow: 1;
}

.popuptext {
  margin-top: 10px;
  text-align: justify;
  color: aliceblue;
  word-spacing: normal;
  hyphens: auto;
  text-justify: inter-word;
}

.popupdiniguntext {
  margin-top: 10px;
  text-align: start;
  color: aliceblue;
  word-spacing: normal;
  hyphens: auto;
  text-justify: inter-word;
  max-height: 500px; /* Gerekirse artır ya da azalt */
  overflow-y: auto;
  padding-right: 8px; /* Scroll çubuğuna karşı yazı taşmasın */
  white-space: pre-line; /* JSON'dan gelen \n gibi satırları uygula */
}

.popupdiniguntext::-webkit-scrollbar {
  width: 6px;
}

.popupdiniguntext::-webkit-scrollbar-thumb {
  background-color: #ffdb70;
  border-radius: 3px;
}

.popupdiniguntext::-webkit-scrollbar-track {
  background-color: transparent;
}

.popupmuhtartext {
  margin-top: 10px;
  text-align: center;
  color: aliceblue;
  margin-bottom: 20px;
}

.popupapptext {
  margin-top: 10px;
  text-align: justify;
  color: aliceblue;
  margin-bottom: 20px;
  word-spacing: normal;
  hyphens: auto;
  text-justify: inter-word;
}

.modal__button-width{
  width: 100%;
  margin-bottom: -10px;
}

/* Show modal */
.show-modal{
  visibility: visible;
  opacity: 1;
}

.show-modal .modal__content{
  /*=== Effect 3 ===*/
   transform: rotateX(0) scale(1) translateY(0); 
}

.show-modal .modal__contentsoru{
  /*=== Effect 3 ===*/
   transform: rotateX(0) scale(1) translateY(0); 
}


.show-modal .modal__contentvideo{
   /*=== Effect 3 ===*/
  transform: rotateX(0) scale(1) translateY(0); 
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (min-width: 576px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal__contentsoru{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

    .modal__contentvideo{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }
}

@media screen and (min-width: 450px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal__contentsoru{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal__contentvideo{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }
}

/* For small devices */
@media screen and (max-width: 576px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal__contentsoru{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

.section-title {
  font-size: 25px;
}

.about-texthizmet p { 
  font-size: 15px;
}

.card-titleaza {
  font-size: 13px;
}

  .modal__contentvideo{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal {
    max-width: 350px;
    max-height: max-content;
  }

  .card-img-musiccoversp {
    max-width: 285px;
    max-height: 450px;
  }
}

@media screen and (max-width: 450px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal__contentsoru{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

.section-title {
  font-size: 25px;
}

.about-texthizmet p { 
  font-size: 15px;
}

  .card-titleaza {
  font-size: 13px;
}

  .modal__contentvideo{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal {
    max-width: 350px;
    max-height: max-content;
  }

  .card-img-musiccoversp {
    max-width: 285px;
    max-height: 450px;
  }
}

@media (max-width: 358px){
.navbar-link {
  padding: 20px 3px;
}
}

@media (max-width: 360px){
.navbar-link {
  padding: 20px 3px;
}
}

@media screen and (max-width: 350px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal__contentsoru{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

.section-title {
  font-size: 25px;
}

.about-texthizmet p { 
  font-size: 15px;
}

  .card-titleaza {
  font-size: 13px;
}

  .modal__contentvideo{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal {
    width: 250px;;
    max-height: max-content;
    left: 0;
  }

  .project-img {
    max-width: 250px;;
    max-height: max-content;
  }

  .card-img-musiccoversp {
    max-width: 285px;
    max-height: 450px;
  }

  .section-padding {
    width: 250px;;
    max-height: max-content;
  }
}

/**-------------------------------------------------------POPUP END------------------------------------------------------------**\

/**--------------------------------------------------------FAB START--------------------------------------------------------------**\
*/
    .fab-container {
      position: fixed;
      bottom: 65px;
      right: 15px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
      z-index: 1001;
    }

    .fab {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
  background-color: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
      color: #cecece;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      position: relative;
      transition: background-color 0.3s;
    }

    .fab i {
      font-size: 20px;
    }

    .fab i:hover {
      color: #FFDB70;
    }

.fab-label {
  position: absolute;
  right: 60px;
  background-color: #333;
  color: #cecece;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  font-family: var(--ff-poppins);
}

.fab:hover .fab-label {
  opacity: 1 !important;       /* !important ile JS gizlemesini geçersiz kıl */
  transform: translateX(0) !important;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#radioSpinner.spin {
  animation: spin 2s linear infinite;
  transform-origin: center;
}

#radioSpinner {
  display:none; 
  width:30px; 
  height:30px; 
  border-radius:50%;
}
    .fab.hidden {
      display: none;
    }

    .fab-main {
  background-color: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
    }

  .fa-moon {
    rotate: 220deg;
  }

/**-------------------------------------------------------FAB END------------------------------------------------------------**\

/**--------------------------------------------------------SSS START--------------------------------------------------------------**\
*/

.faq-wrapper {
  max-width: 100%;
  margin: auto;
}

/* Başlık */
.faq-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  margin-top: -3rem;
  font-weight: 900;
  background: linear-gradient(to right, #FFDB70 30%,#fecc38 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-category {
  position: relative; /* Mutlaka relative olmalı */
  /* Diğer mevcut stiller */
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--smoky-black, #f2f2f2);
  box-shadow: 1px 1px rgba(248, 232, 2, 0.25);
}

/* Uzun sol çizgi için pseudo-element */
.faq-category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px; /* Çizgi kalınlığı */
  height: 100%; /* Kategorinin yüksekliği kadar */
  background-color: #FFDB70; /* Çizgi rengi */
  border-radius: 4px 0 0 4px; /* İstersen hafif yuvarlak köşe */
}

.faq-categoryhome {
  position: relative; /* Mutlaka relative olmalı */
  /* Diğer mevcut stiller */
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--eerie-black-2, #f2f2f2);
  box-shadow: 1px 1px rgba(248, 232, 2, 0.25);
}

/* Uzun sol çizgi için pseudo-element */
.faq-categoryhome::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px; /* Çizgi kalınlığı */
  height: 100%; /* Kategorinin yüksekliği kadar */
  background-color: #FFDB70; /* Çizgi rengi */
  border-radius: 4px 0 0 4px; /* İstersen hafif yuvarlak köşe */
}

.faq-category-toggle {
  width: 100%;
  background-color: transparent;
  color: var(--text, #333);
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border-left: 6px solid #FFDB70; /* ✅ Sol dikey çizgi */
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-category-arrow {
  transition: transform 0.3s ease;
  width: 1.3rem;
  height: 1.3rem;
  margin-left: auto; /* Sağda hizalama için */
}

.faq-category-arrow i {
  font-size: 1.5rem;
  color: #FFDB70;
}

/* Kategori aktifken oku aşağı döndür */
.faq-category.active .faq-category-arrow {
  transform: rotate(180deg);
}

.faq-categoryhome.active .faq-category-arrow {
  transform: rotate(180deg);
}

/* Kategori içeriği */
.faq-category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-category.active .faq-category-content {
  max-height: max-content; /* Yeterince büyük olmalı */
}

.faq-categoryhome.active .faq-category-content {
  max-height: max-content; /* Yeterince büyük olmalı */
}


/* SORU KISMI (girintili yapı) */
.faq-item {
  margin: 0.5rem 0;
  border: 1px solid var(--border, #ccc);
  border-radius: 12px;
  background-color: var(--card-bg, #fff);
  overflow: hidden;
  margin-left: 3rem; /* 🔸 Kategoriden sağa kaydır */
  margin-right: 1rem;
}

/* Soru başlığı */
.faq-question {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  text-align: left;
  border: none;
  background: none;
  color: var(--text, #333);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ok simgesi (soru yanında) */
.faq-arrow {
  transition: transform 0.3s ease;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-arrow i {
  font-size: 1rem;
  color: #FFDB70; /* Ok rengi */
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background-color: var(--answer-bg, #f9f9f9);
  color: var(--text-secondary, #555);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: max-height 0.4s ease, padding 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.faq-answer p {
  line-height: 1.6;
  font-size: 16px;
  max-width: 100%;
}

.faq-answer a.ssslinks {
  color: #FFDB70;
  word-break: break-word;
  display: inline-block;
  max-width: 100%;
  font-weight: 500;
}

.faq-answer a.ssslinks:hover {
  color: aliceblue;
}

.faq-item.active .faq-answer {
  max-height: max-content;
  padding: 1rem;
}

.ssshome {
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.hometextsss {
  max-height: max-content;
  color: var(--text-secondary, #555);
  font-size: 1rem;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.hometextsss a.ssslinks {
  color: #FFDB70;
  word-break: break-word;
  display: inline-block;
  max-width: 100%;
  font-weight: 500;
}

.hometextsss a.ssslinks:hover {
  color: aliceblue;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 1.9rem;
    font-weight: 700;
  }

  .faq-item {
    margin-left: 1rem;
    margin-right: 0.7rem;
  }
}

/* Tema Değişkenleri */
:root {
  --text: #eee;
  --text-secondary: #ccc;
  --card-bg: #1f1f1f;
  --answer-bg: #2c2c2c;
  --border: #444;
}

/**-------------------------------------------------------SSS END------------------------------------------------------------**\

/**----------------------------------------------------WEATHER START----------------------------------------------------------**\
*/

    #current-weather {
      flex: 0 0 240px;
      border: 1px solid #FFDB70;
      border-radius: 6px;
      padding: 10px;
      background-color: hsl(240, 2%, 10%);
    }

.modal-trigger {
  cursor: pointer;
}

.weather {
  position: absolute; /* veya fixed */
  top: 68px;
  right: 30px;
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: white;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  width: max-content;
}

.otherweather {
  position: absolute; /* veya fixed */
  top: 68px;
  right: 30px;
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: white;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  width: max-content;
}

.menuweather {
  position: relative; 
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  color: white;
  max-width: max-content;
}

.durums {
  display: flex;    /* Elemanları dikey hizala */
  align-items: center;        /* Yatayda ortala */
  justify-content: center;    /* Dikeyde ortala (yükseklik varsa) */
  text-align: center;
}

.current-icons {
  width: 35px;
  height: 35px;
}

.current-temps {
  font-weight: 500;
}

.current-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.current-temp {
  font-size: 16px;
  font-weight: bold;
  color: #FFDB70;
  margin: 0;
}

.current-desc {
  font-size: 12px;
  color: #ccc;
  margin: 0;
  text-transform: capitalize;
}

.current-date {
  font-size: 11px;
  color: #cecece;
  margin: 0;
  white-space: nowrap;
}


.weathertitle {
  color: aliceblue;
  font-size: 16px;
  font-weight: 600;
}

.durum {
  display: flex;    /* Elemanları dikey hizala */
  align-items: center;        /* Yatayda ortala */
  justify-content: center;    /* Dikeyde ortala (yükseklik varsa) */
  text-align: center;
  gap: 8px;
}

    #forecast {
      border: none;
      border-radius: 6px;
      padding: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
    }

    #forecast-content {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 10px;
      min-width: max-content; /* 💥 Kritik satır */
      justify-content: center;
      margin-top: 10px;
    }

.forecast-day {
  display: flex;
  flex-direction: column;
  align-items: center; /* tüm içeriği ortala */
  justify-content: space-around; /* dikeyde eşit dağıt */
  flex: 0 0 100px;
  border-radius: 6px;
  background: rgba(23, 22, 22, 0.7);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  padding: 6px;
  text-align: center;
  font-size: 12px;
  height: 150px;
}

.forecast-day strong,
.forecast-day small,
.forecast-day span {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 1.2;
}

.forecast-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 4px 0;
}

.forecast-day strong {
  color: #cecece;
}

    .forecast-temp {
      font-weight: bold;
      margin: 1px 0;
      color: #FFDB70;
    }

    .forecast-desc {
      font-size: 9px;
      color: #adadad;
      text-transform: capitalize;
      font-weight: 500;
    }

    .forecast-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  min-width: max-content;
}

@media (max-width: 1024px) {
.weather {
  position: absolute; /* veya fixed */
  top: 150px;
  right: 30px;
  padding: 6px 5px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: white;
  z-index: 999;
  width: 190px;
}

.otherweather {
  position: absolute; /* veya fixed */
  top: 20px;
  right: 30px;
  padding: 6px 5px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: white;
  z-index: 999;
  width: 190px;
}

.menuweather {
  position: relative; 
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  color: white;
  max-width: max-content;
}

.durums {
  display: flex;    /* Elemanları dikey hizala */
  align-items: center;        /* Yatayda ortala */
  justify-content: center;    /* Dikeyde ortala (yükseklik varsa) */
  text-align: center;
}

.current-icons {
  width: 25px;
  height: 25px;
}

.current-temps {
  font-weight: 500;
}

.durum {
  display: flex;    /* Elemanları dikey hizala */
  align-items: center;        /* Yatayda ortala */
  justify-content: center;    /* Dikeyde ortala (yükseklik varsa) */
  text-align: center;
  gap: 8px;
}

.current-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.current-temp {
  font-size: 7px;
  font-weight: 500;
  margin: 0;
}

.current-desc {
  font-size: 5px;
  margin: 0;
  text-transform: capitalize;
}

.current-date {
  font-size: 9px;
  margin: 0;
  white-space: nowrap;
}

    .forecast-flex {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  min-width: max-content;
}


    #forecast {
      flex: 1;
      border: none;
      border-radius: 6px;
      padding: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
    }

    #forecast-content {
  display: flex;
  flex-direction: row;     /* Yanyana */
  flex-wrap: wrap;         /* Taşarsa alt satıra geçsin */
  gap: 10px;
  justify-content: center; /* Ortala */
  margin-top: 10px;
    }

.forecast-day {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  font-size: 12px;
  height: 50px;
  width: 100%; /* genişliği tam olsun */
  max-width: 320px;
  box-sizing: border-box;
  border-radius: 6px;
  background: rgba(23, 22, 22, 0.7);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
}

.forecast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.forecast-date {
  color: #cecece;
  font-size: 11px;
  width: 70px; /* sabit genişlik */
  flex-shrink: 0;
}

.forecast-desc {
  font-size: 11px;
  text-transform: capitalize;
  font-weight: 500;
  flex: 1; /* kalan alanı kaplasın */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.forecast-temp {
  font-weight: bold;
  font-size: 12px;
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}
}
/* Daha dar ekranlar için */
@media (max-width: 600px) {
  #weather-container {
    gap: 6px;
    padding: 6px;
  }

  #current-weather,
  #forecast {
    flex: 0 0 220px;
    padding: 5px;
  }

  .current-temp {
    font-size: 20px;
  }

  .current-desc {
    font-size: 13px;
  }

  .current-icon {
    width: 32px;
    height: 32px;
  }

  .forecast-day {
    flex: 0 0 75px;
    padding: 4px;
  }

  .forecast-icon {
    width: 30px;
    height: 30px;
  }

  .forecast-temp {
    font-size: 12px;
  }

  .forecast-desc {
    font-size: 10px;
  }
}

/**--------------------------------------------------------WEATHER END--------------------------------------------------------------**\

/**--------------------------------------------------------NAMAZ START--------------------------------------------------------------**\
*/

.current {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.countdown {
  font-size: 1.2rem;
  color: #d35400;
  margin-bottom: 1.5rem;
}

/* Kart kapsayıcı */
#vakit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Her gün için kart */
.vakit-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  width: 220px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s ease;
}

.vakit-card:hover {
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

.vakit-card h4 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #2c3e50;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3rem;
}

.vakit-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.vakit-card ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #34495e;
}

.vakit-card ul li strong {
  color: #2980b9;
}

.prayer-row strong {
  color: #2980b9;
}

#today-info {
  background: rgba(23, 22, 22, 0.7);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  max-width: 320px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
}

#today-info .prayer-time {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #FFDB70;
  font-size: 1.1rem;
  color: #cecece;
  font-weight: 600;
}

#today-info .prayer-time:last-child {
  border-bottom: none;
}

#today-info .prayer-label {
  color: #cecece;
}

#today-info .prayer-time span {
  color: #cecece;
  font-weight: 400;
}

.countdown {
  background-color: rgba(23, 22, 22, 0.7);         /* Hafif sıcak arka plan */
  color: aliceblue;               /* Turuncu vurgu rengi */
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  max-width: 320px;
  margin-top: 1rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.namazgunluk {
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  border-radius: 10px;
}

.next-prayer .prayer-label,
.next-prayer span {
  color: #FFDB70 !important;
  font-weight: bold;
}

.sayac {
  color: #FFDB70;
  font-size: 30px;
}

.extra-info {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  color: #444;
}

.info-item {
  background-color: rgba(23, 22, 22, 0.7); 
  border-radius: 8px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  max-width: 90px;
  text-align: center;
  color: #cecece;
}

.info-item strong {
  color: #cecece;
  font-weight: 400;
}

.info-item span {
  font-weight: 700;
  color: aliceblue;
}

.countdownapp {
  background-color: rgba(23, 22, 22, 0.7);         /* Hafif sıcak arka plan */
  color: aliceblue;               /* Turuncu vurgu rengi */
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  margin-top: 0;
  text-align: center;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.namazgunlukapp {
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 219, 112, 0.3);
  border-radius: 10px;
}

.extra-infoapp {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  color: #444;
}

.currentapp {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.next-prayerapp .prayer-labelapp,
.next-prayerapp span {
  color: #FFDB70 !important;
  font-weight: bold;
}

.sayacapp {
  color: #FFDB70;
  font-size: 30px;
}

#today-infoapp {
  background: rgba(23, 22, 22, 0.7);
  border-radius: 10px;
  justify-content: center;
  margin: auto;
  padding: 1rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  display: flex;
}

#today-infoapp .prayer-timeapp {
  display: block;
  justify-content: center;
  padding: 4px 4px;
  margin: 3px;
  max-width: 60px;
  border: 1px solid #FFDB70;
  border-radius: 10px;
  font-size: 1.1rem;
  color: #cecece;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  font-weight: 600;
}

#today-infoapp .prayer-labelapp {
  color: #cecece;
}

#today-infoapp .prayer-timeapp span {
  color: #cecece;
  font-weight: 400;
}

/* Konteyner: başlık ve seçim kutusu yan yana */
.header-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.8rem;
  gap: 1rem;
  background: rgba(23, 22, 22, 0.7);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  border-radius:0.5rem;
  height: 50px;
}

.header-controls h3{
  color: #ffdb70;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Label ve select birlikte hizalı olsun */
.select-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #fff;
}

/* Select stilini güzelleştir */
.select-wrapper select {
  padding: 0.4rem 0.8rem;
  border: 1px solid #ffdb70;
  background-color: #1f1f1f;
  color: #ffdb70;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.select-wrapper select:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffdb70aa;
}

#vakit-table {
  width: 100%;
  height: max-content;
  border-collapse: separate;
  border-spacing: 0 0rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
}

#vakit-table thead {
  background: rgba(23, 22, 22, 0.7);
  border-radius: 1rem;
}

#vakit-table thead th {
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  border-radius: 0.5rem;
  border-bottom: 1px solid #FFDB70;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
}

#vakit-table tbody {
  border-collapse: collapse;
  color: #fff;
  margin-bottom: 5px;
  border-radius: 1rem;
  background: rgba(23, 22, 22, 0.7);
}

#vakit-table tbody td {
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  height: max-content;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  transition: background-color 0.2s ease;
}

#vakit-table tbody td:first-child {
  text-align: left;
}

#vakit-table tbody tr {
  padding: 1rem;
  text-align: center;
  height: max-content;
  transition: background-color 0.2s ease;
}

#vakit-table tbody tr.highlight {
  font-weight: 700;
  color: #FFDB70;
  border-bottom: 1px solid #FFDB70;
}

#vakit-table tbody tr:hover {
  background-color: #FFDB70;
  color: #1f1f1f;
}

#dinigun-table {
  width: 100%;
  height: max-content;
  border-collapse: separate;
  border-spacing: 0 0rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  border-radius: 1rem;
  margin-top: 1rem;
}

#dinigun-table thead {
  background: rgba(23, 22, 22, 0.7);
  border-radius: 1rem;
}

#dinigun-table thead th {
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  border-radius: 0.5rem;
  border-bottom: 1px solid #FFDB70;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
}

#dinigun-table tbody {
  border-collapse: collapse;
  color: #fff;
  margin-bottom: 5px;
  border-radius: 1rem;
  background: rgba(23, 22, 22, 0.7);
}

#dinigun-table tbody td {
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: left;
  height: max-content;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.474);
  transition: background-color 0.2s ease;
}

#dinigun-table tbody td:first-child {
  text-align: left;
}

#dinigun-table tbody tr {
  padding: 1rem;
  text-align: left;
  height: max-content;
  transition: background-color 0.2s ease;
}

#dinigun-table tbody tr.highlight {
  font-weight: 700;
  color: #FFDB70;
  border-bottom: 1px solid #FFDB70;
}

#dinigun-table tbody tr:hover {
  background-color: #FFDB70;
  color: #1f1f1f;
}

#dinigun-table tbody tr:hover td:nth-child(4) button {
  color: #1f1f1f; /* ikon rengi, hover sırasında yazı rengiyle aynı */
}

#dinigun-table tbody td:nth-child(4) {
  text-align: center; /* td içeriği ortala */
  vertical-align: middle; /* hücre dikey ortalama */
  padding: 0.5rem; /* biraz boşluk ver */
}

#dinigun-table tbody td:nth-child(4) button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;    /* genişlik ver */
  height: 2rem;   /* yükseklik ver */
  background: none;
  border: none;
  cursor: pointer;
  color: #FFDB70;
  font-size: 1.2rem;
  padding: 0;     /* butonun içinde boşlukları kaldır */
  margin: 0 auto; /* yatay ortalama */
}

  .highlight-row {
    color: #FFDB70 !important;
    font-weight: 700;
  }

    .highlight-row:hover {
    color: #1f1f1f !important;
    font-weight: 700;
  }

#vakit-table-container {
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 219, 112, 0.3);
  border-radius: 10px;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  #vakit-table {
    font-size: 0.6rem;
  }

  #vakit-table thead th,
  #vakit-table tbody td {
    padding: 0.3rem;
  }
  #vakit-table tbody td {
  height: 2rem;
  }

  #vakit-table-container {
    overflow-x: auto;
  }

  #vakit-table tbody td:first-child {
  justify-content: center;
}

  #dinigun-table {
    font-size: 0.6rem;
  }

  #dinigun-table thead th,
  #dinigun-table tbody td {
    padding: 0.3rem;
  }
  #dinigun-table tbody td {
  height: 2rem;
  }

  #dinigun-table-container {
    overflow-x: auto;
  }

  #dinigun-table tbody td:first-child {
  justify-content: left;
}

  #dinigun-table tbody td:nth-child(4) button {
  font-size: 0.9rem;
}

  .select-wrapper select {
  font-size: 0.8rem;
  padding: 0.2rem 0.4rem;
}

  .header-controls {
  font-size: 0.8rem;
  height: 30px;;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
}

.share-icon {
  font-size: 1rem !important;
}

  .header-controls h3{
  font-size: 0.8rem;
  font-weight: 600;
}

  #today-infoapp {
  border-radius: 10px;
  justify-content: center;
  margin: auto;
  padding: 0.5rem 0.5rem;
  display: flex;
}

#today-infoapp .prayer-timeapp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 4px;
  margin: 2px;
  max-width: 60px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.subtopic {
  margin: 4px 0 0 10px !important;
}

.question {
  margin: 4px 0 0 20px !important;
}


.navbar-link i {
  font-size: 15px;
  margin-right: 5px;
  margin-left: 5px;
}

}

.sorulisans {
  color: #525252;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: -20px;
}
.topic, .subtopic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.topic {
  background: rgba(23, 22, 22, 0.7);
  color: #FFDB70;
  margin-top: 8px;
  font-weight: 700;
}

.topic:hover {
  background: #FFDB70;
  color: #1f1f1f;
}

.subtopic {
  background: #2c2c2c;
  color: aliceblue;
  margin: 4px 0 0 20px;
  font-weight: 500;
}

.subtopic:hover {
  background: #393939;
  color: #FFDB70;
}

.question {
  background: #444;
  color: aliceblue;
  padding: 10px 16px;
  border-radius: 6px;
  margin: 4px 0 0 40px;
  border-left: 3px solid #FFDB70;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.question:hover {
  background: #555555;
  color: #FFDB70;
  transform: translateX(5px);
}

.topic:active,
.subtopic:active,
.question:active {
  transform: scale(0.98);
}

.arrow {
  transition: transform 0.3s ease-in-out;
}

.rotate {
  transform: rotate(180deg);
}

.accordion {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  transition: max-height 0.3s ease, opacity 0.4s ease;
}

.accordion.show {
  max-height: 10000px; /* Tahmini yeterli bir yükseklik */
  opacity: 1;
}

.gunduz-box {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  max-width: 100%;
  margin-top: 0;
  color: #f1f1f1;
}

#günün-sorusu {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#günün-cevabi {
  font-size: 0.8rem;
  line-height: 1.6;
}

#günün-sorusu strong,
#günün-cevabi strong {
  color: #FFDB70;
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
  margin-top: -15px;
}

.gununsorusu-container {
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.2);
  border: 1px solid rgba(255, 219, 112, 0.3);
  border-radius: 10px;
  margin-top: 1.5rem;
}

.share-icon {
  color: aliceblue;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
}

.share-icon:hover {
  color: #FFDB70;
}

/**-------------------------------------------------------------NAMAZ END---------------------------------------------------------------**\

/**--------------------------------------------------------LIGHT MODE START--------------------------------------------------------------**\
*/

* {
  transition: background-color 0.0s ease, color 0.0s ease;
}

html.light-mode body {
  background-color: #d6d6d6;
  color: hsl(0, 0%, 7%);
}

html.light-mode {
  --orange-yellow-crayola: hsl(45, 100%, 72%);
  --border-gradient-onyx: linear-gradient(to right, #ddd, #eee);
  --bg-gradient-jet: #ffffff;
  --hover-effect: hsl(45, 100%, 31%);
  --bg-gradient-yellow-1: #ffffff;
  --bg-gradient-yellow-2: #ffffff;
  --eerie-black-1: #d6d6d6;
  --smoky-black: #d6d6d6;
  --red-link: #FF0000;
  --bg-btn: hsl(240, 2%, 12%);
  --text-color: #FFDB70;
  --bg-lcvrt: #111827;
  --border: hsl(45, 100%, 31%);
  background-color: #d6d6d6;
  color: hsl(0, 0%, 7%);
  border-color: rgb(215, 215, 215);
}

html.light-mode footer,
html.light-mode::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  color: hsl(0, 0%, 7%);
}


html.light-mode::-webkit-scrollbar-thumb:hover{
   background-color: var(--hover-effect);
}

html.light-mode .card .info-content > a {
  background-color: #ffffff;
  color: hsl(0, 0%, 7%);
}

html.light-mode .info-content .title {
  color: var(--orange-yellow-crayola);
}

html.light-mode .sidebar {
  background-color: #ffffff;
  border-color: rgb(215, 215, 215);
}

html.light-mode .navbar button,
html.light-mode .dropdown-menu1 a,
html.light-mode .dropdown-menu2 a,
html.light-mode .dropdown-menu3 a,
html.light-mode .dropdown-menu4 a {
  color: hsl(0, 0%, 7%);
}

html.light-mode .navbar,
html.light-mode .fab,
html.light-mode .fab span,
html.light-mode .upbutton {
  background-color: hsla(0, 0%, 84%, 0.75);
  backdrop-filter: blur(10px);
  border-color: rgb(234, 234, 234);
}

html.light-mode #today-info .prayer-time span {
  color: hsl(0, 0%, 7%);
}

html.light-mode .dropdown-menu1,
html.light-mode .dropdown-menu2,
html.light-mode .dropdown-menu3,
html.light-mode .dropdown-menu4 {
  background-color: hsla(0, 0%, 84%, 0.978);
  backdrop-filter: blur(10px);
  border-color: var(--hover-effect);
}

html.light-mode .dropdown-menu1 li:not(:last-child)::after, 
html.light-mode .dropdown-menu2 li:not(:last-child)::after, 
html.light-mode .dropdown-menu3 li:not(:last-child)::after, 
html.light-mode .dropdown-menu4 li:not(:last-child)::after {
  background: radial-gradient(circle, var(--hover-effect) 60%, transparent 100%);
}

html.light-mode .dropdown-menu1 a:hover,
html.light-mode .dropdown-menu2 a:hover,
html.light-mode .dropdown-menu3 a:hover,
html.light-mode .dropdown-menu4 a:hover {
  background-color: var(--hover-effect);
  color: #ffffff;
}

html.light-mode .next-prayer .prayer-label,
html.light-mode .next-prayer span {
  color: var(--hover-effect) !important;
}

html.light-mode .modal__content,
html.light-mode .modal__contentsoru,
html.light-mode .modal__contentvideo,
html.light-mode .testimonials-modal {
  background-color: #ffffff;
  border-color: rgb(234, 234, 234);
}

html.light-mode .scrolling-text {
  background-color: #ffffff;
  border-color: var(--hover-effect);
}

html.light-mode .info-content h3,
html.light-mode #noResultsMessage {
  background-color: #d6d6d6;
}

html.light-mode .faq-answer,
html.light-mode .weather,
html.light-mode .otherweather,
html.light-mode #forecast,
html.light-mode .forecast-day,
html.light-mode .countdown,
html.light-mode .info-item,
html.light-mode #today-info {
  background-color: hsla(0, 0%, 100%, 0.936);
}

html.light-mode #noMessage {
  background-color: #d6d6d6;
  color: var(--hover-effect);
}

html.light-mode article,
html.light-mode .filter-select-box button,
html.light-mode .select-list,
html.light-mode .faq-category,
html.light-mode .faq-categoryhome,
html.light-mode .faq-question {
  background-color: #ffffff;
  border-color: rgb(234, 234, 234);
  color: hsl(0, 0%, 7%);
}

html.light-mode .modal__buttondeveloper {
  background-color: var(--bg-btn);
  color: var(--text-color);
}

html.light-mode .modal__buttondeveloper:hover {
  background-color: var(--bg-lcvrt);
  color: var(--red-link);
}

html.light-mode .faq-category-toggle,
html.light-mode .faq-category::before {
  border-left: 6px solid var(--hover-effect);
}

html.light-mode .faq-category {
  box-shadow: 1px 1px var(--hover-effect);
}

html.light-mode .sidebar,
html.light-mode .sidebar-info_more,
html.light-mode .contact-title,
html.light-mode .social-link,
html.light-mode .contact-info,
html.light-mode .contact-link,
html.light-mode h1,
html.light-mode h2,
html.light-mode h3,
html.light-mode h4,
html.light-mode h5,
html.light-mode h6,
html.light-mode p,
html.light-mode .contact-info time,
html.light-mode .contact-info address,
html.light-mode .modal__closesp i,
html.light-mode .fab i,
html.light-mode .fab span,
html.light-mode .upbutton i,
html.light-mode .menu__item a,
html.light-mode .social-icon__link,
html.light-mode .info-content .title,
html.light-mode .icon-box,
html.light-mode .yazıiçi__links:hover,
html.light-mode .form .form-input, input,
html.light-mode .search-boxbaglanti,
html.light-mode .search-box,
html.light-mode .filter-item button,
html.light-mode .blog-metagaleri p,
html.light-mode .blog-metagaleri time,
html.light-mode .blog-metam p,
html.light-mode .blog-metam time,
html.light-mode .card-infogaleri ion-icon,
html.light-mode .dropbtn,
html.light-mode .detaybutton,
html.light-mode .yazıiçi__linksozet:hover,
html.light-mode .faq-category-toggle,
html.light-mode .faq-answer a.ssslinks:hover,
html.light-mode .hometextsss a.ssslinks:hover,
html.light-mode .back-button ion-icon:hover,
html.light-mode .forecast-desc,
html.light-mode .forecast-date,
html.light-mode #today-info .prayer-label,
html.light-mode .countdown,
html.light-mode .info-item,
html.light-mode .info-item span,
html.light-mode .info-item strong {
  color: hsl(0, 0%, 7%);
}

html.light-mode .yazıiçi__links,
html.light-mode .scrolling-text span,
html.light-mode .blog-categoryp p,
html.light-mode .menu__links,
html.light-mode .menu__item .active,
html.light-mode .contact-link:hover,
html.light-mode .social-link:hover,
html.light-mode .contact-info time:hover,
html.light-mode .contact-info address:hover,
html.light-mode .navbar-link:hover,
html.light-mode .fab i:hover,
html.light-mode .upbutton i:hover,
html.light-mode .menu__item a:hover,
html.light-mode .social-icon__link:hover,
html.light-mode .navbar-item .active,
html.light-mode .form-btn,
html.light-mode .filter-item button:hover,
html.light-mode .filter-item button.active,
html.light-mode .select-item button:hover,
html.light-mode .filter-select.active,
html.light-mode .dropbtn:hover,
html.light-mode .dropbtn:focus,
html.light-mode .timeline-item h4:hover,
html.light-mode .yazıiçi__linksdeveloper,
html.light-mode .yazıiçi__linksozet,
html.light-mode .card-titlemuhtar,
html.light-mode .faq-category-arrow i,
html.light-mode .faq-arrow i,
html.light-mode .faq-answer a.ssslinks,
html.light-mode .hometextsss a.ssslinks,
html.light-mode .back-button ion-icon,
html.light-mode .sayac,
html.light-mode .forecast-temp,
html.light-mode .current-temp {
  color: var(--hover-effect);
}

html.light-mode .menu__links:hover,
html.light-mode .card-infogaleri ion-icon:hover,
html.light-mode .like-button.liked ion-icon,
html.light-mode .yazıiçi__linksdeveloper:hover {
 color: var(--red-link);
}

html.light-mode .info-content .name,
html.light-mode .yazı,
html.light-mode .faq-title {
  background: linear-gradient(to right, hsl(240, 2%, 12%) 30%,hsl(0, 0%, 7%) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.light-mode .info_more-btn {
  color: hsl(0, 0%, 7%);
}

/**--------------------------------------------------------LIGHT MODE END--------------------------------------------------------------**\
*/

