/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
  }
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-image: url('assets/images/pc.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto 90vh;
}
.section {
  background: #fff;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200px) {
  body {
    background-size: auto 60vh;
  }
}
@media (max-width: 900px) {
  body {
    background-size: auto 40vh;
  }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variables */
:root {
    --primary-color: #19c2f2;
    --secondary-color: #0fa3d1;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-color: #666;
    --border-color: #e9ecef;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Common Classes */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    padding: 15px 30px;
    border: 2px solid #F37021;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #000000;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 25px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    flex: 1;
}

.top-bar-right {
    flex-shrink: 0;
}

.contact-info {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 25px;
    flex-direction: row !important;
}

.contact-item {
    display: inline-block !important;
    white-space: nowrap;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    line-height: 1.5;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

.top-bar .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar .social-links a {
    color: var(--white);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.top-bar .social-links a:hover {
    color: var(--primary-color);
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 9000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
    margin-right: 15px;
    max-width: 200px;
    object-fit: contain;
}



/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 10000;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
}

.nav-item {
    position: relative;
    margin: 0 20px;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Dropdown */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: calc(50% - 50vw + 20px);
    width: 100vw;
    height: 350px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 0;
    border-top: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    height: 250px;
}

.dropdown-col {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dropdown-col:hover {
    background: var(--light-color);
}

.dropdown-col img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.dropdown-col h4 {
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.dropdown-col p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.4;
}

.btn-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: visible;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.slide.active {
    opacity: 1;
}

/* Ensure carousels are visible in all slides */
.slide .references-carousel {
    opacity: 1 !important;
    visibility: visible !important;
}

/* .slide-content styles are now defined in the Video Styles section */

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 100vh;
    width: 100%;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
}

.slider-nav button {
    background: rgba(255,255,255,0.3);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    backdrop-filter: blur(5px);
}

.slider-nav button:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* 3D Rotating Carousel Styles - Dynamic Version */
.about-image .container {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
    perspective: 1000px;
}

#carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate 15s infinite linear;
}

#carousel figure {
    position: absolute;
    width: 110px;
    height: 110px;
    left: 50%;
    top: 50%;
    margin-left: -55px;
    margin-top: -55px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#carousel figure:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

#carousel figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* 7'li düzen için optimize edilmiş pozisyonlar */
/* JavaScript ile dinamik olarak hesaplanacak, bu sadece fallback */
#carousel figure:nth-child(1) { transform: rotateY(0deg) translateZ(200px); }
#carousel figure:nth-child(2) { transform: rotateY(51.43deg) translateZ(200px); }
#carousel figure:nth-child(3) { transform: rotateY(102.86deg) translateZ(200px); }
#carousel figure:nth-child(4) { transform: rotateY(154.29deg) translateZ(200px); }
#carousel figure:nth-child(5) { transform: rotateY(205.71deg) translateZ(200px); }
#carousel figure:nth-child(6) { transform: rotateY(257.14deg) translateZ(200px); }
#carousel figure:nth-child(7) { transform: rotateY(308.57deg) translateZ(200px); }
#carousel figure:nth-child(8) { transform: rotateY(360deg) translateZ(200px); }
#carousel figure:nth-child(9) { transform: rotateY(411.43deg) translateZ(200px); }
#carousel figure:nth-child(10) { transform: rotateY(462.86deg) translateZ(200px); }
#carousel figure:nth-child(11) { transform: rotateY(514.29deg) translateZ(200px); }
#carousel figure:nth-child(12) { transform: rotateY(565.71deg) translateZ(200px); }

@keyframes rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Daha hızlı dönüş için alternatif animasyon */
@keyframes rotate-fast {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* Pause animation on hover */
.about-image .container:hover #carousel {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-image .container {
        width: 100%;
        height: auto;
        perspective: none;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    #carousel {
        animation: rotate 25s infinite linear;
        transform-style: preserve-3d;
        display: block;
        width: 100%;
        height: 300px;
        position: relative;
        perspective: 800px;
    }
    
    #carousel figure {
        position: absolute;
        width: 100px;
        height: 80px;
        left: 50%;
        top: 50%;
        margin-left: -50px;
        margin-top: -40px;
        border-radius: 8px;
        transform-style: preserve-3d;
    }
    
    #carousel figure img {
        border-radius: 8px;
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #f8f9fa;
        padding: 10px;
    }
    
    /* Mobil için 5 görsel için pozisyonlar */
    #carousel figure:nth-child(1) { transform: rotateY(0deg) translateZ(250px); }
    #carousel figure:nth-child(2) { transform: rotateY(72deg) translateZ(250px); }
    #carousel figure:nth-child(3) { transform: rotateY(144deg) translateZ(250px); }
    #carousel figure:nth-child(4) { transform: rotateY(216deg) translateZ(250px); }
    #carousel figure:nth-child(5) { transform: rotateY(288deg) translateZ(250px); }
    #carousel figure:nth-child(6) { transform: rotateY(360deg) translateZ(250px); }
    #carousel figure:nth-child(7) { transform: rotateY(432deg) translateZ(250px); }
    #carousel figure:nth-child(8) { transform: rotateY(504deg) translateZ(250px); }
    #carousel figure:nth-child(9) { transform: rotateY(576deg) translateZ(250px); }
}

