/* Sayfa düzenleme ve boşluk ayarları */
.tm-parallax {
    width: 400px;    
    min-height: 100%;
    height: 100%; /* yüksekliği tam sayfa yap */
    background: transparent;
    position: absolute;
    width: 400px;
    left: -470px;
    top: 0;
    bottom: 0; /* en alta sabitle */
}

/* Telif hakkı kısmı düzenleme */
#contact {
    padding-bottom: 30px !important; /* alt boşluğu azalt */
}

.tm-copyright {
    padding: 20px 0 !important;
    margin-top: 0 !important; /* üst boşluğu kaldır */
}

.tm-section-wrap:last-of-type {
    margin-bottom: 0; /* son bölümün alt boşluğunu kaldır */
}/* Form elementleri ve stil detayları */
#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form .form-group:last-of-type {
    margin-top: 30px;
    margin-bottom: 0;
}

#contact-form .form-control {
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #333 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: auto;
}

#contact-form .form-controls {
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #333 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: auto;
}

#contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}/* Form Element Hover Efektleri */
#contact-form .form-control:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15), 0 0 10px rgba(51, 102, 153, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.25);
}
#contact-form .form-controls:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15), 0 0 10px rgba(51, 102, 153, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.25);
}

#contact-form input.form-control:hover {
    border-left-color: #64B5F6; /* açık mavi */
}

#contact-form input.form-controls:hover {
    border-left-color: #FF7F7F ; /* açık kırmızı */
}

#contact-form select.form-control:hover {
    border-left-color: #CE93D8; /* açık mor */
}

#contact-form textarea.form-control:hover {
    border-left-color: #81C784; /* açık yeşil */
}

/* Firefox ve Edge için placeholder ayarları */
#contact-form .form-control::-moz-placeholder {
    color: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

#contact-form .form-control::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.7);
}

/* Seçim Kutusu Özel Stilleri */
#contact-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23333333' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

#contact-select option {
    background-color: white;
    color: #333;
    padding: 12px;
    font-size: 15px;
}/* Sosyal Medya Linkleri */
.tm-contact-social {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.tm-contact-social li {
    margin: 0 8px;
}

.tm-social-link {
    width: 42px;
    height: 42px;
    background-color: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    position: relative;
}

.tm-social-link i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tm-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.tm-social-link:hover i {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Sosyal Medya Renkleri */
.tm-social-link:hover .fa-facebook-f {
    color: #4267B2;
}

.tm-social-link:hover .fa-twitter {
    color: #1DA1F2;
}

.tm-social-link:hover .fa-instagram {
    color: #C13584;
}

.tm-social-link:hover .fa-linkedin-in {
    color: #0077B5;
}

.tm-social-link:hover .fa-whatsapp {
    color: #25D366;
}/* İletişim Adres Bölümü */
address {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

address:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

address .d-flex {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

address .d-flex:last-child {
    margin-bottom: 0;
}

address .d-flex:hover {
    transform: translateX(5px);
}

.tm-contact-link-icon {
    background-color: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

address .d-flex:hover .tm-contact-link-icon {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

.tm-contact-link {
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.tm-contact-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}/* İletişim Bölümü Ana Düzenleme */
#contact .row {
    display: flex;
    align-items: stretch;
}

#contact .tm-contact-col-l,
#contact .tm-contact-col-r {
    display: flex;
    flex-direction: column;
    min-height: 670px; /* Yükseklik eşitleme */
}

#contact .tm-contact-col-r {
    justify-content: space-between;
}

#contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* İletişim Formu Arka Plan */
.tm-contact-col-l::before {
    display: none; /* Önceki arka planı kaldırıyoruz */
}

/* Harita ayarlamaları */
.mapouter {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px;
}

/* Responsive ayarlamalar */
@media (max-width: 991px) {
    #contact .tm-contact-col-l,
    #contact .tm-contact-col-r {
        min-height: auto;
    }
    
    #contact-form {
        margin-bottom: 30px;
    }
}


#contact-form input.form-control {
    border-left: 4px solid #2196F3; /* mavi */
}

