/* Custom Overrides */
:root {
    --toph: 0px;
}

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

html {
    overflow-x: hidden;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	counter-reset: my-sec-counter;
}

body {
    font-family: 'DM Sans', 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: var(--toph);
    background: #fdfdfd;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    z-index: 10000;
    box-shadow: inset 0 -40px 60px -40px rgba(0, 0, 0, 0.12); /* Altta kalma etkisini yaratan iç gölge */
}

.top-left, .top-right {
    display: flex;
    align-items: center;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    height: var(--toph);
    position: relative;
    padding: 0 15px;
}

.top-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #eee;
}

.top-item a {
    text-decoration: none;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.top-item i {
    color: #263B92;
    font-size: 13px;
    opacity: 0.8;
}

.top-item a:hover {
    color: #263B92;
}

.top-item a:hover i {
    transform: translateY(-1px);
    opacity: 1;
}

.top div a i {
    color: #263B92;
    /* Kurumsal lacivert */
    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: #263B92;
}

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

.top .tsoc {
    padding-left: 20px;
    position: relative;
}

.top .tsoc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: #263B92;
    border-radius: 2px;
    opacity: 0.15;
}

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

.top .tsoc ul li a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: #263B92;
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #efefef;
    text-decoration: none;
}

.top .tsoc ul li a:hover {
    background: #263B92;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 10px rgba(38, 59, 146, 0.2);
    border-color: #263B92;
}

.top .tsoc ul li a i {
    font-size: inherit;
    color: inherit;
    transition: none;
}

/* Header Area */
.header {
    position: absolute;
    top: var(--toph);
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    border-bottom: none;
    padding: 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
}