@media (max-width: 480px) {
    .about-image .container {
        width: 100%;
        height: auto;
        perspective: none;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }
    
    #carousel {
        animation: rotate 30s infinite linear;
        transform-style: preserve-3d;
        display: block;
        width: 100%;
        height: 250px;
        position: relative;
        perspective: 600px;
    }
    
    #carousel figure {
        position: absolute;
        width: 80px;
        height: 70px;
        left: 50%;
        top: 50%;
        margin-left: -40px;
        margin-top: -35px;
        border-radius: 6px;
        transform-style: preserve-3d;
    }
    
    #carousel figure img {
        border-radius: 6px;
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #f8f9fa;
        padding: 8px;
    }
    
    /* Küçük mobil için 5 görsel için pozisyonlar */
    #carousel figure:nth-child(1) { transform: rotateY(0deg) translateZ(200px); }
    #carousel figure:nth-child(2) { transform: rotateY(72deg) translateZ(200px); }
    #carousel figure:nth-child(3) { transform: rotateY(144deg) translateZ(200px); }
    #carousel figure:nth-child(4) { transform: rotateY(216deg) translateZ(200px); }
    #carousel figure:nth-child(5) { transform: rotateY(288deg) translateZ(200px); }
    #carousel figure:nth-child(6) { transform: rotateY(360deg) translateZ(200px); }
    #carousel figure:nth-child(7) { transform: rotateY(432deg) translateZ(200px); }
    #carousel figure:nth-child(8) { transform: rotateY(504deg) translateZ(200px); }
    #carousel figure:nth-child(9) { transform: rotateY(576deg) translateZ(200px); }
}

/* Çok küçük ekranlar için ek optimizasyon */
@media (max-width: 360px) {
    .about-image .container {
        width: 100%;
        height: auto;
        perspective: none;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }
    
    #carousel {
        animation: none !important;
        transform: none !important;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        width: 100%;
        max-width: 320px;
        transform-style: flat !important;
    }
    
    #carousel figure {
        position: static !important;
        width: 100%;
        height: 70px;
        margin: 0 !important;
        border-radius: 5px;
        transform: none !important;
        flex-shrink: 0;
    }
    
    #carousel figure img {
        border-radius: 5px;
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #f8f9fa;
        padding: 10px;
    }
}

/* Sınırsız Yatay Düzen - Dinamik Carousel */
.about-image .container.horizontal-layout {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

.about-image .container.horizontal-layout #carousel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    width: max-content;
    animation: slide-horizontal 30s infinite linear;
    margin: 0 auto;
}

.about-image .container.horizontal-layout #carousel figure {
    width: 150px;
    height: 150px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-image .container.horizontal-layout #carousel figure:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.about-image .container.horizontal-layout #carousel figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Sınırsız düzen için yatay kaydırma animasyonu */
@keyframes slide-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .about-image .container.horizontal-layout {
        max-width: 800px;
    }
    
    .about-image .container.horizontal-layout #carousel {
        gap: 12px;
        animation: slide-horizontal 25s infinite linear;
    }
    
    .about-image .container.horizontal-layout #carousel figure {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .about-image .container.horizontal-layout {
        max-width: 600px;
    }
    
    .about-image .container.horizontal-layout #carousel {
        gap: 10px;
        animation: slide-horizontal 20s infinite linear;
    }
    
    .about-image .container.horizontal-layout #carousel figure {
        width: 80px;
        height: 80px;
    }
}

.about-text h2 {
    color: #F37021;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 1px;
}

