/*

TemplateMo 583 Festava Live

https://templatemo.com/tm-583-festava-live

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    --white-color: #ffffff;
    --primary-color: #32CD32; /* Eskiden #ED1C24 */
    --secondary-color: #BD181E;
    --section-bg-color: #f0f8ff;
    --custom-btn-bg-color: var(--secondary-color);
    --custom-btn-bg-hover-color: #A3151A;
    --dark-color: #555;
    --p-color: #717275;
    --border-color: #ff7f7f;
    --link-hover-color: var(--primary-color);
    --body-font-family: 'Outfit', sans-serif;
    --h1-font-size: 74px;
    --h2-font-size: 46px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 18px;
    --btn-font-size: 14px;
    --copyright-font-size: 16px;
    --border-radius-large: 10px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --nav-h: 90px;
}
.backgroundimagesection {
    margin-top: var(--nav-h); /* menünün altından başlasın */
    min-height: calc(100vh - var(--nav-h)); /* ekranın geri kalanını kaplasın */
    width: 100%;
    background-image: url('../images/homepage-section-background.webp');
    background-size: cover; /* resmi ekranı kaplar */
    background-position: center; /* ortalansın */
    background-repeat: no-repeat; /* tekrar etmesin */
}

/* Tablet ekranlarda (max 992px) */
@media (max-width: 992px) {
    :root {
        --nav-h: 100px; /* tablet menüsü biraz daha yüksek olabilir */
    }

    .backgroundimagesection {
        background-size: contain; /* resmi sıkıştırıp tamamını göster */
        background-position: top center; /* üstten hizala */
    }
}

/* Mobil ekranlarda (max 768px) */
@media (max-width: 768px) {
    :root {
        --nav-h: 110px; /* mobil menü yüksekliği */
    }

    .backgroundimagesection {
        min-height: calc(80vh - var(--nav-h)); /* biraz daha kısa olabilir */
        background-size: contain; /* tamamı görünsün */
        background-position: center top;
    }
}