.header.sticky {
    position: fixed;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fadein 0.4s ease;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky menü link rengi mavi */
.header.sticky .nav>ul>li>a {
    color: #263B92;
}

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

.header.sticky .nav>ul>li>a::after {
    background: #263B92;
}

.header.sticky .logo img {
    filter: none;
}

.logo {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.logo a {
    width: 159px;
    height: 70px;
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

/* Logo Geçiş Mantığı */
.logo-sticky {
    display: none !important;
}

.header.sticky .logo-white {
    display: none !important;
}

.header.sticky .logo-sticky {
    display: block !important;
}

/* Nav Menu */
.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav li {
    position: relative;
}

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

.nav li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav>ul>li>a {
    position: relative;
    font-weight: 900;
}

.nav>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    /* border-bottom uzerine biner */
    left: 10px;
    /* padding değeri kadar boşluk */
    width: 0;
    height: 3px;
    background: #ccc;
    /* Ligth gray for non-sticky */
    transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav>ul>li:hover>a::after {
    width: calc(100% - 20px);
}

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

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

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

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

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

.header.sticky .lang-btn {
    color: #263B92;
}

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


/* Sub Menu / Dropdown */
.nav li ul {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background: #fff;
    width: 350px;
    border-top: 3px solid #263B92;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding: 10px 0;
    transform: translateY(10px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        top 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0.7s;
}

.nav li:hover>ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    top: 100%;
    transform: translateY(0);
}

.nav {
    position: relative;
}


.nav li ul li ul {
    left: calc(100% + 15px);
    top: 0;
    border-top: none;
    border-left: 2px solid #263B92;
}

.nav li ul li:hover>ul {
    left: 100%;
    top: 0;
}

.nav li ul li {
    display: block;
}

.nav li ul li a {
    color: #222;
    padding: 10px 20px;
    text-transform: capitalize;
    font-weight: normal;
    font-size: 15px;
    display: block;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.nav li ul li a:hover {
    background: #f8f9fa;
    border-left: 4px solid #00aeef;
    color: #263B92;
}

/* Slider Dots - Kurumsal Stil */
.owl-dots {
    position: absolute;
    bottom: 80px;
    /* Metinle dengeli bir yükseklik */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
    z-index: 10;
    display: flex !important;
    gap: 12px;
}

.owl-dot {
    outline: none;
}

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

.owl-dot.active span {
    background: #263B92 !important;
    border-color: #00aeef;
    transform: scale(1.2);
}

.owl-dot:hover span {
    border-color: #fff;
}

@media (max-width: 991px) {
    .owl-dots {
        justify-content: center;
        bottom: 30px;
    }
    .slider, .item {
        height: 70vh !important;
        min-height: 400px !important;
    }
    .box h2 {
        font-size: 41px !important;
        line-height: 1 !important;
        letter-spacing: -1px !important;
    }
    .box p {
        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        max-width: 95%;
        opacity: 0.9;
    }
    
    /* Hakkımızda Bölümü Mobil Fix */
    .about-section {
        padding: 60px 0 !important;
    }
    .about-container {
        flex-direction: column;
        gap: 40px !important;
        text-align: center;
    }
    .about-badge {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: translateY(-40px) !important;
        margin: 0 auto;
        min-width: 200px !important;
        padding: 30px 20px !important;
    }
    .badge-num {
        font-size: 52px !important;
    }
    .about-eyebrow {
        justify-content: center;
    }
}

/* Slider */
.slider {
    height: 100vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.item {
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    background-position: center 0px;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: none;
}

@keyframes flow {
    0%, 100% {
        transform: scale(1.05) translate(0, 0);
    }
    50% {
        transform: scale(1.15) translate(-2%, -2%);
    }
}


.item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(12, 24, 60, 1) 0%,
            rgba(12, 24, 60, 0.8) 40%,
            rgba(12, 24, 60, 0.35) 100%);
    z-index: 1;
}

.item.has-bg::before {
    background: linear-gradient(135deg,
            rgba(12, 24, 60, 1) 0%,
            rgba(12, 24, 60, 0.8) 40%,
            rgba(12, 24, 60, 0.35) 100%);
}


.box {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    width: 100%;
    margin: 0;
    text-align: left;
}

/* Sadece etiket seçiciler (h2, h5, a) üzerinden şekillendirildi */
.box h2 {
    font-size: 72px;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.box p {
    font-size: 18px;
    margin-bottom: 50px;
    /* Butonlarla arasını daha fazla açtık */
    font-weight: 400;
    line-height: 1.8;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

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

/* 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;

    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1),
        box-shadow 0.8s ease,
        opacity 0.8s ease;
}

.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 {
    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: #263B92;
    border-color: #00aeef;
}

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

.owl-item.active .acts a:last-child {
    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: #1a2d6e;
    border-color: #1a2d6e;
    box-shadow: 0 8px 20px rgba(4, 7, 15, 0.3);
    transform: translateY(-3px);
}

/* Footer */
footer,
.footer {
    position: relative;
    background: #04070f;
    overflow: hidden;
    color: #fff;
    padding: 80px 0 80px;
}

footer::before,
.footer::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(ellipse at center,
            rgba(38, 59, 146, 0.32) 0%,
            rgba(99, 40, 180, 0.18) 35%,
            transparent 70%);
    top: -300px;
    left: -200px;
    border-radius: 50%;
    filter: blur(40px);
    animation: blob1 5s ease-in-out infinite alternate;
    pointer-events: none;
}

footer::after,
.footer::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center,
            rgba(0, 180, 220, 0.15) 0%,
            rgba(38, 59, 146, 0.26) 40%,
            transparent 70%);
    bottom: -200px;
    right: -150px;
    border-radius: 50%;
    filter: blur(50px);
    animation: blob2 6s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

.fglow {
    position: absolute;
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center,
            rgba(120, 60, 200, 0.13) 0%,
            rgba(38, 59, 146, 0.08) 50%,
            transparent 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    border-radius: 50%;
    animation: blob3 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes blob1 {
    0% {
        transform: scale(1) translate(0px, 0px);
    }

    50% {
        transform: scale(1.2) translate(90px, -70px) rotate(15deg);
    }

    100% {
        transform: scale(0.85) translate(-60px, 80px) rotate(-10deg);
    }
}

@keyframes blob2 {
    0% {
        transform: scale(1) translate(0px, 0px);
    }

    50% {
        transform: scale(1.15) translate(-80px, 60px) rotate(-20deg);
    }

    100% {
        transform: scale(0.9) translate(70px, -50px) rotate(12deg);
    }
}

@keyframes blob3 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-40%, -60%) scale(1.3);
        opacity: 1;
    }

    100% {
        transform: translate(-60%, -40%) scale(0.9);
        opacity: 0.4;
    }
}

footer .container {
    position: relative;
    z-index: 2;
}

/* Sayfada fglow div'i yoksa container::before ile efekti simüle ediyoruz */
footer .container::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center,
            rgba(120, 60, 200, 0.13) 0%,
            rgba(38, 59, 146, 0.08) 50%,
            transparent 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    border-radius: 50%;
    animation: blob3 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

.flogo img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-content {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Kolon Başlıkları */
.fcol>span,
footer .row>div>span,
.footer .row>div>span {
    display: block;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 14px;
    color: #fff;
}


/* Footer Links */
.fcol ul,
footer .footer-menu,
.footer .footer-menu,
footer .flist ul,
.footer .flist ul,
footer .filetisim ul,
.footer .filetisim ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fcol ul li,
footer .footer-menu li,
.footer .footer-menu li,
footer .flist ul li,
.footer .flist ul li {
    margin-bottom: 5px;
}

.fcol ul li a,
footer .footer-menu li a,
.footer .footer-menu li a,
footer .flist ul li a,
.footer .flist ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.fcol ul li a::before,
footer .footer-menu li a::before,
.footer .footer-menu li a::before,
footer .flist ul li a::before,
.footer .flist ul li a::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.fcol ul li a:hover,
footer .footer-menu li a:hover,
.footer .footer-menu li a:hover,
footer .flist ul li a:hover,
.footer .flist ul li a:hover {
    color: #fff;
}

.fcol ul li a:hover::before,
footer .footer-menu li a:hover::before,
.footer .footer-menu li a:hover::before,
footer .flist ul li a:hover::before,
.footer .flist ul li a:hover::before {
    background: #263B92;
}

/* Contact Info Style */
.fcontact,
footer .filetisim ul li,
.footer .filetisim ul li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

footer .filetisim ul li,
.footer .filetisim ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.fcontact i,
footer .filetisim ul li i,
.footer .filetisim ul li i {
    color: #263B92;
    width: 18px;
    margin-top: 7px;
}

footer .filetisim a,
.footer .filetisim a {
    color: inherit;
    text-decoration: none;
    transition: color 0.33s;
}

footer .filetisim a:hover,
.footer .filetisim a:hover {
    color: #fff;
}

.fbar,
.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 25px 0;
}

.fbar p,
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    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: #263B92;
        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: #263B92;
    }

    /* Modern Corporate Mobile Contact Area - Integrated Style */
    .nav .fbox.filetisim {
        background: transparent;
        border: none;
        box-shadow: none;
        margin-top: 40px;
        padding: 0;
        width: 100%;
    }

    .nav .fbox.filetisim ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px !important;
        /* Birbirlerine daha yakın olması için gap düşürüldü */
    }

    .nav .fbox.filetisim li {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        font-size: 14px !important;
        color: #555 !important;
        font-weight: 500 !important;
        padding: 4px 20px !important;
        /* Dikey padding düşürüldü */
        border: none !important;
        width: 100% !important;
    }

    .nav .fbox.filetisim i {
        width: 36px;
        height: 36px;
        background: #e9ecf5;
        /* Arkaplan daha belirgin yapıldı */
        color: #263B92;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .nav .fbox.filetisim li:hover i {
        background: #263B92;
        color: #fff;
        transform: translateY(-2px);
    }

    .nav .fbox.filetisim a {
        color: #111 !important;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .nav .fbox.filetisim a:hover {
        color: #00aeef !important;
    }

    .nav .fbox.filetisim .adres {
        line-height: 1.5;
        color: #666 !important;
        font-weight: 500 !important;
        font-size: 13px !important;
    }

    /* 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: #263B92 !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: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

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

    .acts {
        display: flex !important;
        justify-content: center;
        gap: 10px !important;
        margin-top: 15px;
    }
    
    .acts a {
        padding: 10px 25px !important;
        font-size: 13px !important;
        min-width: 140px;
    }
}

/* .slider .item::after kaldırıldı */

