*{
    box-sizing: border-box;
}

body{
  font-family: "Nunito", sans-serif;
    }
header{
    display: flex;
    justify-content: center; 
    align-items: center;    
    height: 100px;           
    background-color: white;
}

/* Gizli Bağlantı SEO */

#hidden-link {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}
/* Gizli Bağlantı Blog*/

#blog-link {
    display: none; /* Gizli yap */
}
    
/* Dil Çevirici Genel Ayarları */
.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Başlangıca hizala */
  gap: 1px; /* Bayraklar arası mesafe */
  margin: 0; /* Çevre boşluğunu sıfırla */
  padding: 0; /* İç boşluğu sıfırla */
}

/* Bayrak Bağlantı Stili */
.language-link {
  text-decoration: none; /* Alt çizgiyi kaldırır */
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out; /* Geçiş efekti */
}

/* Bayrak Stili */
.flag-icon {
  width: 30px; /* Bayrak genişliği */
  height: 30px; /* Bayrak yüksekliği */
  border-radius: 50%; /* Yuvarlak yapmak için */
  border: 3px solid #ddd; /* Bayrağın çevresine ince çerçeve */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Hafif gölge */
  transition: all 0.3s ease-in-out; /* Geçiş efekti */
}

.language-link:hover .flag-icon {
  transform: scale(1.1); /* Hoverda büyüme efekti */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .language-switcher {
    flex-wrap: nowrap; /* Tek satırda kalmasını sağla */
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1px; /* Daha geniş boşluk */
  }

  .flag-icon {
    width: 25px; /* Daha küçük bayrak boyutu */
    height: 25px;
  }
}

/* Dil Çevirici Genel Ayarları */ 
    
/* Genel Menü */
#menu {
    position: relative;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo {
    max-width: 150px;
}

/* Hamburger Animasyonu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000; /* Siyah renk */
    transition: all 0.3s ease;
}

/* Hamburger Animasyon Aktif */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Sidebar Menü */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* Şeffaf arka plan */
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9;
}


.sidebar-menu.open {
    transform: translateX(0);
}

.nav-links a {
    display: block;
    padding: 15px 20px;
    color: #000000;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px; /* Yazı boyutunu artırdık */
}

.nav-links {
    padding-top: 100px; /* Bu satır eklenerek yazılar aşağı kaydırılır */
}

.nav-links a:hover {
    background: #f57c00;
    color: #fff;
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* === Teklif Alın Butonu === */
.quote-button {
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    padding: 8px 15px;
    transition: all 0.3s ease;
    font-size: 18px; /* Yazı boyutunu artırdık */
}

.quote-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}


 /* Homepage Settings */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: #f9f9f9;
}

#homepage {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Black Overlay */
#black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* Add opacity if needed */
}

/* Content Section */
#content {
    position: relative;
    z-index: 2;
    text-align: center;
}

#content h2 {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #f59e0b, #ef4444); /* Gradient Color */
    -webkit-background-clip: text; /* Apply background to text only */
    color: transparent; /* Make text color transparent */
}

hr {
    width: 50%;
    margin: 20px auto;
    border: 2px solid #f4a261;
}

/* Typewriter Effect */
#typewriter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
}

.typewriter-text {
    display: inline-block;
    animation: blink 0.7s steps(1) infinite;
}

/* Static Subtext */
#subtext {
    margin-top: 2cm;
    font-size: 1.2rem;
    color: gray;
    font-weight: bold;
}

/* Mobile Compatibility */
@media (max-width: 768px) {
    #content h2 {
        font-size: 2rem;
    }

    #typewriter {
        font-size: 2rem;
    }

    #subtext {
        font-size: 1rem;
        margin-top: 1.5cm;
    }
}

/* Genel Ayarlar */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Kahraman Bölümü (Hero Section) */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    color: #ffffff; /* Daha açık ve net metin rengi */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Daha açık bir overlay ile kontrastı artırır */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
    color: #000000; /* Siyah renk */
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7); /* İstenirse açık renk gölgeyle okunabilirlik artırılır */
}


.hero-content h1 .highlight {
    color: #FFA500; /* Orange renk kodu */
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #000000; /* Siyah renk */
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5); /* İstenirse açık renk gölgeyle kontrast artırılır */
}


