@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-UltraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-UltraLightIt.otf") format("opentype");
    font-weight: 200;
    font-style: italic;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Lightitalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Mediumitalic.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Bolditalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Heavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-HeavyItalic.otf") format("opentype");
    font-weight: 800;
    font-style: italic;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

@font-face{
    font-family: "DINNextW1G";
    src: url("fonts/DINNextW1G-Blackitalic.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: "DINNextW1G", sans-serif;
}
main{
    padding-top:70px;
}

/* HEADER */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(19, 42, 74, 0);
    z-index: 999;
    transition: background-color 0.5s ease, transform 0.3s ease;
}


#site-header.scrolled {
    background-color: rgba(19, 42, 74, 1);
}

#site-header.hide {
    transform: translateY(-100%);
}



.header-inner{
    max-width:1200px;
    margin:auto;
    height:70px;
    display:grid;
    grid-template-columns: auto 1fr auto;
    align-items:center;
}


.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:50px;
    width:auto;
    display:block;
}

.menu{
    display:flex;
    justify-content: center;
    gap: 30px;
    margin-left: -200px; 
}

.menu a{
    text-decoration:none;
    color:#F7F7F7;
    font-weight:500;
}

#site-header.hide{
    transform: translateY(-100%);
}

.dummy{
    height:100vh;
    padding-top:100px;
    text-align:center;
    font-size:32px;
}

.hero{
    width:100%;
    height:100vh;                  
    position:relative;
    overflow:hidden;

    background-image: url("yedekarbg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;
}

.hero-overlay{
    position:absolute;
    top:15%;
    left:50%;
    transform:translateX(-50%);

    text-align:center;
    color:#F7F7F7;     
    padding:20px 30px;
    background: none;  
}


.hero-overlay h1{
    font-size:48px;
    margin-bottom:10px;
}

.hero-overlay p{
    font-size:18px;
}
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#132A4A;
    min-width:220px;
    display:none;
    flex-direction:column;
    z-index:999;
}

.dropdown-menu a{
    padding:10px 14px;
    color:#fff;
    text-decoration:none;
    white-space:nowrap;
}

.dropdown-menu a:hover{
    background:rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-menu{
    display:flex;
}


/* Hizmetlerimiz Bölümü */
#hizmetler {
    padding: 80px 20px;
    background-color: #f7f7f7;
    text-align: center;
}


#hizmetler .section-title {
    font-family: "DINNextW1G", sans-serif;
    color: #132A4A;
    font-size: 42px;
    margin-bottom: 14px;
}
#hizmetler .section-line{
    width:260px;
    height:2px;
    background:#132A4A;
    margin:2px auto 50px auto;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}


.service-card {
    background-color: #cecfd9;
    padding: 25px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    min-height: 550px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}


.service-card .service-img {
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    flex-shrink: 0;
    height: 200px;
}

.service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card .service-img img:hover {
    transform: scale(1.1);
}


.service-card h3 {
    font-family: "DINNextW1G", sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #132A4A;
}


.service-card .service-list {
    list-style-type: disc;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 0;
}

.service-card .service-list li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: #132A4A;
}

/* Hakkımızda */
.hero.hakkimizda {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;

    background-image: url("ocean.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero.hakkimizda .hero-overlay {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #12294A; 
    padding: 20px 30px;
    background: none;
    max-width: 800px; 
}

.hero.hakkimizda .hero-overlay h2 {
    font-family: "DINNextW1G", sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #cacbd9;
}

.hero.hakkimizda .hero-overlay p {
    font-family: "DINNextW1G", sans-serif;
    font-size: 25px;
    line-height: 1.6;
    color: #cacbd9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "DINNextW1G", sans-serif;
    margin-top: 80px;
    margin-bottom: 10px;
    
}
.projects-header-strip{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;
    background:#132A4A;
    padding:70px 20px;
}


.strip-item{
    color:#F7F7F7;
    text-align:center;
    position:relative;
}

.strip-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-40px;
    top:50%;
    transform:translateY(-50%);
    width:2px;
    height:28px;
    background:#fff;
}

.strip-item h3{
    font-size:58px;
    margin-bottom:8px;
    font-family:"DINNextW1G", sans-serif;
}