.slider .item {
    background-color: #263B92;
    background-image: radial-gradient(at top center, #263B92 0%, #172a6e 50%, #0d1a45 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* ==================================================
   Page Title Section
   ================================================== */
.pgtitle {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 340px;
    background-color: #1a2d6e;
    background-image: radial-gradient(circle at 70% 30%, rgba(0, 174, 239, 0.25) 0%, #1a2d6e 70%);
    padding: 100px 0 60px;
    overflow: hidden;
    color: #fff;
}

.pgtitle::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/page-title.svg'), url('../img/page-title.svg');
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
    background-size: 100% auto, 100% auto;
    opacity: 0.4;
    mix-blend-mode: overlay;
    filter: brightness(100) contrast(20);
    z-index: 0;
    pointer-events: none;
}

.pgoverlay {
    position: absolute;
    inset: 0;
    left: -100px;
    width: calc(100% + 100px);
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
}

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

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

.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';
    /* Clean thin chevron */
    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: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.pgtitle ul li a i.fa-home {
    background: rgba(255, 255, 255, 0.12);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 10px;
    font-size: 13px;
    color: #fff;
    transition: all 0.3s ease;
}

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

.pgtitle ul li a:hover i.fa-home {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.pgtitle ul li a:hover i {
    color: #00aeef;
    transform: scale(1.1);
}

/* Active/Last Item */
.pgtitle ul li:last-child {
    color: #00aeef;
    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: 12px;
    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(38, 59, 146, 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: 'DM Sans', 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-card-inner:hover .p-front p {
    color: #FFF;
}

.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);

    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: 13px;
    font-weight: 300;
}

/* Birden fazla liste varsa araya çizgi ekler */
.p-specs ul:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.p-specs ul li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 6px;
    display: block;
    line-height: 1.1;
}

.p-specs ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 1px;
    color: #FFF;
    font-weight: bold;
}

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


.p-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2d6e 0%, #263B92 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;
    /* Further increased size */
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    color: rgba(38, 59, 146, 0.04);
    z-index: 2;
    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: #00aeef;
    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(0, 174, 239, 0.3);
}

