* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    transform: none !important;
    background-color: #fff;
    color: #000;
}
.hero {
    height: 100vh;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-content {
    text-align: center;
}
.hero h1 {
    font-size: 42px;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 80px;
}
.btn{
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}
.btn:hover {
    background: white;
    color: black;
}
.arrow {
    position: absolute;
    bottom: 30px;
    font-size: 24px;   
}
.navbar {
    position: fixed;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: white;
    z-index: 1000;
    transition: top 0.4s ease;
}
.navbar a {
    color: #9b9b9b;
    text-decoration: none;
    font-weight: 700;
}
.navbar a:hover {
    color: rgba(173, 160, 116, 0.8);
}
.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.logo {
    font-size: 24px;
    font-weight: 500;
    color: black;
    text-decoration: none;
}

.nav-menu {
    gap: 25px;
    display: flex;
    align-items: center;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255,255,255,0.95);
    min-width: 260px;
    border: 1px solid #eee;
    padding: 30px 0;
    z-index: 2000;
    text-align: left;
}
.dropdown-content a {
    display: block !important;
    width: 100%;
    white-space: nowrap;
    color: #9b9b9b;
    transition: color 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.dropbtn{
    color: #000;
    text-decoration: none;
}
.nav-menu a {
    margin-left: 25px;
    text-decoration: none;
    color: black;
   font-size: 13px;
   letter-spacing: 1px;
    
}
.hero-logo {
    width: 280px;
    margin-bottom: 90px;
    margin-top: 90px;
    opacity: 0.95;  
}
.about{
    background: #f5f5f5;
    padding: 120px 20px;
}
.about-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}
.about h2 {
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.about .line{
    width: 90px;
    height: 2px;
    background: #333;
    margin: 0 auto 35px auto;
    opacity: 0.4;
}
.about p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 14px;
}
.services {
 background-color: #f5f5f5;
    padding: 130px 20px;
}
.services-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.service-block{
    padding: 40px 10px 10px 10px;
}
.service-icon {
    width: 100px;
    height: auto;
    margin-bottom: 24px;
    opacity: 0.9;
}
.service-block h3 a{
    color: inherit;
    text-decoration: none;
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 28px;
    font-weight: 300;
}
.service-block h3 a:hover {
    opacity: 0.7;
}
.service-text{
    max-width: 760px;
    margin: 0 auto;
}
.service-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 16px;
}
.service-quote {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.9;
}
.blog {
    background-color: #000;
    padding: 130px 20px;
    text-align: center;
}
#blog *{
    color: white;
}
.blog-list {
    align-items: center;
    display: flex;
    gap: 30px;
    flex-direction: column;
    margin-top: 40px;
}
.blog-item {
    background: #000;
    font-size: 34px;
    text-decoration: none;
  
}
.section-title {
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 0x;
}   
.title-line {
    width: 120px;
    height: 2px;
    background: #777;
    margin: 18px auto 50px;
}
.projeler {
    padding: 80px 0px;
    text-align: center;
}
.proje-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.proje-card{
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    background: #000;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.proje-card:hover img {
    transform: scale(1.03);
}
.proje-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

@media (max-widht: 576px){
    .proje-grid{grid-template-columns: 1fr;}
    .proje-card{height: 200px;}
}



.proje-title {
    position: absolute;
    top: 10px;
    background: rgba(0,0,0,0.65);
    left: 10px;
    color: white;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    z-index: 2;
}
.references{
    padding: 60px 0;    
}

.ref-swiper{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.ref-swiper .swiper-wrapper{
    display: flex;
    align-items: center;
}
.ref-swiper .swiper-slide{
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ref-swiper img{
    display: block;
    max-height: 70px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.ref-swiper img:hover{
    opacity: 1;
}
.references .container{
    margin: 0 auto;
    text-align: center;
}
.ref-swiper .swiper-button-next,
.ref-swiper .swiper-button-prev{
    color: #000 !important;
}
.ref-swiper .swiper-button-next::after,
.ref-swiper .swiper-button-prev::after{
    font-size: 20px !important;
    font-weight: bold;
}
.contact {
    background: #fff;
    padding: 80px 0px;
}
.section-title {
    text-align: center;
    letter-spacing: 2px;
    font-size: 28px;
    margin-bottom: 35px;
}
.contact-grid {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-form,
.contact-info {
    background: #fff;
}
.contact-form form{
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    font-size: 14px;
}
.field{
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}
.field label {
    font-size: 14px;
    color: #333;
}
.field input,
.field textarea {
    width: 100%;
    padding: 12px 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}
.field input:focus,
.field textarea:focus {
    border-color: #999;
}
.btn{
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: #111;
    color: #fff;
    font-weight: 600;
}
.info-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    margin-bottom: 14px;
}
.info-card h3 {
   margin: 0 0 10px 0;
}
.map-card{
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.map-card iframe {
    width: 100%;
    height: 240px;
    border: 0;
}
.contact .container{
    max-width: 900px;
    margin: 0 auto;
}
.footer{
    height: 44px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7f7f7;
    border-top: 1px solid #e5e5e5;
    font-size: 12px;
    color: #999;
}
.footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #333;
}
.footer-center {
    display: flex;
    gap: 14px;
}
.footer-center i {
    font-size: 16px;
}
.awards {
    background: #000;
    color: #fff;
    padding: 140px 80px;
    position: relative;
    overflow: hidden;
}
.awards-wrap{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}
.awards-title{
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 90px;
    opacity: 0.95;
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px 80px;
}
.awards h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}
.awards span{
    display: block;
    font-size: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
}
.awards p{
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}
#imageModal{
    position: fixed !important;
    inset: 0;
    z-index: 999999 !important;
    display: none;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