/* Çok küçük ekranlarda (max 480px) */
@media (max-width: 480px) {
    :root {
        --nav-h: 120px; /* küçük cihazda menü daha yüksek olabilir */
    }

    .backgroundimagesection {
        min-height: calc(70vh - var(--nav-h)); /* çok küçük cihazda alanı kısalt */
        background-size: contain;
        background-position: top;
    }
}
.remante-text {
  color: var(--primary-color);
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

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);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {

  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: #32CD32; /* Eskiden kırmızıysa yeşil yapıldı */
  font-size: 2rem;
  vertical-align: middle;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: #32CD32;
  border: 1px solid transparent;
  border-radius: 30px; /* Daha yuvarlak olması için artırıldı */
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.navbar .custom-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.navbar .custom-btn:hover {
    background: #ED1C24;
    color: var(--white-color);
}

.navbar .b2b-button {
    background: transparent;
    border: 1px solid #ED1C24;
    color: #ED1C24;
    padding: 8px 25px; /* Adjusted padding */
    border-radius: 5px;
    font-weight: normal;
    font-size: 16px;
}

.navbar .b2b-button:hover {
    background: #ED1C24;
    color: var(--white-color);
}

.dropdown-menu {
    background-color: var(--dark-color);
    border: none;
    padding: 10px 0;
}

.dropdown-item {
    color: var(--white-color);
    padding: 10px 20px; /* Adjusted padding */
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.language-dropdown .dropdown-menu {
    left: auto;
    right: 0;
}

.language-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
}

.language-dropdown .language-flag {
    width: 20px;
    margin-right: 8px;
}

.b2b-button-container {
    margin-left: 20px; /* Adjusted margin */
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 0px;
}



.navbar {
  background-color: #fff; /* Eskiden var(--dark-color) */
  z-index: 9;
  padding: 3px 0; /* Increased padding */
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
}

.navbar-brand img {
    height: 80px !important;
    width: 100% !important;
}

.navbar-brand .custom-icon {
    font-size: 24px;
    margin-right: 5px;
}

.navbar-expand-lg .navbar-nav .nav-item {
    margin-left: 0;
    margin-right: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 0 15px;
  padding: 15px 0; /* Increased vertical padding */
}

.navbar-nav .nav-link {
  display: inline-block;
  color: #222; /* Eskiden var(--white-color) */
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: #ED1C24;
}

.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: var(--white-color);
  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: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO         
-----------------------------------------*/
.hero-section {
    position: relative;
    /*overflow: hidden;*/
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    height: auto;
   /* background-image: url('../images/homepage-section-background.webp');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-mission-bg {
    background-image: url('../images/pexels-alexander-suhorucov-6457579.jpg');
    background-size: cover;
    background-position: center;
}

.hero-vision-bg {
  
    background-size: cover;
    background-position: center;
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
  position: relative; /* Added for absolute positioning context */
}

.hero-section .col-lg-4.col-md-12.col-12.text-center.d-flex.align-items-center.justify-content-center {
    position: relative; /* Ensure product categories are positioned relative to this */
}

.hero-section .col-12.text-center.mt-5 {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.hero-section .col-12.text-center.mt-5 p {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .col-12.text-center.mt-5 img {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(240deg) brightness(100%) contrast(100%);
}

.hero-section .col-12.text-center.mt-5 .bi-arrow-right-short,
.hero-section .col-12.text-center.mt-5 .bi-arrow-left-short {
    font-size: 24px;
    color: var(--primary-color);
}

.hero-section .col-12.text-center.mt-5 .bi-arrow-right-short {
    margin-right: -5px;
}

.hero-section .col-12.text-center.mt-5 .bi-arrow-left-short {
    margin-left: -5px;
}

.hero-section .col-lg-6.col-md-12.col-12 {
    flex: 0 0 auto;
 
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 50px 15px #555; /* Başlangıç gölge boyutu */
    }
    50% {
        box-shadow: 0 0 50px 25px #000; /* Daha büyük gölge boyutu */
    }
    100% {
        box-shadow: 0 0 50px 15px #222; /* Başlangıç gölge boyutuna dön */
    }
}

.circular-product-container {
    position: relative;
    width: 85%;
    aspect-ratio: 1 / 1;
    max-width: 650px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 0 50px 20px #222, 0 4px 32px 0 rgba(0,0,0,0.10); /* Kırmızı animasyon + hafif gölge */
    animation: pulse-shadow 3s infinite alternate; /* Animasyonu uygula */
    --circle-radius: 260px;
    margin-bottom: 50px;
}

.homepage-car {

    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 400px; /* Web için biraz küçültüldü */
    height: 400px; /* Web için biraz küçültüldü */
    max-width: 90%;
    max-height: 90%;
}

.product-category-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    transform: translate(-50%, -50%); /* Centers the item on its coordinates */
    transition: transform 0.3s ease, color 0.3s ease; /* Add transition for smooth effect */
}

.product-category-item:hover {
    transform: translate(-50%, -50%) scale(1.1); /* Slightly enlarge on hover */
}

.product-category-item:hover p {
    color: var(--primary-color); /* Change text color to green on hover */
}

.product-category-item img {
    width: 70px; /* Consistent size */
    height: 70px;
    object-fit: contain;
    margin-bottom: 5px;
    /* filter: brightness(0) invert(1); */ /* Removed to restore original colors */
    filter: none; /* Ürün görsellerinden gölgeyi kaldır */
    background: none !important;
    border: none !important;
}

.product-category-turbochargers img{
  top: 15%;
  left: 50%;
}
.product-category-high-pressure-pumps img {
    width: 55px;
    height: 55px;
}

.product-category-item p {
    color: #111;
    font-size: 12px; /* 1px küçültüldü */
    margin-bottom: 0;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.15); /* Hafif gölgeyle daha belirgin */
}
/* Yuvarlak içindeki araç isimleri için override */
.circular-product-container .product-category-item p {
    color: #111 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.10) !important;
    font-size: 14px !important; /* 1px küçültüldü */
    font-weight: bold !important;
}

/* Precise positioning based on trigonometric calculations and visual estimation from the image */
/* Starting from High-pressure pumps (Hochdruckpumpen) at top-right (around 30-45 degrees relative to horizontal right) */
.product-category-high-pressure-pumps {
    top: 17%;
    left: 73%;
}

.product-category-injectors-uis {
    top: 35%;
    left: 90%;
}

.product-category-steering-parts {
    top: 60%;
    left: 89%;
}

.product-category-brake-calipers {
    top: 82%; /* Adjusted from 85% */
    left: 75%; /* Adjusted from 70% */
}

.product-category-dual-mass-flywheels {
    top: 90%;
    left: 51%;
}

