body {
  font-family:'Inter', sans-serif;
}

h1,h2,h3,p,a,li,label,option,select {
   font-family:'Montserrat', sans-serif;
}

/* Hero section */
.main-section {
    position: relative;
    width: 100%;
    height: 150px; /* menü altı yüksekliği */
    min-height: 150px;
    background-size: cover;
    background-position: top center;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.main-container {
    width: 1100px;
    max-width: 95%;
    position: relative;   
}

.main-title {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s forwards;
    animation-delay: 0.5s;

    /* solda alt */
    position: absolute;
    left: 30px;
    bottom: 30px;

    /* text shadow ile gölge */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.main-title i {
  font-size:24px;
  width:40px;
  transform: translateX(30px);
  animation: titleFadeIn 1s forwards;
  animation-delay: 0.5s;    
}

@keyframes titleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Başlıktan sonraki içerik bölümü */
.main-content-section {
    width: 100%;         
    background: #f5f5f5; /* dilersen renk ekleyebilirsin */
}

.main-content-container {
    width: 1100px;
    padding: 20px; 
    max-width: 95%;
    margin: 0 auto; /* ortalama */
    font-size: 18px;
    background: #fff;
}

.main-content-container p {
  padding:20px 20px 0px 20px;
  text-align:justify;
  line-height:1.8;
}

.main-content-container ul {  
  margin-left:30px;
}

.main-content-container b {
  color:#195629;
}

.main-content-container span.www {
  color:#ff5300;
  font-weight:bold;  
  font-family:'Poppins', sans-serif;
}

.main-content-container a {
  text-decoration:none;
  font-weight:bold;
  color:#0000ff;
}

.main-content-container a:hover {
  color:#7575ff;
}

.main-content-container img {
    transform: translateY(30px);
    animation: titleFadeIn 1s forwards;
    animation-delay: 0.5s;
    width:300px;
    height:300px;
    overflow:hidden;
    float:right;
    margin:30px 20px 10px 30px;
    /* text shadow ile gölge */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    border-radius: 10px;
}

.topbar-logo {
  height: 40px;
}


/*--------------------------------------------------------------------------------------------------------------------------------------
  ------------------------------- Main Slider START ------------------------------------------------------------------------------------ 
  --------------------------------------------------------------------------------------------------------------------------------------*/
  
.slider-wrapper { width: 100%; position: relative; }

/* Swiper slide tam ekran (navbar sonrası) */
.mySwiper, .swiper-slide {
  width: 100%;
  height: calc(100vh - var(--navbar-height, 60px));
  display: flex;
  position: relative;
  background-size: cover;
  background-position: top;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: top;
  position: relative;
}

.slider-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.35); z-index:1;
}

