:root{
  --background-color: #092347;
  --bg-color: #0A2342;
  --text-color: #ffffff;
  --accent-color: #00B3B3;
  --font-family: 'Poppins', sans-serif;
  --win-width: 100vw;   
  --win-height: 100vh; 
  --LinearGardient-Left-bg: #20B2BB;
  --LinearGardient-Right-bg: #0FDFEB;
}
html{
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
b,p,h1,h2,h3,h4,h5,h6,a,li,span, button,input,textarea{
  font-family: 'Poppins', sans-serif;
}
body{
  background: var(--background-color);
  overflow-x:hidden; 
  color: #FFFFFF;
  margin: 0px;
  font-family: 'Poppins', sans-serif;
  padding-top: 150px; 
}
.bg{
  height: 100vw;
  max-height: 1500px;
  width: 100%;
  background: var(--background-color) radial-gradient(#1C4A89, #092347, #092347);
  position: absolute;
  z-index: -1;
  left: 0;
}

/*Navbar Başlangıç*/
nav {
  position: fixed;
  top: 10px;
  left: 50%;                  
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;              
  z-index: 100;
  background: var(--background-color);
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.nav-hidden { transform: translateX(-50%) translateY(-110%) !important; }
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  color: var(--text-color);
}
.logo {
  font: bold 34px var(--font-family);
  transition: 0.5s;
}
.logo span { color: var(--accent-color); }
.nav-ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.nav-ul li a {
  text-decoration: none;
  color: var(--text-color);
  font: 500 14px var(--font-family);
  transition: .3s;
  font-weight: bold;
}
.nav-ul li a:hover, .active { color: var(--accent-color); }
.hamburger {
  display: none;
  flex-flow: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  transition: 0.3s;
}
@media (max-width: 1460px) {
  .nav-ul {
    display: flex;
    flex-flow: column;
    background: linear-gradient(135deg, #092347 0%, #1C4A89 100%);
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    padding: 80px 30px 30px;
    gap: 25px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
    z-index: 999;
  }
  nav{
    width: 100%;
    top: 0;
    border-radius: 0px;
    margin: 0px -2px;
    border: 2px solid var(--background-color);
    position: fixed !important;
    transform: translateX(-50%) translateY(0) !important;
  }
  nav.nav-hidden {
    transform: translateX(-50%) translateY(0) !important;
  }
  .nav-ul.show { 
    right: 0;
    display: flex;
  }
  .nav-ul li {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInMenu 0.3s forwards;
  }
  .nav-ul.show li:nth-child(1) { animation-delay: 0.1s; }
  .nav-ul.show li:nth-child(2) { animation-delay: 0.15s; }
  .nav-ul.show li:nth-child(3) { animation-delay: 0.2s; }
  .nav-ul.show li:nth-child(4) { animation-delay: 0.25s; }
  .nav-ul.show li:nth-child(5) { animation-delay: 0.3s; }
  .nav-ul.show li:nth-child(6) { animation-delay: 0.35s; }
  .nav-ul.show li:nth-child(7) { animation-delay: 0.4s; }
  
  @keyframes slideInMenu {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .nav-ul li a {
    font-size: 16px;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-ul li:last-child a {
    border-bottom: none;
  }
  .home-logo   { font: bold 24px var(--font-family); }
  .hamburger   { display: flex; z-index: 1000; }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}
/*Navbar Bitiş*/
/*Hero Başlangıç*/
.hero {
  display: flex;
  background-color: var(--background-color);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1378px;
  gap: 50px;
  padding: 30px;
  border: 1px solid gray;
  margin: auto;
  flex-direction: row;
}
@media(max-width: 768px) {
  .hero {
    padding: 20px;
    margin: 0 10px;
    gap: 30px;
  }
}
.hero-left-section {
  flex: 1.2;
  display: flex;
  align-items: center;     /* dikey ortalama */
  justify-content: center; /* yatay ortalama */
}
.hero-imgs{
  width: 120%;
  max-height: 120%;
  object-fit: contain;
  transition: all 0.4s ease;
}
.hero-left-section h1 {
  font-size: 50px;
  line-height: 100%;
}
.spanss{
  white-space: nowrap;
}
.hero-left-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
  z-index: 2;
}
.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  position: absolute;
  bottom: -450px;
  left: -700px;
  transition: all 0.4s ease;
}
.kapsayicii{
  position: relative;
}
@media (max-width: 1372px) {
  .stats {
    left: -600px;
  }
}
@media (max-width: 1200px) {
  .stats {
    left: -510px;
  }

}

@media (max-width: 990px) {
  .stats {
    position: relative;
    bottom: 0px;
    left: 0px;
  }
  body{
    padding-top: 70px;
  }
  .hero-left-section{
    min-width: 90%;
    display: block;
    flex: unset;
  }
  .hero-imgs{
    max-width: 100%;
  }
}
@media (max-width: 400px) {
    .spanss{
    white-space: normal;
  }
}
.stat-item {
  display: flex;
  align-items: center;
  border: 1px solid #174789;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}


.icon-plus{ width: 25px; margin-right: 10px; }
.hero-form {
  background-color: #fff;
  color: #0b1d3d;
  padding: 40px;
  border-radius: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  position: relative;
}
.hero-form h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 40px;
}
.hero-form>form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-form>form input[type="text"],
.hero-form>form input[type="tel"],
.hero-form>form input[type="email"] {
  background-color: #f0f2f5;
  border: none;
  padding: 18px 25px;
  border-radius: 30px;
  font-size: 1rem;
  color: #333;
}
.hero-form>form input::placeholder { color: #a0a0a0; }
.phone-input {
  display: flex;
}
.phone-input .country-code {
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #FFFFFF;
}

.phone-input .country-code img {
  width: 24px;
  height: auto;
  margin-right: 8px;
  border-radius: 3px;
}
.phone-input input {
  flex-grow: 1;
  background: none;
  border: none;
  padding: 15px 20px;
}
.privacy-agreement {
  display: flex;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #555;
  margin-bottom: 10px;
}
.privacy-agreement input {
  margin: 2px 10px 0px 0px;
  margin-right: 10px;
  appearance: none;
  -webkit-appearance: none;
  min-width: 21px;
  min-height: 21px;
  max-width: 25px;
  max-height: 21px;
  border: 2px solid #092347;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.privacy-agreement input:checked { 
  background-color: #092347; 
}
.privacy-agreement input:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 16px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
textarea {
  width: 100%;
  background-color: #f0f2f5;
  border: none;
  border-radius: 30px;
  color: #333;
  font-size: 1rem;
  resize: vertical;
  font-family: 'Poppins', sans-serif;
  padding: 18px 25px;
  box-sizing: border-box;
}
textarea::placeholder {
  color: #a0a0a0;
}
#submitBtn {
  background: linear-gradient(to right, #092347, #114A9A);
  color: #fff;
  border: none;
  padding: 18px 25px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 251px;
}
button:hover { background-color: #17325e; }

/*Hero Bitişi*/




/*Certifications Başlangıç*/
.certifications {
  margin: 70px 0px;
  background: linear-gradient(to right, #20B2BB, #0FDFEB);
  text-align: center;
  align-items: center;
  padding-bottom: 31px;
}
.certifications h1 {
  padding-top: 50px;
  line-height: 0px;
  font-size: clamp(1.2rem, 2vw, 2rem);
}
.CR-img-container{
  width: auto;
  max-width: 1440px;
  margin: auto;
}
.CR-img {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}
.CR-img img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1240px) {
  .CR-img { grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
  .certifications h1 {line-height: 100%;}
}
@media (max-width: 600px) { .CR-img { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .CR-img { grid-template-columns: 1fr; } }
/*Certifications Bitiş*/

/*Why Choose Us Başlangıç*/
.why-choose-us {
  width: 100%;
  max-width: 1440px;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  margin: auto;
}
.why-image-section { width: 100%; padding-bottom: 50%; position: relative; }
.why-image-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.why-content-section {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-content-section h1 {
  font-size: 2.5em;
  margin-top: 0;
  margin-bottom: 20px;
}
.why-content-section p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.8;
}
.feature-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item {
  border: 1px solid #185BB9;
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}
.feature-item:hover { transform: translateY(-3px); background-color: rgba(255, 255, 255, 0.15); }
.feature-item img{ width: 24px; margin-right: 10px; }
.rectangle {
  padding: 15px 30px 15px 50px;
  background: linear-gradient(to right, var(--LinearGardient-Left-bg), var(--LinearGardient-Right-bg));
  border-radius: 10px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex; justify-content: center; align-items: center;
  width: 260px;
  margin: auto;
}
.why-rectangle{ margin: 10px 0px; }
.story-action-button{ margin-top: 20px; }
.rectangle:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); }
.arrow-container{
  border-radius: 50%;
  height: 35px;
  width: 35px;
  background-color: #fff;
  border: 3px solid var(--background-color);
  position: absolute;
  top: 4px;
  left: -16px;
}
.arrow {
  width: 10px;
  height: 10px;
  border-right: 3px solid #00b3b3;
  border-top: 3px solid #00b3b3;
  transform: rotate(45deg);
  float: left;
  margin: auto;
  line-height: 100vw;
  margin-top: 30%;
  margin-left: 12%;
}
.arrow-two{ margin-left: -5px; }
@media (min-width: 768px) {
  .why-choose-us { grid-template-columns: 1fr 1fr; height: 700px; }
  .why-image-section {
    padding-bottom: 0;
    height: 100%;
    border-radius: 20px 0 0 20px;
  }
}
/*Why Choose Us Bitiş*/


/*Sponshor Ship Başlangıç*/
.sponsor{
  margin: 200px auto 0px;
  max-width: 1440px;
  min-height: 312px;
  background-color: var(--background-color);
  background-image: url('images/Sponsorship/Earth.jpg');
  background-size: 100% 100%;
  background-position: center;
  background-blend-mode: lighten; 
  text-align: center;
  border-bottom: 1px solid #3663A2;
  padding-bottom: 10px;
}
.sponsor-img {
  display: grid;
  grid-template-columns: repeat(7, 1fr); 
  gap: 20px;
  align-items: center;
  justify-items: center; 
}
.sponsor-img img {
  max-width: 110px;   
  height: auto;
  object-fit: contain;
}
.sponsor-img img:nth-child(4){ border-radius: 8px; }
@media (max-width: 992px) { .sponsor-img { grid-template-columns: repeat(4, 1fr); margin-top: 30px; } }
@media (max-width: 600px) {
  .sponsor-img { grid-template-columns: repeat(2, 1fr); }
  .sponsor { background: none; }
}
/*Sponshor Ship Bitiş*/

/* Before-After Başlangıç */
.flag img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #13386B;
  margin: 0 0 40px -25px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); 
}
.BA-swiper {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  border-radius: 20px;
  max-height: 880px;
  padding:0 50px;
}
.BA-div img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.BA-pagination span {
  width: 12px;
  height: 12px;
  border: 1px solid #20B2BB;
  border-radius: 3px;
  opacity: 0.5;
}
.BA-pagination .swiper-pagination-bullet-active { background: #20B2BB; opacity: 1; }
.BA-pagination { margin-top: 50px; text-align: center; position: relative; }
.BA-rectangle{margin: 20px auto;}
.BA-div { width: 470px; margin: 0 auto; }
@media (max-width: 470px) {
  .BA-div { max-width: 100%; }
  .BA-div img { border-radius: 10px; }
  .flag img { width: 40px; height: 40px; margin: 0 0 40px -15px; }
}
@media (max-width: 400px) {
  .BA-div img { border-radius: 5px; }
  .flag img { width: 30px; height: 30px; margin: 0 0 30px -10px; }
}
/* Before-After Bitiş */

/*Promote Başlangıç*/
.promote-container{
  background-color: #021C40;
  margin: 100px auto;
  max-width: 1440px;
  min-height: 250px;
  border-radius: 20px;
  width: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px;
  align-items: center;
  justify-items: center; 
  text-align: center;
  z-index: 1;
}
.promote-div img{ height: 50px; }
.promote-div p b{ font-size: 20px; }
@media(max-width:840px){
  .promote-container{ grid-template-columns: repeat(2, 1fr); padding: 20px 0px; }
  #promote-end { grid-column: span 2; }
}
/*Promote Bitiş*/

/* Swiper container */
.doctors-container{
  width: auto;
  height: 750px;
  background-color: #042A5F;
  z-index: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
}
.doctors{
  margin: auto;
  max-width: 1440px;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}
.doctors-left{
  display: flex;
  align-items: center;  
  padding: 20px;
}
.doctors-right.swiper {
  width: 100%;
  max-width: 710px;
  margin: 0 auto;
  padding-bottom: 72px;
  position: relative;  
  box-sizing: border-box;
}
.dr {
  border-radius: 20px;
  border: 1px solid #124C9D;
  width: 345px;
  box-sizing: border-box;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 500px;
}
.dr-name {
  margin-top: 0px;
  width: 100%;
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  border-top: 5px solid #20B2BB;
  box-sizing: border-box;
}
.doctor-pag {
  position: absolute;
  text-align: center;
  z-index: 20;
  pointer-events: auto;
  top: 20px;
}
.doctor-pag span {
  width: 12px;
  height: 12px;
  border: 1px solid #20B2BB;
  border-radius: 3px;
  opacity: 0.5;
}
.dr-img { width: 332px; }
.dr-img-erkan{ width: 319px; }
.doctors-right{ padding: 70px 0px; }
.dr-name-erkan{ margin-top: -70px; }
.doctor-pag-container{ height: auto; margin-top: -30px; position: relative; }
.dr-wrapper { display: flex; align-items: stretch; }
.hospital-div { display: flex; justify-content: center; box-sizing: border-box; }
.doctor-pag .swiper-pagination-bullet-active { background: #20B2BB; opacity: 1; }
.doctors-rectangle{ width: 241px; margin: 10px 0px; }
@media(max-width:1125px){
  .doctors{ grid-template-columns: repeat(1, 1fr); }
  .doctors-right{ width: 722px; margin: auto;}
  .doctors-container{ padding-bottom: 40px; height: 1200px; }
  .doctors-left>div{ margin: auto; text-align: center; }
  .doctors-rectangle{margin: auto }
}
@media(max-width:840px){
  .doctors-right.swiper { max-width: 360px; padding-bottom: 80px; }
  .doctors-container{ margin: 0px -10px; height: 1200px; }
  .doctors-right{ grid-template-columns: repeat(1, 1fr); width: auto; margin: auto; }
  .doctors{ grid-template-columns: repeat(1, 1fr); }
}
@media (max-width: 370px) {
  .dr-img{ width: 200px; }
  .dr{ width: 200px; height: auto; margin: auto;}
}
/**/
/*Comfortable Başlangıç*/
.comfortable-container{
  margin: 100px auto 100px;
  width: auto;
  max-width: 1440px;
  text-align: center;
}
.comfortable-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.comfortable-grid div{
  width: 470px;
  height: 100px;
  border-radius: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comfortable-grid-dark{ background-color: #042A5F; place-self: center; }
.comfortable-grid-light{ background-color: #154890; place-self: center; }
.comfortable-rectangle{ padding-left: 10px; padding-right: 0px; }
@media(max-width:1460px){
  .comfortable-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:1000px){
  .comfortable-grid{ grid-template-columns: repeat(1, 1fr); }
  .comfortable-grid div{ padding: 0px 20px; width: auto; }
}
hr{ margin-top: 50px; border: none; border: 1px solid #3663A2; }
/*Comfortable Bitişi*/

/*Hospital Başlangıç*/
.hospital-container{ text-align: center; }
.hospital-swipper-container{ margin-top: 50px; }
.hospital-div{ width: 100%; max-width: 470px; margin: 0 auto; }
.swiper-pagination-bullet-active { background: #20B2BB; opacity: 1; }
.swiper-pag {margin-top: 40px; text-align: center;position: relative; }
.swiper-pag .swiper-pagination-bullet-active { background: #20B2BB; opacity: 1; }
.hospital-btn{ margin-top: 30px; }
.hospital-div img{
  width: 100%;
  height: 470px;
  border-radius: 20px;
  object-fit: cover;
}
.swiper-pag span {
  width: 12px;
  height: 12px;
  border: 1px solid #20B2BB;
  border-radius: 3px;
  opacity: 0.5;
}
/*Hospital Bitişi*/


/**/
.tech-container{
  width: 100%;
  height: 800px;        
  z-index: 0;
  position: relative;       
  display: block;
  color: #fff;
  overflow-x: hidden;
  overflow-y: hidden;              
  padding: 0 10px;   
}
.tech{
  margin: 0 auto;           
  max-width: 1440px;        
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;       
  overflow: visible;        
}
.tech-left{
  display: flex; 
  align-items: center;  
  padding: 20px;
  position: relative;
  z-index: 3;
  background-color: #092347;
  grid-column: span 3;
}
#da-vinci{
    font-size: 18px;
    width: 241px;
    background-color: #2772D9;
    border-radius: 10px;
    text-align: center;
    padding: 4.5px;
    max-height: 30px;
}
.tech-rectangle{margin-top: 50px;}
.tech-right {
  width: 100%;
  max-width: 710px;
  padding-bottom: 72px;
  position: relative;  
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.tech-wrapper {
  width: auto;  
  overflow: visible;
  display: flex;
}
.tech-slide {
  min-width: 300px;
  min-height: 400px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.th {
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: none;
}
.th-img {
  border-radius: 20px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.tech-pag-container{
  height: auto;
  margin-top: -100px;
  position: relative;
}
.tech-pag {
  position: absolute;
  text-align: center;
  z-index: 20;
  pointer-events: auto;
}
.tech-pag span {
  width: 12px;
  height: 12px;
  border: 1px solid #20B2BB;
  border-radius: 3px;
  opacity: 0.5;
}
.tech-pag .swiper-pagination-bullet-active {
  background: #20B2BB;
  opacity: 1;
}
.tech-container::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2; 
  pointer-events: none;
  background: #092347; 
  width: clamp(0px, calc((100% - 1440px) / 2 + 10px), 50%);
}
@media(max-width: 768px) {
  .tech-container::before {
    display: none;
  }
}
.tech-left{
  position: relative;
  z-index: 3;
}

/**/

/**/
.videos-container{
  text-align: center;
  font-size: 18px;
  max-width: 1257px;
  width: auto;
  margin: auto;
  overflow-x: hidden;
  height: auto;
  padding-bottom: 30px;
}
    .videos-slider {
      width: 400px;
      height: 600px;
    }
    .videos-slide {
      width: 100%; 
      max-width: 400px;
      height: 600px; 
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .videos-slide video,
    .videos-slide iframe {
      width: 100%;
      max-width: 400px;
      height: 600px; 
      object-fit: cover;
      border-radius: 30px;
    }

.videos-pag {margin: 40px 0px;}
.videos-pag span {
  width: 12px;
  height: 12px;
  border: 1px solid #20B2BB;
  border-radius: 3px;
  opacity: 0.5;
}
.videos-pag .swiper-pagination-bullet-active {
  background: #20B2BB;
  opacity: 1;
}
.videos-btn{
  margin-top: 20px;
}
/**/



/**/
.hotel-container{margin-top: 100px; }
.hottel-container{
  min-height: 800px;
  width: 750vw;
  background-color: #042A5F;
  position: absolute;
  z-index: 3;
  margin-left: -500px;
}
@media(max-width: 768px) {
  .hottel-container {
    display: none;
  }
}
.secret-container{
  height: 800px;
  width: 30%;
  background-color: #042A5F;
  position: absolute;
  z-index: 14;
  margin-left: -20px;
}
#hotel-right{
  position: relative;
  z-index: 10;
}
#hotel-left{background-color: #042A5F; position: relative; z-index: 15;}
@media(max-width:1440px){
  #hotel-left .feature-list{align-items: center;}
  .hottel-container{height: 1100px;}
  .secret-container{display: none;}
}
/**/


/**/
.international-container{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: auto;
  margin: auto;
  overflow: hidden;
  font-size: 18px;

}
.international-container>img{
  width: 908px;
  mix-blend-mode: lighten;
}
.international-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.international-box{
  width: 215px;
  height: 58px;
  border-radius: 10px;
  border: 1px solid gray;
  margin-top: 10px;
  display: flex;
  align-items: center;
  margin: 10px auto 0px;
  padding-left: 15px;
}
.international-box img{
  width: 26px;
  height: 31px;
  margin: 0px 10px;
}
@media(max-width:1440px){
  .international-container{
    display: grid;
    width: unset;
    text-align: center;
  }
  .why-choose-us{
    width: unset;
  }
  .international-container>img{
    float: left;
    width: 840px;
  }
}
@media(max-width:840px){
  .international-container>img{
    width: 100%;
  }
  .international-grid{
    grid-template-columns: repeat(1, 1fr);
  }
}
/**/
/**/
.form{
  width: 1358px;
  padding: 40px;
  border: 1px solid #5F97E5;
  border-radius: 20px;
  font-size: 18px;
  margin: auto;
}
.form-contact>h1{
  margin: 0px;
}
.form-contact>p{
  margin-top: 10px;
  font-size: 16px;
}
.form-contact{
  width: 540px;
  float: left;
  margin-right: 35px;
}
.right-videos{
  width: 743px;
  height: 850px;
  border-radius: 20px;
}
.right-videos-container{
}
@media(max-width:1490px){
  .form{
    border: none;
    width: auto;
    padding: 5px;
    margin-top: 50px;
  }
  .form-contact, .right-videos{
    float: none;
    margin: auto;
  }
  .right-videos-container{
    margin: 20px auto;
    width: 717px;
  }
}
@media(max-width:890px){
  .right-videos, .right-videos-container{
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 991px) {
  .form-contact {
    width: auto;
    height: auto;
  }
}
/**/

/**/
.turkey{
  width: 100%;
  max-width: 1440px;
  height: 613px;
  display: grid;
  font-size: 18px;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 100px auto;
  grid-template-columns: repeat(2, 1fr);
  padding: 30px;
}
.turkey-text{
  float: left;
}
.turkey-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.turkey-grid img{
  width: 420px;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  margin: auto;
}
.turkey-rectangle{
  padding-left: 10px;
  padding-right: 0px;
  width: 277px;
  margin: 0px;
}
@media(max-width:1490px){
  .turkey{
    margin-top: 700px;
    height: auto;
    display: block;
    width: auto;
    padding: 0px;
  }
  .turkey-text{
    float: none;
    margin: auto;
    text-align: center;
    width: auto;
  }
  .turkey-grid{
    margin: 50px auto;
    width: 880px;
  }
  .turkey-grid img{
    margin: auto;
  }
  .turkey-rectangle{
    margin: auto;
  }
}
@media(max-width:890px){
  .turkey{
    margin-top: 450px;
  }
  .turkey-grid{
    width: auto;
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
  }
  .turkey-grid img{
    width: 100%;
  }
}
/**/




/**/
.faq-container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
    margin: auto;
    
}
.faq-header h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 10px;
}
.faq-header p {
    text-align: center;
    margin-bottom: 40px;
    color: #b0c4de;
}
.faq-container details {
    background-color: #092347;
    border-radius: 8px;
    border: 1px solid white;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
    transition: background-color .3s ease;
}
.faq-container details:hover {background-color: #204576;}
.faq-container summary {
    list-style: none;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    position: relative;
}
.summary-text { text-align: center; flex-grow: 1; }
.summary-icon {
    font-size: 1.8em;
    line-height: 1;
    margin-left: 15px;
    transition: transform .3s ease;
}
.faq-container details[open] .summary-icon { transform: rotate(180deg); }
.summary-icon::before { content: '+'; }
.faq-container details[open] .summary-icon::before { content: '-'; }
.faq-content {
    padding: 0 25px 25px;
    font-size: 1em;
    line-height: 1.6;
    color: #d1d9e6;
    overflow: hidden;
    max-height: 0;
    transition: max-height .5s ease-out, padding .5s ease-out;
}
.faq-container details[open] .faq-content { max-height: 700px; padding-top: 15px; }
.faq-general-cont{
    width: auto;
    background-color: #042A5F;
    transition: height 1s;
}
/**/

/**/
.footer-container{
  width: 100%;
  max-width: 1440px;
  height: 375px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
}
.footer-grid{
display: flex;
display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.footer-info img{
  width: 18px;
  margin-right: 10px;
}
.footer-info{
  display: flex;
  margin-top: 20px;
}
.cta{
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  background-image: linear-gradient( to bottom right, #26C4CE, #2061BA);
  border-radius: 20px;
  width: 390px;
  height: 190px;
  padding: 30px;
}
.cta>b{
  font-size: 30px;
  line-height: 65px;
}
.cta p{
  margin: 0px 0px 30px 0px;
}
.footer-rectangle{
  background: #fff;
  color: #000;
  box-shadow: none;
  padding-left: 0px;
  padding-right: 0px;
  width: 350px;
}
#footer-arrow{
  border: 3px solid #26A9C9;
}
.scroll-top {
  width: 80px;
  height: 80px;
  background: white;
  border: 5px solid #26C4CE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.scroll-top:hover {
  transform: scale(1.1);
}
.scroll-top::before {
  content: "↑";
  font-size: 40px;
  color: #26C4CE;
}
@media(max-width:1440px){
  .footer-container{
    width: auto;
    height: auto;
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-grid{
    margin-top: 50px;
    width: auto;
  }
}
@media(max-width:600px){
  .cta{
    width: auto;
    height: auto;
    min-height: 190px;
    padding: 10px;
  }
  .cta>b{ font-size: 25px; }
}
/**/

/* Fixed Buttons - WhatsApp and Back to Top */
.fixed-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  align-items: end;
}
.whatsapp-btn, .back-to-top-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  text-decoration: none;
}
.back-to-top-btn {
  background: linear-gradient(135deg, var(--LinearGardient-Left-bg), var(--LinearGardient-Right-bg));
}
.whatsapp-btn:hover, .back-to-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.hospital-swipper-container {
  padding:0 50px;
}
/* Form Fill Button with Blinking Animation */
.form-fill-btn {
  padding: 15px 28px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #26C4CE, #20B2BB);
  box-shadow: 0 3px 10px rgba(32, 178, 187, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  text-decoration: none;
  position: relative;
  animation: pulseBlink 3s infinite;
  color: white;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.form-fill-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(32, 178, 187, 0.5);
  animation: none;
  color: white;
}

/* Blinking/Pulsing Animation - Subtle */
@keyframes pulseBlink {
  0% {
    box-shadow: 0 3px 8px rgba(32, 178, 187, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px rgba(32, 178, 187, 0.5), 0 0 25px rgba(38, 196, 206, 0.3);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 3px 8px rgba(32, 178, 187, 0.2);
    transform: scale(1);
  }
}

/* Ripple effect on the button - Subtle */
.form-fill-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 2px solid #26C4CE;
  opacity: 0;
  animation: rippleBlink 2s infinite;
}

@keyframes rippleBlink {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.6;
  }
  100% {
    width: 130%;
    height: 130%;
    opacity: 0;
  }
}

.form-fill-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .fixed-buttons {
    bottom: 45px;
    right: 20px;
  }
  .whatsapp-btn, .back-to-top-btn, .form-fill-btn {
    width: 50px;
    height: 50px;
  }
  .whatsapp-btn svg, .back-to-top-btn svg, .form-fill-btn svg {
    width: 24px;
    height: 24px;
  }
}
/**/

/* International Telephone Input Styling */
.iti { 
  width: 100%; 
  display: block;
}
.iti__flag-container { 
  border-radius: 30px 0 0 30px; 
}
.phone-input .iti { 
  display: flex; 
  width: 100%; 
}
.phone-input .iti__selected-flag {
  background: var(--background-color);
  border: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 0 15px;
}
.phone-input .iti__selected-flag:hover{
  background: var(--background-color)!important;

}
.phone-input input[type="tel"] {
  background-color: #f0f2f5;
  border: none;
  padding: 18px 25px;
  border-radius: 0 30px 30px 0;
  font-size: 1rem;
  color: #333;
  flex-grow: 1;
  font-family: 'Poppins', sans-serif;
}

/* Dropdown styling */
.iti__country-list {
  background: white;
  border: none;
  border-radius: 12px;
  max-height: 350px;
  overflow-y: auto;
  width: 500px;
  padding: 15px;
  margin-top: 5px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}
.iti__country {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
}
.iti__country:hover {
  background: #f0f2f5;
}
.iti__country.iti__highlight {
  background: #e8f5f5;
}
.iti__dial-code {
  color: #666;
  margin-left: auto;
  padding-left: 10px;
}
.iti__country-name {
  margin-left: 8px;
  color: #333;
  font-weight: 400;
}
.iti__flag {
  margin-right: 8px;
}
.iti__selected-dial-code {
  color: white;
  font-weight: 500;
  margin-left: 5px;
  font-family: 'Poppins', sans-serif;
}
.iti__arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid white;
  margin-left: 8px;
}
/* Scrollbar styling for dropdown */
.iti__country-list::-webkit-scrollbar {
  width: 8px;
}



@media (max-width: 991px) {
  .hero { padding: 20px; border: 0px; align-items: center;   flex-direction: column; margin: 0px 5px;}
  .hero-left-section { text-align: center;  align-items: center; }
  .stat-item{ margin: auto; }
  .hero-form { width:unset; padding: 20px; }
  .iti__country-list{ width: 390px;}
  .international-box{  width: 300px;}
}

/* Mobil yatay scroll düzeltmeleri */
@media(max-width:1460px){

  .hero, .certifications, .why-choose-us, .sponsor, .swiper, .promote-container,
  .doctors-container, .comfortable-container, .hospital-container, .tech-container,
  .videos-container, .hotel-container, .international-container, .form, .turkey,
  .faq-general-cont, .footer-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .international-container img, .turkey-grid {
    max-width: 100%;
    height: auto;
  }
}

@media(max-width:1440px){
  .tech{ grid-template-columns: repeat(1, 1fr);}
  .tech-right{ max-width: 722px; width: 100%; margin-top: -100px;}
  .tech-container{ padding-bottom: 40px; height: 1200px;}
  .tech-left>div{ margin: 0px auto -400px; text-align: center; width: auto; }
  .tech-pag-container{ margin-top: 50px;}
  .tech-swiper{ margin-top: -100px;}
  #da-vinci{ margin: auto;}
  .tech-left{ background-color: transparent;}
}

@media(max-width:840px){
  .tech-right.swiper { max-width: 100%; }
  .tech-right{ grid-template-columns: repeat(1, 1fr); max-width: 351px; width: 100%;}
  .tech{display: unset;}
  .tech-slide { min-width: 280px; }
   .tech-container{ padding-bottom: 40px; height: unset;}
   .tech-left>div{
    margin: 0px auto;
    text-align: center;
    width: auto;
   }
}

@media(max-width:768px){
    .home-logo img{
    width: 200px;
    height: auto;
  }
  nav{
    margin: 0;
  }
  .iti__country-list{
    width: 300px;
  }
  .bg{
    display: none;
  }
 body{
  max-width: 100vw;
 }
 .phone-input input[type="tel"]{
  width: 100%;
 }
 .certifications{
  margin:20px;
  border-radius: 30px;
 }
 .why-content-section{
  padding: 20px;
 }
 .sponsor ,.turkey{
  margin:60px 20px 0px;
  border-radius: 30px;
 }
 .doctor-pag-container{ margin-top: 0px;}
 .doctors-right.swiper{ padding-bottom: 0px;}
 .comfortable-grid div p{
  font-size: 14px;
  width: 100%;
 }
 .th-img{
  height: auto;
  width: 100%;
 }
 #arrow{
  display: none;
 }
 .promote-container{
  margin: 0;
  padding-top: 50px;
 }
 .stat-item{
  max-width: unset;
 }
 .tech-container{
  padding: 50px 0;
  max-width: 100%;
 }
 .tech-right{
  padding-bottom: 0px;
 }
 
 /* Mobile overflow prevention */
 .hero, .certifications, .why-choose-us, .sponsor, .promote-container,
 .doctors-container, .comfortable-container, .hospital-container, 
 .videos-container, .hotel-container, .international-container, 
 .form, .turkey, .faq-general-cont, .footer-container {
   max-width: 100%;
   overflow-x: hidden;
 }
 
 .swiper, .swiper-wrapper, .swiper-slide {
   max-width: 100%;
 }
 
 .turkey-grid img{
   max-width: 100%;
   width: 100%;
 }
}    

/* Form Validation Styles */
.input-error {
  border: 2px solid #ff4444 !important;
  background-color: rgba(255, 68, 68, 0.05) !important;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.error-message {
  color: #ff4444;
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 10px;
  padding-left: 5px;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

input.input-error::placeholder,
textarea.input-error::placeholder {
  color: #ff6666;
}

.privacy-agreement input.input-error {
  outline: 2px solid #ff4444;
  outline-offset: 2px;
}

.privacy-agreement .error-message {
  margin-left: 25px;
}

/* Focus state for inputs with errors */
input.input-error:focus,
textarea.input-error:focus {
  border-color: #ff4444 !important;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
}

/* Success state (optional - when error is cleared) */
input.input-success,
textarea.input-success {
  border: 2px solid #00B3B3 !important;