.strip-item p{
    font-size:28px;
    margin:0;
    font-family:"DINNextW1G", sans-serif;
}

.strip-item{
    opacity:0;
    transform:translateY(30px);
    transition:all .7s ease;
}

.strip-item.show{
    opacity:1;
    transform:translateY(0);
}


/* ÇÖZÜMLERİMİZ */
.section-title{
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "DINNextW1G", sans-serif;
    color: #132A4A;
    margin-top: 0px;
    margin-bottom: 6px; 
}

.section-separator{
    width: 120px;
    height: 2px;
    background-color: #132A4A;
    border: none;
    margin: 0 auto 40px auto;
}

#cozumler{
    padding:100px 20px;
}

.solutions-grid{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

.solution-card{
    position:relative;
    display: flex;
    height:300px;
    border-radius:16px;
    overflow:hidden;

    background-size:cover;
    background-position:center;

    text-decoration:none;
    align-items: center;
    justify-content: center;
}


.solution-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    z-index:1;
}


.solution-card span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 2;

    width: 100%;
    padding: 0 16px;

    text-align: center;
    line-height: 1.2;
    margin: 0;

    font-family: "DINNextW1G", sans-serif;
    font-size: 28px;        
    color: #f7f7f7;        
    font-weight: 700;
}

.solution-card:hover{
    transform:translateY(-4px);
    transition:.25s ease;
}


@media(max-width:900px){
    .solutions-grid{
        grid-template-columns:1fr;
    }

    .solution-card{
        height:220px;
    }
}

.bg-1{ background-image:url("bg1.jpg"); }
.bg-2{ background-image:url("2.jpg"); }
.bg-3{ background-image:url("3.jpg"); }
.bg-4{ background-image:url("4.jpg"); }
.bg-5{ background-image:url("5.jpg"); }
.bg-6{ background-image:url("6.jpg"); }




#iletisim .section-title {
    font-family: "DINNextW1G", sans-serif;
    color: #132A4A;
    font-size: 42px;
    margin-bottom: 10px;
}

#iletisim {
    padding: 100px 20px;
    background-color: #f7f7f7;
    text-align: center;
}
#iletisim .section-line{
    width:120px;
    height:4px;
    background:#132A4A;
    margin:2px auto 50px auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: #cecfd9;
    padding: 30px 20px;
    border-radius: 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.contact-card h3 {
    font-family: "DINNextW1G", sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #132A4A;
}

.contact-card p {
    font-family: "DINNextW1G", sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: #132A4A;
}


#site-footer {
    position: relative;
    width: 100%;
    background-image: url("footer.png"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 20px 20px;
}


#site-footer::before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}