.slider-caption { position: absolute; z-index:2; color:#fff; text-align:center; width: auto; max-width: 500px; }

/* Pozisyonlar */
.slide-top-left { top:20px; left:20px; text-align:left; }
.slide-center { top:50%; left:50%; transform: translate(-50%, -50%); }
.slide-bottom-right { bottom:20px; right:20px; text-align:right; }

/* Animasyonlar */
@keyframes fadeInUp {0% {opacity:0; transform: translateY(30px);}100% {opacity:1; transform: translateY(0);}}
@keyframes fadeIn {0% {opacity:0;}100% {opacity:1;}}
@keyframes fadeInScale {0% {opacity:0; transform: scale(0.7);}100% {opacity:1; transform: scale(1);}}

.slider-caption h2 { font-size:3rem; font-weight:700; text-shadow:0 0 8px rgba(0,0,0,0.7); animation: fadeInUp 1s forwards;}
.slider-caption p { font-size:1.2rem; margin:12px 0; text-shadow:0 0 6px rgba(0,0,0,0.6); animation: fadeIn 1.5s forwards;}
.slider-caption a.btn { animation: fadeInScale 2s forwards; transition: transform 0.3s, background 0.3s; }
.slider-caption a.btn:hover { transform: scale(1.1); background-color:#fff !important; color:#000 !important; }

/* Pagination daire */
.swiper-pagination-bullet { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.8);}
.swiper-pagination-bullet-active { background: #fff;}

/*--------------------------------------------------------------------------------------------------------------------------------------
  ------------------------------- Main Slider END -------------------------------------------------------------------------------------- 
  --------------------------------------------------------------------------------------------------------------------------------------*/
  

/*--------------------------------------------------------------------------------------------------------------------------------------
  ------------------------------- info-wrapper START -----------------------------------------------------------------------------------
  --------------------------------------------------------------------------------------------------------------------------------------*/
  
.info-wrapper {
    width: 100%;
    background: #f7f7f7;
    padding: 20px 0; /* Üst–alt boşluk */
}

/* İçerik kısmı 1100px olacak ve ortalanacak */
.info-content {
    width: 1100px;
    max-width: 90%; /* Mobil için */
    margin: 0 auto 20px auto; /* Ortalamayı sağlar */
    background: white; 
    padding:20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);

}

/* Satır: iki kolon olacak */
.info-row {
  display: flex;
  gap: 20px;                /* kolonlar arası boşluk */
  align-items: top;      /* dikey ortalama */
}

/* Sol kolon: başlık + metin */
.info-left {
    flex: 1;
    min-width: 0;
    padding: 0 !important;   /* Sol ve sağ boşlukları tamamen sıfırla */
    margin: 0 !important;    /* Her ihtimale karşı */
    text-align: left;        /* Yazıların sola hizalı olduğundan emin ol */
}

/* Başlık */
.info-title {
  margin: 0 0 12px 0;
  font-size: 28px;
  line-height: 1.15;
  color: #222;
  font-weight:bold;
}

/* Alt Başlık */
.info-sub-title {
  margin: 0 0 12px 0;
  font-size: 24px;
  line-height: 1.15;
  color: #4f4f4f;
}

/* Metin */
.info-text {
  margin-top: 10px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  text-align:justify;
}

/* Sağ kolon: sabit boyutlu resim kutusu */
.info-right {
  width: 400px;             /* sabit genişlik */
  flex: 0 0 400px;         /* esneme yok, tam 300px */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Resim: 300x300, kırpma ve düzgün yerleşim */
.info-right img {
  width: 400px;
  height: 400px;
  object-fit: cover;        /* kırpar, bozulmaz */
  object-position: top;     /* üst kısmı görünür */
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  display: block;
}

/* ---------- Responsive: mobilde alt alta ----------- */
@media (max-width: 900px) {
  .info-content { padding: 18px; }
  .info-row { flex-direction: column; gap: 18px; align-items: stretch; }
  .info-right { width: 100%; flex: 0 0 auto; }
  .info-right img {
    width: 100%;
    height: auto;
    max-height: 400px;     /* istersen sınırlandır */
    object-fit: cover;
  }
  .info-title { font-size: 24px; }
}

/* Küçük telefonlar için biraz daha sıkı ayar */
@media (max-width: 480px) {
  .info-content { padding: 12px; }
  .info-title { font-size: 20px; }
  .info-text { font-size: 15px;}
}

/*--------------------------------------------------------------------------------------------------------------------------------------
  ------------------------------- info-wrapper END -------------------------------------------------------------------------------------
  --------------------------------------------------------------------------------------------------------------------------------------*/
  
  
/*--------------------------------------------------------------------------------------------------------------------------------------
  ------------------------------- icon-list START --------------------------------------------------------------------------------------
  --------------------------------------------------------------------------------------------------------------------------------------*/

.icon-list {
  display: flex;
  flex-wrap: wrap;       /* satır dolunca alt satıra geç */
  gap: 20px;             /* ikonlar arası boşluk */  
  justify-content: center;
  align-items: center;
}

.icon-item {
  padding-top:30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;          /* toplam alan 100px */
}

.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;     /* yuvarlak daire */
  border: 0px solid #195629; /* çerçeve rengi */
  overflow: hidden;       /* taşan resmi kes */
  display: flex;
  opacity:0.7;
  padding:10px;  
  background-color:#f5f3d4;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px #195629;
}

.icon-circle img {
  width: 80%;
  height: 80%;
  object-fit: cover;      /* resim daireyi doldursun, bozulmasın */
}

.icon-title {
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
  font-weight:bold;
  color: #195629;
  height:50px;
}

.icon-item:hover {
  opacity:0.9;
  background:#195629;
  border-radius: 10%; 
  transform: translateY(-15px);
  transition:  transform .4s ease;
}

.icon-item:hover .icon-title {
  color:#fff;
}

.icon-item:hover .icon-circle {
  box-shadow: 0 5px 15px #fff;
}

/*--------------------------------------------------------------------------------------------------------------------------------------
  ------------------------------- icon-list END ----------------------------------------------------------------------------------------
  --------------------------------------------------------------------------------------------------------------------------------------*/
  
  
/*--------------------------------------------------------------------------------------------------------------------------------------
  ------------------------------- footer START -----------------------------------------------------------------------------------------
  --------------------------------------------------------------------------------------------------------------------------------------*/

.footer-info-bar {
  background: #222;
  color: #fff;
  padding: 20px 0;
}

.footer-info-bar a {
  color: #ccc;
  margin-right: 15px;
  text-decoration: none;
}

.footer-info-bar a:hover {
  color: #fff;
}
  
/*--------------------------------------------------------------------------------------------------------------------------------------
  ------------------------------- footer END -------------------------------------------------------------------------------------------
  --------------------------------------------------------------------------------------------------------------------------------------*/
  