#contact-form input.form-controls {
    border-left: 4px solid #FF0000; /* kırmızı */
}

#contact-form select.form-control {
    border-left: 4px solid #9C27B0; /* mor */
}

#contact-form textarea.form-control {
    border-left: 4px solid #4CAF50; /* yeşil */
    min-height: 180px;
}

#contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.3);
    border-left-width: 8px;
    outline: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

#contact-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    opacity: 1;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

#contact-form .form-controls:focus {
    background-color: rgba(255, 255, 255, 0.3);
    border-left-width: 8px;
    outline: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

#contact-form .form-controls::placeholder {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    opacity: 1;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}


/* İletişim Formu Gönder Butonu */
#contact-form .form-group.tm-text-right {
    text-align: center !important;
    margin-top: 25px;
}

#contact-form .btn-primary {
    width: 80%;
    max-width: 200px;
    border-radius: 30px;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
}

#contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transition: all 0.5s ease;
    z-index: -1;
}

#contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#contact-form .btn-primary:hover::before {
    width: 100%;
}/* Hizmetlerimiz İçerik Alanları */
#services .tm-content-box {
    border-left: 4px solid var(--primary-color);
    border-radius: 0 5px 5px 0;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 25px;
}

#services .tm-content-box h3 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

#services .tm-content-box.telecom {
    border-left-color: #2196F3; /* blue */
}

#services .tm-content-box.security {
    border-left-color: #F44336; /* red */
}

#services .tm-content-box.energy {
    border-left-color: #4CAF50; /* green */
}

#services .tm-content-box.construction {
    border-left-color: #FF9800; /* orange */
}

#services .tm-content-box ul li {
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

#services .tm-content-box ul li:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    padding-left: 15px;
}
/* Proje İçerik Alanları */
#projects .tm-content-box {
    border-left: 4px solid var(--primary-color);
    border-radius: 0 5px 5px 0;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 25px;
}

#projects .tm-content-box h4 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

#projects .tm-content-box.featured {
    border-left-color: #FFC107; /* amber */
}

#projects .tm-content-box.telecom {
    border-left-color: #2196F3; /* blue */
}

#projects .tm-content-box.security {
    border-left-color: #F44336; /* red */
}

#projects .tm-content-box.energy {
    border-left-color: #4CAF50; /* green */
}

#projects .tm-content-box.construction {
    border-left-color: #FF9800; /* orange */
}

#projects .tm-content-box.statistics {
    border-left-color: #9C27B0; /* purple */
}

#projects .tm-content-box.other {
    border-left-color: #607D8B; /* blue grey */
}

#projects .project-items li {
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

#projects .project-items li:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    padding-left: 15px;
}
/* Modern link efektleri */
a {
    position: relative;
    transition: var(--transition);
}

