
:root {
  --white-color: rgba(181, 178, 178, 0.04);
  --primary-color:                #13547a;
  --secondary-color:          #CED4DA;
  --section-bg-color: #ced4da;
  --custom-btn-bg-color:          #80d0c7;
  --custom-btn-bg-hover-color:    #13547a;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #13547a;

  --body-font-family:             'Open Sans', sans-serif;
  --title-font-family:            'Montserrat', sans-serif;

  --h1-font-size:                 58px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --menu-font-size:               14px;
  --btn-font-size:                18px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}




h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #7e7f80 0%, #eeefef 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}





/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.custom-btn {
    color: black; /* Yazı siyah */
    border: 2px solid black; /* Siyah çerçeve */
    background-color: transparent; /* Arka plan şeffaf */
    transition: all 0.3s ease;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
}

.custom-btn:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Hafif beyazlaşma */
    color: black; /* Yazı hala siyah */
    border-color: black; /* Çerçeve siyah kalır */
    text-decoration: none;
}


.custom-border-btn {
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
    transition: all 0.3s ease;
}

.custom-border-btn:hover {
    background: rgba(255, 255, 255, 0.1); /* Hafif beyaz arka plan */
    border-color: #000000; /* Border siyah kalsın */
    color: #000000; /* Yazı siyah kalsın */
    user-select: text; /* Yazı seçilebilir olsun */
}


/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header {
  background-image: url('images/uzunarkaplan.png');
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary-color);
}

.navbar {
  background: transparent;

  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {             /*GERİ KALAN RENKLER */
  display: inline-block;
  color: #000000;
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #42a5ca;
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}


.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: #000;
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: #000;
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  TOPICS
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}




/*---------------------------------------
  TOPICS
-----------------------------------------*/

.topics-listing-page .site-header {
  padding-bottom: 65px;
}


/*---------------------------------------
  PAGINATION
-----------------------------------------*/
.pagination {
    margin-top: 40px;
    flex-wrap: wrap; /* Mobilde alt alta sığdırmak için */
}

/* Butona tıklanıp bırakıldığında eski haline dönmesi için */






/*---------------------------------------
  TIMELINE
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: rgb(170, 170, 170);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: #ffffff;
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: #000000;
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: rgb(170, 170, 170);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: rgb(170, 170, 170);
}


/*---------------------------------------
  FAQs
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary-color);
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: #000000;
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: #878787;
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

.custom-block-image {
    width: 410px;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: black;
}

/* Sayfalama varsayılan stil */

/* Mobil uyumlu stil */
@media (max-width: 576px) {

    .pagination {
        flex-wrap: wrap;
    }

    .page-item {
        margin-bottom: 5px;
    }
}

/* -------------------------------------------------------BRANDS -------------------------------------*/


     /* BRANDS SECTION STYLES */
 .brands-section {
     padding: 4rem 0;
     background-color: #f8fafc;
     overflow: hidden;
 }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7A7A7D, #D0D0D5);
    margin: 1rem auto 0;
}

/* SLIDER STYLES */
.brands-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brands-slider-track {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    width: calc(250px * 20); /* Logo genişliği x (logo sayısı x 2) */
}

.brand-logo {
    flex: 0 0 250px;
    padding: 0 15px;
    transition: transform 0.3s ease;
}

.brand-logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 10)); /* Logo genişliği x logo sayısı */
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .brands-slider-track {
        animation: scroll 30s linear infinite;
    }

    .brand-logo {
        flex: 0 0 180px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}


/* ANA SAYFADAKİ ÜRÜNLER */
.auto-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    margin-top: 10px;
    height: 220px;
}

.auto-scroll {
    display: flex;
    height: 100%;
    align-items: center;
    width: max-content;
    animation: scroll-left 40s linear infinite;
    will-change: transform; /* Performans için */
}

.product-card {
    flex: 0 0 auto;
    width: 160px;
    height: 183px;
    margin: 0 12px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    user-select: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px 10px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* Mobil uyumluluk */
@media (max-width: 768px) {
    .product-card {
        width: 140px;
        height: 160px;
    }
    .product-card img {
        height: 100px;
    }
}

.container-fluid {
    padding-bottom: 50px;
}

/* LOGO */
.navbar-brand img {
    height: 120px;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px;
    }
}

/* CSS dosyanızda */
@media only screen and (max-width: 768px) {
    .hero-section {
        min-height: 60vh !important;
    }
}

/* GALERİ  */
.gallery-section {
    padding: 40px 0 80px; /* Üst: 40px, Alt: 80px */
    background-color: #f9f9f9;
}

/* Galeri Başlık Section */
.gallery-title-section {
    padding: 50px 0;
    text-align: center;
}

.gallery-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: #69696c; /* İstersen renk değiştir */
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Galeri Container & Item */
.gallery-container {
    margin-top: 20px;
}

.gallery-item {
    margin-bottom: 30px;
    padding: 10px;
}

/* Resim ve Video Çerçevesi */
.gallery-frame {
    border: 10px solid #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Resimler */
.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Videolar */
.video-frame {
    border: 10px solid #fff;
    background: #000;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-text h1 {
    color: #1a1a1a;
    font-weight: 300;
    font-style: italic;
    font-size: 2rem; /* Büyük ekran için temel boyut */
}

/* Laptop ve büyük ekranlar */
@media (min-width: 1200px) {
    .hero-text h1 {
        font-size: 2.2rem; /* PC’de çok büyük olmaması için limit */
    }
}

/* Tablet */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Mobil */
@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }
}




/* Shorts Konteyner Stili */
.shorts-container {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 Dikey Oran (16/9*100) */
    overflow: hidden;
    border-radius: 8px;
    background: #000; /* Video kenarları siyah */
}

.shorts-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videoyu kırparak doldurur */
}

/* Shorts Çerçevesi */
.shorts-frame {
    max-width: 360px; /* Mobilde genişlik sınırı */
    margin: 0 auto; /* Ortala */
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('images/arkaplan.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-text {
    position: absolute;
    top: 25%; /* referans noktanın biraz üstü */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

/* Mobil için daha uygun değer */
@media (max-width: 767px) {
    .hero-text {
        top: 28%; /* mobilde biraz daha aşağı */
    }
}