#about-heading {
    text-transform: none !important;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-content-text {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: #000000;
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: var(--dark-color);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.product-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.product-features span {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-content p {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* References Section */
.references-section {
    padding: 100px 0;
    background: var(--white);
}

.references-carousel {
    display: flex;
    align-items: center;
    margin-top: 50px;
    position: relative;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
}

.carousel-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
    background: rgba(255, 255, 255, 0.6);
    border-color: #ccc;
}

.carousel-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #ccc;
}

.carousel-btn-left {
    margin-right: 20px;
}

.carousel-btn-right {
    margin-left: 20px;
}

.references-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.references-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 35px;
    will-change: transform;
    transform: translateX(0);
    position: relative;
    left: 0;
}

.reference-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    min-width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reference-item:hover {
    background: var(--light-color);
    transform: translateY(-5px);
}

.reference-item img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.reference-item span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
    text-align: center;
}

/* Hero Slider Carousel Styles */
.hero-slider .slide-content .references-carousel {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1400px;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-slider .slide-content .references-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #f0f0f0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    pointer-events: auto;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-slider .slide-content .references-carousel .carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .slide-content .references-carousel .carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
    background: rgba(255, 255, 255, 0.9);
}

.hero-slider .slide-content .references-carousel .carousel-btn-left {
    left: -30px;
    margin-right: 0;
    animation: slideLeft 2s ease-in-out infinite;
}

.hero-slider .slide-content .references-carousel .carousel-btn-left:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-10px);
    }
    100% {
        transform: translateY(-50%) translateX(0);
    }
}

.hero-slider .slide-content .references-carousel .carousel-btn-right {
    right: -30px;
    margin-left: 0;
    animation: slideRight 2s ease-in-out infinite;
}

.hero-slider .slide-content .references-carousel .carousel-btn-right:hover {
    animation-play-state: paused;
}

@keyframes slideRight {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(10px);
    }
    100% {
        transform: translateY(-50%) translateX(0);
    }
}

.hero-slider .slide-content .references-container {
    margin: 0 80px;
    overflow: hidden;
}

.hero-slider .slide-content .references-track {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(-10px); /* Reduced from -30px to prevent image cropping */
}

.hero-slider .slide-content .reference-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    min-width: 180px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-slider .slide-content .reference-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-slider .slide-content .reference-item img {
    width: 160px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: none;
    transition: all 0.3s ease;
}