a:not(.nav-link):not(.tm-tab-link):not(.tm-social-link):not(.tm-post-link):not(.tm-btn-next):not(.footer-text-logo a):hover {
    color: var(--primary-color);
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

a:not(.nav-link):not(.btn):not(.tm-tab-link):not(.tm-social-link)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

a:not(.nav-link):not(.btn):not(.tm-tab-link):not(.tm-social-link):hover::after {
    width: 100%;
}/* Tab hover efektleri */
.tm-tabs li a {
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.tm-tabs li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 64, 112, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.tm-tabs li a:hover::before,
.tm-tabs li a.active::before {
    height: 100%;
}

.tm-tab-link i {
    transition: all 0.3s ease;
}

.tm-tab-link:hover i,
.tm-tab-link.active i {
    transform: scale(1.2);
    color: white;
}/* Navbar ikon hover efektleri */
.nav-item:hover .nav-icon,
.nav-link.current .nav-icon {
    color: white;
    transform: scale(1.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    background-color: var(--secondary-color);
}/* Navbar link hover efektleri */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item:hover .nav-link::after,
.nav-link.current::after {
    width: 100%;
}/* Mükerrer kod kaldırıldı *//* Temel Değişkenler */
:root {
    --primary-color: #336699;
    --secondary-color: #0d4c80;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --animation-time: 0.5s;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Genel Stil Tanımlamaları */
html, body { overflow-x: hidden; }
body { 
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

div, a, p { color: #666666; }
p, address { line-height: 1.8; }
/* Modern link efektleri */
a {
    position: relative;
    transition: var(--transition);
}

a:not(.nav-link):not(.tm-tab-link):not(.tm-social-link):not(.tm-post-link):not(.tm-btn-next):not(.footer-text-logo a):hover {
    color: var(--primary-color);
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

a:not(.nav-link):not(.btn):not(.tm-tab-link):not(.tm-social-link)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

a:not(.nav-link):not(.btn):not(.tm-tab-link):not(.tm-social-link):hover::after {
    width: 100%;
}

.container-fluid { margin-left: 0; }

/* Sayfa Yükleyici (Loader) */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-container {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 180px;
    height: auto;
    animation: pulse 1.5s infinite alternate;
    margin-bottom: 30px;
}

.loader-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.loader-dot {
    width: 12px;
    height: 12px;
    margin: 0 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.loader-dot:nth-child(1) {
    animation: loader-dot-animation 1.4s infinite ease-in-out;
    animation-delay: 0s;
}

.loader-dot:nth-child(2) {
    animation: loader-dot-animation 1.4s infinite ease-in-out;
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation: loader-dot-animation 1.4s infinite ease-in-out;
    animation-delay: 0.4s;
}

.loader-dot:nth-child(4) {
    animation: loader-dot-animation 1.4s infinite ease-in-out;
    animation-delay: 0.6s;
}

.loader-dot:nth-child(5) {
    animation: loader-dot-animation 1.4s infinite ease-in-out;
    animation-delay: 0.8s;
}

@keyframes loader-dot-animation {
    0%, 100% {
        transform: scale(0.5);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}



/* Sol Menü İçin Stil Güncellemeleri */
#tm-main-nav .nav-link {
    font-size: 18px;
    padding: 10px 12px;
    transition: var(--transition);
    font-weight: 600;
    color: #005080; /* Daha koyu mavi renk */
}

#tm-main-nav .nav-icon {
    font-size: 18px;
    margin-right: 10px;
    color: white;
    background-color: var(--primary-color);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.tm-brand {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Logo hover efekti kaldırıldı */

/* İçerik Yazıları İçin Stil Güncellemeleri */
.tm-section p, .tm-section li {
    font-size: 16px;
    line-height: 1.7;
}

.tm-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.tm-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.tm-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

/* Butonlar İçin Stil Güncellemeleri */
.btn-primary, .tm-btn-next {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover, .tm-btn-next:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Hizmetlerimiz ve Projelerimiz Sekmeler İçin Ortak Stil */
.tm-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tm-tabs li {
    margin: 0 5px 10px 0;
    position: relative;
    overflow: hidden;
}

.tm-tab-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tm-tab-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.tm-tab-link:hover:before {
    left: 0;
}

.tm-tab-link:hover,
.tm-tab-link.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tm-tab-link i {
    margin-right: 8px;
}

/* İçerik Kutularının Stilini Güncelleme */
.tm-content-box {
    display: none;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
}

.tm-content-box.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    animation: fadeInBox 0.5s ease forwards;
}

@keyframes fadeInBox {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tm-content-box ul {
    padding-left: 20px;
    list-style: none;
}

.tm-content-box li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.tm-content-box li:hover {
    transform: translateX(5px);
}

.tm-content-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
}

/* Ana Sayfa Hizmet Kartları */
.service-card {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 5px;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card .tm-post-icon {
    transition: all 0.3s ease;
}

.service-card:hover .tm-post-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* İstatistik Kutularının Stilini Güncelleme */
.tm-about-box {
    text-align: center;
    padding: 25px 15px;
    border-radius: 10px;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.1);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tm-about-box:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tm-about-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tm-about-box:hover:before {
    transform: scaleX(1);
}

.tm-about-box i {
    transition: all 0.4s ease;
}

.tm-about-box:hover i {
    transform: scale(1.2);
}

.tm-about-box h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
    color: var(--primary-color);
}

.tm-about-box p {
    font-size: 1.1rem;
}

/* Counter Değerleri */
.counter-value {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}



/* Animasyon Sınıfları */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.active, .fade-in-left.active, .fade-in-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Responsive Ayarlamalar */
@media (max-width: 991px) {
    .tm-tabs {
        justify-content: center;
    }
    
    .tm-about-box {
        margin-bottom: 20px;
    }
    
    .service-card {
        padding: 10px;
    }

    .tm-section {
        padding: 40px 20px;
    }

    .tm-copyright {
        padding: 20px;
        text-align: center;
    }

    .tm-row-about {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .tm-section h2 {
        font-size: 2rem;
    }
    
    .tm-section h3 {
        font-size: 1.6rem;
    }
    
    .counter-value {
        font-size: 2rem;
    }

    .tm-brand-box {
        width: 220px;
        height: 100px;
        margin-bottom: 50px;
    }
    
    .tm-contact-social {
        justify-content: center;
    }

    .tm-contact-form .form-group {
        margin-bottom: 15px;
    }

    .tm-tabs li {
        margin-bottom: 10px;
    }

    .mapouter, .gmap_canvas {
        height: 300px;
    }
}

/* Footer düzenlemesi */
.footer-text-logo {
    font-family: 'Kumbh Sans', sans-serif;
    transition: var(--transition);
}

.footer-text-logo:hover {
    transform: translateY(-3px);
}

.footer-text-logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-text-logo span {
    letter-spacing: 0.5px;
}





/* Linklerin hover durumunda animasyon */
.nav-link, .tm-tab-link, .tm-gallery-link, .project-items li {
    position: relative;
    overflow: hidden;
}

/* Proje Kategorileri Kartları */
.project-category-card {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
}

.project-category-card .card-body {
    padding: 2rem 1.5rem;
}

.project-category-card .card-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-category-card i {
    transition: all 0.3s ease;
}

.project-category-card:hover i {
    transform: scale(1.2);
}

/* İlave stilendirmeler */
.project-items li {
    transition: all 0.3s ease;
}

.project-items li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.mapouter {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

.tm-img-about {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.tm-img-about:hover {
    transform: scale(1.02);
}



/* Telif Hakkı Kısmı */
.tm-copyright {
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
}

/* Ekstra Animasyonlar */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Tab efektleri */
.tm-tab-link {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tm-tab-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tm-tab-link:hover::after,
.tm-tab-link.active::after {
    width: 100%;
}

.tm-tab-link.active {
    background-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Geri Sayım Sayacı */
.counter-container {
    position: relative;
}

.counter-value {
    display: inline-block;
    position: relative;
}

.counter-value:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.counter-value.counted:after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary { 
    padding: 12px 50px;
    border-radius: 0;
    background: #006699;
    font-size: 1.2rem;
    border: 0;
}

.btn-primary:hover { background: #068ccf; }
.tm-text-primary { color: #006699; }
.tm-text-secondary { color: #009999; }
hr { border-top: 4px solid #CCC; }

.tm-hr-short {
	border-top: 1px solid #006699;
	width: 238px;
	margin-left: auto;
	margin-right: auto;
}

/* Layout */

.tm-main { width: 100%; }

.tm-row-home { 
	padding-left: 15px;
	padding-right: 15px;
}

.tm-mt-100 { margin-top: 100px; }

.tm-sidebar {
	background-color: #fff;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	padding-left: 40px;
	padding-top: 40px;
	width: 280px;
}

.tm-section-wrap {
	width: calc(100% - 750px);
	margin-left: 750px;
	margin-right: 0;
	position: relative;
}

.tm-section { padding: 50px 70px 50px 0; }

/* İletişim bölümü ve telif hakkı ayarları */
#gallery,
#about {
    padding-bottom: 150px;
}

#contact {
    padding-bottom: 30px !important;
}

.tm-parallax {
	width: 400px;	
	min-height: 100%;
	height: 100%;
	background: transparent;
	position: absolute;
    width: 400px;
    left: -470px;
    top: 0;
    bottom: 0;
}

/* Hide scrollbar */
.tm-sidebar {
	overflow-y: scroll;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE 10+ */
}
.tm-sidebar::-webkit-scrollbar {
	/* WebKit */
	width: 0;
	height: 0;
}

.tm-sidebar-sticky {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tm-nav {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Mobil Menü Butonu Stilleri */
.navbar-toggler {
    display: none;
    position: fixed;
    left: 0;
    top: 40px;
    background-color: rgba(0, 102, 153, 0.80);
    color: white;
    padding: 10px 15px;
    transition: var(--transition);
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 10000;
    border: none;
    outline: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-toggler:hover {
    background-color: var(--primary-color);
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-toggler.active {
    left: 280px;
    background-color: #d9534f; /* Danger kırmızı */
}

.navbar-toggler i {
    transition: var(--transition);
}

.navbar-toggler.active i {
    transform: rotate(90deg);
}

/* Brand box güncellemesi */
.tm-brand-box {
	width: 240px;
    height: 140px;
    background: #F6F6F6;
    color: white;
    display: flex;
    align-items: center;
	justify-content: center;
	margin-bottom: 80px; /* Biraz daha boşluk */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.tm-brand-box-logo {
    width: 220px;
    height: auto;
    margin-bottom: 0px;
}

#tm-main-nav {
	padding: 0;
	margin: 0;
}

.nav-item {
	list-style: none;
	margin-top: 10px;
	margin-bottom: 10px;
}

.nav-link {
	position: relative;
	color: #005080; /* Koyu mavi */
	font-size: 1.5rem;
	font-weight: 600;
	padding-top: 15px;
	padding-bottom: 15px;
}

.triangle-right {
	position: absolute;
	top: 9px;
	left: -40px;
	width: 0;
	height: 0;
	border-top: 22px solid transparent;
	border-left: 22px solid #004070; /* Koyu renk */
	border-bottom: 22px solid transparent;
	opacity: 0;
	transition: var(--transition);
}

.nav-item:hover .nav-link,
.nav-link.current {
	background-color: #F2F2F2;
	color: #004070; /* Daha koyu renk */
	padding-left: 35px;
	font-weight: 700;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-right: 4px solid #004070;
	background: linear-gradient(to right, #f2f2f2 0%, rgba(242, 242, 242, 0.7) 100%);
}

.nav-item:hover > .nav-link > .triangle-right,
.nav-link.current > .triangle-right {
	opacity: 1;
}

.nav-icon {
	width: 40px;
	margin-right: 20px;
}

/* Home section */
#home { min-height: 100vh; }
.tm-col-home-l { width: calc(100% - 300px); }

.tm-img-home-container {
	width: 250px;
	height: 500px;
	background: url(../img/img-home-01.jpg) no-repeat center;
	background-size: cover;
	margin-right: 0;
	margin-left: auto;
}

@media (max-width: 1600px) {
	.tm-col-home-l { width: calc(100% - 250px); }

	.tm-img-home-container {
		width: 200px;
		height: 400px;
	}
}

.tm-icon-container {
	border: 1px solid #CCC;
    width: 122px;
    height: 122px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-text-container { max-width: 97%; }

.tm-post-icon {
	width: 100px;
	height: 100px;
	margin-right: 20px;
}

.tm-post-link:hover {
	color: #068ccf;
}



/* About */

.tm-row-about {
	padding-left: 15px;
	padding-right: 15px;
}

.tm-col-about-l { width: calc(100% - 500px); }

.tm-col-about-r {
	width: 400px;
	margin-right: 0;
	margin-left: auto;
}

@media (max-width: 1660px) {
	.tm-col-about { width: 50%; }
	.tm-col-about-l { padding-right: 30px; }
}

@media (max-width: 1200px) {
	.tm-col-about { width: 100%; }
	.tm-col-about-l { padding-right: 0; }
}

.tm-social {
	padding-left: 0;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
}

.tm-social li { list-style: none; }

.tm-social li a {
	font-size: 1.4rem;
	padding: 10px;
	color: white;
}

.fab { transition: all 0.3s ease; }
.tm-social-link:hover .fa-instagram { color: #8134AF; }
.tm-social-link:hover .fa-facebook { color: #3b5998; }
.tm-social-link:hover .fa-twitter { color:  #00acee; }
.tm-social-link:hover .fa-youtube { color: #c4302b; }





.tm-about-title { font-size: 24px; }
.tm-about-subtitle { font-size: 20px; }

/* Contact */

.tm-contact-col-l { padding-right: 25px; }

.form-control {
	padding: 15px 20px 10px;
	width: 100%;
	height: auto;
}

.form-controls {
	padding: 15px 20px 10px;
	width: 100%;
	height: auto;
}

.form-group { margin-bottom: 25px; }
select.form-control { border-radius: 0; }
select.form-control option { height: 30px; }

select:not([multiple]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-image: url(../img/select-arrow.png);
    padding: 14px 20px;
    padding-right: 20px;
    color: #666;
}

.mapouter{
    position:relative;
    height:360px;
    width:100%;
}

.gmap_canvas {
    overflow:hidden;
    background:none!important;
    height:360px;
    width:100%;
}

.tm-contact-links {
	padding-left: 0;
	margin: 0;
}

.tm-contact-links li { list-style: none; }

.tm-contact-social {
	padding: 0;
	margin: 0;
	display: flex;
}

.tm-contact-social li {
	list-style: none;
	margin-right: 5px;
}

.tm-contact-social li a {
	width: 40px;
	height: 40px;
	display: block;
}

.tm-copyright { padding: 50px 70px 20px 0; }

@media (max-width: 1400px) {
	.tm-section-wrap {
		width: calc(100% - 630px);
		margin-left: 630px;
	}
}

@media (max-width: 1200px) {
	.tm-col-home {
		flex: 0 0 100%;
		max-width: 100%;
		padding-right: 15px;
	}

	.tm-img-home-container {
		width: 100%;
		height: 0;
		padding-top: 133.28%;
		background-image: url('../img/img-home-01-big.jpg');
		background-size: contain;		
	}
}

/* Hide the leftside bar */
@media (max-width: 991px) {
	.tm-sidebar {
		left: -280px;
		transition: all 0.3s ease;
	}

	.navbar-toggler {
		display: block;
		position: fixed;
		left: 0;
		top: 0;
		background-color: rgb(0 102 153 / 0.80);
		color: white;
		padding: 10px 15px;
		transition: all 0.3s ease;
		border-radius: 0;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		top: 40px;
		z-index: 10000;
	}

	.navbar-toggler:focus { outline: none; }
	.tm-sidebar.show { left: 0; }
	.tm-sidebar.show .navbar-toggler { left: 280px; }

	.tm-parallax {
		width: 280px;
    	left: -280px;
	}

	.tm-section-wrap {
		width: calc(100% - 280px);
		margin-left: 280px;		
	}

	.tm-section {
		padding-left: 30px;
		padding-right: 30px;
	}

	.tm-text-container { max-width: 100%; }	
}

@media (max-width: 700px) {
	.tm-parallax {
		position: static;
		height: 360px;
		width: 100%;
	}

	.tm-section-wrap {
		width: 100%;
		margin-left: 0;
	}
}