/***/

/* Box-sizing ve margin, padding sıfırlama */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTML ve Body'yi sıfırlama */
html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* Liste ve bağlantıları sıfırlama */
ul,
ol {
  list-style: none;
}

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

/* Görsellerin taşmasını önleme */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Form elementlerini sıfırlama */
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Tablo stillerini sıfırlama */
table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: 0;
  text-align: left;
}

/**/
button{
  cursor: pointer;
}
.nav-menu { 
    padding: 15px 40px; 
    width: 100%;
    position: absolute;
    z-index:99;
}

 .nav-menu .menu {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  padding: 20px 50px;
  align-items: center;
  border-radius: 15px;
  color: #fff;
  backdrop-filter: blur(30px); /* Arka planı bulanıklaştır */
  -webkit-backdrop-filter: blur(10px); /* Safari desteği için */
}

 .nav-menu .menu  h1 {
  display: inline; 
  font-size: 24px;
}

.nav-menu .menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Esnek hizalama için */
    justify-content: flex-end; /* Ortaya hizalama */
    align-items: center; /* Dikey hizalama */
    flex-direction: row; /* Sıralamayı ters çevirerek sağdan başlatma */
  }
  
 .nav-menu .menu ul li {
    padding: 10px; 
    font-size: 20px;
  }

  .nav-menu .menu ul li a.active{
 color: #fff;
 font-weight: 700;
  }

  #menu-toggle { 
    display: none;
  }
/***/
.header {
    background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(assets/clinic.webp) ;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}



  .header .banner {
    display: flex; 
    height: 100%;
    position: absolute;
    top: 0; 
    padding: 130px 0 0 150px;
    
    
  }
  .header .banner img{
    align-self:end;
    justify-self: end;
 
  height: 100%;
  object-fit: cover; /* Resmin oranlarını koruyarak div'e tam oturmasını sağlar */
  }
  .header .banner .banner-text {
    color:#fff;
    grid-column: 2/2;
    padding: 15px 100px;
  }

  .header .banner .banner-text  h2{
    font-size:59px;
  }

  .header .banner .banner-text  p{
    font-size:20px;
    padding: 10px 30px 0 0;
    line-height: 1.5;

  }

  .header .banner .banner-text  .btn{
    background-color: #273C76;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 25px;
    float:right;
    cursor: pointer;
  }

.header .banner .banner-text  .social-media{
    position: absolute;
    bottom: 50px;
    right: 35px;
}

/***/

.information-hair{ 
}

.information-hair > .title{
    padding: 15px 20px 0 0;
    margin-left: 60px;
    border-bottom: 20px solid #273C76;
    width: max-content;
}

.hair-transplant{
    width: 100%; 
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center;
    padding: 50px 0;
    
}
.information-hair .title h1{
  color:#273C76;
  font-size: 40px;
  font-weight: lighter;  
  border:none;
}

.hair-transplant .title h1{
    padding: 15px 60px;
    border:none;
    font-weight: bolder;
}


.hair-transplant .content .text{
    font-size: 25px;
    color:#273C76;
}

.hair-transplant .btn{
    background-color: #273C76;
    color: #fff;
    padding: 0 20px;
    border-radius: 25px;
    font-size: 25px;
    float:right;
    margin-right:35px;
    margin-top:20px;
}

/**/