.hero-slider .slide-content .reference-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments for hero carousel */
@media (max-width: 768px) {
    .hero-slider .slide-content .references-carousel {
        width: 98%;
    }
    
    .hero-slider .slide-content .references-carousel .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-slider .slide-content .references-carousel .carousel-btn-left {
        left: -20px;
    }
    
    .hero-slider .slide-content .references-carousel .carousel-btn-right {
        right: -20px;
    }
    
    .hero-slider .slide-content .references-container {
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider .slide-content .references-carousel {
        width: 100%;
    }
    
    .hero-slider .slide-content .references-carousel .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .hero-slider .slide-content .references-carousel .carousel-btn-left {
        left: -17px;
    }
    
    .hero-slider .slide-content .references-carousel .carousel-btn-right {
        right: -17px;
    }
    
    .hero-slider .slide-content .references-container {
        margin: 0 15px;
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: var(--white);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #F37021;
}

.contact-info-item i {
    color: #F37021;
    font-size: 1.5rem;
    margin-top: 2px;
}

.info-content strong {
    color: var(--dark-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.form-section,
.callback-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.form-section h3,
.callback-section h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-section p,
.callback-section p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Simple Contact Form */
.simple-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.simple-contact-form input,
.simple-contact-form select,
.simple-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.simple-contact-form input:focus,
.simple-contact-form select:focus,
.simple-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.simple-contact-form textarea {
    resize: vertical;
    margin-bottom: 15px;
}

.send-btn {
    background:#F37021;
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.send-btn:hover {
    background: var(--primary-dark);
}

/* Callback Form */
.callback-form input,
.callback-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.callback-form input:focus,
.callback-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.callback-btn {
    background: #28a745;
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.callback-btn:hover {
    background: #1e7e34;
}

/* WhatsApp Contact */
.whatsapp-contact {
    text-align: center;
    margin-top: 30px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: var(--white);
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-col .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-col .social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.contact-list i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slider {
        height: 85vh;
    }
    
    .slide-content {
        padding: 0 100px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-image img {
        max-height: 350px;
    }
    
    .dropdown-content {
        left: calc(50% - 50vw + 15px);
        height: 300px;
    }
    
    .dropdown-row {
        height: 200px;
        gap: 20px;
    }
    
    .dropdown-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Top Bar Social Links Mobile */
    .top-bar .social-links {
        gap: 8px !important;
    }
    
    .top-bar .social-links a {
        font-size: 0.85rem !important;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        position: relative;
    }
    
    .navbar {
        display: flex;
        align-items: center;
        position: relative;
        overflow: visible;
        justify-content: flex-end;
        width: auto;
        margin-left: auto;
        margin-right: 0;
        flex-shrink: 0;
        height: 60px;
    }
    
    .nav-brand {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-right: auto;
    }
    
    .nav-menu {
        display: none;
    }
    
    .dropdown-content {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 999999 !important;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        background: #000000 !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
        cursor: pointer !important;
        padding: 8px !important;
        border-radius: 6px !important;
        margin-left: 10px !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        min-width: 40px;
        min-height: 40px;
        align-items: center;
        justify-content: center;
        pointer-events: auto !important;
        user-select: none;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle .bars-inner {
        width: 24px;
        height: 18px;
        justify-content: space-between;
        align-items: center;
        z-index: 999999 !important;
        position: relative;
    }
    
    .mobile-menu-toggle .bar {
        background: #f1f1f1 !important;
        width: 100%;
        height: 2px;
        transition: all 0.3s ease;
        border-radius: 1px;
        display: block !important;
        margin: 0;
        z-index: 999999 !important;
        position: relative;
    }
    
    div[class*="menu"] * {
        background-color: #ffffff ;
    }
    
    .mobile-menu-toggle:hover {
        background: #ffffff !important;
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    }
    
    .mobile-menu-toggle:hover .bar {
        background: #f1f1f1 !important;
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }
    
    .mobile-menu-close {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        font-size: 24px;
        padding: 12px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 100000;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    /* Mobile Menu Styles - Volkan Tarım Style */
    .nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: 120px 30px 30px;
    z-index: 10000;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 100vh;
    height: 100vh;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu.active .nav-link {
    color: #ffffff !important;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 18px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.nav-menu.active .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
    
    /* Mobil menü açıldığında hamburger butonunu gizle */
    .nav-menu.active ~ .mobile-menu-toggle,
    .nav-menu.active + .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu.active .nav-item {
        margin: 8px 0;
        text-align: center;
        width: 100%;
        flex-shrink: 0;
    }
    
    .nav-menu.active .nav-link {
        color: #333333 !important;
        font-size: 1.4rem;
        font-weight: 500;
        padding: 18px 25px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        background: #f1f1f1;
        border: 1px solid rgba(0, 0, 0, 0.1);
        text-shadow: none;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu.active .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .nav-menu.active .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-menu.active .nav-link:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-color: rgba(0, 0, 0, 0.2);
    }
    
    /* Mobile Dropdown Styles */
   
    
    .nav-menu.active .volkan-dropdown {
        position: static;
        display: none;
        background: #f8f9fa;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 20px;
        opacity: 1;
        width: 100%;
        max-width: 320px;
        margin: 10px auto 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        z-index: 100001;
        backdrop-filter: blur(10px);
        text-align: center;
    }
    
    .nav-menu.active .dropdown.active .volkan-dropdown {
        display: block;
        animation: dropdownSlideDown 0.3s ease-out;
        text-align: center;
    }
    
    @keyframes dropdownSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu.active .volkan-menu-ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0;
        padding: 0;
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    
    .nav-menu.active .volkan-menu-item {
        margin-bottom: 0;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .nav-menu.active .volkan-menu-link {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 15px 20px;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.1);
        color: #333333 !important;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }
    
    .nav-menu.active .volkan-menu-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }
    
    .nav-menu.active .volkan-menu-link:hover::before {
        left: 100%;
    }
    
    .nav-menu.active .volkan-menu-link:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: translateX(3px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-color: rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active .volkan-menu-link figure {
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu.active .volkan-menu-link figure img {
        width: 70px;
        height: 35px;
        object-fit: contain;
        filter: brightness(1) invert(0);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .volkan-menu-link:hover figure img {
        transform: scale(1.1);
        filter: brightness(1.2) contrast(1.1);
    }
    
    .nav-menu.mobile-active .volkan-menu-link hr {
        width: 100%;
        border: none;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
        margin: 5px 0;
    }
    
    /* Hamburger Animation - Volkan Tarım Style */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }
    
    /* Header background when mobile menu is open */
    .header.mobile-menu-open {
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(10px);
    }
    
    /* Dropdown Animasyonları */
    .fas.fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .fas.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Desktop Dropdown Stilleri */
    @media (min-width: 768px) {
        .volkan-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            min-width: 300px;
            padding: 15px;
        }
        
        .dropdown.active .volkan-dropdown {
            display: block;
            animation: dropdownFadeIn 0.3s ease;
        }
        
        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }
    
    /* Mobile Menu Close Button */
    .mobile-menu-close {
        position: fixed;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 11000;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .mobile-menu-close:active {
        transform: scale(0.95);
    }
    
    .hero-slider {
        height: 75vh;
    }
    
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .slide-content {
        padding: 0 80px;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slide-image img {
        max-height: 250px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .references-track {
        gap: 15px;
    }
    
    .reference-item {
        min-width: 160px;
        padding: 25px 15px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-info-item i {
        font-size: 1.3rem;
    }
    
    .info-content strong {
        font-size: 0.95rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-section,
    .callback-section {
        padding: 25px;
    }
    
    .form-section h3,
    .callback-section h3 {
        font-size: 1.3rem;
    }
    
    /* Floating Buttons Tablet */
    .floating-phone,
    .floating-whatsapp,
    .back-to-top {
        width: 48px !important;
        height: 48px !important;
        right: 25px !important;
    }
    
    .floating-phone {
        bottom: 140px !important;
    }
    
    .floating-whatsapp {
        bottom: 85px !important;
    }
    
    .back-to-top {
        bottom: 25px !important;
    }
    
    /* Social Links Tablet */
    .top-bar .social-links {
        gap: 9px !important;
    }
    
    .top-bar .social-links a {
        font-size: 0.9rem !important;
    }
    
    .footer-col .social-links {
        gap: 7px !important;
    }
    
    .footer-col .social-links a {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
    }
    
    /* Dropdown Images Tablet */
    .dropdown-col img {
        width: 70px !important;
        height: 52px !important;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .logo {
        height: 40px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content {
        padding: 0 70px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-image img {
        max-height: 200px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-btn-left {
        margin-right: 10px;
    }
    
    .carousel-btn-right {
        margin-left: 10px;
    }
    
    .reference-item {
        min-width: 140px;
        padding: 20px 10px;
    }
    
    .reference-item img {
        width: 100px;
        height: 60px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    .contact-info-item {
        padding: 15px;
        gap: 12px;
    }
    
    .contact-info-item i {
        font-size: 1.2rem;
    }
    
    .info-content strong {
        font-size: 0.9rem;
    }
    
    .info-content p {
        font-size: 0.85rem;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-section,
    .callback-section {
        padding: 20px;
    }
    
    .form-section h3,
    .callback-section h3 {
        font-size: 1.2rem;
    }
    
    .simple-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .simple-contact-form input,
    .simple-contact-form select,
    .simple-contact-form textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .callback-form input,
    .callback-form select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .send-btn,
    .callback-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .whatsapp-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.2rem;
    }
    
    /* Floating Buttons Responsive */
    .floating-phone,
    .floating-whatsapp,
    .back-to-top {
        width: 45px !important;
        height: 45px !important;
        right: 20px !important;
        font-size: 1rem !important;
    }
    
    .floating-phone {
        bottom: 130px !important;
    }
    
    .floating-whatsapp {
        bottom: 80px !important;
    }
    
    .back-to-top {
        bottom: 20px !important;
    }
    
    /* Footer Social Links Mobile */
    .footer-col .social-links {
        gap: 6px !important;
    }
    
    .footer-col .social-links a {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }
    
    /* Dropdown Images Mobile */
    .dropdown-col img {
        width: 60px !important;
        height: 45px !important;
        margin-bottom: 8px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .logo {
        height: 35px;
        max-width: 150px;
    }
    
    .contact-info {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .contact-item {
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 

/* DevExpress tarzı Kategoriler Bölümü */
.categories-section {
  background: #f7f8fa;
  padding: 60px 0 40px 0;
  margin-top: 0;
}
.categories-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.categories-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.categories-section .section-header p {
  color: #666;
  font-size: 1.1rem;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.category-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1.5px 4px rgba(0,0,0,0.04);
  padding: 36px 28px 28px 28px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.category-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.07);
}
.category-icon {
  font-size: 2.8rem;
  color: #0077c8;
  margin-bottom: 18px;
}
.category-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.category-card p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 700px) {
  .categories-section {
    padding: 36px 0 20px 0;
  }
  .categories-grid {
    gap: 18px;
  }
  .category-card {
    padding: 22px 10px 18px 10px;
  }
  .category-icon {
    font-size: 2rem;
  }
  .categories-section .section-header h2 {
    font-size: 1.3rem;
  }
} 

/* DevExpress tarzı Tanıtım Alanı */
.devexpress-promo-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.04);
  margin: 48px auto 32px auto;
  max-width: 1200px;
  padding: 0;
}
.promo-flex {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 48px 0 0;
}
.promo-image {
  flex: 1 1 520px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: -48px;
  margin-right: 0;
}
.promo-image img {
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  display: block;
}
.promo-content {
  flex: 2 1 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.promo-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0077c8;
  margin-bottom: 18px;
}
.promo-content p {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.promo-list {
  list-style: disc inside;
  color: #333;
  margin-bottom: 22px;
  padding-left: 0;
}
.promo-list li {
  margin-bottom: 6px;
  font-size: 1.04rem;
}
.promo-content .btn-primary {
  display: inline-block;
  background: #0077c8;
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.08rem;
  transition: background 0.18s;
  box-shadow: 0 2px 8px rgba(0,119,200,0.08);
}
.promo-content .btn-primary:hover {
  background: #005fa3;
}
@media (max-width: 1100px) {
  .promo-image {
    max-width: 340px;
    margin-left: -24px;
  }
  .promo-image img {
    max-width: 340px;
  }
}
@media (max-width: 900px) {
  .promo-flex {
    flex-direction: column;
    gap: 24px;
    padding: 0 0 0 0;
  }
  .devexpress-promo-section {
    margin: 32px 0 24px 0;
    padding: 0;
  }
  .promo-image {
    margin-left: 0;
    max-width: 100%;
    justify-content: center;
  }
  .promo-image img {
    max-width: 90vw;
  }
} 

/* DevExpress.com tarzı yeni promo alanı */
.devexpress-promo-section-alt {
  background: #f5f5f7;
  width: 100%;
  padding: 64px 0 64px 0;
  margin: 0;
}
.promo-flex-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0;
}
.promo-content-alt {
  flex: 1 1 600px;
  padding-left: 32px;
  padding-right: 32px;
}
.promo-content-alt h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.15;
}
.promo-content-alt h2 span {
  font-size: 2rem;
  font-weight: 600;
  color: #666;
  display: block;
  margin-top: 6px;
}
.promo-desc-alt {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 36px;
  max-width: 600px;
}
.promo-links-alt {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promo-link-btn {
  display: inline-block;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 10px 22px 10px 54px;
  border-radius: 7px;
  text-decoration: none;
  color: #fff;
  background: #0077c8;
  position: relative;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(0,119,200,0.08);
  width: fit-content;
}
.promo-link-btn.win { background: #3ba3d7; }
.promo-link-btn.wpf { background: #4a90e2; }
.promo-link-btn.vcl { background: #2dbae6; }
.promo-link-btn::before {
  content: attr(class);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 2px 8px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 32px;
  text-align: center;
  pointer-events: none;
  opacity: 0.7;
}
.promo-link-btn.win::before { content: 'WIN'; }
.promo-link-btn.wpf::before { content: 'WPF'; }
.promo-link-btn.vcl::before { content: 'VCL'; }
.promo-link-btn:hover { filter: brightness(0.93); }
/* Daha büyük ve kenara yaslı promo görseli, tam responsive */
.promo-image-alt {
  flex: 1 1 700px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  margin-right: -40px;
}
.promo-image-alt img {
  max-width: 600px;
  width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-right: 0;
  margin-left: 40px;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 1200px) {
  .promo-image-alt img {
    max-width: 380px;
  }
  .promo-content-alt h2 { font-size: 2rem; }
  .promo-content-alt h2 span { font-size: 1.3rem; }
  .promo-image-alt { margin-right: -20px; }
}
@media (max-width: 900px) {
  .promo-flex-alt {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 32px;
  }
  .promo-content-alt {
    padding: 0 12px 0 12px;
  }
  .promo-image-alt {
    width: 100%;
    justify-content: center;
    margin-bottom: 18px;
    margin-right: 0;
  }
  .promo-image-alt img {
    max-width: 90vw;
  }
} 

@media (max-width: 700px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
    padding: 10px 0;
  }
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .form-section, .callback-section {
    padding: 16px;
  }
  .btn-contact {
    display: block;
    width: 100%;
    margin: 18px 0 0 0;
    text-align: center;
    font-size: 1.1rem;
    padding: 15px 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
    padding: 5px 0;
  }
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-section, .callback-section {
    padding: 10px;
  }
  .btn-contact {
    display: block;
    width: 100%;
    margin: 12px 0 0 0;
    text-align: center;
    font-size: 1rem;
    padding: 13px 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
} 

@media (max-width: 900px) {
  .container {
    padding: 0 !important;
    width: 100vw;
    max-width: 100vw;
  }
  .devexpress-promo-section-alt {
    padding: 0 !important;
  }
  .promo-flex-alt {
    margin: 0 !important;
    gap: 0 !important;
    max-width: 100vw;
    width: 100vw;
  }
  .promo-content-alt {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .promo-image-alt {
    margin-right: 0 !important;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 !important;
    width: 100vw;
    max-width: 100vw;
  }
  .devexpress-promo-section-alt {
    padding: 0 !important;
  }
  .promo-flex-alt {
    margin: 0 !important;
    gap: 0 !important;
    max-width: 100vw;
    width: 100vw;
  }
  .promo-content-alt {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .promo-image-alt {
    margin-right: 0 !important;
  }
} 

/* Siyah header ve beyaz yazı */
.header, .header.sticky {
  background: #111 !important;
  color: #fff !important;
  transition: background 0.3s;
}
.header.sticky .nav-link,
.header.sticky .btn-contact,
.header.sticky .logo,
.header.sticky .navbar .fa-chevron-down {
  color: #000000 !important;
  filter: brightness(100) invert(0.05);
}
.header .container {
  color: #fff;
}
.nav-link {
  color: #fff !important;
}
.nav-link:hover {
  color: var(--primary-color) !important;
}
.navbar .fa-chevron-down {
  color: #fff !important;
}
.btn-contact {
  background: var(--primary-color);
  color: #fff !important;
  border: none;
}
.btn-contact:hover {
  background: var(--secondary-color);
  color: #fff !important;
}
.logo {
  filter: brightness(100) invert(0.05);
}
.mobile-menu-toggle span {
  background:#000000 !important;
}
/* Dropdown menüleri de siyah ve beyaz */
.dropdown-content {
  background: #111 !important;
  color: #fff !important;
  border-top: 1px solid #222;
}
.dropdown-col h4, .dropdown-col p {
  color: #fff !important;
}
.dropdown-col img {
  background: #222;
  border: 1px solid #333;
} 

.header.scrolled {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(10px) !important;
  color: #222 !important;
  transition: background 0.3s, color 0.3s;
}
.header.scrolled .nav-link,
.header.scrolled .btn-contact,
.header.scrolled .logo,
.header.scrolled .navbar .fa-chevron-down {
  color: #222 !important;
  filter: none;
}
.header.scrolled .btn-contact {
  background: var(--primary-color);
  color: #fff !important;
} 

.promo-flex-images {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  min-height: 320px;
}

/* Volkan Tarım tarzı dropdown stilleri */
.volkan-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-width: 600px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-radius: 15px;
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 45px 55px 45px 45px;
}

.dropdown:hover .volkan-dropdown {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
    .dropdown:hover .volkan-dropdown {
        transform: translateX(-0%) translateY(0); /* Mobilde sola yaslı kalsın */
    }
}

.volkan-menu-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.volkan-menu-item {
    margin-bottom: 20px;
}

.volkan-menu-link {
    display: block;
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.volkan-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.volkan-menu-link figure {
    margin: 0 0 10px 0;
    display: flex;
    justify-content: center;
}

.volkan-menu-link figure img {
    width: 100px;
    height: 45px;
    object-fit: contain;
    filter: brightness(1) invert(0);
    transition: all 0.3s ease;
}

.volkan-menu-link:hover figure img {
    filter: brightness(1.2) contrast(1.1);
    transform: scale(1.1);
}

.volkan-menu-link hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0 0 0;
    transition: all 0.3s ease;
}

.volkan-menu-link:hover hr {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Volkan dropdown */
@media (max-width: 768px) {
    .volkan-dropdown {
        min-width: 400px;
        padding: 30px 35px 30px 30px;
    }
    
    .volkan-menu-ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .volkan-menu-link {
        font-size: 14px;
        padding: 12px;
    }
    
    .volkan-menu-link figure img {
        width: 80px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .volkan-dropdown {
        min-width: 300px;
        padding: 25px 30px 25px 25px;
    }
    
    .volkan-menu-link {
        font-size: 13px;
        padding: 10px;
    }
    
    .volkan-menu-link figure img {
        width: 70px;
        height: 30px;
    }
} 

/* Section responsive düzenlemeleri - 770px'den küçük ekranlar için */
@media (max-width: 770px) {
    .section {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .text-content {
        order: 1;
        width: 100%;
        text-align: center;
    }
    
    .text-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .text-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .image-content {
        order: 2;
        width: 100%;
        height: 300px;
        padding: 20px !important;
        background-size: cover !important;
        background-position: center !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
    }
    
    .image-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.9);
        z-index: 1;
    }
    
    .image-content img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
        position: relative;
        z-index: 2;
    }
    
    .image-content img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 30px 15px;
        gap: 25px;
    }
    
    .text-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #404040;
    }
    
    .text-content p {
        font-size: 1.5rem;
        margin-bottom: 12px;
        color: #404040;
    }
    
    .image-content {
        height: 250px;
        padding: 15px !important;
    }
    
    .image-content img {
        border-radius: 8px;
        position: relative;
        z-index: 2;
    }
} 

/* Video Styles */
.slide iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: none;
    background: #000;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 3;
    padding: 0 120px;
    color: var(--white);
    display: flex;
    align-items: center;
    min-height: 90vh;
}

/* Sidebar Menu Styles - Enhanced */
.app-sidebar-menu,
#kt_aside_menu_wrapper,
#kt_aside_menu_wrapper * {
    background-color: #000000 !important;
}

#kt_aside_menu,
#kt_aside_menu * {
    background-color: #000000 !important;
}

.menu-item,
.menu-item * {
    background-color: #000000 !important;
}

.menu-link,
.menu-link * {
    background-color: #000000 !important;
    color: #cccccc !important;
    transition: all 0.3s ease !important;
}

.menu-link:hover,
.menu-link:hover * {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

.menu-title,
.menu-title * {
    color: #cccccc !important;
    font-weight: 500 !important;
}

.menu-link:hover .menu-title,
.menu-link:hover .menu-title * {
    color: #ffffff !important;
}

.menu-icon,
.menu-icon * {
    color: #cccccc !important;
}

.menu-link:hover .menu-icon,
.menu-link:hover .menu-icon * {
    color: #ffffff !important;
}

.menu-icon i,
.menu-icon i * {
    color: #cccccc !important;
}

.menu-link:hover .menu-icon i,
.menu-link:hover .menu-icon i * {
    color: #ffffff !important;
}

/* Additional specific selectors */
[data-kt-menu-trigger] {
    background-color: #000000 !important;
}

[data-kt-menu-trigger] * {
    background-color: #000000 !important;
}

.menu-rounded {
    background-color: #000000 !important;
}

.menu-rounded * {
    background-color: #000000 !important;
}

.menu-column {
    background-color: #000000 !important;
}

.menu-column * {
    background-color: #000000 !important;
}

/* Force override for all menu elements */
div[class*="menu"] {
    background-color: #ffffff ;
}

div[class*="menu"] * {
    background-color: #ffffff ;
}

/* Text color overrides */
span[class*="menu"] {
    color: #cccccc !important;
}

a[class*="menu"] {
    color: #cccccc !important;
}

a[class*="menu"]:hover {
    color: #ffffff !important;
}

/* Icon color overrides */
i[class*="fas"] {
    color: #cccccc !important;
}

a:hover i[class*="fas"] {
    color: #ffffff !important;
}

/* ========================================
   HAKKIMIZDA SAYFASI ÖZEL STİLLERİ
   ======================================== */

/* Hakkımızda Sayfası Özel Stilleri */
.about-hero {
    background: linear-gradient(135deg, #19c2f2 0%, #0fa3d1 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

.hero-text {
    text-align: left;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Asimetrik Görsel Galerisi */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.stats-section {
    background: linear-gradient(135deg, #19c2f2 0%, #0fa3d1 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #19c2f2 0%, #0fa3d1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.team-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    
    color: white;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-btn {
    display: inline-block;
    background: white;
    color: #19c2f2;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Hakkımızda Sayfası Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        min-height: 100vh;
        padding: 40px 0;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .about-hero-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
/* Çözümler Sayfaları Ortak CSS */

.solution-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.solution-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.solution-thumbnail {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.feature-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    margin: 4px;
    font-size: 0.85rem;
}

.btn-primary-custom {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Çözüm Detay Sayfası Özel Stilleri */
.feature-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.gallery-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}