.product-category-starters {
    top: 83%;
    left: 27%;
}

.product-category-alternators {
    top: 65%;
    left: 11%;
}

.product-category-abs-ecu {
    top: 40%;
    left: 10%;
}

.product-category-adblue-tank {
    top: 19%;
    left: 23%;
}

.product-category-turbochargers {
    top: 10%;
    left: 50%; /* Positioned at the top center */
}

.product-category-air-suspension {
    top: 90%;
    left: 70%;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
    background-color: rgba(0,0,0,0.3);
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-map-space {
    margin: 0 auto;
    max-width: clamp(420px, 60vw, 960px);
    height: auto;
}

.about-map-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius-medium);
}

.about-description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-map-space {
        max-width: 90vw;
    }

    .about-description p {
        font-size: 1rem;
    }
}
/*---------------------------------------
  ENVIRONMENTAL IMPACT SECTION             
-----------------------------------------*/
.environmental-impact-section {
    background-color: #f5f5f5; /* Eskiden #1a1a1a */
    color: #222;
}

.environmental-impact-section .row {
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */ /* Adjusted from 30px to reduce spacing */
    justify-content: center;
    align-items: flex-start; /* Align items to the start for consistent top alignment */
}

.environmental-impact-section .col-lg-4 {
    flex-basis: 30%; /* Approximately 1/3 with some space for gaps */
    max-width: 30%; /* Ensure it doesn't exceed this width */
    padding: 0 40px; /* Add some padding to simulate gap within the column */
    height: 450px;
    margin-top: 80px;
}

.environmental-card {
    background-color: #fff; /* Eskiden #333 */
    border-radius: var(--border-radius-medium);
    padding: 15px; /* Further reduced from 20px */
    margin-bottom: 25px; /* Adjusted from 30px */
    position: relative;
    overflow: hidden;
    max-width: 100%; /* Allow it to take full width of its column */
    margin: 0 auto 25px auto; /* Centered with bottom margin */
    flex-shrink: 1; /* Allow card to shrink more readily */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Kartlara belirgin gölge */
}

.environmental-card h4 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 22px; /* Adjusted size */
}

.environmental-card ul li {
    color: var(--white-color); /* Ensure list items are white */
    font-size: 16px; /* Adjusted size */
    margin-bottom: 5px; /* Add some spacing between list items */
}

.environmental-card p {
    color: var(--white-color);
    margin-bottom: 3px; /* Reduced from 5px */
    font-size: 16px; /* Adjusted from p-font-size */
}

.environmental-card h3 {
    color: var(--white-color);
    font-size: 28px; /* Adjusted from h3-font-size */
    margin-bottom: 15px; /* Reduced from 20px */
}

.environmental-card-img {
    width: 80px; /* Reduced from 100px */
    height: 80px; /* Reduced from 100px */
    object-fit: contain;
    margin-bottom: 10px; /* Reduced from 15px */
}

.new-card {
    background-image: url('../images/dizel-enjektor.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

    .new-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 100, 0, 0.8) ;/* Eskiden rgba(237, 28, 36, 0.8) */
        z-index: 1;
    }

.new-card > * {
    position: relative;
    z-index: 2;
}

.new-badge {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: var(--border-radius-large);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    z-index: 2;
}

.reman-card {
    background-image: url('../images/reman-dizel-enjektor.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

    .reman-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 100, 0, 0.8); /* Eskiden rgba(237, 28, 36, 0.8) */
        z-index: 1;
    }

.reman-card > * {
    position: relative;
    z-index: 2;
}

.saved-card {
    background-image: url('../images/remanturk-nedir.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

    .saved-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 100, 0, 0.8); /* Eskiden rgba(189, 24, 30, 0.8) */
        z-index: 1;
    }

.saved-card > * {
    position: relative;
    z-index: 2;
}

.environmental-icon {
    font-size: 60px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white-color);
    z-index: 2;
}

.source-text {
    font-size: 14px;
    color: #ccc; /* Lighter grey for source text */
}