.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: 20px;
    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(38, 59, 146, 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(38, 59, 146, 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: #263B92;
    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: #263B92;
    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: #00aeef;
    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(135deg, #0d173c 0%, #263b92 100%);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(38, 59, 146, 0.15);
    position: sticky;
    top: 120px;
    border: none;
    overflow: hidden;
}

.category-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(38, 59, 146, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.category-sidebar h3 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    z-index: 1;
}

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

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

.category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.category-list li a:hover {
    color: #fff;
    padding-left: 10px;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.category-list li a:hover i {
    opacity: 1;
    transform: translateX(5px);
    color: #00aeef;
}

.category-list li a.active {
    color: #fff;
    background: transparent;
    font-weight: 900;
    border-bottom-color: #263B92;
}

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

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

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

/* Media Queries */
@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: #00aeef;
}

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

/* ---- Kategoriler Ana Section ---- */
.kategoriler-section {
    padding: 100px 0 110px;
    background: linear-gradient(135deg, #04070f 0%, #0c1640 55%, #1a2d6e 100%);
    position: relative;
    overflow: hidden;
}

/* Arka plan dekorasyon */
.kategoriler-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(38, 59, 146, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.kategoriler-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 120, 200, 0.05) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}

/* ---- Kategori Grid ---- */
.kategori-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* İlk eleman 2 kolon kaplasın */
.kategori-grid>a:first-child {
    grid-column: span 2;
}

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

    .kategori-grid>a:first-child {
        grid-column: span 1;
    }
}

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

@media (max-width: 575px) {
    .kategori-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ---- Kategori Kartı ---- */
.kategori-kart {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.kategori-kart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #263b92 0%, #00aeef 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 0 0 0 0;
}

.kategori-kart::after {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(38, 59, 146, 0.07) 0%, transparent 70%);
    transition: transform 0.5s ease, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.kategori-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(38, 59, 146, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(38, 59, 146, 0.2);
    text-decoration: none;
    color: inherit;
}

.kategori-kart:hover::before {
    transform: scaleX(1);
}

.kategori-kart:hover::after {
    opacity: 1;
    transform: translate(20px, -20px) scale(1.3);
}

/* ---- İkon Alanı ---- */
.kart-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kart-icon i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.35s ease;
}

.kategori-kart:hover .kart-icon {
    background: #00aeef;
    border-color: #00aeef;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.25);
}

.kategori-kart:hover .kart-icon i {
    color: #ffffff;
    transform: scale(1.05);
}

/* ---- Kart İçerik ---- */
.kart-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.kart-baslik {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.kategori-kart:hover .kart-baslik {
    color: #ffffff;
}

.kategori-kart .kart-body p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
}

/* ---- Kart Link ---- */
.kart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #00aeef;
    text-decoration: none;

    transition: gap 0.3s ease, color 0.25s ease;
    margin-top: auto;
}