/* Düğme Stil Ayarları */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background: #FF4500; /* Daha koyu bir turuncu tonu */
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: #E63900;
}

.btn-secondary {
    background: transparent;
    color: #FFA500; /* Altın sarısı ile yüksek kontrast */
    border: 2px solid #FFA500;
}

.btn-secondary:hover {
    background: #FFA500;
    color: #000; /* Altın üzerine siyah metin ile yüksek kontrast */
}



/* General Section Styling */
#hakkimizda {
    padding: 60px 0;
    background-color: white;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Title Styling */
#hakkimizda h2 {
    font-size: 2.5em; /* Ana başlık h2 olacak */
    font-weight: 700;
    color: #2b2b2b;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Subtitle Styling */
#hakkimizda h3 {
    font-size: 2em; /* Alt başlık h3 */
    font-weight: 600;
    color: #2b2b2b;
    text-align: center;
    margin-bottom: 30px;
}

#sol, #sag {
    margin-bottom: 30px; /* Alt boşluk */
}

/* Image Styling */
#hakkimizda .img-fluid {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Column Styling */
#hakkimizda .row {
    margin-top: 20px;
    gap: 40px;
}

#sol, #sag p { 
    font-size: 1.15em;
    line-height: 1.75;
    color: #555;
    margin: 0;
    padding: 10px 20px;
    text-align: left;
}

/* Left Column Specific Styling */
#sol {
    font-weight: 600;
    color: #3b3b3b;
    border-left: 4px solid #2d9cdb;
    padding-left: 15px;
    background-color: #f7f9fc;
    border-radius: 4px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}

/* Right Column Specific Styling */
#sag p {
    background-color: #fdfdfd;
    font-weight: 400;
    border-radius: 4px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}

/* Final Paragraph Styling */
#pSon {
    font-size: 1.05em;
    color: #666;
    font-style: italic;
    margin-top: 40px;
    text-align: center;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Styling */
@media (max-width: 992px) {
    #sol, #sag p {
        font-size: 1em;
        text-align: center;
    }

    .row {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #hakkimizda h2 {
        font-size: 2em; /* Başlık boyutu mobilde küçülmeli */
        margin-bottom: 20px;
    }

    #sol, #sag p {
        font-size: 1em;
        padding: 10px;
    }

    #hakkimizda .img-fluid {
        max-width: 100%;
        margin-bottom: 30px;
    }

    #pSon {
        font-size: 1em;
        padding: 10px;
    }
}


/* Neler Yapıyoruz */


body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Başlık Stili */
#neler-yapiyoruz h3 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Kart Konteyner */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

/* Kart Stili */
.card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Resim için Stil */
.card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

/* Kart Başlık Stili */
.baslikcard {
    font-size: 1.5em;
    color: #444;
    margin: 20px 10px 10px;
    text-align: center;
    transition: color 0.3s ease;
}

.card:hover .baslikcard {
    color: #007bff;
}

/* Kart Açıklama Stili */
.cardp {
    font-size: 1em;
    color: #666;
    margin: 10px 15px 20px;
    line-height: 1.6;
    text-align: center;
    transition: color 0.3s ease;
}

.card:hover .cardp {
    color: #555;
}

/* Hover Etkisi için Renkli Çizgi */
.card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background-color: #007bff;
    transition: width 0.3s ease, left 0.3s ease;
}

.card:hover::before {
    width: 100%;
    left: 0;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .card {
        width: 100%;
    }
}


#işlerimiz {
    padding: 50px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.owl-carousel .item {
    width: auto;
    /* Her öğenin doğal genişliğini kullanmasını sağlar */
    margin: 10px;
    /* Öğeler arasındaki boşluğu ayarlayın */

    position: relative;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
    display: table-footer-group;
    justify-content: center; /* Öğeleri yatayda ortalar */
    align-items: center; /* Öğeleri dikeyde ortalar */
}