.environmental-calculator {
    background-image: url('../images/parcalar.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    height: 350px; /* Sabit yükseklik 350px olarak ayarlandı */
    padding: 20px; /* İçerik için küçük bir dolgu bırakıldı */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.environmental-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.environmental-calculator > * {
    position: relative;
    z-index: 2;
}

.environmental-calculator .btn-secondary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.environmental-calculator .btn-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.environmental-calculator .dropdown-menu {
    background-color: var(--dark-color);
}

.environmental-calculator .dropdown-item {
    color: var(--white-color);
}

.environmental-calculator .dropdown-item:hover {
    background-color: var(--primary-color);
}

.environmental-calculator .input-group .form-control {
    background-color: #333;
    border: 1px solid #555;
    color: var(--white-color);
}

.environmental-calculator .input-group .btn-outline-secondary {
    background-color: #555;
    border-color: #555;
    color: var(--white-color);
}

.environmental-calculator .input-group .btn-outline-secondary:hover {
    background-color: #777;
    border-color: #777;
}

@media (max-width: 768px) {
    .environmental-card {
        margin-bottom: 20px;
    }

    .environmental-calculator .input-group {
        width: 100% !important;
    }

    .environmental-calculator .d-flex.align-items-center.mb-3 {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .environmental-calculator .ms-auto {
        margin-left: 0 !important;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .environmental-impact-section .col-lg-4 {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0 15px; /* Daha küçük mobil padding */
        height: auto; /* Yüksekliği içeriğe göre ayarla */
        margin-top: 20px; /* Kartlar arasında boşluk bırak */
    }
}

@media (max-width: 768px) {
    .environmental-card {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 1.5rem; /* Kartlar arasına dikey boşluk ekle */
    }
}


/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../images/nicholas-green-unsplash-blur.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-large);
  margin-bottom: 15px;
  background-color: var(--section-bg-color);
  padding: 20px;
  text-align: center;
  height: 220px; /* min-height yerine sabit yükseklik */
  display: flex; /* İçeriği dikey ortalamak için flexbox eklendi */
  flex-direction: column; /* İçeriği sütun şeklinde düzenle */
  justify-content: center; /* Dikey olarak ortala */
  align-items: center; /* Yatay olarak ortala */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); /* Gölgeyi daha da artır */
   hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
}

.artists-section .col-12.text-center {
  margin-bottom: 40px; /* Başlık ve kartlar arasına boşluk */
}

.artists-thumb.custom-thumb {
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  position: relative;
}

.value-card-1 {
  background-color: #3f51b5; /* Koyu mavi */
}

.value-card-2 {
  background-color: #4caf50; /* Yeşil */
}

.value-card-3 {
  background-color: #2196f3; /* Açık mavi */
}

.value-card-4 {
  background-color: #ffc107; /* Sarı */
}

.value-card-5 {
  background-color: #00bcd4; /* Turkuaz */
}

.artists-thumb.custom-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: 1;
}
.artists-thumb:hover {
  transform: scale(1.05); /* Üzerine gelindiğinde büyüme efekti */
}

.artists-thumb.custom-thumb .artists-image-wrap,
.artists-thumb.custom-thumb .artists-hover,
.artists-thumb.custom-thumb p,
.artists-thumb.custom-thumb h4,
.artists-thumb.custom-thumb strong {
  position: relative;
  z-index: 2;
}

.artists-thumb.custom-thumb .custom-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--white-color);
}

.artists-thumb .artists-image {
  border-radius: var(--border-radius-large);
  display: block;
}

.artists-thumb .artists-hover {
  position: static; /* Absolute konumlandırmayı kaldır */
  width: auto; /* Genişliği otomatik yap */
  height: auto; /* Yüksekliği otomatik yap */
  background-color: transparent; /* Arka planı şeffaf yap */
  opacity: 1; /* Her zaman görünür yap */
  transition: none; /* Geçiş efektini kaldır */
  padding: 0; /* Dolguyu kaldır veya sıfırla */
}

.artists-thumb:hover .artists-hover {
  /* Bu bloğu tamamen kaldıracağız */
}

.artists-thumb .artists-hover p {
  color: var(--white-color);
  font-size: 14px;
  margin-top: 10px; /* Metin ile ikon arasına boşluk ekle */
}

.artists-thumb .artists-hover strong {
  color: var(--white-color);
  font-size: 16px;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: unset; /* Minimum genişliği kaldır */
  margin-right: 0; /* Sağ kenar boşluğunu kaldır */
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-image: url('../images/nainoa-shizuru-unsplash-blur.jpg');
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
	filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #1A9F63;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url('../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg');
}

.schedule-table .rock-background-image {
  background-image: url('../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg');
}