.kart-link i {
    font-size: 11px;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kategori-kart:hover .kart-link {
    gap: 14px;
    color: #ffffff;
}

.kategori-kart:hover .kart-link i {
    transform: translateX(4px);
}

/* ---- Öne Çıkan Kart (Geniş) ---- */
.kategori-kart.featured {
    background: linear-gradient(135deg, #0c1640 0%, #1a2d6e 100%);
    border-color: transparent;
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
}

@media (max-width: 991px) {
    .kategori-kart.featured {
        grid-column: span 2;
        flex-direction: column;
        gap: 0;
    }
}

/* ---- Animasyonlar ---- */
.kategori-kart {
    opacity: 0;
    transform: translateY(30px);
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kategori-kart.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover sırasında transform override */
.kategori-kart.visible:hover {
    transform: translateY(-8px);
}

/* ---- Responsive Düzenlemeler ---- */
@media (max-width: 1199px) {
    .kategori-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .kategoriler-section {
        padding: 70px 0 80px;
    }

    .kategori-kart {
        flex-direction: column;
        gap: 18px;
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .kategori-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kategoriler-section {
        padding: 54px 0 60px;
    }

    .kart-baslik {
        font-size: 17px;
    }

    .kategori-kart {
        padding: 22px;
    }
}

/* ---- Beyaz Tema (Light Theme) Versiyonu ---- */
.kategoriler-section.light-theme {
    background: #ffffff;
}

.kategoriler-section.light-theme .section-header h2 {
    color: #0e1728;
}

.kategoriler-section.light-theme .section-header p {
    color: #6b778d;
}

.kategoriler-section.light-theme .kategori-kart {
    background: linear-gradient(135deg, rgba(38, 59, 146, 0.08) 0%, rgba(0, 174, 239, 0.08) 100%);
    border: 1px solid rgba(38, 59, 146, 0.08);
}

.kategoriler-section.light-theme .kategori-kart:hover {
    box-shadow: 0 20px 40px rgba(38, 59, 146, 0.1);
    border-color: rgba(38, 59, 146, 0.15);
}

.kategoriler-section.light-theme .kart-baslik {
    color: #0e1728;
}

.kategoriler-section.light-theme .kategori-kart p {
    color: #6b778d;
}

.kategoriler-section.light-theme .kart-icon {
    background: rgba(38, 59, 146, 0.05);
    border-color: rgba(38, 59, 146, 0.1);
}

.kategoriler-section.light-theme .kart-icon i {
    color: #263b92;
}

.kategoriler-section.light-theme .kategori-kart:hover .kart-icon {
    background: #263b92;
    border-color: #263b92;
}

.kategoriler-section.light-theme .kategori-kart:hover .kart-icon i {
    color: #ffffff;
}

/* =========================================
   MAINABOUT.CSS
   Hakkımızda Bölümü - Uniq Kimya
   Tasarım sistemine uyumlu bağımsız modül
   ========================================= */

.about-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    color: #333;
}

/* ---- 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-container {
    display: flex;
    align-items: center;
    gap: 130px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---- Görsel Tarafı ---- */
.about-image-wrapper {
    flex: 0.75;
    position: relative;
    z-index: 1;
}

.about-image-inner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(38, 59, 146, 0.12);
}

.about-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Badge (Resmin sağından taşan alan) */
.about-badge {
    position: absolute;
    right: -55px;
    top: 70%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0c1640 0%, #1a2d6e 100%);
    color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(38, 59, 146, 0.3);
    z-index: 5;
    text-align: center;
    min-width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    will-change: transform;
}

.badge-num {
    display: block;
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.badge-text {
    display: block;
    font-size: 13px;
    font-weight: 700;


    opacity: 0.85;
    line-height: 1.3;
}

/* Aksiyon Butonu */
.about-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0c1640 0%, #1a2d6e 100%);
    color: #fff;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(38, 59, 146, 0.2);
}

.about-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(38, 59, 146, 0.35);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.about-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateY(4px);
}

/* Dekoratif kutu */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(0, 174, 239, 0.1);
    z-index: -1;
    border-radius: 20px;
}

