@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    }

.navbar {
    background: transparent;
    z-index: 10;
}

.nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
    margin-right: 1rem;
}

.nav-link:hover {
    color: #17a2b8 !important;
}

.close-menu {
    display: none;
}
.navbar-collapse {
    transition: none !important; /* .collapse için */
  }
  
  .navbar-collapse.collapsing {
    height: auto !important;     /* .collapsing animasyonunu iptal */
    transition: none !important;
  }
/* @media (max-width: 992px) {
    .navbar-collapse.show {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh; 
      z-index: 9999;
      background-color: #0b052b;
      overflow-y: auto; 
    }
  
    .navbar-nav {
      display: flex;
      flex-direction: column;
      align-items: center; 
      justify-content: center;
      height: 100%;
    }
  
    .navbar-nav .nav-link {
      padding: 1rem 0;
      font-size: 1.2rem; 
    }

    .dropdown-menu li a{
        display: flex;
        flex-direction: column;
        align-items: center; 
        justify-content: center;
    }
    .close-menu {
        display: block;

        position: absolute;
        top:5rem;
        right:7rem;
        font-size: 2rem;        
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
        transition: transform 0.3s ease;
      }
    
      .close-menu:hover {
        transform: rotate(180deg);
      }
  } */

body {
    background: #0b052b;
    margin: 0;
    height: 100vh;
    /* overflow: hidden; */
    position: relative;
}

body::before {
    content: "";
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/back.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    opacity: 0.2; /* Arka planın şeffaflık oranı */
    z-index: -1;  
    pointer-events: none; 
}
.mt-10{
    margin-top: 10rem;
}

.mt-9{
    margin-top: 8rem;
}

.menu {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-size: 1.2rem;
}
.menu-dropdown .dropdown-menu{
    background: transparent !important;
    border: none;
}

.menu-dropdown .dropdown-item{
    color: #fff;
    font-size: 1.1rem;
    line-height: 2.5rem;
}

.menu-dropdown .dropdown-item:hover{
   background: #fff;
   color: #0b052b;

}

.content {
    position: relative;
    z-index: 5;
    color: white;
    text-align: center;
    padding-top: 150px;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    height: 88vh; 
    text-align: center;
}

.accordion .accordion-item {
    background-color: transparent;
    border: none;
}

.accordion-button {
    background-color: transparent;
    color: white;
    font-size: 1.5rem;
    text-align: left;
    text-decoration: none;
    border: none;
    padding: 0.5rem 1rem;
}

.accordion-button.collapsed {
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body ul {
    padding-left: 20px;
    list-style: none;
}

.accordion-body ul li a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.accordion-body ul li a:hover {
    color: #17a2b8;
}

.about-section h2,
.vision-section h2,
.service-details h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #a3aab3 !important;
}


.about-section p,
.vision-section p,
.service-details p {
    color: #d9d6d6 !important;
    line-height: 1.8 !important;
    font-size: 1.1rem !important;
}
.vision-section ul li,
.service-details ul li{
    color: #d9d6d6 !important;
    line-height: 1.8;
    font-size: 1.1rem;
}

.list-group-item {
    background: transparent;
    border: none;
    padding: 10px 0;
    font-size: 1rem;
}

.list-group-item i {
    font-size: 1.2rem;
}

.list-group-item b {
    color: #1f5876;
}
.img-fluid {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.scroll-animation {
    opacity: 0;
    transition: opacity 1.5s ease, transform 3.5s ease;
}

.scroll-animation.animate__fadeInLeft {
    transform: translateX(-50px);
}

.scroll-animation.animate__fadeInRight {
    transform: translateX(50px); 
}

.scroll-animation.scroll-visible {
    opacity: 1;
    transform: translateX(0); 
}

.scroll-animation.animate__fadeInDown{
    transform: translateY(-100px);
}

.scroll-animation2 {
    opacity: 0;
    visibility: hidden;
}

.scroll-animation2.animate__animated {
    opacity: 1;
    visibility: visible;
    transition: all 5s ease;
}


.services h2{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #a3aab3 !important;
}
.services h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color:#ffffff !important;
    margin-bottom: 2rem;
}

.services p {
    color: #e7e4e4 !important;
    line-height: 1.8;
    font-size: 1.1rem;

}

@media(max-width:576px){
    .services{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .services .row{
        display: flex;
        justify-content: center;
        margin: auto;
        text-align: center;
    }
    .services .read-more{
        float: none;        
        display: block;     
        margin: 0 auto;   
        text-align: center;  
        margin-top: 1rem;
    }
}
.line-animation {
    position: relative; 
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    overflow: hidden; 
}
.line-animation a{
    color: #fff;
    text-decoration: none;
}
.read-more {
    display: inline-block;
    position: relative;
    color: #fdfdfd;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s ease;
    float: right;
    margin-right: 3rem;
}

.read-more::before,
.read-more::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.read-more::before {
    left: 0;
    top: 0;
}

.read-more::after {
    right: 0;
    bottom: 0;
}

.read-more:hover::before,
.read-more:hover::after {
    width: 100%; 
}

@media(max-width:768px){
    .about-btn{
        float: none;        
        display: block;     
        margin: 0 auto;   
        text-align: center;  
        margin-top: 1rem;
    }
}
.line-animation::before {
    content: "";
    position: absolute;
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background-color: #ffffff;
    transition: width 0.5s ease; 
}

.line-animation:hover::before {
    width: 100%; 
}

.line-animation:hover {
    color: #ffffff; 
}

.scroll-animation {
    opacity: 0;
    transform: translateY(30px); 
    transition: opacity 1s ease, transform 1s ease; 
}

.scroll-animation.scroll-visible {
    opacity: 1;
    transform: translateY(0); 
}


.heading-with-arrow {
    position: relative; 
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    padding-left: 30px; 
    cursor: pointer;
}

.heading-with-arrow .arrow {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px; 
    height: 1px; 
    background-color: #ffffff;
    transition: width 0.5s ease; 
}

.heading-with-arrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px; 
    width: 0; 
    background-color: #007bff;
    transition: width 0.5s ease; 
}