.schedule-table .country-background-image {
  background-image: url('../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg');
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
    background-color: #f5f5f5; /* Eskiden #1a1a1a */
    color: #222;
    padding: 60px 0;
}

.site-footer .navbar-brand img {
    height: 100px !important;
    width: auto !important;
    
}

.site-footer .copyright-text {
    color: #bbb;
}

.site-footer .footer-title {
    color: #222;
    font-size: 1.2rem; /* Adjusted for better visual balance */
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.site-footer .list-unstyled li {
    margin-bottom: 8px;
}

.site-footer .list-unstyled li i {
    font-size: 1.1rem;
    color: #32CD32; /* Ensure icons are red */
}

.site-footer .list-unstyled li span,
.site-footer .list-unstyled li a {
    color: #222; /* Eskiden #fff */
    font-size: 14px;
    text-decoration: none;
}

.site-footer .list-unstyled li a:hover {
    color: #32CD32;
}

.site-footer .bi-whatsapp {
    color: #32CD32 !important; /* WhatsApp icon should be red */
    font-size: 1.5rem !important;
}

.site-footer .map-container {
    height: 200px;
    width: 100%;
    border: 1px solid #444; /* Darker border for dark background */
    overflow: hidden;
}

.site-footer .map-container iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.site-footer .col-lg-4.text-start .navbar-brand,
.site-footer .col-lg-4.text-start p {
    text-align: left;
    display: block; /* Ensure they behave as block-level elements */
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0;
    }

    .site-footer .col-lg-3, .site-footer .col-lg-2 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .site-footer .navbar-brand img {
        height: 80px !important;
        width: auto !important;
        margin-left: -30px !important;
        display: block !important;
    }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  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-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
    }
    .circular-product-container {
        width: 100% !important;
        max-width: none !important;
    }
    .homepage-car {
        max-width: 75%; /* Adjusted for better proportion within the responsive circle on mobile */
        max-height: 75%;
        width: auto;
        height: auto;
  
    }
    .product-category-item img {
        width: 7vw; /* Adjust size for mobile to scale proportionally */
        height: 7vw;
    }
    .product-category-turbochargers img,
    .product-category-high-pressure-pumps img {
        width: 8vw;
        height: 8vw;
    }
    .product-category-item p {
        font-size: 1.5vw; /* Further adjust font size for mobile */
    }
    /* Mobile specific positioning adjustments (scaled proportionally) */
}

/* Hero Section - Mission & Vision Cards */
.mission-vision-card {
    position: relative;
    overflow: hidden;
    color: #fff; /* Ensure text is white */
    min-height: 400px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.mission-vision-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.mission-vision-card .hero-section-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Specific background images for Mission and Vision */
.col-lg-3:nth-child(1).mission-vision-card {
    background-image: url('../images/homepage-images/homepage-cars1.png');
}

.col-lg-3:nth-child(3).mission-vision-card {
    background-image: url('../images/homepage-images/homepage-cars2.png');
}

/* Circular Product Background */
.circular-product-background {
    background-color: #fff;
    border-radius: 50%; /* Make it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Adjust padding as needed */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
}

/* Ensure circular-product-container fits within the circular background */
.circular-product-background .circular-product-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adjustments for the homepage-car image within the circular container */
.circular-product-background .homepage-car {
    max-width: 80%; /* Adjust size of the car image */
    height: auto;
}

/* Text color for product names within the circular background */
.circular-product-background .product-category-item p {
    color: #333 !important; /* Change text color to dark for better contrast on white background */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991.98px) {
    .mission-vision-card {
        min-height: 250px; /* Adjust height for smaller screens */
        margin-bottom: 20px;
    }

    .circular-product-background {
        border-radius: 0; /* Remove circular shape on small screens if preferred */
        margin-bottom: 20px;
    }
}

.industry-card-image-placeholder {
    width: 100%;
    max-width: 300px;
    height: 300px;
    max-height: 300px;
    /* background-color: #555; */
    border-radius: var(--border-radius-small);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #bbb;
    overflow: hidden;
    position: relative;
}

.industry-card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* border: 4px solid #fff; */
    /* border-radius: 18px; */
    box-sizing: border-box;
}

.industry-card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    text-align: center;
    width: 95%;
    pointer-events: none;
    z-index: 2;
    letter-spacing: 0.5px;
}