/* ---- İçerik Tarafı ---- */
.about-content {
    flex: 1;
}

.about-eyebrow {
    font-size: 13px;
    font-weight: 700;


    color: #263b92;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #00aeef;
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #0e1728;
    line-height: 1.15;
    margin-bottom: 30px;
}

.about-content h2 span {
    color: #00aeef;
}

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

/* ---- Responsive ---- */
@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;
    }
}

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

.news-section {
    padding: 110px 0 120px;
    background: linear-gradient(to bottom, #e9eff5 0%, #ffffff 100%);
    overflow: hidden;
}

.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: #00aeef;
}

.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: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(38, 59, 146, 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(38, 59, 146, 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: #00aeef;
}

.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);
}

/* ---- Responsive ---- */
@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;
    }
}

/* Independent Contact Widget - Refined Soft Version (Global) */
.wiletisim {
    margin-top: 0px;
    margin-bottom: 90px;
    padding: 40px 30px;
    background: #f8faff;
    /* Pure soft background */
    border: none !important;
    /* No border as requested */
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(38, 59, 146, 0.05);
    z-index: 1;
}

.wiletisim::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.wiletisim span {
    display: block;
    font-size: 30px;
    /* Matched to sidebar h3 */
    font-weight: 900;
    /* Bold as sidebar h3 */
    line-height: 1.1;
    margin-bottom: 20px;
    color: #263b92;
    /* Uniq Navy */
    font-family: 'DM Sans', sans-serif;
}

.wiletisim p {
    font-size: 15px;
    line-height: 1.65;
    color: #556070;
    margin-bottom: 35px;
}

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

.wiletisim ul li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    /* Original Font Color */
}

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

