body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#f5f7fb;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===== HEADER ===== */

.topbar{
    background:white;
    border-bottom:1px solid #eee;
    padding:14px 0;
}

.header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo{
    height:55px;
}

.logo-area{
    flex:1;
}

.main-menu{
    display:flex;
    gap:22px;
}

.main-menu a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:500;
    position:relative;
}

.main-menu a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0;
    height:2px;
    background:#f58220;
    transition:.3s;
}

.main-menu a:hover::after{
    width:100%;
}

.menu-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.btn-soft{
    background:#eaf1fb;
    color:#0b1f3a;
    padding:10px 16px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
}

.btn-main{
    background:#ff2f2f;
    color:white;
    padding:11px 20px;
    border-radius:10px;
    font-weight:700;
    box-shadow:0 6px 16px rgba(255,0,0,.25);
    text-decoration:none;
}

.phone{
    color:#ff2f2f;
    font-weight:700;
    font-size:15px;
}

/* ===== HERO ===== */

.hero{
    position:relative;
    background:url('../images/hero-bg.jpg') center center / cover no-repeat;
    height:45vh;
    display:flex;
    align-items:center;
    padding-left:8%;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(230,245,255,0.75);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
}

.hero-content h1{
    font-size:46px;
    font-weight:800;
    margin-bottom:14px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
    color:#333;
}

/* SEARCH */

.search-box{
    background:white;
    padding:18px;
    border-radius:14px;
    display:flex;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    margin-bottom:22px;
}

.search-box input{
    flex:1;
    border:none;
    font-size:16px;
    padding:12px;
    outline:none;
}

.search-box button{
    background:#ff0000;
    border:none;
    color:white;
    padding:14px 34px;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
}

/* TAGS */

.hero-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.hero-tags span{
    color:#0b1f3a;
    font-size:14px;
    cursor:pointer;
    text-decoration:underline;
}

/* ===== HAMBURGER ===== */

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.hamburger span{
    width:26px;
    height:3px;
    background:#0b1f3a;
    border-radius:2px;
}

/* ===== HOME JOBS ===== */

.home-jobs{
    padding:70px 8%;
    background:#f6f9fc;
}

.section-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:35px;
    color:#0b2545;
}

.job-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:28px;
}