.heading-with-arrow:hover .arrow {
    width: 100%; 
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.photo-card:hover img {
    transform: scale(1.1); 
}

.photo-container:nth-child(odd) .photo-card {
    margin-top: 50px; 
}

.photo-container:nth-child(even) .photo-card {
    margin-bottom: 30px; 
}

@media (max-width:768px) {
    .photo-container{
        justify-content: center;
        align-items: center;
    }
    .photo-container .col-10{
        margin: auto;
    }
    .photo-container:nth-child(odd) .photo-card {
        margin-top: 0px; 
    }
    
    .photo-container:nth-child(even) .photo-card {
        margin-bottom: 0px; 
    }
    .photo-container {
        justify-content: center !important;
        margin-left: 1.5rem;
    }
}
.reference h2{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #a3aab3 !important;
}

.footer2 {
    background-color: #44a5ba;
    background-color: #0b052b;
    color: #fff;
    padding: 40px 20px;
    position: relative;
    border-radius: 40% 0 0 0;
    display: none;
}
.footer2 ul li a{
    text-decoration: none;
    color: #fff;

}
.footer2 p a{
    text-decoration: none;
    color: #fff;

}
@media(max-width:991px){
    .footer2{
        display: block;
        background-color: #44a5ba;
        background-color: #0b052b;
        color: #fff;
        padding: 40px 20px;
        position: relative;
        border-radius: 40% 0 0 0;
        text-align: center;
    }
    .footer{
        display: none;
    }
} 
.footer {
    background: linear-gradient(135deg, #44a5ba, #2886a1);
    background: linear-gradient(135deg, #0b052b, #2886a1);
    background: linear-gradient(135deg, #2886a1, #0b052b);

    color: #fff;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    padding-top: 10rem;
    border-radius: 0 20% 0 0;
}

@keyframes wave {
    0% { left: -50%; }
    100% { left: 50%; }
}

.footer-top {
  
    position: relative;
    z-index: 1;
}
.footer a {
    color: #ccc;
    text-decoration: none;
}
.footer a:hover {
    color: #fff;
}
.footer-logo img {
    max-width: 150px;
}

/* 
.turtle-container {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    overflow: hidden;
}

.turtle-animation {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 80vw; 
    opacity: 0.3; 
    animation: turtleWave 6s infinite ease-in-out alternate; 
} */

/* Kaplumbağanın hareketi */
/* @keyframes turtleWave {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50%, -45%) rotate(10deg) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-10deg) scale(1);
    }
} */
.turtle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Damla animasyonu */
.turtle-animation {
    position: absolute;
    top: -10%;  
    left: 50%;
    transform: translateX(-50%);
    width: 80vw; 
    opacity: 0.8;
    animation: dropAnimation 5s infinite ease-in-out;
}

/* Su damlası animasyonu */
@keyframes dropAnimation {
    0% {
        top: -10%;         /* Yukarıdan başla */
        opacity: 0.2;
        transform: translateX(-50%) scale(0.8);
    }
    50% {
        top: 50%;          /* Ortaya doğru gel */
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
    100% {
        top: 110%;         /* Ekranın dışına çık */
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
}
.services {
    position: relative; /* Kaplumbağa bu alanın içinde kalsın */
    overflow: hidden; /* Kaplumbağa dışarı taşmasın */
}


form label{
    color: #fdfdfd;
}
form button{
    background-color: #17a2b8 !important;
    color: #fdfdfd !important;
}


@media(max-width:576px){
    .vision-section h3{
        padding-left: 1rem;
    }
    .vision-section h2{
        text-align: center;
    }
    .vision-section .vision-title{
        margin-top: 5rem;
    }
    .vision-section .vision-text{
        padding-left: 1rem;
        padding-right: 1rem;
    }

}
.contact p a{
    text-decoration: none;
    color: #fff;
}
@media(max-width:576px){
    .contact{
        padding: 2rem;
    }

    .service-details{
        padding: 2rem;
    }

    .design .mt-10{
        margin-top: 5rem;
    }
}
.lang-btn{
    color: #fff;

}
.lang-btn:hover{
    color: #17a2b8 !important;

}
.lang-for-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    /* background: #4356d6; */
    display: none;
  }
  
  .lang-for-mobile  span {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .lang-for-mobile a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
  }
  
  .lang-for-mobile a em {
    font-size: 12px;
  }
  
  @media ( max-width: 1199px ) {
    .lang-for-mobile  {
      display: flex;
    }
  }

  .slider img:hover{
    transform: none;
    box-shadow: none;
  }

  @media (max-width: 1199px) {
    .menu-dropdown {
        display: none !important; /* Menüleri küçük ekranlarda gizle */
    }
    
    .navbar-toggler {
        display: block;
        position: absolute;
        z-index: 1050;
        /* right: 15px;
        top: 15px; */
    }
    .close-menu {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        z-index: 1060;
    }
    .fullscreen-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(19, 19, 38, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        text-align: center;
    }

    .fullscreen-menu.show {
        opacity: 1;
        visibility: visible;
    }

    .fullscreen-menu .navbar-nav {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .fullscreen-menu .nav-item {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    .fullscreen-menu .dropdown-item {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}