.wiletisim ul li i {
    width: 36px;
    height: 36px;
    background: rgba(38, 59, 146, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #263b92;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wiletisim ul li a {
    color: #333 !important;
    /* Original dark color as requested */
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
    font-weight: 600;
}

.wiletisim ul li a:hover {
    color: #00aeef !important;
}

.wiletisim ul li:hover i {
    background: #00aeef;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.15);
}

.sayfa {
    padding: 90px 0;
    background: linear-gradient(to bottom, #e9eff5 0%, #ffffff 100%);
}

.sayfadetay {
    padding: 0px;
}

.sayfadetay h2,
.sayfadetay h3,
.sayfadetay h4,
.sayfadetay h5,
.sayfadetay h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0e1728;
}

.sayfadetay h2 {
    font-size: 36px;
}

.sayfadetay h3 {
    font-size: 30px;
}

/* Matched to .wiletisim span */
.sayfadetay h4 {
    font-size: 26px;
}

.sayfadetay h5 {
    font-size: 22px;
}

.sayfadetay h6 {
    font-size: 19px;
}

.sayfadetay p {
    font-size: 17px;
    line-height: 1.85;
    color: #556070;
    margin-bottom: 25px;
}

/* Mobile Fixes */
@media (max-width: 991px) {
    .pgtitle h1 {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .pgtitle h1 {
        font-size: 32px;
    }

    .pgtitle {
        min-height: auto;
        padding: 120px 0 50px;
    }
}

/* Sidebar Kurumsal Widget - Modern Premium Layered Design */
.wkurumsal {
    margin-bottom: 90px;
    padding: 40px 30px; 
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%); 
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(38, 59, 146, 0.05); 
    border: none !important;
    position: relative;
    overflow: hidden;
}

/* Hayalet Yazı (Devasa Baş Harf & Sağdan Taşan Sıkışık Metin) */
.wkurumsal::after {
    content: 'Company';
    position: absolute;
    top: -50px;
    left: 10px;
    right: auto;
    font-size: 150px;
    font-weight: 950;
    color: #263b92;
    opacity: 0.02; 
    z-index: 0;
    letter-spacing: -5px;
    line-height: 0.8;
    pointer-events: none;
    text-transform: none;
    white-space: nowrap;
}

.wkurumsal h5 {
    display: block;
    font-size: 36px; 
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0px; 
    color: #263b92;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    padding-top: 5px; 
    padding-bottom: 12px;
}

/* Şık Alt Çizgi (Degrade Şeridi) */
.wkurumsal h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px; 
    height: 3px;
    background: linear-gradient(90deg, #00aeef 0%, rgba(0, 174, 239, 0) 100%);
    border-radius: 2px;
}

.wkurumsal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.wkurumsal ul li {
    position: relative;
    border-bottom: 1px solid rgba(38, 59, 146, 0.03);
}

.wkurumsal ul li:last-child {
    border-bottom: none;
}

.wkurumsal ul li a {
    display: block;
    padding: 16px 0;
    color: #556070;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

/* Link İşaretçileri */
.wkurumsal ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #263b92;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

/* FontAwesome'dan Sağ Ok */
.wkurumsal ul li a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: #263b92;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wkurumsal ul li a:hover {
    color: #263b92;
    padding-left: 20px;
}

.wkurumsal ul li a:hover::before {
    left: 0;
    opacity: 1;
}

.wkurumsal ul li a:hover::after {
    opacity: 1;
    right: 0;
}

.wkurumsal ul li.active a {
    color: #263b92;
    padding-left: 15px;
}
.wkurumsal ul li.active a::before {
    left: 0;
    opacity: 1;
}
/* --- Blog Widget - Premium Dark Edition --- */
.blogwidget {
    margin-bottom: 90px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #263b92 0%, #131b40 100%); 
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(38, 59, 146, 0.05);
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hayalet Yazı (NEWS) */
.blogwidget::after {
    content: 'NEWS';
    position: absolute;
    top: -45px;
    right: -35px;
    font-size: 140px;
    font-weight: 950;
    color: #fff;
    opacity: 0.03;
    letter-spacing: -8px;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    text-transform: uppercase;
}

.blogwidget span {
    display: block;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fff; 
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
}

.blogwidget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.blogwidget ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.blogwidget ul li:last-child {
    border-bottom: none;
}

.blogwidget ul li a {
    display: block;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    padding-left: 0;
    line-height: 1.4;
}

/* Blog Link İşaretçileri - Kurumsal ile Aynı Yapı */
.blogwidget ul li a::before {
    content: '';
    position: absolute;
    left: -15px; 
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #00aeef; 
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 174, 239, 0.5); 
}

.blogwidget ul li a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: #00aeef;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.blogwidget ul li a:hover::before {
    left: 0;
    opacity: 1;
}