.contact-us {
  background-image: url(assets/contact-us.png) ;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

 
.contact-us .banner {
  display: grid;
  grid-template-columns: 2fr 2fr;
  align-items: baseline;
  height: 100%;
}

.contact-us .banner  > .title{
  padding: 15px 20px 0 0;
  margin-left: 100px;
  border-bottom: 20px solid #fff;
  width: max-content;
  color: #fff;
  margin-top: 150px;
}


.contact-us .banner .banner-text {
  color: #fff;
  grid-column: 2/2;
  padding: 15px 0;
  width: 75%;
  margin: 0 auto;
  align-self: center;
}

.contact-us .banner .banner-text  h2{
  font-size:59px;
}

.contact-us .banner .banner-text  p{
  font-size:20px;
  padding: 10px 30px 0 0;
  line-height: 1.5;

}

.contact-us .banner .banner-text  .btn{
  background-color: #31A737;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 25px;
  
}

.contact-us .banner .banner-text  .social-media{
  position: absolute;
  bottom: 50px;
  right: 35px;
}

 
.form-container {
  
  backdrop-filter: blur(10px); /* Arka planı bulanıklaştır */
  -webkit-backdrop-filter: blur(10px); /* Safari desteği için */
 
  padding: 20px;
  border-radius: 10px;
  
  margin: auto; 
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.form-control {
  margin-bottom: 15px;
}
.btn-custom {
  background-color: #28a745;
  color: white;
  font-weight: bold;
  width: 100%;
}
.btn-custom:hover {
  background-color: #218838;
}
.flag-icon {
  width: 20px;
  height: auto;
  margin-right: 8px;
}

.form-container input {
  background-color: #fff;
  color: #273C76;
  width: 100%;
  padding: 15px;
  border-radius: 10px;

}
/**/

.footer{
    background: url(assets/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #273C76;
    height: 458px;
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.footer .container {
  padding: 100px;
}

.footer .contact h3{
  color: #fff;
  font-size:35px;
  font-weight: bolder;
}

.footer .contact ul li{
  color:#fff;
  font-size:20px;
  padding: 15px 0;

  display: flex;
    align-items: center;  /* Dikey hizalama */ 
    gap: 8px; /* İkon ve yazı arasında boşluk bırakır */
    list-style: none; /* Eğer nokta veya simge varsa kaldırır */
    height: 50px; /* Örnek bir yükseklik */
}


.footer .container.logos ul li{
  text-align: -webkit-center;
  padding: 10px 25px;
  margin-bottom: 10px;
  background-color: #fff;
}

/**/


.summary {
  display: grid;
  grid-template-columns: 2fr 2fr;
justify-items: center;
align-items: center;
}
.summary .longStory {
  padding-right: 200px;
  color:#273C76;
}
.summary .longStory h3{
  font-size: 35px;
  margin-bottom: 15px;
}

.summary .longStory p{
  font-size: 25px;
  text-align: justify;
}

.summary img{
  width: 400px;
}

.summary .img-doctor{
  justify-self: end;
  margin-right: 40px;
}
/* */


.timeline {
  position: relative;
  margin-left: 57px;
  width: 50%;
  margin: 0 auto;
  margin-top: 50px;
}

/* Main vertical line */
.timeline .line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #273C76;
}

/* Sections */
.timeline .section {
  position: relative;
  padding-left: 30px;
  margin-bottom: 40px;
}

.timeline .section::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #273C76;
}

.timeline .experience-item, .certification-item {
  position: relative;
  margin-bottom: 25px;
}

.timeline .experience-item::before, .certification-item::before {
  content: '';
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  top:3px;
  border-radius: 50%;
  background: white;
  border: 2px solid #273C76;
}

.timeline .section-title {
  color: #273C76;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.timeline .job-title {
  color: #273C76;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 5px;
}

.timeline .date {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

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

.timeline li {
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.timeline li::before {
  content: '-';
  position: absolute;
  left: 0;
}

.timeline .member-info {
  color: #666;
  font-size: 14px;
  margin: 3px 0;
}

.hair-transplant.details{
  display:block;
  padding: 0 60px;
}
/**responsive**/

@media screen and (max-width: 768px) {
  
  .nav-menu .menu{
    padding: 15px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .nav-menu{
    padding: 5px 10px;
  }
  .nav-menu .menu h1{
    font-size:15px;
  }
  .nav-menu .menu ul { 
    flex-direction: column; /* Sıralamayı ters çevirerek sağdan başlatma */
  }
  .nav-menu .menu ul li{
    font-size:15px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 4px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

nav {
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
  background: #273C76;
  display: none;
  border-radius: 0 0 15px 15px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li { 
  width: 100%;
  text-align: center;
}

nav ul li a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background: #555;
}

/* Menü Açıkken Göster */
nav.show {
  display: block;
}
#menu-toggle { 
  display: block;
}

.header .banner .banner-text{
  padding: 0 0 10px 0;
  align-self: center;
}
.header .banner .banner-text h2{
  font-size:24px;
}
.header .banner .banner-text p{
  font-size:10px;
  padding: 0;
}
.header .banner .banner-text .btn{
  font-size:15px;
  margin-top: 15px;
}
.footer .container{
  padding: 10px;
}
.footer{
  padding: 15px 5px;
}

/**/

.summary{
  display: block;
}
.summary .longStory{
  padding: 25px;
}

.summary .longStory p{
  font-size:15px;
}
.timeline{
  width: 85%;
}
.summary .img-doctor{
  justify-self: unset;
  margin:0;
}

.hair-transplant{
  display: block;
}

.hair-transplant .title h1{
  font-size: 30px; 
  padding: 15px 30px;
 
}
.hair-transplant .content .text{
  padding: 15px 30px;
}
.hair-transplant .btn{
  margin-top: 0;
}

.contact-us .banner{
  display: block;
}
.contact-us .banner > .title{
  margin-top: 0;
  padding-top:100px ;
  margin-left: 13px;
}
.contact-us .banner .banner-text .btn{
  cursor: pointer;
}

.header .banner{
  position: static;
  padding: 0;

}

.header .banner img{
  align-self:end;
  height:80%;
  
  width: 50vw;
}

.header{
  height: 50vh;
  padding: 0 10px 0 0;
}
.information-hair > .title{ 
  margin-left: 30px; 
}

.contact-us .banner .banner-text { 
  width: 95%; 
}
/**/

.hair-transplant.details{
  display:block;
  padding: 0;
}
}
