body {
        font-family: "Inter", sans-serif;
         margin: 0;
  padding: 0;
      }
      html {
        scroll-behavior: smooth;
         margin: 0;
  padding: 0;
      }

      header {
  background-color: rgba(255, 255, 255, 0.3); /* Şeffaf beyaz */
  backdrop-filter: blur(10px); /* Arka plan bulanıklığı */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

header .text-white {
  color: black;
}

header nav a span:hover {
  color: #ccc;
}

header nav a span::after {
  background-color: white;
}

/******************************************************* SLİDER ****************************************************************** */

.swiper {
    width: 100vw;   /* Viewport genişliğini %100 kaplasın */
    height: 750px;
    margin: 0;
    margin-bottom: 10px;

    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

      /* .swiper {
        width: 100%;
        height: 500px; 
        margin-bottom: 0;
        margin-top: 0;
      } */

      .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Görsel orantısını korur, boşluk bırakmaz */
        border-radius: 12px;
      }
      /* Mobil için özelleştirme */
@media (max-width: 768px) {
  .swiper {
    width: 100vw;
    /* height: 400px; */
    height: 350px;
    margin: 0 5;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
   .swiper-slide img {
          aspect-ratio: auto; 
          height: 100%;
          object-fit: contain;
        }
}
      
      /* @media (max-width: 768px) {
        .swiper {
          height: 250px; 
        } 

        .swiper-slide img {
          aspect-ratio: auto; 
          height: 100%;
          object-fit: cover;
        }
      } */     
       .swiper-button-prev,
      .swiper-button-next {
        color: white;
      }
      .swiper-pagination-bullet {
        color: white;
        opacity: 0.4;
      }

 /******************************************************* SLİDER ****************************************************************** */

 /* ***************************************************************** HAKKIMIZDA ************************************************************************* */
  


 
 .hcontainer * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: consolas;
      }

      .hcontainer-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: white;
        /* background: #1d061a; */
      }

      .hcontainer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 40px 0;
      }

      .hcontainer .box {
        position: relative;
        width: 340px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 40px 30px;
        transition: 0.5s;
      }

      .hcontainer .box::before {
        content: " ";
        position: absolute;
        top: 0;
        left: 50px;
        width: 50%;
        height: 100%;
        text-decoration: none;
        background: #fff;
        border-radius: 8px;
        transform: skewX(15deg);
        transition: 0.5s;
      }

      .hcontainer .box::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50;
        width: 50%;
        height: 100%;
        background: #fff;
        border-radius: 8px;
        transform: skewX(15deg);
        transition: 0.5s;
        filter: blur(30px);
      }

      .hcontainer .box:hover:before,
      .hcontainer .box:hover:after {
        transform: skewX(0deg);
        left: 20px;
        width: calc(100% - 90px);
      }

      .hcontainer .box:nth-child(1):before,
      .hcontainer .box:nth-child(1):after {
        /* background: #8A784E; */
        /* background: linear-gradient(315deg, #ffbc00, #ff0058); */
         background: linear-gradient(to left, rgba(84, 58, 183, 1) 0%, rgba(142, 84, 233, 1) 100%);
      }

      .hcontainer .box:nth-child(2):before,
      .hcontainer .box:nth-child(2):after {
        /* background:#C78A3B; */
        /* background: #E3D2C3; */
        /* background: linear-gradient(315deg, #03a9f4, #ff0058); */
         background: linear-gradient(to left, rgba(84, 58, 183, 1) 0%, rgba(142, 84, 233, 1) 100%);
      }

      .hcontainer .box:nth-child(3):before,
      .hcontainer .box:nth-child(3):after {
        /* background: #7B4019; */
        /* background: #DBDBDB; */
        /* background: linear-gradient(315deg, #4dff03, #00d0ff); */
         background: linear-gradient(to left, rgba(84, 58, 183, 1) 0%, rgba(142, 84, 233, 1) 100%);
      }

      .hcontainer .box span {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 5;
        pointer-events: none;
      }

      .hcontainer .box span::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        opacity: 0;
        transition: 0.1s;
        animation: animate 2s ease-in-out infinite;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      }

      .hcontainer .box:hover span::before {
        top: -50px;
        left: 50px;
        width: 100px;
        height: 100px;
        opacity: 1;
      }

      .hcontainer .box span::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        opacity: 0;
        transition: 0.5s;
        animation: animate 2s ease-in-out infinite;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        animation-delay: -1s;
      }

      .hcontainer .box:hover span:after {
        bottom: -50px;
        right: 50px;
        width: 100px;
        height: 100px;
        opacity: 1;
      }

      @keyframes animate {
        0%,
        100% {
          transform: translateY(10px);
        }

        50% {
          transform: translate(-10px);
        }
      }

      .hcontainer .box .content {
        position: relative;
        left: 0;
        padding: 20px ;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1;
        transform: 0.5s;
        color: #fff;
      }

      .hcontainer .box:hover .content {
        
        padding: 50px 30px;
      }

      .hcontainer .box .content h2 {
        font-size: 2em;
        color: wheat;
        margin-bottom: 10px;
      }

      .hcontainer .box .content p {
        font-size: 1.1em;
        margin-bottom: 10px;
        line-height: 1.4em;
      }

      .hcontainer .box .content a {
        display: inline-block;
        font-size: 1.1em;
        color: #111;
        background: #fff;
        padding: 10px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        margin-top: 5px;
      }

      .hcontainer .box .content a:hover {
        background: #ffcf4d;
        border: 1px solid rgba(255, 0, 88, 0.4);
        box-shadow: 0 1px 15px rgba(1, 1, 1, 0.2);
      }

      .content p{
        color: white;
      }
      

 /* ***************************************************************** HAKKIMIZDA ************************************************************************* */

 /* ************************************************  UZMANLIK ALANLARI ************************************************************ */

  .flex-container {
    display: flex;
    /* position: absolute; */
    height: 50vh;
    width: 100%;
    display: flex;
    overflow: hidden;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .flex-container {
        flex-direction: column;
    }
}