.blogwidget ul li a:hover::after {
    opacity: 1;
    right: 0;
}

/* Mobilde Uyum */
@media (max-width: 768px) {
    .blogwidget {
        padding: 30px 20px;
    }
    .blogwidget span {
        font-size: 26px;
    }
}


/* --- Ürünler Widget - Category Sidebar Alıntı Tasarım --- */
.wurunler {
    margin-bottom: 90px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #0d173c 0%, #263b92 100%); 
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(38, 59, 146, 0.05);
    position: relative;
    overflow: hidden;
}

.wurunler span {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    z-index: 2;
    line-height: 1.1;
}

.wurunler ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.wurunler ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wurunler ul li:last-child {
    border-bottom: none;
}

.wurunler ul li a {
    display: block;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

/* Link İşaretçileri - Kurumsal ile Uyumlu */
.wurunler ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: #00aeef;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.wurunler ul li a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00aeef;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.wurunler ul li a:hover::before {
    left: 0;
    opacity: 1;
}

.wurunler ul li a:hover::after {
    right: 0;
    opacity: 1;
}
.sayfa.nosidebar .row {
    align-items: center;
}

/* --- Nosidebar Ultra-Modern Design Integration --- */

/* Nosidebar'da Görsel Alanı - Premium Imza */
.sayfa.nosidebar .detayresim {
    position: relative;
    padding-right: 30px; /* Resmin aşırı küçülmesini engellemek için dengelendi */
    margin-bottom: 0;
    perspective: 1000px;
}

/* Resim Arkası Modern Glow */
.sayfa.nosidebar .detayresim::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    background: #00aeef;
    filter: blur(95px);
    opacity: 0.12;
    z-index: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.sayfa.nosidebar .detayresim img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 50px 120px rgba(13, 23, 60, 0.12);
    position: relative;
    z-index: 3;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover Etkileşimi - JS ile dinamik yönetilecek */
.sayfa.nosidebar .detayresim:hover img {
    box-shadow: 0 70px 140px rgba(13, 23, 60, 0.18);
}

/* Metin Alanı - Ghost Text ve Modern Tipografi */
.sayfa.nosidebar .sayfadetay {
    position: relative;
}

.sayfa.nosidebar .sayfadetay::before {
    content: attr(data-ghost);
    position: absolute;
    top: -55px;
    left: -25px;
    font-size: 150px;
    font-weight: 950;
    color: #263b92;
    opacity: 0.06;
    letter-spacing: -6px;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.sayfadetay h3 {
    font-size: 54px;
    font-weight: 900;
    color: #0d173c;
    letter-spacing: -3px;
    line-height: 1.05;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-family: 'DM Sans', sans-serif;
}

.sayfadetay h3::after {
    content: '';
    display: block;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #00aeef 0%, #263b92 100%);
    margin-top: 15px;
    border-radius: 10px;
}

.sayfadetay p {
    font-size: 17px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-family: 'DM Sans', sans-serif;
}

@media (max-width: 991px) {
    .sayfadetay h3 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }
    .sayfa.nosidebar .sayfadetay::before {
        font-size: 100px;
        top: -40px;
    }
    .sayfa.nosidebar .detayresim img {
        border-radius: 40px 10px 40px 10px;
    }
}