.industry-card {
    background-color: #fff; /* Eskiden #333 veya yoktu */
    border-radius: var(--border-radius-large);
    padding: 20px 10px 10px 10px;
    text-align: center;
    color: #222; /* Eskiden var(--white-color) */
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Kartlara belirgin gölge */
    /* animation: industry-flip-in 0.8s cubic-bezier(.4,2,.6,1); */
    /* animation-fill-mode: backwards; */
}

/* Remove flip-in animation */
/*
@keyframes industry-flip-in {
    0% {
        transform: rotateY(90deg) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: rotateY(-10deg) scale(1.05);
        opacity: 1;
    }
    100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}
*/

.industry-card:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    z-index: 2;
}

@media (max-width: 768px) {
    .industry-card-title {
        font-size: 1.3rem;
    }
}

@keyframes value-fade-in {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.artists-thumb {
    opacity: 0; /* Başlangıçta gizli */
    /* animation: value-fade-in 0.7s cubic-bezier(.4,2,.6,1) forwards; */ /* Kaldırıldı */
}

.artists-thumb.is-in-view {
    opacity: 1; /* Animasyon başlayınca görünür */
    animation: value-fade-in 0.7s cubic-bezier(.4,2,.6,1) forwards;
}

/* Sıralı animasyon için delayler */
.artists-section .row > .artists-thumb:nth-child(2).is-in-view { animation-delay: 0.1s; }
.artists-section .row > .artists-thumb:nth-child(3).is-in-view { animation-delay: 0.3s; }
.artists-section .row > .artists-thumb:nth-child(4).is-in-view { animation-delay: 0.5s; }
.artists-section .row > .artists-thumb:nth-child(5).is-in-view { animation-delay: 0.7s; }
.artists-section .row > .artists-thumb:nth-child(6).is-in-view { animation-delay: 0.9s; }

/* Service Card Styles */
.service-card {
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-large);
    padding: 30px;
    transition: all 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); /* Gölgeyi artır */
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    color: #fff; /* Metin rengini beyaza çevir */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); /* Hover gölgeyi artır */
    background-color: rgba(0, 0, 0, 0.3); /* Görselin hover'ında hafif koyuluk */
}

.service-card.is-in-view {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    animation: fade-in-up 0.6s ease-out forwards; /* Kartın kendisi için fade-in */
}

.service-card.is-in-view::after {
    /* Bu kısmı kaldırıyoruz, animasyon sadece hover'da tetiklenecek */
}

.service-card::after {
    content: '';
    position: absolute;
    top: 100%; /* Başlangıçta altta gizli */
    left: 0;
    width: 100%; /* Arka plan görseli için overlay */
    height: 100%;
    background: rgba(50, 205, 50, 0.8); /* Kırmızı transparan renk */
    transition: top 0.4s ease-out; /* Animasyon geçişi sadece top özelliği için */
    z-index: 1;
}

.service-card:hover::after {
    top: 0; /* Hover'da yukarı kay */
}

.service-card h5 {
    color: #fff !important; /* Başlık rengini beyaza çevir */
    position: relative; /* z-index için */
    z-index: 2; /* Overlay'in üstünde olması için */
}

.service-card .custom-icon {
    color: #fff !important; /* İkon rengini beyaza çevir */
    position: relative; /* z-index için */
    z-index: 2; /* Overlay'in üstünde olması için */
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine-animation {
    0% {
        left: -100%;
    }
    60% {
        left: 100%;
    }
    100% {
        left: 100%; /* Animasyon bitiminde sağ dışarıda kal */
        opacity: 0;
    }
}

@keyframes service-hover-slide-up {
    from {
        top: 100%;
    }
    to {
        top: 0;
    }
}

/* Sıralı animasyon için gecikmeler */
.section-service .service-card:nth-child(2).is-in-view { animation-delay: 0.1s; }
.section-service .service-card:nth-child(3).is-in-view { animation-delay: 0.3s; }
.section-service .service-card:nth-child(4).is-in-view { animation-delay: 0.5s; }
.section-service .service-card:nth-child(5).is-in-view { animation-delay: 0.7s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 20px;
        min-height: 180px;
    }
    .service-card .custom-icon {
        font-size: 3rem !important;
    }
        font-size: 3rem !important;
    }
    .service-card h5 {
        font-size: 1.3rem;
    }
}

