:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;
  /* The default color of the main navmenu links */
  --nav-hover-color: #bb9b0b;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #34b7a7;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--default-color);
  background-color: #ffffff;
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.header {
  margin-top: 25px;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 10;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 10 10px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  width: 300px;
  position: relative;
  left: 150px;
  font-size: 32px;
  margin: 0;
  padding: 0;
  font-weight: 350;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}



@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    margin-left: 800px;
    padding: 0;
  }

  .navmenu ul {
    margin-top: -40px;
    margin-right: 90px;
    padding: 0;
    float: right;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Header genel stil zaten var, üzerine mobilde düzenleme yapacağız */

@media (max-width: 1199px) {
  /* Header kutusu daha sıkışık, padding azalt */
  .header {
    padding: 15px 15px;
    margin-top: 15px;
  }

  /* Logo ortalanacak, soldan offset kaldırılacak */
  .header .logo {
    position: relative;
    left: 0;
    width: auto;
    margin: 0 auto;
    text-align: center;
  }

  .header .logo h1 {
    font-size: 24px;
    width: auto;
    left: 0;
  }

  .mobile-nav-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 18px;
    font-size: 28px;
    color: var(--nav-color);
    cursor: pointer;
    user-select: none;
    z-index: 10001;
  }

  /* Navmenu ul gizli başta */
  .navmenu ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    padding-top: 60px;
    background-color: var(--nav-mobile-background-color);
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(100%);
  }

  /* Menü açılınca göster */
  body.mobile-nav-active .navmenu ul {
    display: flex;
    transform: translateX(0);
  }

  /* Menü linkleri dikey, büyük padding */
  .navmenu ul li {
    margin: 0;
  }

  .navmenu ul li a {
    padding: 15px 20px;
    font-size: 18px;
    color: var(--nav-dropdown-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--nav-font);
  }

  /* Menü link hover ve aktif renk */
  .navmenu ul li a:hover,
  .navmenu ul li a.active {
    color: var(--nav-dropdown-hover-color);
  }

  /* Dropdown menüler için (iç içe menüler) */
  .navmenu ul ul {
    padding-left: 20px;
    background-color: var(--nav-dropdown-background-color);
  }

  /* Dropdown görünürlük mobilde kontrolü JS ile */
  .navmenu .dropdown ul {
    display: none;
  }

  .navmenu .dropdown.dropdown-active > ul {
    display: block;
  }
}

/* Masaüstü için hamburger gizle */
.mobile-nav-toggle {
  display: none;
}



/*Header Slider*/
.slider {
  background-color: rgb(238, 238, 238);
  background-image: url(img/BACKGROUND.png);
  width: 100%;
  max-width: 100%;
  height: 67vh;
  background-size: 1600px;
  background-repeat: no-repeat;
  background-position: center 9%;


}

.textslider {
  padding-left: 200px;
  position: relative;
  top: 150px;
  animation: slideIn 4s ease forwards;


}

.slider img {
  position: absolute;
  left: 50%;
  top:
    77%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 40px;

}

.slider svg {
 
  display: block;
  margin: 0 auto;
  color: white;
  margin-top: 20%;
  z-index: 1;

}

.slider h2 {
  font-family: var(--default-font);

  font-size: 4.5em;
}

.slider p {
  font-family: var(--default-font);
  font-size: 2em;
}

@keyframes slideIn {
  0% {
    transform: translateY(100%);
    /* Sağdan başlar */
    opacity: 0;
  }

  80% {
    transform: translateY(0);
    /* Orta noktada */
    opacity: 1;
  }

}

@media only screen and (max-device-width:768px)  {
 
  .slider {
    width: 110vw;        
    max-width: 100%;       
    height: 250px;         
    max-height: 250px;
    margin-top: 100px;
    margin: 0;             
    padding: 0;
    background-size: 1px;
    box-sizing: border-box; }
 
  .textslider {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    top: 20%;
  }

  .slider h2 {
    font-size: 8vw; 
  }

  .slider p {
    font-size: 5vw;
  }

  .slider img {
    width: 1px;
  }

  .slider svg {
    width: 1%;
  
  }
}



.refer {
  color: #212529;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.svg-wrapper {
  margin-top: 380px;
  position: relative;
  width: 100%;

  height: auto;
}





.person {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 250px;
}

.konularimiz {
  width: 100%;
  height: 100px;
}

.konularimiz p {
  text-align: center;
  font-size: 30px;
  width: 100%;
  font-family: var(--heading-font);
}