.owl-carousel .item img {
    width: 100%; /* Resimlerin öğeyi tam olarak doldurmasını sağlar */
    height: auto; /* Resmin boyutlarını korur */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.owl-carousel .item:hover img {
    transform: scale(1.05);
}

.card .baslikcard {
    margin-top: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.card .cardp {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.btn-ozel {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-ozel:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .owl-carousel .item {
        width: 80%; /* Mobilde öğelerin genişliğini daha küçük yap */
    }
}
.container {
    width: 100%; /* Container genişliğini tüm ekran genişliğine yayar */
    max-width: 1200px; /* İstediğiniz maksimum genişliği ayarlayabilirsiniz */
    margin: 0 auto; /* Ortalamak için */
    width: 100%; /* Tam genişlik */
    padding-left: 20px;
    padding-right: 20px;
}


/* Bizi neden tercih etmelisiniz */

/* Global Ayarlar */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Neden Biz Bölümü */
.why-choose-us {
    padding: 80px 20px;
    background: #ffffff;
    color: black;
    text-align: center;
    border-radius: 15px;
    
}

.why-choose-us h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
}

.why-choose-us h2 .highlight {
    color: #FFA500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: #ffffff;
    color: #333;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.benefit-item .icon {
    font-size: 40px;
    color: #FFA500;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1em;
    line-height: 1.6;
}

/* CTA Bölümü */
.cta {
    margin-top: 50px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    text-decoration: none;
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: #fff;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}




/* Katagori Menü Stili */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 15px;
    max-width: 300px;
    flex: 1 1 250px;
    /* Kartların boyutları esnek ve uyumlu olacak */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
}


.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.baslikcard {
    font-size: 18px;
    text-align: center;
    color: black;
    margin: 10px 0;
}

.cardp {
    color: #333; /* Daha koyu bir renk ile kontrast artırabilirsiniz */
    font-size: 1.1rem; /* Yazı boyutunu biraz büyüterek okunabilirliği artırın */
    line-height: 1.6; /* Satır aralığını ayarlayarak daha rahat bir okuma sağlar */
    font-weight: 500; /* Yazıyı biraz daha kalın yaparak dikkat çekmesini sağlayın */
    opacity: 1; /* Yazının tamamen görünür olmasını sağla */
    transition: all 0.3s ease; /* Hover etkisi için yumuşak geçiş ekleyin */
}

/* Opsiyonel: Hover efekti ile etkileşimi artırabilirsiniz */
.card:hover .cardp {
    color: gray; /* Hover durumunda yazı rengini değiştirin */
    font-weight: 600; /* Hover durumunda yazıyı daha kalın yapın */
}


#customer-feedback {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

#customer-feedback h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

#customer-feedback p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 40px;
}

/* Katagori Menü Stili */



/* Misyon,vizyon.. vb. */

/* Genel stil */
#mission-vision-values {
    background-color: white;
    padding: 50px 20px;
    text-align: center;
    overflow: hidden; /* Animasyon taşmalarını önler */
    margin: 0; /* Varsayılan boşlukları engeller */
}

.cards-container .card {
    transform-origin: center center; /* Ölçekleme için */
}

#mission-vision-values h2 {
    font-size: 36px;
    text-align: center;
    color: #000;
    margin-bottom: 40px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* Kart yapısı */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto; /* Ekstra boşluk oluşmasını engeller */
    padding: 0; /* Varsayılan padding kaldırılır */
    width: 100%; /* Kartlar container'a tam oturur */
    box-sizing: border-box; /* Kenarlık ve padding hesaplanır */
}

.card {
    background: white;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Genişlik sorunlarını çözer */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Özel renk gradyanları */
.mission-card {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
}

.vision-card {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.values-card {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

/* SVG simgeleri */
.icon {
    text-align: center;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}

.card p,
.card ul {
    font-size: 16px;
    color: #f0f0f0;
    line-height: 1.6;
}

.card ul {
    list-style: none;
    padding: 0;
    color: #f0f0f0;
}

.card li {
    padding-left: 10px;
    position: relative;
    margin-bottom: 10px;
}

.card li::before {
    content: "•";
    color: #FFFFFF;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .cards-container {
        
        align-items: center; /* Kartları merkeze hizalar */
        gap: 20px; /* Kartlar arasındaki boşluk */
        margin: 0; /* Ekstra boşluk oluşmasını engeller */
        padding: 0; /* Mobilde fazla boşluk kaldırılır */
        width: 100%; /* Genişlik taşmalarını engeller */
    }

    .card {
        width: calc(100% - 40px); /* Ekran kenarlarına yapışmayı engeller */
        margin: 0 auto; /* Kartları ortalar */
    }
}

/* Tüm ekrandan taşmayı engelleyecek genel ayar */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Yatay kaydırmayı kaldırır */
}

/* Misyon,vizyon.. vb. */

/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* Genel Bölüm Stili */
#features {
    display: flex;
    background: #ffffff;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 0;
}