/* Contact Section - New Design */
.contact-section {
    background-color: #0F223A; /* Koyu mavi arka plan */
    color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-section .container .row {
    align-items: center; /* İçeriği dikeyde ortala */
    height: 400px;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.4;
    color: #fff; /* Yazı rengini beyaz yap */
}

.contact-section .contact-us-button-new {
    background-color: var(--primary-color); /* Kırmızı buton */
    color: #fff; /* Beyaz yazı */
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: fit-content;
}

.contact-section .contact-us-button-new:hover {
    background-color: var(--secondary-color); /* Hoverda daha koyu kırmızı */
    border-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-section .contact-map-iframe {
    border-radius: 20px; /* Yuvarlak köşeler */
    width: 100%;
    height: 400px; /* Sabit yükseklik, görselin dolgusuna göre ayarlanabilir */
    object-fit: cover;
    box-shadow: 0 0 40px rgba(50, 205, 50, 0.9); /* Eskiden rgba(237, 28, 36, 0.9) */
    animation: glow 1.5s infinite alternate;
}

/* Yanıp sönen gölge animasyonu */
@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(50, 205, 50, 0.6); /* Eskiden rgba(237, 28, 36, 0.6) */
    }
    to {
        box-shadow: 0 0 60px rgba(50, 205, 50, 1); /* Eskiden rgba(237, 28, 36, 1) */
    }
}

/* Responsive ayarlar */
@media (max-width: 991.98px) {
    .contact-section .col-lg-6 {
        text-align: center;
    }
    .contact-section h2 {
        font-size: 2rem;
    }
    .contact-section .contact-map-iframe {
        margin-top: 40px;
    }
    .contact-section .contact-us-button-new {
        padding: 12px 30px;
        font-size: 1rem;
        width: fit-content;
        position: center !important;
    }
}

.power-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sol sütun dar, sağ sütun geniş */
    grid-template-rows: auto; /* Let content define height */
    gap: 20px; /* Overall gap for the main grid */
    align-items: stretch; /* Crucial for matching heights */
}

.power-solutions-left-column {
    grid-column: 1 / 2; /* Occupy the first column of the main grid */
    grid-row: 1 / 2; /* Occupy the first (and only, as auto) row of the main grid */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Sol taraftaki kartlar için 2 eşit sütun */
    grid-template-rows: 1fr 1fr; /* Use fr units so they stretch */
    gap: 20px;
}

.card-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Metni dikeyde ortala */
    align-items: center; /* Metni yatayda ortala */
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 250px; /* Minimum height for all cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.card-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.card-item:hover img {
    opacity: 0.6;
}

.card-item h3 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    text-align: center; /* Metni yatayda ortala */
}

.power-solution-energy-production-full {
    grid-column: 1 / 3; /* Sol sütun içindeki Grid'de 2 sütunu kapla */
    grid-row: 2 / 3; /* Place in the second row of the inner grid */
}

.power-solution-customize-engine {
    grid-column: 2 / 3; /* Ana Grid'de ikinci sütunda yer al */
    grid-row: 1 / 2; /* Occupy the first (and only, as auto) row of the main grid */
    min-height: auto; /* Let grid and stretch handle height */
}

@media (max-width: 768px) {
    .power-solutions-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        grid-template-rows: auto; /* Satır yüksekliği otomatik */
        gap: 20px;
    }
    .power-solutions-left-column {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        grid-template-rows: auto;
    }
    .power-solution-customize-engine,
    .power-solution-energy-production-full {
        grid-column: auto; /* Sütun kapsamını sıfırla */
        grid-row: auto; /* Satır kapsamını sıfırla */
    }
    .card-item {
        min-height: 250px; /* Ensure min-height is set for mobile */
        justify-content: center; /* Mobilde de metni ortala */
        align-items: center; /* Mobilde de metni ortala */
    }
    .card-item h3 {
        text-align: center; /* Mobilde de metni ortala */
    }
}

@media (max-width: 768px) {
    .row {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 991.98px) {
  .circular-product-container .product-category-item p {
    font-size: 11px !important;
    font-weight: normal !important;
  }
}

.additional-stats-section {
    background-color: #fff !important;
}

.additional-stats-section,
.additional-stats-section h2,
.additional-stats-section h3,
.additional-stats-section p,
.additional-stats-section .additional-stats-text,
.additional-stats-section .text-dark,
.additional-stats-section .text-white,
.additional-stats-section .text-muted {
    color: #111 !important;
}

