:root {
    --headerh: 75px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    position: relative;
    left: 0;
    transition: left 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Kurallar: Container genişliği 1400px ve %100 olacak */
.container {
    max-width: 1400px !important;
    width: 100% !important;
}

/* Kural: CSS Seçicilerde tire (-) yok, isimler kısa */
.top {
    height: 40px;
    background: #012c4d;
    background-image: radial-gradient(circle at 70% 30%, rgba(3, 104, 176, 0.8) 0%, #012c4d 95%);
    font-size: 0.9rem;
    border-bottom: none;
    position: relative;
    z-index: 10000;
}

.top div a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.top div a i {
    color: #fff;
    font-size: 13px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.top div a:hover {
    color: #fff;
}

.top div a:hover i {
    transform: scale(1.15) translateY(-1px);
}

.top .tsoc {
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.top .tsoc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.top .tsoc ul li a {
    display: flex;
}

.top .tsoc ul li a i {
    color: #fff;
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.top .tsoc ul li a:hover i {
    transform: translateY(-2px);
    opacity: 0.75;
}
/* =============================================
   HEADER — Normal akış, slider üzerine binmez
   ============================================= */
.header {
    position: relative;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: var(--headerh);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Sticky: sayfa aşağı scroll edilince fixed konuma geçer */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    animation: headerFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Sticky olduğunda sayfanın kaymasını engellemek için placeholder */
.header-placeholder {
    height: var(--headerh);
    display: none;
}

.header.sticky ~ .header-placeholder,
body.header-is-sticky .header-placeholder {
    display: block;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    height: var(--headerh);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

/* Sticky menü link renkleri */
.header.sticky .nav>ul>li>a {
    color: #000;
}

.header.sticky .nav>ul>li>a:hover {
    color: #000;
}

.header.sticky .nav>ul>li>a::after {
    background: #0368b0;
}

/* Language Switcher */
.h-lang {
    margin-left: 10px;
    gap: 20px;
}

.h-lang .v-line {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.12);
}

.header.sticky .h-lang .v-line {
    background: rgba(0, 0, 0, 0.1);
}

.lang-btn {
    text-decoration: none;
    color: #0368b0;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.header.sticky .lang-btn {
    color: #0368b0;
}

.lang-btn:hover {
    color: #000 !important;
}

/* Nav ana kapsayıcı ve li'ler header boyunca uzansın */
.nav {
    position: relative;
    display: flex;
    align-items: stretch;
    align-self: stretch;
}

.nav > ul {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.nav > ul > li {
    display: flex;
    align-items: stretch;
    position: relative;
}

.nav li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav > ul > li > a {
    position: relative;
    font-weight: 900;
    align-self: stretch;
    display: flex;
    align-items: center;
}

/* Hover Marker: Modern Dot Indicator */
.nav > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #0368b0;
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav > ul > li:hover > a {
    color: #0368b0;
}

.nav > ul > li:hover > a::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Sub Menu / Dropdown — Modern & Premium Design */
.nav li ul {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(0, 0, 0, 0.03);
    z-index: 10000;
    transform: translateY(15px) scale(0.98);
    transform-origin: top left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: none; 
}

/* Hover State Entrance */
.nav li:hover > ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Submenu Decorative Top Bar (Premium Touch) */
.nav li ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #0368b0, #0368b0);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav li:hover > ul::before {
    opacity: 1;
}

.nav li ul li {
    display: block;
    padding: 0 12px;
}

.nav li ul li a {
    color: #444;
    padding: 12px 15px;
    text-transform: none;
    font-weight: 600;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Submenu Link Hover Effect */
.nav li ul li a:hover {
    background: rgba(3, 104, 176, 0.05);
    color: #0368b0;
    padding-left: 25px;
}

/* Subtle dot indicator on hover — Now on the Left */
.nav li ul li a::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    width: 6px;
    height: 6px;
    background: #0368b0;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav li ul li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Nesting support for deeper submenus */
.nav li ul li ul {
    left: 100%;
    top: -15px;
    margin-left: 10px;
    transform-origin: top left;
}

.nav li ul li:hover > ul {
    transform: translateY(0) scale(1);
}

/* Slider Dots - Modern Yuvarlak Stil */
.owl-dots {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    align-items: center;
}

.owl-dot {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    outline: none;
    transition: all 0.3s ease;
}

.owl-dot span {
    display: block !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.owl-dot.active span {
    background: #0368b0 !important;
    width: 12px;
    height: 12px;
    border-color: #0368b0;
    box-shadow: 0 0 15px rgba(3, 104, 176, 0.5);
    transform: scale(1.1); /* Aktif olanı hafifçe vurguladık ama kayma yapmaz */
}

.owl-dot:hover span {
    background: rgba(255, 255, 255, 0.8) !important;
}

@media (max-width: 991px) {
    .owl-dots {
        flex-direction: row !important;
        left: 50%;
        top: auto;
        bottom: 30px;
        transform: translateX(-50%);
        gap: 12px;
    }
}

/* Slider */
.slider {
    height: 75vh;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    /* Katman Sıralaması Düzeltildi: Desen Üstte, Koyu Renk Altta */
    background: url('../img/background_02.png') center/cover no-repeat,
                linear-gradient(135deg, #04070b 0%, #0c1421 100%) !important;
}

.item {
    height: 75vh;
    min-height: 450px;
    display: flex;
    align-items: center;
}

/* Slayt Resim Ayarları (Hiyerarşik) */
.slider .item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Sadece Resim Üstü Okunabilirlik Katmanı */
.item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Başlangıç daha koyu, bitiş daha transparan */
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.4) 40%, 
        transparent 80%);
    z-index: 1;
    pointer-events: none;
}

.box {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 950px; /* Slightly wider for better layout */
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0; /* More air */
}

/* Premium Aura Glow behind text */
.box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(3, 104, 176, 0.15) 0%, rgba(3, 104, 176, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: auraFloat 10s ease-in-out infinite alternate;
}

@keyframes auraFloat {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-45%, -55%) scale(1.1); opacity: 0.8; }
    100% { transform: translate(-55%, -45%) scale(1); opacity: 0.5; }
}

/* Sadece etiket seçiciler (h2, h5, a) üzerinden şekillendirildi */
.box h2 {
    font-size: 60px;
    margin-bottom: 40px;
    font-weight: 800;
    line-height: 1.1;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.2s;
}

.box p {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.8;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.4s;
}

.owl-item.active .box h2,
.owl-item.active .box p { 
    transform: translateY(0);
    opacity: 1;
}

.acts {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

/* Buton ve Bağlantılar - Kreatif Kurumsal */
.acts a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 45px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    /* Modern pill tasarımı */
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1),
        box-shadow 0.4s ease,
        opacity 0.8s ease;
}

/* Button Sweep Reflection Effect */
.acts a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: all 0.6s ease;
}

.acts a:hover::before {
    left: 150%;
}

.acts a span {
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.acts a::after {
    content: '\f061';
    /* FontAwesome sağ ok */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(15px);
    font-size: 17px;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.4s ease;
}

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

.acts a:hover span {
    transform: translateX(-8px);
}

.acts a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Şeffaf Buton (Sol / İlk) */
.acts a:first-child {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.owl-item.active .acts a:first-child {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.6s,
        opacity 0.8s ease 0.6s,
        background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.acts a:first-child:hover {
    background: #ffffff;
    color: #0368b0;
    border-color: #ffffff;
}

/* Dolu Buton (Sağ / Son) */
.acts a:last-child {
    background: #0368b0;
    color: #fff;
    border: 2px solid #0368b0;
}

.owl-item.active .acts a:last-child {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.8s,
        opacity 0.8s ease 0.8s,
        background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.acts a:last-child:hover {
    background: #0368b0;
    border-color: #0368b0;
    box-shadow: 0 10px 25px rgba(3, 104, 176, 0.4);
}

/* Footer */
@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

footer, .footer {
    background: linear-gradient(-45deg, #0d1117, #0f141d, #121822, #0d1117);
    background-size: 400% 400%;
    animation: footerGradient 40s ease infinite;
    color: rgba(255, 255, 255, 0.65);
    padding: 100px 0 0;
    overflow: hidden;
}

/* Üst kısımdaki vurgu çizgisi */
/* footer::before mavi border kaldırıldı */

.flogo img {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.flogo + p, footer .col-lg-4 > p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.5);
}

footer .col-lg-4 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

footer .col-lg-4 ul li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

footer .col-lg-4 ul li a:hover {
    background: #0368b0;
    border-color: #0368b0;
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 10px 15px rgba(3, 104, 176, 0.2);
}

.fcol>span {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Modern Çizgi + Nokta Tasarımı */
.fcol>span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 3px;
    background: #0368b0;
    border-radius: 5px;
}

/* Çizginin hemen yanına modern bir nokta */
.fcol>span::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 32px;
    width: 3px;
    height: 3px;
    background: #0368b0;
    border-radius: 50%;
}

.fcol ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fcol ul li {
    margin-bottom: 12px;
}

.fcol ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fcol ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.fcontact div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px !important;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.fcontact i {
    color: #0368b0;
    font-size: 17px;
    margin-top: 5px;
}

.about-eyebrow {
    color: #0368b0;
    font-weight: 700;
    
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.fbar {
    margin-top: 80px;
    padding: 30px 0;
    background: #0368b0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fbar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Mobile Responsive & Menu */
.burger {
    display: none;
    cursor: pointer;
    z-index: 9999;
    width: 30px;
    height: 22px;
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
}

.burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: .3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.burger span:nth-child(1) {
    top: 0px;
}

.burger span:nth-child(2) {
    top: 9px;
}

.burger span:nth-child(3) {
    top: 18px;
}

.burger.open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
    background: #fff;
}

.burger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.burger.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
    background: #fff;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    body.menu-open {
        overflow: hidden;
        left: -80%;
    }

    .burger {
        display: block;
    }

    .nav {
        position: fixed;
        right: -80%;
        top: 0;
        width: 80%;
        height: 100vh;
        background: #fff;
        z-index: 9998;
        padding-top: 0;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        overflow-y: auto;
        display: block;
        /* Flex row hatasını kökünden düzeltir */
    }

    .nav.active {
        right: 0;
    }

    .nav-header {
        padding: 15px 30px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #f5f5f5;
        min-height: 80px;
        /* burger ikonu ile aynı hizada ferah durması için */
    }

    .nav>ul {
        flex-direction: column !important;
        align-items: flex-start !important;
        display: flex !important;
        gap: 0 !important;
        width: 100%;
        margin-top: 10px;
    }

    .nav>ul>li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
        display: block;
    }

    .nav>ul>li>a {
        color: #222;
        padding: 20px 30px;
        width: 100%;
        justify-content: space-between;
        font-size: 16px;
    }

    .nav>ul>li>a::after {
        display: none;
    }

    .nav li ul {
        position: static;
        width: 100%;
        display: none;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border-top: none;
        background: #fafafa;
        padding: 0;
        border-left: none;
        transition: none;
    }

    .nav li:hover>ul {
        top: auto;
    }

    .nav li.has-children>a::after {
        content: '+';
        position: static;
        width: auto;
        height: auto;
        background: none;
        font-size: 24px;
        color: #0368b0;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    .nav li.has-children.open>a::after {
        content: '-';
        transform: rotate(180deg);
    }

    .nav li ul li a {
        padding: 15px 30px 15px 45px;
        border-left: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav li ul li ul li a {
        padding-left: 60px;
    }

    .nav-footer .mail {
        margin-bottom: 15px;
    }

    .nav-footer a {
        transition: color 0.3s ease;
        text-decoration: none;
        color: #212529;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-footer .mail a {
        word-break: break-word;
    }

    .nav-footer a:hover {
        color: #0368b0;
    }

    /* Social List CSS */
    .nav-footer ul.social-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        flex-direction: row !important;
    }

    .nav-footer ul.social-list>li {
        width: auto !important;
        border-bottom: none !important;
    }

    .nav-footer ul.social-list>li>a {
        padding: 0;
        color: #111 !important;
        font-size: 18px;
        border: none;
    }

    .nav-footer ul.social-list>li>a:hover {
        color: #0368b0 !important;
    }

    .nav-footer hr {
        border-color: #ddd;
        margin: 20px 0;
        opacity: 0.8;
    }

    /* Mobil slider yazı hizalamaları */
    .box {
        text-align: center;
    }

    .box h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .box p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .acts {
        justify-content: center;
    }
}

.slider .item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../img/page-title.svg'); */
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    opacity: 0.85;
    /* Slider için opasite %20 artırıldı (0.65 -> 0.85) */
    mix-blend-mode: overlay;
    z-index: 1;
    pointer-events: none;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.slider .item {
    background-color: #0368b0;
    background-image: radial-gradient(at top center, #0368b0 0%, #0368b0 50%, #012c4d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* ==================================================
   Page Title Section
   ================================================== */
/* Eski pgtitle tanımları kaldırıldı - yeni tanım dosyanın sonunda */

.pgtitle h1 {
    font-size: 66px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
}

/* Eski pgtitle alt tanımları temizlendi */
.pgtitle ul li:last-child {
    color: #ffffff;
    pointer-events: none;
}

/* ==================================================
   Added Categories & Products Styles
   ================================================== */

/* Products Section */
.products-section {
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 150px;
}

/* Product Card - Smooth Expansion & Fade */
.p-card {
    height: 195px; /* Grid placeholder */
    position: relative;
    z-index: 1;
}

.p-card:hover { z-index: 100; }

.p-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #f4f6fb; /* Previous section background applied to card */
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Extremely subtle, soft shadow */
    border: none; /* Removed border as requested */
    max-height: 195px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                transform 0.4s ease;
}

.p-card:hover .p-card-inner {
    max-height: 500px;
    box-shadow: 0 30px 60px rgba(3, 104, 176, 0.25);
    transform: translateY(-5px);
}

.p-front {
    padding: 45px 30px 30px; /* Increased top padding */
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.p-front h3 {
    font-size: 22px;
    font-weight: 700;
    color: #04070f;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.p-front p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 0;
    transition: color 0.4s ease;
}

.p-card:hover .p-front h3 { color: #fff; }

.p-card:hover .p-front p { color: rgba(255,255,255,0.6); }

.p-details {
    padding: 0 0 30px 0;
    margin-top: 25px; /* Added space between description and divider */
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.p-card:hover .p-details {
    opacity: 1;
    transform: translateY(0);
}

.p-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 0 0 20px 0;
    width: 0;
    transition: width 0.5s ease 0.1s;
}

.p-card:hover .p-divider { width: 100%; }

.p-specs {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Reduced vertical gap between lines */
}

.p-spec {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 10px; /* Reduced horizontal gap */
}

.p-spec strong {
    font-size: 11px;
    
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    width: 135px; /* Increased to accommodate "Ionic Character" in one line */
    flex-shrink: 0;
    white-space: nowrap; /* Forces text to stay on one line */
}

.p-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #FFF;
    font-size: 12px;

}

.p-specs ul li {
	display: block;
	margin-bottom: 10px;
}

.p-specs ul li strong {
	font-weight: 800;
	display: inline-block;
}

.p-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0368b0 0%, #0368b0 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.p-card:hover .p-back {
    opacity: 1;
}

.p-num {
    position: absolute;
    top: 5px; /* Moved higher up */
    right: 20px;
    font-size: 110px;
    z-index: 100;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: rgba(3, 104, 176, 0.04);
    transition: color 0.4s ease;
    line-height: 1;
}

.p-card:hover .p-num { color: rgba(255,255,255,0.05); }

.p-arrow {
    position: absolute;
    top: 140px; /* Aligned with the initial compact height */
    right: 25px;
    width: 34px;
    height: 34px;
    background: #0368b0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 4;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(3, 104, 176, 0.2);
}

.p-card:hover .p-arrow {
    opacity: 0;
    transform: scale(0.8);
}

/* Category Cards */
.cat-section {
    padding: 60px 0 100px; /* Reduced vertical spacing */
    background: #ffffff;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns as requested */
    gap: 20px; /* Tighter gap for more elements */
}

.cat-card {
    position: relative;
    height: 380px; /* Shorter cards for 4 columns */
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(3, 104, 176, 0.12);
}

.cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.2);
    filter: blur(10px) brightness(0.7);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.cat-card:hover .cat-card-bg {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0px) brightness(0.9);
}

.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(4, 7, 15, 0.05) 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.cat-card:hover::after {
    background: linear-gradient(180deg, transparent 30%, rgba(4, 7, 15, 0.85) 100%);
}

.cat-content {
    position: relative;
    z-index: 5;
    padding: 30px; /* Tighter internal padding */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cat-num {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 110px; /* Scaled down for narrower cards */
    font-weight: 900;
    color: rgba(3, 104, 176, 0.05);
    line-height: 0.8;
    letter-spacing: -4px;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    user-select: none;
}

.cat-card:hover .cat-num {
    display: none;
}

.cat-text-group {
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
    min-height: 170px; /* Adjusted fixed height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cat-card:hover .cat-text-group {
    transform: translateY(25px);
}

.cat-text-group h3 {
    font-size: 26px; /* Scaled down for 4 columns */
    font-weight: 900;
    color: #0368b0;
    margin-bottom: 10px;
    line-height: 1;
    transition: all 0.4s ease;
    min-height: 64px; /* Scaled min-height */
    display: flex;
    align-items: flex-end;
}

.cat-card:hover .cat-text-group h3 {
    color: #ffffff;
}

.cat-text-group p {
    font-size: 15px; /* Slightly smaller */
    color: #666;
    line-height: 1.5;
    max-width: 100%;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.cat-card:hover .cat-text-group p {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: translateY(0);
}

.cat-btn {
    width: 48px; /* Slightly smaller button */
    height: 48px;
    border-radius: 50%;
    background: #0368b0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 25px;
    align-self: flex-end;
    opacity: 1;
    border: 2px solid transparent;
}

.cat-card:hover .cat-btn {
    background: #ffffff;
    color: #0368b0;
    transform: rotate(-45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sub-Category Sidebar */
.alt-container {
    padding: 100px 0 150px;
    background-color: #ffffff;
}

.category-sidebar {
    background: linear-gradient(145deg, #012c4d 0%, #0368b0 100%);
    padding: 40px 35px; 
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(3, 104, 176, 0.15);
    position: sticky;
    top: 120px;
    border: none;
    overflow: hidden;
    margin-bottom: 35px;
}

.category-sidebar::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.category-sidebar h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 18px; 
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 6px;
    border: 1px solid transparent;
}

.category-list li a i {
    font-size: 11px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.category-list li a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.category-list li a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-list li a.active i {
    color: #fff;
    opacity: 1;
}

.category-list li.active a i {
    opacity: 1;
}

/* Sidebar Contact Widget */
.wiletisim {
    padding: 40px 35px; 
    background: linear-gradient(145deg, #012c4d 0%, #0368b0 100%);
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(3, 104, 176, 0.15);
    position: relative;
    overflow: hidden;
    margin-bottom: 35px;
}

.wiletisim::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.wiletisim span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.wiletisim p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 25px;
}

.wiletisim ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiletisim ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #fff;
}

.wiletisim ul li:last-child {
    margin-bottom: 0;
}

.wiletisim ul li i {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wiletisim ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.wiletisim ul li:hover i {
    background: #fff;
    color: #0368b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.alt-container .products-section {
    padding: 0;
    background: transparent;
}

@media (max-width: 991px) {
    .p-card { height: auto; margin-bottom: 20px; }
    .p-card-inner { position: relative; max-height: none; }
    .p-details { opacity: 1; transform: none; padding-top: 20px; }
    .p-divider { width: 100%; background: #eee; }
    .p-spec strong { color: #888; }
    .p-spec span { color: #333; }
    .p-back { display: none; }

    .category-sidebar {
        margin-bottom: 40px;
        position: static;
    }
}

@media (max-width: 768px) {
    .cat-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cat-card {
        height: 350px;
    }

    .cat-content {
        padding: 40px;
    }
}

/* =========================================
   MAINCATEGORY.CSS
   Ürün Kategorileri Modülü - Uniq Kimya
   Tasarım sistemine uyumlu bağımsız modül
   ========================================= */


/* ---- Section Header / Başlık Alanı ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin: 0 0 15px 0;
    line-height: 1.15;
}

.section-header h2 em {
    font-style: normal;
    color: #0368b0;
}

.section-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Kategoriler Ana Section ---- */

/* ========== SERVICES SECTION (Hizmetlerimiz) ========== */
.services-section {
    padding-top: 100px;
    padding-bottom: 0;
    background-color: #0368b0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 30px 30px;
    position: relative;
    overflow: visible;
}

.services-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.services-section .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0d1a45;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.services-section .section-header span {
    color: #0368b0;
    display: block;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

.services-section .section-header p {
    color: #64748b;
}

.services-carousel {
    padding-bottom: 40px;
    position: relative;
    z-index: 10;
}

.services-carousel .owl-stage-outer {
    padding: 50px 50px 100px;
    margin: -50px -50px -100px;
}

.services-carousel .owl-stage {
    display: flex;
}

.services-carousel .owl-item {
    transition: all 0.5s ease;
    opacity: 0; /* Ekrandan taşanlar veya aktif olmayanlar */
}

.services-carousel .owl-item.active {
    opacity: 0.65; /* Yanlardaki aktif öğeler */
}

.services-carousel .owl-item.center {
    opacity: 1; /* Tam ortadaki odaklanmış öğe */
}

.services-carousel .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-carousel .owl-dots {
    margin-top: 60px !important;
    display: flex !important;
    justify-content: center;
    gap: 12px;
}

.services-carousel .owl-dot {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
}

.services-carousel .owl-dot span {
    display: block;
    background: rgba(255, 255, 255, 0.2) !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.services-carousel .owl-dot:hover span {
    background: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.2);
}

.services-carousel .owl-dot.active span {
    background: #fff !important;
    width: 35px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card {
    background: #fff;
    padding: 0;
    border-radius: 3px;
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    opacity: 1;
    transform: none;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(3, 104, 176, 0.14), 0 15px 30px rgba(0, 0, 0, 0.06);
}

.service-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-link {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 700;
    color: #0368b0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    gap: 12px;
}

@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-section .section-header h2 {
        font-size: 32px;
    }
}

/* ---- Animasyon Başlangıç Durumları ---- */
.about-image-wrapper,
.about-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-image-wrapper.visible,
.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== ABOUT SECTION (Hakkımızda) ========== */
.about-section {
    background: #ffffff;
    position: relative;
    overflow: visible;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 15px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Dekoratif Arka Plan Elemanı */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0368b0;
    top: 30px;
    left: -30px;
    border-radius: 5px;
    z-index: -1;
    opacity: 0.08;
}

.about-image-inner {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 113, 169, 0.15);
}

.about-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Modern Badge */
.about-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #0368b0;
    color: #fff;
    padding: 35px 30px;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 113, 169, 0.3);
    z-index: 5;
    text-align: center;
    min-width: 170px;
}

.badge-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: #fff;
}

.badge-text {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* İçerik Alanı */
.about-content {
    flex: 1.1;
}

.about-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: #0368b0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-eyebrow::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #0368b0;
}

.about-content h2 {
    font-size: 46px;
    font-weight: 800;
    color: #0d1117;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-content h2 span {
    color: #0368b0;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 40px;
}

/* Aksiyon Butonu (Daha keskin kçşeli klasik/modern) */
.about-btn {
    display: inline-flex;
    align-items: center;
    background: #0368b0;
    color: #fff;
    padding: 18px 45px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 12px;
}

.about-btn:hover {
    background: #0368b0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(35, 176, 247, 0.3);
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateY(3px);
}
@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .about-eyebrow {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 70px 0;
    }
}

/* ========== NEDEN BİZ (WHY CHOOSE US) ========== */
.why-us-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(3, 104, 176, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.why-us-content {
    position: relative;
    z-index: 2;
}

.why-us-content h2 {
    font-size: 45px;
    font-weight: 800;
    color: #04070f;
    line-height: 1.15;
    margin-bottom: 25px;
}

.why-us-content h2 span {
    color: #0368b0;
}

.why-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.why-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.why-features .feature-item:last-child {
    margin-bottom: 0;
}

.why-features .icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #0368b0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-features .feature-item:hover .icon-box {
    background: #0368b0;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
}

.why-features .text-box h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.why-features .text-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Görsel Alanı */
.relative {
    position: relative;
}

.why-image-wrapper {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.why-main-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Glassmorphism Badge */
.glass-badge {
    position: absolute;
    bottom: -30px;
    left: -10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatBadge 6s ease-in-out infinite alternate;
}

.glass-badge i {
    font-size: 35px;
    color: #0368b0;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 800;
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.2;
}

.badge-sub {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

@media (max-width: 991px) {
    .why-us-content {
        text-align: center;
    }
    
    .why-features .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .why-image-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .glass-badge {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%) !important;
        animation: none;
    }
}

/* =========================================
   MAINNEWS.CSS
   Haberler Bölümü - Uniq Kimya
   Modern, Kurumsal ve Responsive Card Yapısı
   ========================================= */

.news-section {
    padding: 280px 0 100px;
    background: #fff;
    position: relative;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---- Section Header ---- */
.news-header {
    text-align: center;
    margin-bottom: 70px;
}

.news-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #0e1728;
    margin-bottom: 15px;
}

.news-header h2 span {
    color: #0368b0;
}

.news-header p {
    font-size: 16px;
    color: #6b778d;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- News Grid ---- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 104, 176, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(3, 104, 176, 0.12);
}

/* Image Wrapper */
.news-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%; /* 3:2 Aspect Ratio */
    overflow: hidden;
    background: #eee;
}

.news-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.08);
}

/* Content Area */
.news-body {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0e1728;
    margin-bottom: 12px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: #0368b0;
}

.news-card p {
    font-size: 15.5px;
    color: #556070;
    line-height: 1.65;
    margin-bottom: 0;
    flex: 1;
}

/* ---- Animation ---- */
.news-card {
    opacity: 0;
    transform: translateY(40px);
    transition-property: opacity, transform, box-shadow, border-color;
    transition-duration: 0.8s;
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .news-grid {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-section {
        padding: 80px 0;
    }
}


/* ==================================================
   Sub-Category Page Styles
   ================================================== */

.alt-container, .sayfa {
    padding: 75px 0;
    background-color: #ffffff; /* Reverted to pure white */
}



/* Reusing urun.css for cards, adding minor tweaks if needed */
.alt-container .products-section {
    padding: 0; /* Removing double padding */
    background: transparent;
}

/* ==================================================
   Category Page Styles - Clean & Premium Version (Reverted to Core Design)
   ================================================== */

.cat-section {
    padding: 60px 0 100px; /* Reduced vertical spacing */
    background: #ffffff;
}

/* Category Card */
.cat-card {
    position: relative;
    height: 380px; /* Shorter cards for 4 columns */
    border-radius: 5px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

/* Background Image - Elegant Reveal */
.cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.2);
    filter: blur(10px) brightness(0.7);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Sophisticated Dark Gradient */
.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(4, 7, 15, 0.05) 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.cat-card:hover .cat-num {
    display: none;
    /* Immediately disappears as requested */
}

/* Grouped Text Animation */
.cat-text-group {
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
    min-height: 170px; /* Adjusted fixed height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cat-card:hover .cat-text-group {
    transform: translateY(25px);
    /* Balanced unified slide down */
}

.cat-text-group p {
    font-size: 15px; /* Slightly smaller */
    color: #666;
    line-height: 1.5;
    max-width: 100%;
    margin: 0;
    opacity: 1;
    /* Visible by default */
    transform: translateY(0);
    transition: all 0.5s ease;
}

.cat-btn {
    width: 48px; /* Slightly smaller button */
    height: 48px;
    border-radius: 50%;
    background: #0368b0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 25px;
    align-self: flex-end;
    /* Moves it to the right */
    opacity: 1;
    border: 2px solid transparent;
}

.cat-card:hover .cat-btn {
    background: #ffffff;
    color: #0368b0;
    transform: rotate(-45deg);
    /* Counter-clockwise rotation */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* partner.css */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    --dark: #0f172a;
    --text: #475569;
    --surface: #ffffff;
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Outfit', Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ---- Section ---- */
.partners-section {
    padding: 100px 0 120px;
    background: #ffffff;
    opacity: 0;
    animation: sectionFadeIn 0.9s ease 0.2s forwards;
}

from { opacity: 0; transform: translateY(24px); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Header ---- */
.section-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 70px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.title {
    font-size: 44px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.description {
    font-size: 17px;
    color: var(--text);
    margin: 0;
}

/* ---- Swiper container ---- */
.partners-swiper {
    width: 100%;
    padding: 30px 0 0; /* bottom padding removed — pagination now in flow */
    /* Fade edges so only container-width area is solid */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

/* Each slide has fixed width */
.swiper-slide {
    width: 360px;
    height: auto;
    transition: transform var(--transition), opacity var(--transition);
    /* Non-active slides: shrink + dim */
    transform: scale(0.88);
    opacity: 0.35;
}

/* Active (center) slide: full size + full opacity */
.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

/* Slides directly next to active: slightly more visible */
.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.55;
    transform: scale(0.92);
}

/* ---- Partner Card ---- */
.partner-card {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: box-shadow 0.35s ease;
}

.swiper-slide-active .partner-card {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

/* ---- Logo Area ---- */
.card-image-wrap {
    height: 120px;
    background: #ffffff;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f4f8;
}

.card-image-wrap img {
    width: auto;
    height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    transition: transform 0.35s ease;
}

.swiper-slide-active .card-image-wrap img {
    transform: scale(1.06);
}

/* ---- Card Content ---- */
.card-content {
    padding: 24px 28px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
    text-align: center;
}

.card-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
    flex-shrink: 0;
}

.swiper-slide-active .info-icon {
    background: var(--primary);
    color: #ffffff;
}

.info-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 36px;
}

.info-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light, #94a3b8);
    
    letter-spacing: 0.8px;
    margin-bottom: 0;
    display: block;
}

.info-text strong {
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.info-text span,
.info-text p {
    color: var(--text);
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.info-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    word-break: break-all;
    transition: color 0.2s;
    line-height: 1.4;
}

.info-text a:hover { color: var(--primary-dark); }

/* Swiper dots — pull out of absolute positioning */
.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
    padding-bottom: 30px;
}

.swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background: #cbd5e1;
    opacity: 1;
    transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
}

.swiper-pagination-bullet-active {
    width: 20px;
    background: var(--primary);
}

@media (max-width: 768px) {
    .title { font-size: 32px; }
    .partners-section { padding: 70px 0; }
    .swiper-slide { width: 290px; }
}

/* =============================================
   LOGO SECTION  (standalone, homepage use)
   ============================================= */
.logo-section {
    background: #ffffff;
    padding: 80px 0 90px;
    border-top: 1px solid #e2e8f0;
    opacity: 0;
    animation: sectionFadeIn 0.9s ease 0.5s forwards;
}

.logo-section-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 60px;
}

.logo-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.logo-section-description {
    font-size: 17px;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* ---- Logo Swiper ---- */
.logo-swiper {
    width: 100%;
    padding: 16px 0;
    /* same edge-fade as partners swiper */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

/* Override generic slide rules for logo slides */
.logo-swiper .swiper-slide {
    /* width set by slidesPerView in JS */
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transform: scale(0.88);
    opacity: 0.18;
    filter: grayscale(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-swiper .swiper-slide-active {
    transform: scale(1.08);
    opacity: 1;
    filter: grayscale(0%);
}

.logo-swiper .swiper-slide-prev,
.logo-swiper .swiper-slide-next {
    opacity: 0.45;
    transform: scale(0.94);
    filter: grayscale(50%);
}

.logo-swiper .swiper-slide img {
    width: auto;
    height: 117px;  /* 90px × 1.3 */
    max-width: 90%;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .logo-section { padding: 60px 0; }
    .logo-section-title { font-size: 26px; }
    .logo-swiper .swiper-slide img { height: 60px; }
}

/* ==================================================
   Products Section
   ================================================== */
.products-section {
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 150px;
}

/* ==================================================
   Product Card - Smooth Expansion & Fade
   ================================================== */
.p-card {
    height: 195px; /* Grid placeholder */
    position: relative;
    z-index: 1;
}

/* Base Content Layer */
.p-front {
    padding: 45px 30px 30px; /* Increased top padding */
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

/* Hover States for Content */
.p-card:hover .p-front h3 { color: #fff; }

/* Details Layer */
.p-details {
    padding: 0 0 30px 0;
    margin-top: 25px; /* Added space between description and divider */
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.p-spec span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* Smooth Fade Background Reveal */
.p-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0368b0 0%, #0368b0 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Bottom-right Arrow - Prominent Circle */
.p-arrow {
    position: absolute;
    top: 140px; /* Aligned with the initial compact height */
    right: 25px;
    width: 34px;
    height: 34px;
    background: #0368b0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 4;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(3, 104, 176, 0.2);
}

@media (max-width: 991px) {
    .p-card { height: auto; margin-bottom: 20px; }
    .p-card-inner { position: relative; max-height: none; }
    .p-details { opacity: 1; transform: none; padding-top: 20px; }
    .p-divider { width: 100%; background: #eee; }
    .p-spec strong { color: #888; }
    .p-spec span { color: #333; }
    .p-back { display: none; }
}
@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==============================================
   CMS FOOTER → DESIGN MATCH
   ============================================== */

/* Arka plan - orijinal footer gradient ile aynı */
footer {
    background: linear-gradient(-45deg, #0d1117, #0f141d, #121822, #0d1117);
    background-size: 400% 400%;
    animation: footerGradient 40s ease infinite;
    color: rgba(255,255,255,0.65);
    padding: 100px 0 60px;
    overflow: hidden;
    position: relative;
}

/* Kolon başlıkları - fcol>span ile aynı */
footer .col-md-4 > span,
footer .col-md-2 > span {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Başlık altı mavi çizgi */
footer .col-md-4 > span::after,
footer .col-md-2 > span::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 25px; height: 3px;
    background: #0368b0;
    border-radius: 5px;
}

/* Çizginin yanındaki nokta */
footer .col-md-4 > span::before,
footer .col-md-2 > span::before {
    content: '';
    position: absolute;
    bottom: 0; left: 32px;
    width: 3px; height: 3px;
    background: #0368b0;
    border-radius: 50%;
}

/* İletişim listesi - fcontact div ile aynı */
.filetisim ul {
    list-style: none;
    padding: 0; margin: 0;
}

.filetisim ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* İkonlar mavi - fcontact i ile aynı */
.filetisim ul li i {
    color: #0368b0;
    font-size: 17px;
    margin-top: 5px;
    min-width: 20px;
    text-align: center;
}

.filetisim ul li a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.filetisim ul li a:hover { color: #fff; }

/* Menü linkleri - fcol ul li a ile aynı */
.footer-menu {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-menu li { margin-bottom: 12px; }

.footer-menu li a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Açıklama metni */
.footer-content {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 300px;
}

/* Row boşluğu - gy-5 karşılığı */
footer .row {
    row-gap: 3rem;
    padding-top: 10px;
}

/* ==================================================
   PAGE TITLE (IC SAYFA BASLIGI) - DESIGN MATCH
   ================================================== */
.pgtitle {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 280px;
    background-color: #012c4d;
    /* Kurumsal Degrade */
    background-image: radial-gradient(circle at 70% 30%, rgba(3, 104, 176, 0.7) 0%, #012c4d 95%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 40px;
    overflow: hidden;
    color: #fff;
}

.pgtitle::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/img/page-title.svg');
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    opacity: 0.25;
    z-index: 1;
    /* Parlayan alanda belirgin, dışa doğru yumuşak geçişle solar */
    -webkit-mask-image: radial-gradient(circle at 70% 30%, black 30%, transparent 90%);
    mask-image: radial-gradient(circle at 70% 30%, black 30%, transparent 90%);
    pointer-events: none;
}

.pgoverlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 26, 69, 0.2);
    z-index: 2;
    pointer-events: none;
}

.pgtitle .container {
    position: relative;
    z-index: 5;
}

.pgtitle h1 {
    font-size: 52px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
    position: relative;
}

.pgtitle ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pgtitle ul li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
}

.pgtitle ul li i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.pgtitle ul li:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    margin: 0 12px;
    opacity: 0.25;
    color: #fff;
}

.pgtitle ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pgtitle ul li a:hover { color: #fff; }

.pgtitle ul li a:hover i {
    color: #4da5ff; /* Hafif parlak mavi tonu */
}

.pgtitle ul li:last-child {
    color: #ffffff;
    pointer-events: none;
}

@media (max-width: 991px) {
    .pgtitle { min-height: 250px; padding: 60px 0 40px; }
    .pgtitle h1 { font-size: 42px; }
}

.marker-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.marker-circle i {
    font-size: 12px !important;
    color: #fff !important;
}

.pgtitle ul li a:hover .marker-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg);
}


/* --- Custom Helper Classes from default.ctp --- */
.seo-title {
    height: 1px;
    width: 1px;
    display: inline-block;
    overflow: hidden;
    opacity: 0;
    position: absolute;
}

.nav-header-logo {
    height: 50px !important;
}

.h-lang-top {
    gap: 10px !important;
    margin-left: 20px !important;
}

.v-line-gap {
    margin-right: 5px !important;
}

.globe-icon-blue {
    color: #0368b0 !important;
    font-size: 14px !important;
}

.lang-marker-dot {
    color: #0368b0 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin: 0 -2px !important;
    position: relative !important;
    top: -2px !important;
}

/* =============================================
   PREMIUM ABOUT SECTION
   ============================================= */
.premium-about {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Watermark Text */
.about-bg-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    font-size: 25rem;
    font-weight: 900;
    color: rgba(13, 26, 69, 0.03);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    letter-spacing: -20px;
}

.about-shape-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(3, 104, 176, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-shape-2 {
    position: absolute;
    bottom: -150px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 36, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: #012c4d;
    line-height: 1.05;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.text-highlight {
    display: inline-block;
    color: #0368b0;
    position: relative;
    background: linear-gradient(to right, #0368b0, #012c4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(3, 104, 176, 0.08);
    z-index: -1;
    border-radius: 4px;
}

.about-desc {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 45px;
    margin-top: 40px;
}

/* Stats Grid with Glassmorphism */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 26, 69, 0.08);
    padding: 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: #0368b0;
    box-shadow: 0 20px 40px rgba(13, 26, 69, 0.06);
}

.stat-icon {
    width: 54px;
    height: 54px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0368b0;
    font-size: 20px;
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon {
    background: #0368b0;
    color: #fff;
    transform: rotateY(180deg);
}

.stat-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #012c4d;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

/* Premium Button Group */
.about-acts-wrapper {
    display: flex;
    gap: 20px;
}

.premium-btn {
    text-decoration: none;
    background: #012c4d;
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.premium-btn:hover {
    background: #0368b0;
    color: #fff;
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(3, 104, 176, 0.3);
}

.premium-btn:hover::before {
    left: 100%;
}

.premium-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.premium-btn:hover i {
    transform: translateX(5px);
}

/* Advanced Image Layout - Narrower & Right Aligned */
.about-image-layout {
    position: relative;
    padding: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.main-img-wrapper {
    position: relative;
    z-index: 3;
    width: 85%; /* Narrower width */
    margin-left: auto;
    overflow: hidden; /* Crop for parallax */
    border-radius: 15px;
}

.main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transform: scale(1.2); /* Zoom for movement space */
    transition: transform 0.1s ease-out;
    box-shadow: 0 30px 60px rgba(13, 26, 69, 0.12);
}

.img-bg-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 15px;
    z-index: 1;
}

/* Circular Gradient Experience Badge */
.experience-badge-new {
    position: absolute;
    bottom: 150px;
    left: 5%; /* Adjusting to overlap the 85% width image */
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #0368b0 0%, #012c4d 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(13, 26, 69, 0.25);
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 4px solid #ffffff;
}

.experience-badge-new .num {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.experience-badge-new .txt {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .premium-about { padding: 80px 0; }
    .about-bg-text { font-size: 15rem; left: 0; opacity: 0.02; }
    .about-title { font-size: 2.8rem; }
    .main-img-wrapper { width: 100%; }
    .about-image-layout { margin-top: 50px; }
    .experience-badge-new { left: 20px; bottom: 20px; padding: 20px; }
    .about-stats-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BLUE SECTION (SITE COLOR)
   ============================================= */
.blue-section {
    background: #012c4d;
    background-image: radial-gradient(circle at 70% 30%, rgba(3, 104, 176, 0.8) 0%, #012c4d 95%);
    padding: 75px 0px;
    position: relative;
    color: #ffffff;
}

/* =============================================
   WHY CHOOSE US STYLES
   ============================================= */
.section-header-white .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.title-line-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.title-line-white::before,
.title-line-white::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(to var(--dir, right), #0368b0, transparent);
}

.title-line-white::before { --dir: left; }

.title-line-white::after { --dir: right; }

.title-line-white-dot {
    width: 8px;
    height: 8px;
    background: #0368b0;
    transform: rotate(45deg);
    box-shadow: 0 0 15px #0368b0;
}

.choose-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 25px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.choose-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 104, 176, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.6s ease;
}

.choose-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(3, 104, 176, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.choose-item:hover::after {
    opacity: 1;
}

.choose-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.choose-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.choose-item:hover .choose-icon {
    background: #0368b0;
    color: #fff;
    transform: rotateY(180deg) scale(1.05);
}

.choose-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.choose-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.section-desc-white {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 90%;
    margin-top: 20px;
}

/* =============================================
   SERVICES SECTION STYLES
   ============================================= */
.services-section {
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.py-80 {
    padding: 80px 0;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.service-card {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(3, 104, 176, 0.14), 0 15px 30px rgba(0, 0, 0, 0.06);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-no-img {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 26, 69, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    color: #fff;
    font-size: 30px;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.service-card:hover .service-overlay i {
    transform: translateY(0);
}

.service-content {
    padding: 25px;
}

.service-content a {
    text-decoration: none !important;
    display: block;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #012c4d;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #0368b0;
}

.service-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0368b0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    text-decoration: none !important;
}

.service-link:hover {
    gap: 10px;
}