.konularimiz h6 {
  text-align: center;
  width: 100%;
  position: relative;
  bottom: 80px;
  font-size: 20px;
}

.personall {
  position: relative;
  margin-left: 200px;
  display: flex;
  justify-content: first baseline;
}

.container {
  border-radius: 50%;
  height: 312px;
  -webkit-tap-highlight-color: transparent;
  transform: scale(0.48);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 400px;
}

.container:after {
  background-color: #f2f2f2;
  content: "";
  height: 10px;
  position: absolute;
  top: 390px;
  width: 100%;
}

.container:hover {
  transform: scale(0.54);
}

.container-inner {
  clip-path: path("M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z"
    );
  position: relative;
  transform-origin: 50%;
  top: -200px;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    height: auto;
    transform: scale(1);
  }
}

.circle1 {
  background-color: #0662da;
  border-radius: 50%;
  cursor: pointer;
  height: 300px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 210px;
  width: 300px;
}

.circle2 {
  background-color: #dac615;
  border-radius: 50%;
  cursor: pointer;
  height: 300px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 210px;
  width: 300px;
}

.circle3 {
  background-color: #34d168;
  border-radius: 50%;
  cursor: pointer;
  height: 300px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 210px;
  width: 300px;
}

.circle4 {
  background-color: #c03232;
  border-radius: 50%;
  cursor: pointer;
  height: 300px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 210px;
  width: 300px;
}

.circle5 {
  background-color: #4f32cc;
  border-radius: 50%;
  cursor: pointer;
  height: 300px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 210px;
  width: 300px;
}

.circle6 {
  background-color: #d46626;
  border-radius: 50%;
  cursor: pointer;
  height: 300px;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 210px;
  width: 300px;
}

