:root {
    --background-color: #E5E4E2;
    --deep-black: #081424;
    --text-color: #fff;
    --text-color-muted: #d1d1d1;
    --primary-color:#faa90c;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html body {

}


.degerler-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.box{
  position: relative;
  height: 500px;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.3s ease;
}

.box:hover{
  flex: 3 1 0;
}

.box .bg-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box .title{
    text-align: center;
    padding: 20px;  
    text-shadow: 2px 1px 6px #000000;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: 0.3s;
    z-index: 20;
    color: #fff;
    font-size: 2rem;
}
.box .info {
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.box .info h2{
    padding-bottom: 12px !important;
}

.box:hover .info{
  opacity: 1;
}
.box:hover .title{
    opacity: 0;
}





.sub-pages{
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
}
.page-subtitle{
    text-align: left;
}
.content{
    padding: 12px;
    max-width: 100%;
    width: 1200px;
    margin-inline:auto ;
}
.sub-pages .page{
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-color-muted);
    padding: 6px 12px;
}
.sub-pages .page-active{
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid #fff;
}
.hakkimizda-wrapper{
    width: 1200px;
    max-width: 100%;
    margin-inline:auto;
    padding: 1rem;
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    grid-template-columns: 2fr 1fr;
}
.hakkimizda-wrapper .details .title{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.hakkimizda-wrapper .hakkimizda-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.page-header{
    height: 200px;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    font-size: 1.6rem;
}
.haberler-title{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}
.haberler-container{
        padding: 1rem;

    width: 1200px;
    max-width: 100%;
    margin-inline:auto ;
    display: grid;
    grid-template-columns: 1fr  1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
.haberler-container .haber{
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.haber .haber-img{
    width: 100%;
    border-radius: 12px;
}
.haber .date{
    margin-top: 12px;
    color: #3b3b3b;
}
.haber .title{
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
}
.haber .desc{
    color: #1d1d1d;
}

.flex-column{
    flex-direction: column;
}
.container {
    width: 90%;
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.lang {
    font-weight: 500;
}

.misyon-vizyon-grid {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 1200px;
    margin-inline:auto ;
    max-width: 100%;
    gap: 2rem;
    margin-top: 3rem;
}

.cert-section {
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
    table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 12px;
    }

    thead {
      background-color: var(--deep-black) !important;
      color: #fff;
    }

    th, td {
      padding: 16px 18px;
      text-align: left;
      border-bottom: 1px solid #e5e7eb;
    }
    
    th {
        font-size: 16px;
        font-weight: 600;
    }
    
    td {
        background-color: #fff;
      font-size: 15px;
    }
tr a{
    text-decoration: none;
    color: #000;
    transition: 0.2s ease-in all !important;
}
tr a:hover{
    font-weight: bold;
}
    tbody tr:hover {
      transition: 0.2s ease;
    }

    @media (max-width: 600px) {
      th, td {
        padding: 12px 10px;
        font-size: 14px;
      }

      .table-title {
        font-size: 22px;
      }
    }
.cert-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
        display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-image img {
    margin-top: 48px;
    max-width: 100%;
    border-radius: 12px;
    height: 100px;
    aspect-ratio: 1/1;
    object-fit: cover;

}
.cert-container{
    width: 1200px;
    max-width: 100%;
    margin-inline: auto;
}
.cert-content {
    padding: 25px;
}

.cert-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cert-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
.misyon-vizyon-grid .mv-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    background-color: #F9F9F9;
    padding: 24px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.misyon-vizyon-grid .mv-item i {
    color: var(--primary-color);
    font-size: 3rem;
}
.misyon-vizyon-grid .mv-item .title {
    font-size: 1.6rem;
    font-weight: bold;
}
.contact-section {
    padding: 80px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-info-box {
    background-color:#fff;
    padding: 40px;
    border-radius: 8px;
}
.contact-image img{
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background-color: green;
}
.contact-map {
    height: 400px;
    background-color: #ddd;
    width: 100%;
}
.info-item {
    display: flex;
    margin-bottom: 25px;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--deep-black);
    margin-right: 20px;
    margin-top: 5px;
}
.info-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}
.salim-container{
    width: 100%;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    min-height: 300px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    background-color: #f3f2f1;
}
.salim-container img{
    height: 400px;
    max-width: 100%;
}
.salim-container .details{
    display: flex;
    flex-direction: column;
    padding: 12px;
}
.page-title{
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}
.salim-container .details .name{
    font-size: 1.5rem;
    font-weight: bold;
}
.salim-container .details .title{
    color: #444444;
    margin-bottom: 32px;
}
.ekip-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.ekip-container .ekip{
    
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    background-color: #f3f2f1;
    border-radius: 12px;
    overflow: hidden;
}
.ekip-container .ekip img{
    max-width: 100%;
    width: 280px;
}
.ekip-container .ekip .name{
    font-size: 1.2rem;
    margin-top: 12px;
    padding-inline: 12px;
}
.ekip-container .ekip .title{
    color: #444444;
    padding-inline: 12px;
    margin-bottom: 12px;
}
/* Mobil görünüm */
@media (max-width: 900px) {
    
.degerler-container{
    flex-direction: column;
    max-width: 100%;
    gap: 15px;
}

.box{
    height: 280px;
    flex: none;              /* büyüme davranışını kapat */
}

.box:hover{
    flex: none;              /* hover büyümesini iptal et */
}

.box .title{
    font-size: 1.5rem;
    padding: 10px;
}

.box .info{
    opacity: 1;              /* mobilde direkt görünür olsun */
    font-size: 0.9rem;
}

.box .title{
    opacity: 0;              /* mobilde title kaybolmasın */
}
    .misyon-vizyon-grid{
        grid-template-columns: 1fr;
    }
    .hakkimizda-wrapper{
        grid-template-columns: 1fr;
    }
    .haberler-container{
        grid-template-columns: 1fr;
    }
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }
}



footer {
    background-color: #fff;
    color: var(--deep-black);

    padding: 3rem 1rem;
    display: flex;
}
footer a{
    text-decoration: none;
    color: var(--deep-black);

}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
.footer-col{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer-grid .al h4{
}
.footer-col h4 {
    color: var(--deep-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-col ul li a{
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a:hover {
    color: #F58220;
}

.footer-logo {
    max-height: 200px;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li i {
    margin-right: 8px;
}

.copyright {
    padding: 20px 12px;
    font-size: 14px;
    background-color:#000;
    color: #fff;
}
.copyright a{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

body {
    color: var(--deep-black);
    font-family: "calibri", sans-serif;

    background-color: var(--background-color);
}

.btn {
    width: fit-content;

    background-color: var(--deep-black);
    color: var(--text-color);
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    font-size: 1.1rem;
    display: inline-block;
    box-sizing: border-box !important;
    border-radius: 6px;
    transition: 0.2s;
}

.btn:hover {
    transform: scale(1.1);
}

.hero {
    background-color: var(--deep-black);
    height: 100vh;
    position: relative;
}

.hero .overlay {
    z-index: 2;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(8, 20, 36, 0.2) 100%);
}

.hero .video {
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .content .details {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
}

.hero .content {
    position: relative;
    z-index: 3;
    color: var(--text-color);
    width: 700px;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    font-size: 1.2rem;
    gap: 1rem;
}

.hero .content .details .hero-desc {
    color: var(--text-color-muted);
}

.stats {
    background-color: var(--background-color);
    color: var(--deep-black);
    width: 100%;
    height: 80px;
    display: flex;
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
    align-items: center;
}

.stats .stat {
    border-right: 2px solid var(--deep-black);
    flex-grow: 1;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.stats .stat:last-child {
    border-right: none;
}

.tx-bold {
    font-weight: bold;
}

.tx-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

section {
    min-height: 100vh;
    box-sizing: border-box;
    scroll-snap-align: start;

}

.test {
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* layout */
.hakkimizda-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    box-sizing: border-box;
}

/* görsel sütunu: margin yerine padding kullanıyoruz ve genişlik tanımlıyoruz */
.hakkimizda-container .img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 2rem;
    /* margin yerine padding daha stabil */
    box-sizing: border-box;
}

/* MAIN IMAGE: kesin genişlik/veri ile çalışacak */
.hakkimizda-container .img .main-img {
    width: 500px;
    max-width: 90%;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* arka plan görseli tüm kutuyu kaplasın */
.hakkimizda-container .img .main-img .img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 1;
    display: block;
}

/* ikincil görsel: boyut ver, konumlandırma transform ile yap */
.hakkimizda-container .img .main-img .secondary-img {
    position: absolute;
    width: 45%;
    max-width: calc(100% - 24px);
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 10px;
    background-color: #fff;
    z-index: 2;
    top: 0%;
    right: 0%;
    transform: translate(20%, -20%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    display: block;
    padding: 12px;
}

.hakkimizda-container .details {
    padding: 1rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hakkimizda-container .details .title {
    font-size: 1.5rem;
}

.hakkimizda-container .details .slogan {
    font-size: 3rem;
}

.hakkimizda-container .details .desc {
    font-size: 1.2rem;
}

.logo-container {
    width: calc(100vw - 2rem);
    height: 170px;
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-evenly;
    padding: 2rem;
    margin-bottom: 3rem;
}
.logo-container a {
}
.logo-container a .img {
    max-width: 100%;
    object-fit: contain;
}

.services-container {
    padding: 1rem;
    width: 100%;
    background-color: var(--deep-black);
    color: var(--text-color);

}

.services-container .title {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 2rem;
    text-align: center;
}

.services-container .services-scroll-container {
    margin-block: 5rem;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    padding-inline: 0rem ;
}

.services-container .services-scroll-container .service {}

.services-container .services-scroll-container .service .card {
    aspect-ratio: 1/1;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
}
.services-container .services-scroll-container .service .card .service-imace {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.services-container .services-scroll-container .service .service-title {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.company-container {
    padding: 8rem 6rem;
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.company-container .details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    font-size: 1.2rem;
}

.company-container .details img {
    width: 250px;
}

.company-container .details .btn {
    margin-top: 1rem;
}

.company-container .details .company-slogan {
    font-size: 2.2rem;
    margin-top: 1rem;
    font-style: italic;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
}

.company-container .img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.company-container .img .img-bg-s {
    position: absolute;
    top: 0;
    z-index: 1;
    height: 100%;
    opacity: 0;
    display: none;
}

.company-container .img img {
    border-radius: 6px;
    max-width: 80%;
    z-index: 2;
}

.company-container-reverse {
    background-color: var(--deep-black);
    color: var(--text-color);
}

.company-container-reverse .img {
    order: 1;
}

.company-container-reverse .details {
    align-items: flex-end;
    text-align: right;
    order: 2;
}

.company-container-reverse .btn-primary {
    background-color: var(--text-color);
    color: var(--deep-black);
}


@media (max-width: 1000px) {
    .hero .content{
        padding: 1rem;
    }
    .hakkimizda-container .img .main-img {
        width: 100%;
    }
    .hakkimizda-container {
        grid-template-columns: 1fr;
        padding: 3rem 0rem;
    }
    .hakkimizda-container .details{
        max-width: 100%;
        width: 100%;
    }
    .hakkimizda-container .details .slogan{
        font-size: 2.5rem;
    }
    .company-container .details,
    .company-container-reverse .details {
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }
    .company-container {
        padding: 6rem 1rem;
        grid-template-columns: 1fr;
        max-width: 100%;
        align-items: center !important;
        align-items: center;
    }
    .company-container .img{
        max-width: calc(100% - 4rem);
        box-sizing: border-box;
    }
    .company-container .img *{
        max-width: 100%;
        object-fit: contain;
    }
    .company-container .img .img-bg-s{
        transform: scale(1);
    }
.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
    .company-container .img{
        margin-inline:auto;
    }
    .company-container-reverse .img {
        order: 1;
    }

    .company-container-reverse .details {
        order: 1;
    }
    .logo-container{
        flex-wrap: wrap;
        height: auto;
    }
    .logo-container a{
        height: 50px;
    }
    .logo-container a img{
        height: 50px;
    }
    .services-scroll-container{
        width: 100%;
        overflow: scroll;
    }
}
/* NAVBAR */

.navbar{
    width:100%;
    counter-reset: #000;
    display:flex;
    justify-content:center;
    position:absolute;
    top:0;
    z-index:1000;
    font-family: "Poppins", sans-serif !important;
    background:#fff;
    border-radius:0 0 20px 20px;
}

.nav-inner{
    width:100%;
    max-width: 1200px;




    padding:18px 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.logo img{
    height:42px;
}


/* MENU */

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

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

.menu a:hover{
    opacity:.7;
}


.dropdown{
    position:relative;
    display:flex;
    align-items:center;
    flex-direction: column;
    width: 100%;
}
.nav-scrolled{
    position: fixed;
    top: 0;
    white-space: nowrap;
}
/* BUTTON */

.dropdown-btn{
    border:none;
    background:none;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
}


/* MENU */

.dropdown-menu{
    width: 100%;
    text-align: center;
    position:absolute;
    top:100%;
    transform: translateX(-50%);
    left:50%;
    overflow: hidden;
    margin-top:8px;

    background:white;
    min-width:200px;

    border-radius:8px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    display:none;
    flex-direction:column;

    z-index:100;
}


/* ITEM */

.dropdown-menu a{
    padding:12px 16px;
}

.dropdown-menu a:hover{
    background:#f3f3f3;
}


/* HOVER AKTİF */

.dropdown:hover .dropdown-menu{
    display:flex;
}


/* HOVER GAP FIX */

.dropdown::after{
    content:"";
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:10px;
}


/* HAMBURGER */

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

.hamburger span{

    width:25px;
    height:3px;
    background:#222;
    margin:4px 0;
}


/* MOBILE */

@media (max-width:900px){
.salim-container{
    flex-direction: column;
}
.menu{

    position:absolute;
    top:80px;
    right:0;

    background:#e9e9e9;

    width:100%;

    flex-direction:column;

    padding:30px;

    gap:20px;

    display:none;
}

.menu.active{

    display:flex;
}

.hamburger{

    display:flex;
}

.dropdown-menu{
    left: 0;
    transform: translateX(0);
    position:static;
    box-shadow:none;
    display:none;
}

.dropdown.active .dropdown-menu{

    display:flex;
}

}