.feature {
    width: 250px;
    height: 300px;
    perspective: 1000px; /* 3D perspektif efekti için */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s; /* Döndürme animasyonu */
}

.feature:hover .flip-card-inner {
    transform: rotateY(180deg); /* Üzerine gelindiğinde 180 derece döner */
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Arka yüzün görünürlüğünü kapatır */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
}

.flip-card-front {
    background-color: #ffffff; /* Ön yüz beyaz arka plana sahiptir */
}

.flip-card-back {
    background: linear-gradient(135deg, #10b981, #3b82f6); /* Arka yüz mavi arka plana sahiptir */
    color: #ffffff;
    transform: rotateY(180deg);
}

/* İkon Stili */
.icon img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

/* Başlık ve Metin Stili */
.flip-card-front h3, .flip-card-back h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.flip-card-front p, .flip-card-back p {
    font-size: 0.9em;
    line-height: 1.6;
    text-align: center;
}

/* Duyarlı (Responsive) Stil */
@media (max-width: 768px) {
    #features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 80%;
    }
}

          #iletisim {
              text-align: center;
              /* Yatayda ortalama */
              background-color: gray;
              height: 300px;
              background-image: url("../resim/RSC%20Yaz%C4%B1l%C4%B1m%20%20%C4%B0LET%C4%B0%C5%9E%C4%B0M.webp");
              background-size: cover;
              background-position: center;
              background-attachment: fixed;
              display: flex;
              align-items: center;
              /* Dikey hizalama */
          }

          #iletisim h1 {
              font-size: 36px;
              margin: 0 auto;
              text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
              color: white;
              /* Daha görünür olması için */
          }

          .top-bar {
              background: rgba(255, 255, 255, 0.1);
              /* Şeffaf bir beyaz arka plan */
              padding: 15px 10px;
              text-align: center;
              margin-bottom: 30px;
              border-radius: 20px;
              /* Köşelerin yuvarlatılması */
              box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
              /* Hafif bir gölge */
          }

          .top-bar h1 {
              color: #004085;
              /* Daha koyu bir mavi ton */
              font-size: 32px;
              /* Daha büyük font */
              font-family: 'Poppins', sans-serif;
              /* Modern bir yazı tipi */
              font-weight: 700;
              /* Kalın font */
              margin: 0;
              text-transform: uppercase;
              /* Büyük harfler */
              letter-spacing: 1.5px;
              /* Harf arası boşluk */
          }

          .container1 {
              max-width: 1200px;
              margin: auto;
              padding: 20px;
              display: flex;
              justify-content: space-between;
              align-items: flex-start;
              gap: 20px;
          }

          .contact-info {
              flex: 1;
              margin: 0;
              padding: 20px;
              background: rgba(255, 255, 255, 0.8);
              border-radius: 20px;
              box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          }

          .contact-info h3 {
              font-size: 26px;
              margin-bottom: 25px;
              color: #FFA500;
              font-family: 'Poppins', sans-serif;
              font-weight: 700;
              text-transform: uppercase;
              letter-spacing: 1.2px;
              border-bottom: 2px solid rgba(0, 123, 255, 0.5);
              padding-bottom: 10px;
          }

          .contact-info p {
              margin: 15px 0;
              font-size: 18px;
              color: black;
              display: flex;
              align-items: center;
              line-height: 1.6;
              font-family: 'Roboto', sans-serif;
          }

          .contact-info p i {
              margin-right: 15px;
              font-size: 20px;
              color: #FFA500;
              transition: transform 0.3s ease, color 0.3s ease;
          }
          
          .contact-info p:hover i {
              color: black;
              transform: scale(1.2);
          }

          form {
              flex: 1;
              background: #f7f7f7;
              padding: 40px;
              border-radius: 10px;
              box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          }

          form label {
              font-weight: 600;
          }

          form input,
          form textarea {
              width: 100%;
              padding: 10px;
              margin-bottom: 15px;
              border: 1px solid #ddd;
              border-radius: 5px;
              font-size: 16px;
          }

          form button {
              background-color: #FFA500;
              color: #fff;
              padding: 10px 20px;
              border: none;
              border-radius: 5px;
              font-size: 16px;
              cursor: pointer;
              transition: background 0.3s ease;
          }

          form button:hover {
              background-color: black;
          }

          @media (max-width: 768px) {
              .container1 {
                  flex-direction: column;
              }
          }
