/* Jura Font tanımlaması */
@font-face {
    font-family: 'Jura';
    src: url('/fonts/Jura-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* Variable font için weight aralığı */
    font-style: normal;
}

:root {
    --primary-color: #FF9F43;
    --secondary-color: #FF7B2D;
    --text-color: #2D3436;
    --bg-light: #F9FAFB;
    --font-primary: 'Jura', sans-serif;
}
.json-container {
    margin-top:1.5rem;
}
/* Global Font Settings */
* {
    font-family: var(--font-primary);
}

body {
    padding-top: 0;
    color: var(--text-color);
    position: relative;
}

#bgVideo {
    position: fixed;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

/* Tipografi Stilleri */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.display-4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lead {
    font-weight: 400;
    font-size: 1.1rem;
}

.navbar {
    background: transparent;
    padding: 25px 0;
    transition: all 0.3s ease;
    z-index: 1000;
    position: sticky;
    top: 0;
    width: 100%;
}

/* Scroll olduğunda navbar stili */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-dark .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 700;
    position: relative;
}

.navbar-dark .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .nav-link:hover::after {
    width: 100%;
}

.navbar-dark .nav-link:hover {
    color: #fff !important;
}

.navbar .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.navbar .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: var(--secondary-color);
}

.navbar-brand {
    font-weight: 600;
    font-size: 26px;
    color: var(--text-color);
    letter-spacing: -0.02em;
    position: relative;
    padding: 5px 0;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-brand:hover::after {
    width: 100%;
}

/* Normal durumdaki nav-link stilleri */
.nav-link {
    font-weight: 500;
    margin: 0 10px;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

/* Scroll durumundaki nav-link stilleri */
.navbar.scrolled .nav-link {
    color: var(--text-color) !important;
}

.navbar.scrolled .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar.scrolled .nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn {
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0.6rem 1.5rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-section {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 150px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/dot-pattern.png');
    opacity: 0.1;
}

.hero-image {
    max-width: 100%;
    height: auto;
    opacity: 1;
    transform: translateX(0);
    animation: fadeInRight 0.8s ease-out forwards;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-circle .feature-icon {
    margin-bottom: 0;
    font-size: 2rem;
}

.feature-circle h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .feature-circle {
        width: 100px;
        height: 100px;
    }
    
    .feature-circle .feature-icon {
        font-size: 1.75rem;
    }
}

.section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.section-subtitle {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.card {
    border-radius: 15px;
    overflow: hidden;
}

.card-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

.card-body p {
    font-size: 0.9rem;
    color: #666;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 0;
    margin-top: 0px;
}
#mobileFooter {
    display:none;
}

.footer-top {
    padding: 60px 0;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/dot-pattern.png');
    opacity: 0.1;
}

.footer h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #fff;
}

.footer h4 {
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #fff;
}

.footer p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.footer-desc {
    max-width: 300px;
    font-weight: 400;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 12px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.footer-contact i {
    margin-right: 10px;
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0;
    }
    
    .footer-desc {
        max-width: 100%;
    }
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
}

.hero-slider {
    width: 100%;
    position: relative;
}

.hero-slide {
    display: none;
    animation: fadeEffect 1.5s;
}

.hero-slide.active {
    display: block;
}

.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: white;
    transform: scale(1.2);
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Servis Kartları */
.service-card {
    position: relative;
    z-index: 2;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tek numaralı kartlar soldan gelsin */
.service-card:nth-child(odd) {
    transform: translateX(-100px);
}

/* Çift numaralı kartlar sağdan gelsin */
.service-card:nth-child(even) {
    transform: translateX(100px);
}

.service-card.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Hover efekti için ayrı transform */
.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card .icon-wrapper i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card .read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.service-card .read-more:hover {
    color: var(--primary-color);
}

.service-card .read-more i {
    transition: transform 0.3s ease;
}

.service-card .read-more:hover i {
    transform: translateX(5px);
}

/* Animation delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Contact Info Cards */
.contact-info-section {
    padding: 60px 0 30px;
    background-color: var(--bg-light);
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-info-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon-box i {
    font-size: 24px;
    color: white;
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-info-card p {
    color: var(--secondary-color);
    margin: 0;
    font-weight: 500;
}

/* Map Container */
.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* Contact Page Styles */
.contact-page {
    background: linear-gradient(135deg, #fff6f0 0%, #fff0e6 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.contact-title {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.8rem;
    border-radius: 10px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 159, 67, 0.3);
}

/* Çözümlerimiz Kartları */
.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card.from-left {
    transform: translateX(-100px);
}

.solution-card.from-right {
    transform: translateX(100px);
}

.solution-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.solution-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.solution-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-icon {
    position: absolute;
    bottom: -25px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.solution-content {
    padding: 2rem;
    padding-top: 1.5rem;
}

.solution-card h4 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.solution-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.solution-link:hover {
    color: var(--primary-color);
}

.solution-link i {
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(5px);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.blog-content {
    padding: 20px;
    background: white;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    line-height: 1.4;
    color: var(--text-color);
}

.blog-summary {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    margin-top: 1rem;
}

.blog-meta span {
    color: #fff;
    margin-right: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.blog-meta i {
    margin-right: 0.5rem;
    color: #fff;
    opacity: 0.9;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 10px;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-card.featured h3 {
    font-size: 1.3rem;
}

.blog-card:not(.featured) .blog-image {
    height: 200px;
}

/* Section Backgrounds */
#neler-yapiyoruz {
    position: relative;
    background-color: #fff;
    z-index: 1;
}

#cozumlerimiz {
    position: relative;
    background-color: var(--bg-light);
    z-index: 1;
}

#blog {
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4f8 100%);
    position: relative;
}

.contact-page {
    background: linear-gradient(135deg, #fff6f0 0%, #fff0e6 100%);
    position: relative;
}

/* Section içerikleri için z-index ve position ayarları */
.section-content {
    position: relative;
    z-index: 2;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 999;
    transition: transform 0.5s ease;
    transform: translateY(100%);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 10px 20px;
    }

    .cookie-text {
        flex-direction: column;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cookie-banner {
        padding: 10px 0;
    }
}

/* Blog Sayfası Stilleri */
.blog-header {
    background: linear-gradient(135deg, #fff6f0 0%, #fff9f5 100%);
}

.blog-detail-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.blog-detail-header-image {
    width: 100%;
    height: 100%;
    object-fit: none;
    opacity: 0.8;
}

.blog-detail-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.blog-detail-header {
    color: #fff;
    padding: 80px 0;
    margin-top: 0rem !important;
    background:orange !important;
}

.blog-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.blog-detail-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 5px;
}

/* Blog Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex-grow: 1;
}

.recent-post-content h5 {
    font-size: 1rem;
    margin: 0 0 5px 0;
    line-height: 1.4;
    color: var(--text-color);
}

.recent-post-summary {
    font-size: 0.8rem;
    color: #666;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.post-date {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 30px;
        position: static;
    }
}

/* About Page Styles */
.about-header {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff6f0 0%, #fff9f5 100%);
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-content p {
    color: #666;
    margin: 0;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.team-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 20px;
    text-align: center;
}
.therostatSectionTitle {
    margin-bottom:0rem!important;
}

.team-content h4 {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    color: var(--text-color);
}

.team-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Navbar Logo Animasyonu - Yeni Versiyon */
.navbar-logo {
    height: 40px;
    position: relative;
    filter: drop-shadow(0 0 0 rgba(255,159,67,0));
}

/* Shine efekti */
.navbar-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 159, 67, 0.1) 45%,
        rgba(255, 159, 67, 0.3) 50%,
        rgba(255, 159, 67, 0.1) 55%,
        transparent 100%
    );
    transform: translateX(-100%) rotate(35deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(35deg);
    }
    20%, 100% {
        transform: translateX(100%) rotate(35deg);
    }
}

/* Hover efekti */
.navbar-logo {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-logo:hover {
    transform: perspective(500px) rotateY(15deg);
    filter: drop-shadow(-5px 5px 15px rgba(255, 159, 67, 0.3));
}

/* Giriş animasyonu */
@keyframes logoFloat {
    0% {
        opacity: 0;
        transform: perspective(500px) translateZ(-100px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: perspective(500px) translateZ(0);
        filter: blur(0);
    }
}

.navbar-logo {
    animation: logoFloat 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Scroll efekti */
.navbar.scrolled .navbar-logo {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.navbar.scrolled .navbar-logo:hover {
    transform: scale(0.9) perspective(500px) rotateY(15deg);
}

/* Scroll durumunda navbar değişimi */
.navbar.scrolled {
    background: white !important;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .navbar-brand img {
    filter: none;
}

.navbar.scrolled .nav-link {
    color: var(--text-color) !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar.scrolled .btn-primary {
    background: var(--primary-color);
    color: white;
}

.navbar.scrolled .btn-primary:hover {
    background: var(--secondary-color);
}

.navbar-logo-img {
    height: 40px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo-img {
    filter: none;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Footer Logo Styles */
.footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    height: 45px;
    transition: all 0.3s ease;
}

.footer-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.footer-logo-wrapper:hover::after {
    width: 100%;
}

/* Scroll durumunda logo hover çizgisi */
.navbar.scrolled .navbar-brand::after {
    background: var(--primary-color);
}

/* Parallax ve Gelişmiş Efektler */

/* 1. Mouse Takip Eden Parlama Efekti */
.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,159,67,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}

/* 2. Parallax Scroll Efekti */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    transition: transform 0.1s linear;
}

/* 3. Gelişmiş Kart Hover Efekti */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: rotateX(10deg) rotateY(10deg) translateZ(20px);
    box-shadow: 
        -20px -20px 30px rgba(255,255,255,0.8),
        20px 20px 30px rgba(0,0,0,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,159,67,0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* 4. Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1;
}

/* 5. Smooth Reveal Animation */
.reveal {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 6. Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* 7. Text Gradient Animation */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Section Dividers */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.divider-wave .shape-fill {
    fill: #FFFFFF;
}

.divider-curve .shape-fill {
    fill: var(--bg-light);
}

.divider-tilt .shape-fill {
    fill: #FFFFFF;
}

/* Floating Bubbles Animation */
.floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-bubbles .bubble {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.08;
    animation: float-up 20s infinite;
}

/* Her bir bubble için özel boyut ve pozisyon */
.floating-bubbles .bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.floating-bubbles .bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 24s;
}

.floating-bubbles .bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 45%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.floating-bubbles .bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 65%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.floating-bubbles .bubble:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 85%;
    animation-delay: 8s;
    animation-duration: 19s;
}

.floating-bubbles .bubble:nth-child(6) {
    width: 90px;
    height: 90px;
    left: 95%;
    animation-delay: 10s;
    animation-duration: 21s;
}

@keyframes float-up {
    0% {
        transform: translateY(120%) rotate(0deg);
    }
    100% {
        transform: translateY(-120%) rotate(360deg);
    }
}

.hero-section h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Yeni Cookie Alert Stili */
.cookie-alert {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
    max-width: 400px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-alert.show {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.cookie-alert-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-alert-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cookie-alert-content span {
    font-size: 0.9rem;
    color: #333;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-alert {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }

    .cookie-alert-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

/* Demo Modal Stilleri */
.modal-backdrop {
    z-index: 9998 !important;
}

.modal {
    z-index: 9999 !important;
}

.modal.fade.show {
    height: fit-content !important;
    display: flex !important;
    align-items: center;
}

.modal-dialog {
    max-width: 500px !important;
    width: 90% !important;
    margin: 1.75rem auto;
}

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
    width: 100%;
}

.modal-header {
    background: var(--bg-light);
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-body {
    background: white;
    padding: 2rem;
}

.modal-footer {
    background: white;
    border-radius: 0 0 15px 15px;
    padding: 1.5rem 2rem;
}

.modal-title {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.modal .input-group-text {
    background: var(--bg-light);
    border: 1px solid #dee2e6;
    border-right: none;
}

.modal .input-group-text i {
    color: var(--primary-color);
}

.modal .form-control {
    border: 1px solid #dee2e6;
    border-left: none;
    padding: 0.6rem 1rem;
}

.modal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.25);
    border-left: 1px solid var(--primary-color);
}

.modal .form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .modal-dialog {
        max-width: 95% !important;
        margin: 1rem auto;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

/* Blog Slider Styles */
.blog-slider {
    padding: 20px 0;
}

.swiper {
    padding: 30px 50px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Live Indicator Styles */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 10px;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-text {
    color: #22c55e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* JSON container header düzenlemesi */
.json-header {
    display: flex;
    align-items: center;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4f8 100%);
    padding: 5rem 0;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Matrix Container Styles */
.matrix-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    background-color: #ffffff;
}

#matrixCanvas {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #ffffff;
}

/* Termostat section içeriğinin üstte kalması için */
.py-5.bg-light .container {
    position: relative;
    z-index: 2;
}

/* Sensor Inputs Card Styles */
.sensor-inputs-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    width:400px;
}

.sensor-inputs-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.input-group-wrapper {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
}

.input-group-wrapper .form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-group-wrapper .input-group {
    margin-bottom: 0.5rem;
}

.input-group-wrapper .input-group-text {
    background: var(--bg-light);
    border: 1px solid #dee2e6;
    color: var(--text-color);
}

.input-group-wrapper .form-control {
    border: 1px solid #dee2e6;
}

.input-group-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 159, 67, 0.25);
}

.input-group-wrapper small {
    color: #6c757d;
    font-size: 0.8rem;
}

.info-icon {
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-icon:hover {
    transform: scale(1.1);
}

.add-rule-btn {
    margin-top: 1rem;
}

/* Thermostat Container Styles */
.thermostat-container {
    position: relative;
    z-index: 1;
}

.py-5.bg-light {
    background-color: #ffffff !important;
    position: relative;
    z-index: 1;
    margin-top: -2px;
}

.section-header-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-header-card .section-title {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.section-header-card p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* About Section */
.about-content {
    background: white;
}

/* Blog Content Section */
.blog-content {
    background: white;
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4f8 100%);
    padding: 5rem 0;
}

/* Service Detail Styles */
.service-detail-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 80px 0;
    margin-top: 76px;
}

.service-detail-header .service-icon {
    font-size: 4rem;
    display: block;
}

.service-detail-content {
    background: #fff;
}

.service-detail-content .content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Section Header Styles */
.section-header-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 159, 67, 0.1);
    margin-bottom: 2rem;
}

/* Blog Detail Styles */
.blog-detail-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 80px 0;
    margin-top: 76px;
}

.blog-detail-content {
    background: #fff;
}

.blog-detail-content .content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.recent-post-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-posts .list-group-item {
    transition: all 0.3s ease;
}

.recent-posts .list-group-item:hover {
    background-color: #f8f9fa;
}

.recent-posts h6 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.recent-posts small {
    font-size: 0.8rem;
}

/* Hero Points Animations */
.hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-points li {
    opacity: 0;
    transform: translateX(-30px);
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.25rem;
    animation: slideIn 0.5s ease forwards;
    display: flex;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    padding-left: 35px;
}

.hero-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    animation: arrowSlide 0.3s ease forwards;
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes arrowSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-points li:nth-child(1)::before {
    animation-delay: 0.5s;
}

.hero-points li:nth-child(2)::before {
    animation-delay: 0.8s;
}

.hero-points li:nth-child(3)::before {
    animation-delay: 1.1s;
}

.hero-points li:nth-child(4)::before {
    animation-delay: 1.4s;
}

.hero-points li:hover::before {
    animation: arrowBounce 1s ease infinite;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transition: text-shadow 0.3s ease;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* Wave Divider Styles */
.custom-shape-divider {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -100px;
}

.custom-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider path {
    fill: #ffffff;
    filter: drop-shadow(0 -2px 5px rgba(0,0,0,0.1));
}

/* Floating Bubbles Animation */
.floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-bubbles .bubble {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.08;
    animation: float-up 20s infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(120%) rotate(0deg);
    }
    100% {
        transform: translateY(-120%) rotate(360deg);
    }
}

/* Section içeriğinin z-index'ini ayarlayalım */
#neler-yapiyoruz .container {
    z-index: 2;
}

/* Service card'ların arka planını biraz daha belirgin yapalım */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

/* Blog section için z-index ayarı */
#blog .container {
    position: relative;
    z-index: 2;
}

#blog .swiper {
    position: relative;
    z-index: 2;
}

/* Blog section için floating bubbles özelleştirmesi */
#blog .floating-bubbles .bubble {
    opacity: 0.08;
}

.json-display {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.json-display.dark-theme {
    background: #1e1e1e;
    color: #fff;
    font-family: 'Consolas', 'Monaco', monospace;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.json-display.dark-theme pre {
    color: #fff;
}

/* JSON syntax highlighting */
.json-display.dark-theme .json-key {
    color: #9cdcfe;
}

.json-display.dark-theme .json-string {
    color: #ce9178;
}

.json-display.dark-theme .json-number {
    color: #b5cea8;
}

.json-display.dark-theme .json-boolean {
    color: #569cd6;
}

.form-check-input {
    width: 3em;
    height: 1.5em;
    margin-top: 0;
}

.form-switch .form-check-label {
    margin-left: 1rem;
    font-weight: 500;
}

.form-switch .form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

/* Modern Switch Style */
.modern-switch {
  --s: 50px;
  height: calc(var(--s) + var(--s)/5);
  width: auto;
  aspect-ratio: 2.25;
  border-radius: var(--s);
  margin: calc(var(--s)/2);
  display: grid;
  cursor: pointer;
  background-color: #ff7a7a;
  box-sizing: content-box;
  overflow: hidden;
  transition: .3s .1s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.modern-switch:before {
  content: "";
  padding: calc(var(--s)/10);
  --_g: radial-gradient(circle closest-side at calc(100% - var(--s)/2) 50%,#000 96%,#0000);
  background: 
    var(--_g) 0 /var(--_p,var(--s)) 100% no-repeat content-box,
    var(--_g) var(--_p,0)/var(--s)  100% no-repeat content-box,
    #fff;
  mix-blend-mode: darken;
  filter: blur(calc(var(--s)/12)) contrast(11));
  transition: .4s, background-position .4s .1s,
    padding cubic-bezier(0,calc(var(--_i,-1)*200),1,calc(var(--_i,-1)*200)) .25s .1s;
}

.modern-switch:checked {
  background-color: #85ff7a;
}

.modern-switch:checked:before {
  padding: calc(var(--s)/10 + .05px) calc(var(--s)/10);
  --_p: 100%;
  --_i: 1;
}

.modern-switch:disabled {
  opacity: 1;
  cursor: not-allowed;
  pointer-events: none;
}

/* Disabled durumunda renkleri koruyalım */
.modern-switch:disabled:checked {
  background-color: #85ff7a;
}

.modern-switch:disabled:not(:checked) {
  background-color: #ff7a7a;
}
/* Küçük telefonlar (320px - 480px) */
@media screen and (max-width: 480px) {
 
}
@media screen and (max-width: 991px) {
    .header-buttons {
        display:none;
    }
    #contantMobileNavItem {
        display: block !important;
    }

    #demoMobileNavItem {
        display: block !important;
    }
}
/* Orta boyutlu telefonlar (481px - 768px) */
@media screen and (max-width: 768px) {
    #thermostatSection {
       padding-top:0rem !important;
    }
    .thermostat-container {
        margin-top:0rem;
    }
    #solutionCards {
        padding-left:1rem;
        padding-right:1rem;
    }
    #heater_row {
        align-items:center;
        justify-content:center;
    }
    .section-subtitle {
       margin-bottom:1rem;
    }
    .blog-slider {
        padding-top:0rem !important;
    }
    .swiper {
        padding-top:1rem;
    }
    .contact-info-card {
        padding:10px;
    }
    .contact-page {
        padding-top:20px;
    }
    #demoModal {
        padding-right: 0rem !important;
    }
    .map-container {
        margin-top:1rem;
    }
    .header-buttons {
        display:none !important;
    }
    #heroheader {
        text-align:center;
    }
    .hero-points {
        padding-left:1.5rem;
    }
    .about-header {
        text-align:center;
        padding-top:1rem !important;
    }
    .navbar-nav {
        justify-content:center;
        align-items:center;
        margin-top:1rem;
    }
    .nav-link {
        font-size: 20px;
    }
    #mobileFooter {
        display: block;
    }
    #bgVideo {
        display:none;
    }
    #heater_row {
        margin-left:1rem;
        margin-right:1rem;
    }
    #neleryapiyoruzcard {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .blog-meta {
        display:none;
    }
    body {
        background-color: orange;
    }
    .blog-detail-header {
        margin-top:0rem !important;
        background:orange;
        padding-top:1rem !important;
        padding-bottom:1rem !important;
    }
}
/* Büyük telefonlar ve küçük tabletler (769px - 1024px) */
@media screen and (max-width: 1024px) {
}