.footer-overlay {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-content h3 {
    font-family: "DINNextW1G", sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-content p {
    font-family: "DINNextW1G", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-text {
    text-align: left;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
.footer-text h3,
.footer-text p {
    margin: 0 0 10px 0;     
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a img {
    width: 30px;  
    height: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a img:hover {
    transform: scale(1.2);
    opacity: 0.8;
}
.contact-card {
    background-color: #cecfd9; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 30px 20px;
    border-radius: 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}


.contact-card::before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(255,255,255,0.8); 
    border-radius: 15px;
    z-index: 1;
}

.contact-card h3,
.contact-card p,
.contact-card .linkedin-btn {
    position: relative;
    z-index: 2;
}


.dropdown {
    position: relative;
    display: inline-block;
}


.dropbtn {
    color: #F7F7F7;
    text-decoration: none;
    font-family: "DINNextW1G", sans-serif;
    font-weight: 500;
    padding: 0;
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-title-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-family: "DINNextW1G", sans-serif;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 5px;
    text-align: right;
    width: fit-content;
}


.project-card img.project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img.project-img {
    transform: scale(1.05);
}
#projeler .project-img-wrapper{
    margin-bottom: 10px;
}
#projeler{
    padding-bottom: 80px;
}


.project-card .project-details {
    display: none;
    padding: 10px 15px 20px 15px;
    font-family: "DINNextW1G", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #e3e4ed;
    border-top: 1px solid #ccc;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #132A4A;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
}


.dropdown-content a {
    color: #F7F7F7;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: "DINNextW1G", sans-serif;
}


.dropdown:hover .dropdown-content {
    display: block;
}


.dropdown-content a:hover {
    background-color: #0f1d33;
}
@media (max-width: 576px){

@media (max-width: 600px){


body{
    overflow-x:hidden;
    }
    }
}
 
/* HİDROLİK */
.inner-hero{
    position: relative;
    height: 50vh; 
    margin-top: -90px;
    min-height: 450px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidrolik-hero{
    background-image: url("hidrolik-bg.jpg");
}

.inner-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.45);
}

.inner-hero-overlay{
    position: relative;
    z-index: 2;
    text-align: center;
    color:#F7F7F7;

    display: flex;
    flex-direction: column; 
    align-items: center;
}

.inner-hero-overlay h1{
    font-size: 52px;
    letter-spacing: 2px;
    font-family: "DINNextW1G", sans-serif;
    margin-bottom: 10px;
}

.inner-hero-overlay p{
    font-size: 18px;
    opacity: .9;
}

.solution-detail-section{
    padding: 90px 20px 120px;
    background: #f7f8fb;
}

.solution-detail-grid{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text p{
    font-family: "DINNextW1G", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color:#132A4A;
    margin-bottom: 18px;
}

.solution-gallery{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.solution-gallery img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform .4s ease;
}

.solution-gallery img:hover{
    transform: scale(1.05);
}

.solution-list{
    margin: 22px 0 26px;
    padding-left: 18px;
    font-family: "DINNextW1G", sans-serif;
    color:#132A4A;
}

.solution-list li{
    margin-bottom: 14px;
    line-height: 1.7;
}

.solution-subtitle{
    font-family: "DINNextW1G", sans-serif;
    font-size: 20px;
    color:#132A4A;
    margin: 24px 0 12px;
}

.solution-gallery.two-image{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item{
    overflow: hidden;
    border-radius: 14px;
}

.gallery-item img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img{
    transform: scale(1.06);
}

@media(max-width: 900px){

    .solution-detail-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inner-hero-overlay h1{
        font-size: 36px;
    }

    .solution-gallery img{
        height: 160px;
    }

}

.inner-hero{
    position: relative;
    height: 50vh;
    min-height: 450px;
    width: 100%;
    margin-top: -90px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.inner-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.45);
}


.inner-hero-overlay{
    position: relative;
    z-index: 2;
    text-align: center;
    color:#F7F7F7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-hero-overlay h1{
    font-size: 52px;
    letter-spacing: 2px;
    font-family: "DINNextW1G", sans-serif;
    margin-bottom: 10px;
}

.inner-hero-overlay p{
    font-size: 18px;
    opacity: .9;
}


.hidrolik-hero{
    background-image: url("hidrolik-bg.jpg");
}


.dma-hero{
    background-image:url("dma-bg-demo.jpeg");
}

/*HİDROLİK İÇERİK */

.solution-detail-section{
    padding: 90px 20px 120px;
    background: #f7f8fb;
}

.solution-detail-grid{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text p{
    font-family: "DINNextW1G", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color:#132A4A;
    margin-bottom: 18px;
}

.solution-list{
    margin: 22px 0 26px;
    padding-left: 18px;
    font-family: "DINNextW1G", sans-serif;
    color:#132A4A;
}

.solution-list li{
    margin-bottom: 14px;
    line-height: 1.7;
}

.solution-subtitle{
    font-family: "DINNextW1G", sans-serif;
    font-size: 20px;
    color:#132A4A;
    margin: 24px 0 12px;
}


.solution-gallery.two-image{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item{
    overflow: hidden;
    border-radius: 14px;
}

.gallery-item img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img{
    transform: scale(1.06);
}


/* DMA İÇERİK */

.service-detail-section{
    max-width:1200px;
    margin:0 auto;
    padding:90px 20px 120px;
}

.service-detail-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items: center;
}


.dma-text-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.dma-text-box{
    width:100%;
    background: #132A4A;
    border-radius: 14px;
    padding: 28px 34px;
    box-shadow: 0 14px 32px rgba(0,0,0,.15);
}


.dma-text-box p,
.dma-text-box li,
.dma-text-box h3,
.dma-text-box h4,
.dma-text-box strong{
    color: #F7F7F7 !important; 
    font-family:"DINNextW1G", sans-serif;
}

.dma-text-box p{
    line-height:1.8;
    margin-bottom:14px;
}

.dma-text-box ul{
    padding-left:18px;
    margin-top:10px;
}

.dma-text-box li{
    margin-bottom:10px;
    line-height:1.7;
}


.dma-gallery{
    position: relative;
    min-height: 420px;
}

.dma-image{
    position: absolute;
    width: 80%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.dma-image img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.dma-image.img-one{
    top: 0;
    left: 0;
    z-index: 2;
}

.dma-image.img-two{
    bottom: 0;
    right: 0;
    z-index: 1;
}

.dma-image:hover img{
    transform: scale(1.08);
}


@media(max-width: 900px){

    .solution-detail-grid,
    .service-detail-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .inner-hero-overlay h1{
        font-size: 36px;
    }

    .gallery-item img{
        height:200px;
    }

    .dma-gallery{
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
    }

    .dma-image{
        position: static;
        width: 100%;
    }

    .dma-image img{
        height: 220px;
    }

    .inner-hero{
        min-height: 260px;
    }
}

.analysis-title{
    font-family:"DINNextW1G", sans-serif;
    font-size:28px;
    color:#132A4A;
    margin-bottom:24px;
}

.dma-text-box{
    background:#132A4A;
    border-radius:14px;
    padding:32px 34px;
    box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.dma-text-box p{
    margin-bottom:14px;
}

.dma-text-box .solution-subtitle{
    margin-top:0;
    margin-bottom:12px;
    color:#F7F7F7;
}
/* ANALİZLER BÖLÜMÜ */
.analizler-hero{
    background-image: url("analiz-bg.jpg");
    height: 50vh;
}


.analysis-section{
    padding:90px 20px 120px;
    background:#f7f8fb;
}

.analysis-container{
    max-width:1000px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    gap:40px;
}


.analysis-box{
    background:#8f949a; 
    border-radius:16px;
    padding:36px 42px;
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.analysis-title{
    font-family:"DINNextW1G", sans-serif;
    font-size:26px;
    color:#132A4A;
    margin-bottom:16px;
}


.analysis-box p,
.analysis-box li{
    font-family:"DINNextW1G", sans-serif;
    color:#ffffff;
    font-size:16.5px;
    line-height:1.8;
}

.analysis-box strong{
    color:#ffffff;
}


.analysis-list{
    margin-top:14px;
    padding-left:18px;
}

.analysis-list li{
    margin-bottom:12px;
}


.analysis-images{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px;
    margin:40px 0; 
}

.analysis-image img{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
    transition: transform .4s ease;
}

.analysis-image img:hover{
    transform: scale(1.05);
}


@media(max-width:768px){
    .analysis-images{
        grid-template-columns:1fr;
    }
    .analysis-image img{
        height:240px;
    }
}

/* SCADA BÖLÜMÜ */
.scada-hero{
    background-image: url("scada-bg.jpeg");
    background-size: cover;
    background-position: center;
    height: 105vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.scada-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.45);
}

.scada-hero .inner-hero-overlay{
    position: relative;
    z-index: 2;
    text-align: center;
    color:#fff;
    padding: 0;            
    border-radius: 0;       
    background-color: transparent;
}

.scada-hero .inner-hero-overlay h1{
    font-size: 52px;
    letter-spacing: 2px;
    font-family: "DINNextW1G", sans-serif;
    margin-bottom: 10px;
}

.scada-hero .inner-hero-overlay p{
    font-size: 18px;
    opacity: .9;
}

.scada-section {
    padding: 90px 20px;
    background: #f7f8fb;
}


.scada-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}


.scada-text {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.scada-text .scada-box {
    background: #fff;
    padding: 30px 36px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,.1);
    color: #132A4A;
}

.scada-box h3 {
    font-family: "DINNextW1G", sans-serif;
    font-size: 28px;
    color: #132A4A;
    margin-bottom: 16px;
}

.scada-box p, .scada-box li {
    font-family: "DINNextW1G", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #132A4A;
    margin-bottom: 12px;
}

.scada-box ul {
    padding-left: 18px;
}

.scada-stripler {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-items: center;
}

.strip-item {
    background: #132A4A;
    color: #F7F7F7;
    border-radius: 14px;
    aspect-ratio: 1/1;
    width: 200%;
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "DINNextW1G", sans-serif;
    font-size: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);


    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.strip-item.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .scada-container {
        flex-direction: column;
        align-items: center;
    }

    .scada-stripler {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
.solution-detail-section{
    padding: 90px 20px 120px;
    background: #f7f8fb;
}

.solution-detail-grid{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text h3{
    font-family: "DINNextW1G", sans-serif;
    font-size: 28px;
    color:#132A4A;
    margin-bottom: 6px;
}

.mini-separator{
    width:60px;
    height:2px;
    background:#132A4A;
    border:none;
    margin:6px auto 18px auto;
}

.solution-text p{
    font-family: "DINNextW1G", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color:#132A4A;
    margin-bottom: 18px;
}

.solution-gallery img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform .4s ease;
}

.solution-gallery img:hover{
    transform: scale(1.05);
}

@media(max-width:768px){
    .solution-detail-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .solution-gallery img{
        height:220px;
    }
}

/* YAZILIM SAYFASI */
.software-hero{
    background-image:url("yazilim-bg.jpeg");
    height: 105vh;
}

.software-section {
    padding: 90px 20px 120px;
    background: #f7f8fb;
    text-align: center;
}

.software-header {
    margin-bottom: 50px;
}

.software-header {
    text-align: center;
    margin-bottom: 40px;
}

.software-title {
    font-family: "DINNextW1G", sans-serif;
    font-size: 36px;
    color: #132A4A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.software-title-main {
    display: block;
    font-size: 20px;
    color: #132A4A;
    margin: 4px 0; 
}

.software-separator {
    width: 160px;
    height: 2px;
    background-color: #132A4A;
    border: none;
    margin: 2px auto 20px auto;
}
.software-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    max-width: 1200px;
}

.software-box {
    background: #132A4A;
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 18px 40px rgba(0,0,0,.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 250px;
}

.box-content {
    display: flex;
    flex-direction: column;     
    justify-content: space-around;
    height: 100%;
    text-align: center;
    color: #fff;
    font-family: "DINNextW1G", sans-serif;
}


.software-box .box-content {
    opacity: 0;
    transform: translateY(-40px);
    animation: slideDown 0.8s forwards; 
}

.software-box:nth-child(1) .box-content {
    animation-delay: 0.2s;
}

.software-box:nth-child(2) .box-content {
    animation-delay: 0.5s;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.software-box h3,
.software-box p,
.software-box li,
.software-box strong {
    color: #F7F7F7;
}

.software-subtitle {
    font-size: 32px;
    margin-bottom: 16px;
}

.software-list {
    padding-left: 18px;
    margin-top: 12px;
}

.software-list li {
    margin-bottom: 12px;
}

@media(max-width: 900px) {
    .software-grid {
        grid-template-columns: 1fr;
    }
}

.saha-faaliyetleri-hero{
    background-image:url("saha-bg-demo.jpg");
    height: 105vh;
} 

body {
    font-family: "DINNextW1G", sans-serif;
    background: #f7f8fb;
    margin: 0;
    padding: 0;
}

.saha-card {
    background: #fff;
    color: #132A4A; 
    border-radius: 16px;
    padding: 60px 40px;
    max-width: 1000px;
    margin: 50px auto;
    box-shadow: 0 18px 40px rgba(0,0,0,.1);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.saha-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.saha-card p,
.saha-card ul {
    font-size: 18px;
    line-height: 1.8;
}

.saha-card ul {
    padding-left: 20px;
    text-align: left; 
}

.saha-card li {
    margin-bottom: 12px;
}

.saha-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.saha-image {
    overflow: hidden;
    border-radius: 14px;
    height: 240px;
}

.saha-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobil */
@media(max-width: 768px){
    .saha-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}