input[type="submit"] {
    cursor: pointer;
    background-color: #FFA500;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 30px;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #FFA500;
}


    .social-media-list {
        display: flex;
        justify-content: flex-start; /* İkonları tam sola yaslar */
        padding: 0;
        margin: 0;
    }

    .social-icon {
        font-size: 20px;
        display: inline-block;
        margin: 0 5px;
        color: #fff;
        transition: color 0.3s ease, transform 0.3s ease;
        text-decoration: none;
    }

    .social-icon i {
        transition: transform 0.3s ease;
    }

    /* Facebook Renk ve Hover */
    .social-icon.facebook {
        color: #3b5998;
    }
    .social-icon.facebook:hover {
        color: #8b9dc3;
        transform: scale(1.2);
    }

    /* Instagram Gradient Renk ve Hover */
    .social-icon.instagram {
        background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
        -webkit-background-clip: text;
        color: transparent;
    }
    .social-icon.instagram:hover {
        transform: scale(1.2);
    }

  
    /* Hover Efekti */
    .social-icon:hover {
        transform: scale(1.2);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
        animation: rotateIcon 0.6s ease;
    }

    /* Dönen Animasyon */
    @keyframes rotateIcon {
        0% {
            transform: scale(1.2) rotate(0deg);
        }
        50% {
            transform: scale(1.3) rotate(180deg);
        }
        100% {
            transform: scale(1.2) rotate(360deg);
        }
    }

    /* Mobile responsiveness */
    @media screen and (max-width: 768px) {
        .social-media-list {
            justify-content: center; /* Orta hizalama */
        }

        .social-icon {
            margin: 0 5px; /* Mobilde daha yakın ikonlar */
            font-size: 18px; /* Küçük ekranlarda ikon boyutunu küçült */
        }
    }




/* WhatsApp İkonu */
/* WhatsApp butonunu sabitle */
.wa__btn_popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* WhatsApp ikonu üzerine tıklanırsa büyüme */
.wa__btn_popup:hover {
    transform: scale(1.1);
}

/* İkon kısmı */
.wa__btn_popup_icon {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Yazı kısmı (buton yazısı) */
.wa__btn_popup_txt {
    display: none; /* Yazıyı gizleyebilirsiniz, sadece ikon gözükür */
}


.wa__btn_popup_icon {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wa__popup_chat_box {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 300px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wa__popup_chat_box.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.wa__popup_chat_box.hide {
  transform: translateY(20px);
  opacity: 0;
}

.wa__popup_heading {
  padding: 10px;
  background-color: #25d366;
  border-radius: 10px 10px 0 0;
  color: #ffffff;
}

.wa__popup_title {
  font-size: 16px;
  font-weight: bold;
}

.wa__popup_intro {
  font-size: 12px;
}

.wa__popup_content {
  padding: 10px;
}

.wa__popup_content_list {
  display: flex;
  flex-direction: column;
}

.wa__popup_content_item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.wa__popup_content_item:hover {
  background-color: #f1f1f1;
}

.wa__popup_avatar {
  margin-right: 10px;
}

.wa__popup_txt .wa__member_name {
  font-weight: bold;
  font-size: 14px;
}

/* Animation for button hover */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.wa__btn_popup:hover {
  animation: bounce 0.5s ease-in-out;
}

/* Show Popup with fade in effect */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa__popup_chat_box.show {
  animation: fadeIn 0.5s ease-out forwards;
}




