.section-inner {
  /*padding: 20px 30px 0;*/
  max-width: 100%;
  overflow: hidden;
}

.about-contentbox {
  padding-right: 40px;
  text-align: left;
  max-width: 100%;
  overflow: hidden;
}
.about-contentbox span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}
.about-contentbox h2 {
  font-size: 36px;
  text-transform: capitalize;
  letter-spacing: 2px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.animate {
  opacity: 0;
}
.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.facts-list {
  margin-top: 30px;
  max-width: 100%;
}
.facts-list .item {
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
  width: 100%;
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  padding: 30px 0px;
  background: rgba(0,0,0,0.25);
}
.facts-list .item:hover {
  background: #fff;
  color: #1e1e1e;
}
.facts-list .owl-dots {
  margin-bottom: 30px;
}

.counter-box span {
  font-size: 26px;
  font-weight: 700;
}
.counter-icon {
  font-size: 30px;
  margin-bottom: 10px;
  opacity: 0.75;
}
.count-number, .counted {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.about-img {
  padding: 10px;
}
.about-img img {
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
  border-radius: 10px;
  max-width: 100%;
}

.justify-content-center {
  justify-content: center !important;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional Animation Classes */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.animated-row {
  position: relative;
}

.about-section {
  padding-top: 80px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

/* Ensure the layout works without fullPage.js */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.wide-col-laptop {
  max-width: 1170px;
  width: 100%;
}

/* Responsive styles for mobile devices */
@media only screen and (max-width: 767px) {
  .section {
    min-height: auto;
    padding: 60px 0;
  }
  
  .about-section {
    padding: 40px 0;
  }
  
  .section-inner {
    padding: 10px 15px;
  }
  
  .about-contentbox {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .about-contentbox h2 {
    font-size: 28px;
    margin-top: 5px;
    margin-bottom: 15px;
  }
  
  .facts-list {
    margin-top: 20px;
  }
  
  .facts-list .owl-dots {
    margin-bottom: 20px;
  }
  
  .facts-list .item {
    padding: 20px 0;
  }
  
  .count-number, .counted {
    font-size: 28px;
    margin-bottom: 5px;
  }
  
  .counter-icon {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .about-img {
    margin-top: 30px;
    padding: 0;
  }
}

@media only screen and (max-width: 575px) {
  .section-inner {
    padding: 10px;
  }
  
  .about-contentbox h2 {
    font-size: 24px;
  }
  
  .about-contentbox span {
    font-size: 10px;
  }
}

/* Fix for owl carousel */
.owl-carousel .owl-item {
  display: inline-block;
  float: none;
  vertical-align: middle;
}

.owl-carousel .owl-stage {
  display: flex;
}

.facts-list.owl-carousel .item {
  width: 100%;
  max-width: 100%;
}

/* Ensure even on mobile the items are centered */
@media (max-width: 767px) {
  .facts-list.owl-carousel .owl-stage {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  
  .facts-list.owl-carousel .owl-item {
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .facts-list.owl-carousel .item {
    width: 100%;
  }
  
  /* Fix the column layout on mobile */
  .row {
    display: block !important;
  }
  
  .col-md-6 {
    max-width: 100% !important;
    width: 100% !important;
    flex: none !important;
    display: block !important;
  }
}

/* Desktop override to fix the conflicts */
@media (min-width: 768px) {
  .row {
    display: flex !important;
  }
  
  .col-md-6 {
    max-width: 50% !important;
    width: 50% !important;
    flex: 0 0 50% !important;
  }
  
  .about-contentbox {
    text-align: left !important;
    padding-right: 20px !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  
  .facts-list .item {
    padding: 15px 10px !important;
  }
  
  .counter-box {
    font-size: 12px !important;
  }
  
  .count-number, .counted {
    font-size: 28px !important;
  }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 30px 0;
}

.gallery-list {
    margin-top: 30px;
}

.gallery-item {
    margin-bottom: 30px;
}

.image-block {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.image-overlay {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.image-overlay img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay:hover img {
    transform: scale(1.1);
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.image-overlay:hover .overlay-content {
    opacity: 1;
}

.overlay-content h4 {
    margin: 0 0 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.overlay-content p {
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    font-size: 0.9rem;
    opacity: 0.8;
}

.overlay-content .btn-details {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 18px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.overlay-content .btn-details:hover {
    background-color: #fff;
    color: #333;
}

.image-overlay:hover .overlay-content h4,
.image-overlay:hover .overlay-content p,
.image-overlay:hover .overlay-content .btn-details {
    transform: translateY(0);
    opacity: 1;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .image-overlay img {
        height: 220px;
    }
    
    .gallery-item.animate {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .image-overlay img {
        height: 200px;
    }
    
    /* Show overlay content on mobile since there's no hover */
    .overlay-content {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.5);
    }
    
    .overlay-content h4,
    .overlay-content p,
    .overlay-content .btn-details {
        transform: translateY(0);
        opacity: 1;
    }
    
    .overlay-content .btn-details {
        margin-top: 10px;
        padding: 4px 14px;
        font-size: 0.8rem;
    }
}

/*---------------------------------------
  ARTISTS SECTION             
-----------------------------------------*/
.artists-section {
  padding: 20px 0;
  /*background-color: #f5f5f5;*/
  /*background: linear-gradient(180deg, #4D69D9 0%, #3E69B1 100%);*/ /*açık*/
  background: linear-gradient(180deg, #3E69B1 0%, #29487D 100%); /*orta ton*/
  /*background: linear-gradient(180deg, #313380 0%, #181940 100%);*/ /*orijinal*/
}

.artists-thumb {
  position: relative;
  margin-bottom: 30px;
}

.artists-image-wrap {
    position: relative;
}

.artists-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Yarı saydam siyah overlay */
    border-radius: 20px; /* Resmin border-radius'u ile aynı */
}

.artists-image {
    border-radius: 20px;
    display: block;
    width: 100%;
}

.artists-hover {
  color: #fff;
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  z-index: 3; /* Overlay'in üzerinde görünmesi için */
}

.artists-hover p:first-of-type {
    font-size: 28px;
    font-weight: 700;
    font-family: "Red Hat Display", Avenir, Montserrat, Corbel, "URW Gothic", source-sans-pro, sans-serif;
}

.artists-hover p:last-of-type {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Red Hat Display", Avenir, Montserrat, Corbel, "URW Gothic", source-sans-pro, sans-serif;
}

/* Hover efekti sadece arka plan rengini değiştirsin */
/*.artists-thumb:hover .artists-hover {

}*/

@media screen and (max-width: 991px) {
  .artists-thumb {
    margin-bottom: 20px;
  }
}

.artists-hover-left {
    width: 70%;
    align-items: flex-start;
    transform: translateX(-40%);
    z-index: 2;
    text-align: left;
}

.artists-hover-right {
    width: 70%;
    align-items: flex-end;
    transform: translateX(80%);
    z-index: 2;
    text-align: right;
}

.project-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.secondary-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.secondary-icon::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: -3px;
}

.project-link:hover .secondary-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* Soldaki resim için */
.artists-hover-left .project-link {
    align-self: flex-start;
}

/* Sağdaki resim için */
.artists-hover-right .project-link {
    align-self: flex-end;
}

.hakkimizdaText {
  font-size: 14px;
  font-family: "Red Hat Display", Avenir, Montserrat, Corbel, "URW Gothic", source-sans-pro, sans-serif;
}


.hakkimizdaslant::after {
  content: "";
  background: white;
  height: 150px;
  -webkit-transform: skewY(5deg);
  -ms-transform: skewY(5deg);
  transform: skewY(5deg);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  top:20px;
}


.hakkimizdaslant{
  position: relative;
  width: 100%;
  height: 100px;
  background: white;
  z-index: 2;
}