.job-card{
    background:#fff;
    padding:24px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.job-card:hover{
    transform:translateY(-6px);
}

.job-card h3{
    font-size:18px;
    margin-bottom:10px;
    color:#0b2545;
}

.job-company{
    color:#f77f00;
    font-weight:600;
}

.job-location,
.job-salary{
    font-size:14px;
    color:#555;
}

.job-btn{
    display:inline-block;
    margin-top:14px;
    background:#0b2545;
    color:#fff;
    padding:11px 20px;
    border-radius:10px;
    text-decoration:none;
}

.urgent-badge{
    position:absolute;
    top:14px;
    right:14px;
    background:#ff2d2d;
    color:#fff;
    font-size:12px;
    padding:6px 12px;
    border-radius:20px;
    font-weight:600;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1200px){
    .job-grid{ grid-template-columns: repeat(3,1fr); }
}

@media(max-width:900px){

    .main-menu,
    .menu-actions{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .main-menu{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        padding:20px;
        box-shadow:0 10px 25px rgba(0,0,0,.15);
        z-index:999;
    }

    .main-menu.active{
        display:flex;
    }

    .main-menu a{
        padding:12px 0;
        border-bottom:1px solid #eee;
        font-size:16px;
    }

    .hero{
        height:40vh;
        padding-left:5%;
        text-align:center;
    }

    .hero-content h1{ font-size:32px; }

    .hero-content p{ font-size:16px; }

    .search-box{
        flex-direction:column;
    }

    .search-box button{
        width:100%;
    }

    .job-grid{ grid-template-columns: repeat(2,1fr); }
}

@media(max-width:500px){
    .job-grid{ grid-template-columns:1fr; }
}


.ilan-grid{
    display:grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap:20px;
    margin-top:25px;
}

.ilan-card{
    background:#fff;
    border-radius:14px;
    padding:18px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:.3s ease;
    position:relative;
    display:flex;
    flex-direction:column;
}

.ilan-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 35px rgba(0,0,0,0.12);
}

.ilan-salary{
    background:#ff6a00;
    color:#fff;
    font-weight:600;
    padding:6px 12px;
    border-radius:30px;
    display:inline-block;
    font-size:14px;
    margin-bottom:12px;
}

.fav-btn{
    position:absolute;
    top:15px;
    right:15px;
    background:#f5f7fb;
    border:none;
    border-radius:50%;
    width:38px;
    height:38px;
    font-size:18px;
    cursor:pointer;
    transition:.2s;
}

.fav-btn:hover{
    background:#ff6a00;
    color:#fff;
}

.ilan-title{
    font-size:18px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:8px;
}

.ilan-location{
    color:#64748b;
    font-size:14px;
    margin-bottom:12px;
}

.ilan-card p{
    color:#444;
    font-size:14px;
    line-height:1.6;
    flex:1;
}

.ilan-btn{
    margin-top:15px;
    text-align:center;
    background:#0f172a;
    color:#fff;
    padding:10px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.2s;
}

.ilan-btn:hover{
    background:#ff6a00;
}



.ilan-detail-box{
    background:#fff;
    border-radius:18px;
    padding:28px;
    max-width:850px;
    margin:40px auto;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.detail-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.detail-header h1{
    font-size:28px;
    font-weight:800;
    color:#0f172a;
}

.detail-info{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.detail-info span{
    background:#f1f5f9;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    color:#334155;
    font-weight:600;
}

.detail-content{
    background:#f9fafb;
    padding:20px;
    border-radius:14px;
    line-height:1.8;
    color:#111827;
    font-size:15px;
}

.detail-content p{
    margin-bottom:12px;
}

.ilan-detail-box hr{
    border:none;
    height:1px;
    background:#e5e7eb;
    margin:30px 0;
}

/* BAŞVURU */

.ilan-detail-box h3{
    font-size:22px;
    margin-bottom:15px;
}

.ilan-detail-box form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.ilan-detail-box input[type="file"]{
    flex:1;
    padding:10px;
    border:1px solid #e5e7eb;
    border-radius:10px;
}

.ilan-detail-box button{
    background:#ff6a00;
    border:none;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.ilan-detail-box button:hover{
    background:#0f172a;
}


/* MODERN FİLTRE */

.filter-modern{
    background:#fff;
    padding:16px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin:20px 0 35px;
}

.filter-modern form{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.filter-modern input,
.filter-modern select{
    padding:12px 14px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    font-size:14px;
    outline:none;
    min-width:160px;
}

.filter-modern button{
    background:#ff6a00;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.filter-modern button:hover{
    background:#0f172a;
}

@media(max-width:700px){
    .filter-modern form{
        flex-direction:column;
    }
}









.popular-searches{
  padding:90px 8%;
  background:#ffffff;
  text-align:center;
}

.popular-searches h2{
  font-size:32px;
  color:#0a1f44;
  margin-bottom:40px;
}

.search-tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
}

.search-tag{
  background:#f1f5fb;
  padding:14px 26px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  color:#0a1f44;
  transition:.3s;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.search-tag:hover{
  background:#ff6a00;
  color:#fff;
  transform:translateY(-4px);
}

/* Mobil */

@media(max-width:600px){
  .search-tag{
    font-size:14px;
    padding:12px 20px;
  }

  .popular-searches h2{
    font-size:26px;
  }
}







.sea-slider{
  background:#7b1fa2;
  width:100%;
  padding:60px 0;
}

.sea-slider-inner{
  max-width:1200px;
  margin:0 auto;
  position:relative;
  min-height:220px;   /* ÇÖKMEMESİ İÇİN */
  display:flex;
  align-items:center;
}

/* SLIDES */
.sea-slide{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  display:flex;
  align-items:center;
  gap:40px;
  color:#fff;
  opacity:0;
  transition:opacity 1s ease;
  padding:0 60px;
}

.sea-slide.sea-active{
  opacity:1;
  position:relative;
}

/* IMAGE */
.sea-slide img{
  width:220px;
  height:150px;
  object-fit:cover;
  border-radius:14px;
}

/* TEXT */
.sea-text h3{
  font-size:28px;
  margin-bottom:8px;
}

.sea-text p{
  font-size:16px;
}

/* Mobilde sağ-sol kaymayı engelle */
.sea-slider{
  overflow-x:hidden;
}

/* Slider mobil uyum */
@media (max-width: 768px){

  .sea-slider{
    padding:40px 0;
  }

  .sea-slider-inner{
    max-width:100%;
    padding:0 16px;      /* kenarlara nefes */
    min-height:260px;    /* alt alta geçince yeterli alan */
  }

  .sea-slide{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    padding:0;           /* mobilde büyük padding taşır */
  }

  .sea-slide img{
    width:100%;
    max-width:340px;     /* taşmayı engeller */
    height:160px;
  }

  .sea-text h3{
    font-size:20px;
  }

  .sea-text p{
    font-size:14px;
  }
}



/* KURUMSAL TANITIM */

.about-sea{
  display:flex;
  gap:60px;
  align-items:center;
  padding:100px 8%;
}

.about-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.1);
}

.about-text h2{
  color:#0a1f44;
  font-size:36px;
}

.about-text ul{
  margin-top:20px;
}

.about-text li{
  margin-bottom:10px;
}

/* STATS */

.stats-sea{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#0a1f44;
  color:#fff;
  padding:80px 8%;
  text-align:center;
}

.stat-box h3{
  font-size:42px;
  color:#ff7a00;
}

/* CV CTA */

.cv-call{
  position:relative;
  background:url('/is-ilanlari-seaacademyik/assets/images/cv-bg.jpg') center/cover no-repeat;
  padding:140px 0;
  text-align:center;
  color:#fff;
}

.cv-overlay{
  position:absolute;
  inset:0;
  background:rgba(10,31,68,.75);
}

.cv-content{
  position:relative;
}

.cv-btn{
  background:#ff7a00;
  padding:15px 40px;
  border-radius:10px;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}

/* WHY */

.why-sea{
  padding:100px 8%;
  text-align:center;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:50px;
}

.why-card{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.why-card img{
  width:60px;
  margin-bottom:20px;
}






.career-guide{
  display:flex;
  gap:60px;
  padding:100px 8%;
  align-items:center;
}

.qa-box{
  background:#fff;
  padding:20px;
  margin-bottom:15px;
  border-radius:14px;
  box-shadow:0 10px 20px rgba(0,0,0,.05);
}

.career-guide h2{
  color:#0a1f44;
}

.guide-image{
  flex:1;
  max-width:420px;   /* masaüstünde ideal boy */
}

.guide-image img{
  width:100%;
  height:auto;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  object-fit:cover;
}

/* Mobil uyum */

@media(max-width:900px){
  .career-guide{
    flex-direction:column;
    text-align:center;
  }

  .guide-image{
    max-width:280px;
    margin-top:40px;
  }
}



.career-blog{
  padding:100px 8%;
  background:#f7f9fc;
}

.career-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}

.career-header h2{
  color:#0a1f44;
  font-size:32px;
}

.see-all{
  color:#ff7a00;
  text-decoration:none;
  font-weight:600;
}

.career-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.career-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.3s;
}

.career-card:hover{
  transform:translateY(-8px);
}

.career-card img{
  width:100%;
  height:170px;
  object-fit:cover;
}

.career-content{
  padding:20px;
}

.career-content h3{
  font-size:18px;
  color:#0a1f44;
  margin-bottom:10px;
}

.career-content p{
  font-size:14px;
  color:#666;
  line-height:1.5;
}










.salary-tool{
  padding:100px 8%;
  background:#f7f9fc;
  text-align:center;
}

.salary-tool h2{
  font-size:34px;
  color:#0a1f44;
  margin-bottom:10px;
}

.salary-desc{
  color:#555;
  margin-bottom:40px;
}

.salary-box{
  max-width:900px;
  margin:auto;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.salary-box select,
.salary-box input{
  flex:1;
  padding:14px 16px;
  border:1px solid #ddd;
  border-radius:12px;
  font-size:15px;
}

.salary-box button{
  background:#ff6a00;
  color:#fff;
  border:none;
  padding:14px 30px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.salary-box button:hover{
  background:#0a1f44;
}

.salary-result{
  margin-top:30px;
  font-size:22px;
  font-weight:700;
  color:#0a1f44;
}

.seo-text{
  margin-top:50px;
  font-size:14px;
  color:#888;
}

/* Mobil */

@media(max-width:700px){
  .salary-box{
    flex-direction:column;
  }

  .salary-tool h2{
    font-size:26px;
  }
}








/* ===== FOOTER ===== */

.site-footer{
    background:#0f172a;
    color:#e5e7eb;
    margin-top:80px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:60px 5%;
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:40px;
}

.footer-logo{
    height:60px;
    margin-bottom:14px;
}

.footer-box h4{
    font-size:18px;
    margin-bottom:14px;
    color:#fff;
}

.footer-box p{
    line-height:1.7;
    font-size:14px;
    color:#cbd5f5;
}

.footer-box a{
    display:block;
    text-decoration:none;
    color:#cbd5f5;
    margin-bottom:8px;
    font-size:14px;
}

.footer-box a:hover{
    color:#ff6a00;
}

.footer-box span{
    display:block;
    margin-bottom:8px;
    font-size:14px;
}

.footer-bottom{
    text-align:center;
    padding:18px;
    background:#020617;
    font-size:13px;
    color:#9ca3af;
}

@media(max-width:800px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        margin:auto;
    }
}

.main-menu{
  z-index:9999;
}

.topbar{
  position:relative;
}










/* =========================
 DROPDOWN MENU (NO FLICKER + ALIGN)
========================= */

.dropdown{
position:relative;
display:flex;
align-items:center; /* toggle dikey hizası düzelsin */
}

/* Üst tetikleyici (link değil) */
.dropdown-toggle{
cursor:pointer;
display:inline-flex;
align-items:center;
gap:6px;
font-weight:500;
color:#222;
line-height:1;
padding:0;           /* KAYMA YAPMASIN diye sıfır */
user-select:none;
}

/* Ok */
.arrow{
font-size:11px;
transition:.3s;
line-height:1;
}

/* Menü */
.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:#fff;
min-width:220px;
border-radius:14px;
box-shadow:0 12px 35px rgba(0,0,0,.15);
padding:8px 0;
display:none;
z-index:999;
animation:fadeDown .2s ease;
}

/* Kritik: hover köprüsü (boşluğu kapatır, hizayı bozmaz) */
.dropdown::after{
content:"";
position:absolute;
top:100%;
left:-10px;          /* küçük tolerans */
width:calc(100% + 20px);
height:10px;         /* yeterli ama kaydırmaz */
}

/* Linkler */
.dropdown-menu a{
display:block;
padding:12px 18px;
color:#222;
font-size:15px;
transition:.2s;
white-space:nowrap;
}

.dropdown-menu a:hover{
background:#f4f6fb;
color:#ff7a00;
}

/* =========================
 MASAÜSTÜ HOVER
========================= */

@media(min-width:900px){
.dropdown:hover .dropdown-menu{
display:block;
}
.dropdown:hover .arrow{
transform:rotate(180deg);
}
}

/* =========================
 MOBİL (tıklayınca aç)
========================= */

.dropdown.open .dropdown-menu{
display:block;
position:relative;
box-shadow:none;
background:#f8f9fc;
margin-top:8px;
}

/* =========================
 MOBİL MENÜ GENEL
========================= */

@media(max-width:900px){

.main-menu{
display:none;
flex-direction:column;
width:100%;
background:#fff;
padding:20px;
}

.main-menu.active{
display:flex;
}

.main-menu a{
padding:12px 0;
border-bottom:1px solid #eee;
}

/* Mobilde toggle da linkler gibi satır olsun */
.dropdown{
display:block;
}

.dropdown-toggle{
display:flex;
padding:12px 0;
border-bottom:1px solid #eee;
}

.dropdown-menu a{
border-bottom:none;
}

}

/* =========================
 ANİMASYON
========================= */

@keyframes fadeDown{
from{ opacity:0; transform:translateY(-6px); }
to{ opacity:1; transform:translateY(0); }
}