/*new heater swtich*/

#contantMobileNavItem {
    display:none;
}
#demoMobileNavItem {
    display: none;
}

.mid {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1em;
}


/* Switch starts here */
.rocker {
    display: inline-block;
    position: relative;
    /*
  SIZE OF SWITCH
  ==============
  All sizes are in em - therefore
  changing the font-size here
  will change the size of the switch.
  See .rocker-small below as example.
  */
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color: white;
    width: 7em;
    height: 4em;
    overflow: hidden;
    border-bottom: 0.5em solid #eee;
}

.rocker-small {
    font-size: 0.75em; /* Sizes the switch */
    margin: 1em;
}

.rocker::before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #999;
    border: 0.5em solid #eee;
    border-bottom: 0;
}

.rocker input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-left,
.switch-right {
    cursor: pointer;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5em;
    width: 3em;
    transition: 0.2s;
}

.switch-left {
    height: 2.4em;
    width: 2.75em;
    left: 0.85em;
    bottom: 0.4em;
    background-color: #ddd;
    transform: rotate(15deg) skewX(15deg);
}

.switch-right {
    right: 0.5em;
    bottom: 0;
    background-color: #bd5757;
    color: #fff;
}

    .switch-left::before,
    .switch-right::before {
        content: "";
        position: absolute;
        width: 0.4em;
        height: 2.45em;
        bottom: -0.45em;
        background-color: #ccc;
        transform: skewY(-65deg);
    }

.switch-left::before {
    left: -0.4em;
}

.switch-right::before {
    right: -0.375em;
    background-color: transparent;
    transform: skewY(65deg);
}

input:checked + .switch-left {
    background-color:green;
    bottom: 0px;
    left: 0.5em;
    height: 2.5em;
    width: 3em;
    transform: rotate(0deg) skewX(0deg);
}

    input:checked + .switch-left::before {
        background-color: transparent;
        width: 3.0833em;
    }

    input:checked + .switch-left + .switch-right {
        background-color: #ddd;
        color: #888;
        bottom: 0.4em;
        right: 0.8em;
        height: 2.4em;
        width: 2.75em;
        transform: rotate(-15deg) skewX(-15deg);
    }

        input:checked + .switch-left + .switch-right::before {
            background-color: #ccc;
        }

/* Keyboard Users */
input:focus + .switch-left {
    color: #333;
}

input:checked:focus + .switch-left {
    color: #fff;
}

input:focus + .switch-left + .switch-right {
    color: #fff;
}

input:checked:focus + .switch-left + .switch-right {
    color: #333;
}

.solution-detail-header {
    background: white;
    padding: 60px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.related-solution-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}