.img {

  pointer-events: none;
  position: relative;
  transform: translateY(20px) scale(1.15);
  transform-origin: 50% bottom;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.container:hover .img {
  transform: translateY(0) scale(1.2);
}

.img1 {
  left: 65px;
  top: 280px;
  width: 200px;
}

.img2 {
  left: 75px;
  top: 250px;
  width: 200px;
}

.img3 {
  left: 90px;
  top: 280px;
  width: 150px;
}

.img4 {
  left: 70px;
  top: 250px;
  width: 200px;
}

.img5 {
  left: 85px;
  top: 280px;
  width: 170px;
}

.img6 {
  left: 85px;
  top: 280px;
  width: 180px;
}

.name {
  color: #404245;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}

.title {
  text-align: left;
  color: #6e6e6e;
  font-family: arial;
  font-size: 14px;
  font-style: italic;
  margin-top: 20px;
  margin-left: 35px;
}


@media (max-width: 600px) {
  .personall {
    flex-direction: column;
    margin-left: 0;
    align-items: center;
    gap: 40px;
    /* Kartlar arası boşluk */
  }

  .person {
    width: 80%;
    /* Daha geniş ve esnek */
    max-width: 350px;
    margin: 0 auto;
  }

  .container {
    transform: scale(1) !important;
    /* Mobilde büyüklüğü tam yap */
    width: 100% !important;
    height: auto !important;
    position: relative;
    bottom: 100px !important;
  }

  .container-inner {
    clip-path: none !important;
    /* Mobilde clip-path sorun çıkarabilir */
    top: 0 !important;
  }

   .circle1,
  .circle2,
  .circle3,
  .circle4,
  .circle5,
  .circle6 {
    position: relative !important;
    top: 15vh !important;
    left: 15vw !important;
    height: 200px !important;
    width: 200px !important;
  }

  .img1,
  .img2,
  .img3,
  .img4,
  .img5,
  .img6 {
    position: relative !important;
    transform: translateY(0) scale(1) !important;
    width: 40% !important;
    max-width: 180px;
    margin: 0 auto;
    display: block;
    top: -30px !important;
    left: 0 !important; /* sola kaydırma kaldırıldı */
  }

  .name {
    font-size: 24px;
    margin-top: 15px;
  }

  .title {
    margin-left: 15px;
    font-size: 16px;
    text-align: center;
  }

  .konularimiz {
    height: auto;
    width: 300px;
    padding: 20px 10px;
  }

  .konularimiz p {
    font-size: 24px;
    padding: 0 10px;
    width: 350px;
  }

  .konularimiz h6 {
    position: static;
    font-size: 12px;
    padding: 0 10px;
    margin-left: 3vh;
    margin-top: 10px;
  }
}

section {
  padding: 60px 0;
  min-height: 100vh;
}

.contact-row {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-box {
  width: 18%;
  /* %15 çok dar kalıyordu */
  min-width: 200px;
  /* mobil uyumu için sınır */
  height: 150px;
  justify-content: space-around;
  background-color: #2c3135;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .contact-box {
    flex: 1 1 100%;
    /* Mobilde tam genişlik */
  }
}

.contact-info-icon {
  font-size: 30px;
  color: #ffffff;
}

.contact-info-text h2 {
  margin: 0;
  font-size: 18px;
  color: white;
  font-weight: bold;
}

.contact-info-text span {
  display: block;
  font-size: 14px;
  color: #ffffff;
}




.iletisim {
  color: #212529;
  font-size: 40px;
  font-weight: 600;
  text-align: center;

}

/* Genel yerleşim */
.custom-footer {
  width: 100%;
  margin: 0;
  padding: 60px 0 30px;
  background-color: #12467a;
  color: #fff;
}

.custom-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

/* Üçlü kolon yapısı */
.custom-footer-col {
  flex: 1 1 30%;
  min-width: 250px;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  /* İkonları yatayda ortalar */
  gap: 15px;
  /* İkonlar arasındaki mesafeyi belirler */
  flex-wrap: wrap;
  /* Mobil cihazlarda ikonların satırlara sarmasını sağlar */
  margin-top: 20px;
  /* Üstten boşluk ekler */
}

/* Liste stili */
.footer-contact-icons ul,
.footer-social-icons ul {
  list-style: none;
  /* Liste işaretlerini kaldırdım */
  padding: 0;
  /* Varsayılan padding'i kaldırdım */
  display: flex;
  /* İkonları yatay sıraladım */
  gap: 15px;
  /* Aralarındaki mesafeyi artırdım */
}




/* İkonlara hover efekti */
.footer-contact-icons ul li a img:hover,
.footer-social-icons ul li a img:hover {
  transform: translateY(-5px);
  /* Hoverda yukarı kayma efekti */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  /* Hoverda daha belirgin gölge */
}

/* Mail kutusu */
.footer-mailbox {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Kutu ile buton arasındaki mesafeyi ayarlar */
}

.footer-textarea {
  resize: none;
  padding: 10px;
  background: #285d92;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  flex: 1;
  /* E-posta kutusunun genişliğini belirler, geri kalan alanı doldurur */
}

.footer-subscribe-btn a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ED5565;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
  /* Butonun metni taşarsa taşmaması için */
}

/* Bilgi kutuları */
.custom-footer-info {
  border-top: 1px solid #ffffff;
  padding-top: 40px;
}

.custom-footer-info-box {
  flex: 1 1 22%;
  min-width: 200px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.5;
}

/* Telif hakkı kısmı */
.custom-footer-copyright {
  background-color: #1a1d20;
  padding: 15px 0;
  text-align: center;
}

.footer-copyright-text {
  font-size: 13px;
  color: #ccc;
}

.footer-copyright-text a {
  color: #ED5565;
  text-decoration: none;
}

.footer-copyright-text a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

  .custom-footer-col,
  .custom-footer-info-box {
    flex: 1 1 100%;
  }

  .custom-footer-row {
    gap: 20px;
  }
}

/* Kayan logoların  alanı */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid rgb(163, 155, 155);
  padding: 20px 0;
  /* Üst ve alt boşluklar */
}

/* Kayan logo konteyneri */
.logo-container {
  display: flex;
  justify-content: space-between;
  /* Logolar arasındaki mesafeyi ayarlamak için */
  animation: marquee 25s linear infinite;
  /* Sağdan sola kayan animasyon */
}

/* Kayan logoların stilleri */
.logo-container img {
  height: 70px;
  /* Logoların boyutu */
  margin-right: 5px;
  /* Logolar arasındaki boşluk */
}

/* Animasyon */
@keyframes marquee {
  0% {
    transform: translateX(100%);
    /* Başlangıçta ekranın dışı sağda */
  }

  100% {
    transform: translateX(-100%);
    /* Sonunda ekranın dışı solda */
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
  }

  .navmenu ul {
    display: none;
    /* Menü gizli */
    position: absolute;
    inset: 60px 20px 20px 20px;
    background-color: var(--nav-mobile-background-color);
    border-radius: 6px;
    overflow-y: auto;
    z-index: 9998;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    /* Menü açıldığında görünür */
  }
}
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
  z-index: 999;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 20px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border2 {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