.flex-title {
    color: #f1f1f1;
    position: relative;
    font-size: 5vw;
    margin: auto;
    text-align: center;
    transform: rotate(90deg);
    top: 15%;
    transition: all 500ms ease;
   
}

@media screen and (max-width: 768px) {
    .flex-title {
        transform: rotate(0deg) !important;
    }
}

.flex-about {
    opacity: 0;
    color: #fff !important;
    position: relative;
    width: 80%;
    font-size: 2vw;
    padding: 2%;
    top: 10%;
    border: 2px solid #fff;
    border-radius: 10px;
    line-height: 1.3;
    margin: auto;
    text-align: center;
    transform: rotate(0deg);
    transition: all 500ms ease;
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-about p {
    color: #fff !important;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .flex-about {
        width: 90%;
        padding: 1rem;
        border: 2px solid #fff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
    }

    .flex-about p {
        font-size: 1.2em;
        text-align: center;
    }
}

.flex-slide {
    flex: 1;
    cursor: pointer;
    transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
    .flex-slide {
      /* flex: 0 0 100%; */
        overflow: auto;
        overflow-x: hidden;
    }
}

.flex-slide p {
 
}

@media screen and (max-width: 768px) {
    .flex-slide p {
        font-size: 2em;
    }
}

.flex-slide ul li {
}

@media screen and (max-width: 768px) {
    .flex-slide ul li {
        font-size: 2em;
    }
}

.flex-slide:hover {
    flex-grow: 3;
}

.home {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/bilişim.jpg);
    background-size: cover;
    background-position:  center;
    background-attachment: fixed;
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
    background-repeat: no-repeat;
    /* background-attachment: scroll; */
}

@media screen and (min-width: 768px) {
    .home {
        animation: aboutFlexSlide 3s 1;
        animation-delay: 0s;
    }
}

@keyframes aboutFlexSlide {
    0% {
        flex-grow: 1;
    }
    50% {
        flex-grow: 3;
    }
    100% {
        flex-grow: 1;
    }
}

.flex-title-home {
}

@media screen and (min-width: 768px) {
    .flex-title-home {
        transform: rotate(90deg);
        top: 15%;
        animation: aboutFlexSlide 3s 1;
        animation-delay: 0s;
    }
}

@keyframes homeFlextitle {
    0% {
        transform: rotate(90deg);
        top: 15%;
    }
    50% {
        transform: rotate(0deg);
        top: 15%;
    }
    100% {
        transform: rotate(90deg);
        top: 15%;
    }
}

.flex-about-home {
    opacity: 0;
}

@media screen and (min-width: 768px) {
    .flex-about-home {
        animation: aboutFlexSlide 3s 1;
        animation-delay: 0s;
    }
}

@keyframes flexAboutHome {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.about {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/law3.jpg);
    background-size: contain;
    background-position: center center;
    background-attachment: fixed;
}

.contact-form {
    width: 100%;
}

input {
    width: 100%;
}

textarea {
    width: 100%;
}

.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/law1.jpg);
    background-size: contain;
    background-position: center center;
    background-attachment: fixed;
}
.work {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(image/law4.jpg);
    background-size: contain;
    background-position: center center;
    background-attachment: fixed;
}
.uzman-section{
 padding: 2rem 0;
  color: white;
  display: grid;
  place-items: center;
}
 
 /* ************************************************  UZMANLIK ALANLARI ************************************************************ */

  /******************************************************* İLETİŞİM *************************************************************** */
 .scroll-container {
        display: flex;
        overflow-x: auto;
        gap: 2rem;
        padding: 2rem;
        scroll-snap-type: x mandatory;
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
      }

      .scroll-container .card {
        flex: 0 0 auto;
        width: 280px;
        height: 400px;
        background: linear-gradient(135deg, #4e54c8, #8f94fb);
        border-radius: 1.5rem;
        padding: 1.5rem;
        scroll-snap-align: start;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        color: white;
        text-align: center;
      }

      .card:hover {
        transform: scale(1.05) rotate(-1deg);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
      }

      .card h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        
      }

      .card p {
        font-size: 1rem;
        line-height: 1.5;
      }
      .scroll-container::-webkit-scrollbar {
        height: 10px;
      }

      .scroll-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;
      }

      .scroll-container::-webkit-scrollbar-track {
        background: #444;
      }
  
  /******************************************************* İLETİŞİM **************************************************************** */

 /* ***************************************************** FOOTER ****************************************************************** */

     @import url(//fonts.googleapis.com/css?family=Lato:300:400);

/* Genel Sayfa Ayarları */
body {
  margin: 0;
  font-family: "Lato", sans-serif;
}

h1 {
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 48px;
}

p {
  letter-spacing: 1px;
  font-size: 14px;
  color: #333;
}
h3 {
    display: inline-block;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    width: 50%;
    text-align: center;
}

/* Footer Genel */
.footer {
  position: relative;
  text-align: center;
  background: linear-gradient(to left, rgba(84, 58, 183, 1) 0%, rgba(142, 84, 233, 1) 100%);
  color: white;
  padding-top: 30px;
  padding-bottom: 20px;
}

.footer-logo {
  width: 50px;
  fill: white;
  padding-right: 15px;
  display: inline-block;
  vertical-align: middle;
}

.inner-footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
   display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Footer Bilgi Sütunları */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
 justify-content: center;
  text-align: center;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffdd57;
}
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
/* Sosyal İkonlar */
.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #ffdd57;
  transform: scale(1.1);
}

/* Alt Yazılar */
.footer-copy {
  margin-top: 25px;
  font-size: 13px;
}

.kodtayfa {
  margin-top: 10px;
}

.kodtayfa-link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.kodtayfa-link:hover {
  color: #ffdd57;
}

/* Dalga Efekti */
.footer-icerik {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-icerik {
    height: 40px;
    min-height: 40px;
  }
  
  h1 {
    font-size: 24px;
  }
}
/* **************************************************** FOOTER ********************************************************************* */



