:root {
    --primary-font: 'Inter', sans-serif;
    --dark-color: #1a1a1a;
    --accent-color: #2aa247;
    --text-muted: #666;
    --bg-light: #f5f5f7;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-light);
    color: var(--dark-color);
    margin: 0;
    overflow-x: hidden;
}

/* --- Header & Navigation --- */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    background: transparent;
}

.header-main.scrolled {
    background: #fff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-main.scrolled .navbar {
    background: #fff;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--dark-color);
    text-transform: uppercase;
}

.logo-x {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    opacity: 1;
}

.btn-teklif {
    background: #EDEDED;
    color: var(--dark-color);
    padding: 6px 6px 6px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    width: 38px;
    height: 38px;
    background: #EDEDED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--dark-color);
}

.btn-teklif:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
    color: var(--dark-color);
}

.btn-teklif:hover .btn-icon {
    background: var(--dark-color);
    color: #fff;
}

.btn-lang {
    background: #EDEDED;
    width: 50px;
    height: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--dark-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-lang:hover {
    background: var(--dark-color);
    color: #fff;
    transform: translateY(-2px);
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 14px 6px 6px;
    min-width: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lang-dropdown:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lang-option {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.lang-option:hover,
.lang-option.active {
    background: #f5f5f7;
    color: var(--accent-color);
}

.menu-toggle {
    background: #EDEDED;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--dark-color);
    color: #fff;
}

.menu-toggle i {
    font-size: 1.2rem;
}


/* Mobile Mega Menu Styles - Only below lg */
.fs-8 {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.contact-icon-circle {
    width: 45px;
    height: 45px;
    background: #f5f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
}

@media (max-width: 991.98px) {
    .offcanvas-lg {
        width: 100% !important;
        height: 100% !important;
        background-color: #fff !important;
        border: none !important;
    }

    .mobile-main-nav .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-main-nav .nav-link {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--dark-color) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        transition: all 0.3s ease;
    }

    .mobile-main-nav .nav-link:hover {
        padding-left: 10px;
        color: var(--accent-color) !important;
    }

    .nav-arrow {
        transform: rotate(-45deg);
        transition: all 0.3s ease;
        color: rgba(0, 0, 0, 0.3);
        margin-left: auto;
    }

    .mobile-main-nav .nav-link:hover .nav-arrow {
        transform: rotate(0deg);
        color: var(--accent-color);
    }


    .hero-section {
        background-position: 70% center;
        min-height: 600px;
        display: flex;
        align-items: center;
        padding-top: 80px;
    }

    .hero-section .row {
        min-height: auto !important;
        padding-top: 2rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem !important;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        background: url('/assets/img/hero_01.webp') no-repeat !important;
        background-position: 85% center !important;
        background-size: cover !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: flex-end !important;
        padding-bottom: 30px;
        /* İyice aşağı indirdik */
        min-height: 800px !important;

    }

    .hero-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65%;
        background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 15%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
        pointer-events: none;
    }

    .text-accent {
        color: #000000 !important;
    }

    .hero-section .hero-title {
        position: relative;
        z-index: 2;
        color: #0f172a;
        /* Başlık da siyah/koyu olsun */
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.25;
        font-weight: 800;

    }

    .hero-section .hero-subtitle {
        position: relative;
        z-index: 2;
        color: #475569;
        /* Alt başlık koyu gri */
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 100%;
    }



    .hero-section .hero-actions {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-section .btn-hero {
        width: 100%;
        justify-content: center;
    }







}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background: url('/assets/img/hero_01.webp') no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 100vh;

    /* Bir tık daha uzattım */
    display: flex;
    align-items: center;
    overflow: hidden;
}



.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.text-accent {
    color: var(--accent-color);
}

.italic {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 450px;
    line-height: 1.6;
}

.btn-hero {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-play {
    font-weight: 600;
    color: var(--dark-color);
    padding: 0;
}

.play-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fs-7 {
    font-size: 0.85rem;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-indicator .line {
    width: 40px;
    height: 2px;
    background: var(--text-muted);
}

/* Custom UI refinements */
.glassmorphism {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* --- Global Container Resize --- */
@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1440px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1620px;
    }
}

.logo-img {
    height: 40px;
    width: auto;
}

/* --- Colors --- */
:root {
    --primary-color: #0f172a;
    --accent-color: #10b981;
    /* Daha profesyonel, teknolojik bir yeşil */
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
}

.bg-light-alt {
    background-color: #f1f5f9;
}

/* --- About Section --- */
.about-section {
    background: #fff;
}

.py-6 {
    padding-top: 100px;
}



.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #0f172a;
}

.text-accent {
    color: var(--accent-color) !important;
}

.stats-grid {
    display: flex;
    gap: 40px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-value small {
    font-size: 0.9rem;
    margin-left: 3px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.section-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .section-title {
        font-size: 1.8rem;
    }

    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .about-image-wrapper {
        height: 250px;
    }
}

/* --- Products Section --- */
.products-section {
    background: #fff;
    overflow: hidden;
}

.slider-nav {
    display: flex;
    gap: 10px;
}

.btn-slider-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.btn-slider-nav:hover {
    background: var(--dark-color);
    color: #fff;
}

.slider-nav-mobile {
    display: flex;
    gap: 10px;
}

.product-cards-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -5px;
    padding: 5px;
}

.product-cards-grid::-webkit-scrollbar {
    display: none;
}

.product-cards-grid .product-card {
    flex: 0 0 calc(20% - 16px);
    scroll-snap-align: start;
    min-width: 260px;
}

.product-card {
    position: relative;
    padding: 35px 30px 0;
    border-radius: 24px;
    overflow: visible;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 235, 238, 0.65)),
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.95), transparent 38%);
    border: 1.5px solid #d0d3da;
    border-top-color: rgba(255, 255, 255, 0.95);
    border-left-color: rgba(255, 255, 255, 0.8);
    border-right-color: #c5c8d0;
    border-bottom-color: #bcc0c8;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
    transform: translateY(-6px);

}

.card-shine {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.65) 0%,
            rgba(255, 255, 255, 0.15) 35%,
            transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.product-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -60px;
    background: rgba(255, 255, 255, 0.75);
    filter: blur(35px);
    border-radius: 50%;
    z-index: 1;
}

.product-card::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;
    height: 35px;
    background: rgba(20, 30, 40, 0.16);
    filter: blur(18px);
    border-radius: 50%;
    z-index: 0;
}

.card-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-number {
    position: relative;
    z-index: 2;
    color: #9ca3aa;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 18px;
}

.card-title {
    position: relative;
    z-index: 2;
    color: #1f2933;
    font-size: 26px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
}

.card-icon-circle {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.75);
    color: #5f6872;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-card:hover .card-icon-circle {
    background: var(--dark-color);
    color: #fff;
}

.card-image-box {
    margin-top: auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding-bottom: 10px;
}

.card-image-box img {
    width: 90%;
    max-width: 220px;
    height: auto;
    transition: all 0.5s ease;
}

.product-card:hover .card-image-box img {
    transform: scale(1.08) translateY(-5px);
}

@media (max-width: 1199.98px) {
    .product-cards-grid .product-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 991.98px) {
    .product-cards-grid .product-card {
        flex: 0 0 calc(50% - 10px);
        min-height: 350px;
        padding: 20px;
    }
}

@media (max-width: 575.98px) {
    .product-cards-grid .product-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }
}


/* --- Sectors Section --- */
.sectors-section {
    background: #fff;
    padding: 80px 0;
}

.sectors-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 0;
    margin-right: -100vw;
    /* Bleed to the right */
    padding-right: 100vw;
    scroll-snap-type: x mandatory;
}

.sectors-slider::-webkit-scrollbar {
    display: none;
}

@media (max-width: 991.98px) {
    .sectors-section .row {
        flex-direction: column;
        align-items: flex-start;
    }
}



.sector-card {
    position: relative;
    flex: 0 0 230px;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
}

.sector-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
    transition: transform 0.8s ease;
}

.sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.3) 40%,
            transparent 70%);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    /* Centered content */
    color: #fff;
    text-align: center;
}

.sector-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.sector-icon .material-icons-outlined {
    font-size: 24px;
    color: #fff;
}


.sector-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.sector-card:hover {
    transform: translateY(-8px);
}

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

.sector-card:hover .sector-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .sectors-section {
        padding: 60px 0;
    }

    .sectors-section .row {
        flex-direction: column;
        align-items: flex-start;
    }

    .sectors-slider {
        margin-top: 30px;
        margin-right: -15px;
        margin-left: -15px;
        padding-left: 15px;
        padding-right: 15px;
        width: calc(100% + 30px);
    }


    .sector-card {
        flex: 0 0 200px;
        height: 400px;
        border-radius: 20px;
    }

    .sector-name {
        font-size: 0.9rem;
    }

    .sector-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .sector-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }
    
    .sectors-slider {
        scroll-padding: 0 20px;
        scroll-snap-type: x mandatory;
    }
}


/* --- Engineering Section --- */
.engineering-section {
    position: relative;
    background: #f8fafc;
}

.features-glass-box {
    position: relative;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    /* Shine için */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 235, 238, 0.65)), radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.95), transparent 38%);
    border: 1.5px solid #d0d3da;
    border-top-color: rgba(255, 255, 255, 0.95);
    border-left-color: rgba(255, 255, 255, 0.8);
    border-right-color: #c5c8d0;
    border-bottom-color: #bcc0c8;
}

/* Ürünlerdeki shine efektini buraya da ekledik */
.features-glass-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(16, 185, 129, 0.03),
            transparent);
    transform: rotate(25deg);
    pointer-events: none;
}


.feature-item-row {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: center;
}

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

.feature-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item-row:hover .feature-icon-box {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.feature-item-row:hover .feature-icon-box .material-icons-outlined {
    color: #fff;
}


.feature-icon-box .material-icons-outlined {
    font-size: 22px;
    color: var(--accent-color);
}

.feature-text-box h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-text-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.stats-floating-bar {
    background: #fff;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-v-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    border-right: 1px solid #f1f5f9;
}

.stat-v-item:last-child {
    border-right: none;
}

.stat-v-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-v-icon .material-icons-outlined {
    font-size: 24px;
    color: #64748b;
}

.stat-v-content strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-v-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.technical-img {
    width: 100%;
    max-height: 580px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
    transition: transform 0.5s ease;
}


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

@media (max-width: 991.98px) {
    .engineering-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .engineering-section .row>div {
        margin-bottom: 35px;
        text-align: left;
        /* Geri sola yasladım mobilde daha okunaklı */
    }

    .features-glass-box {
        background: transparent;
        border: none;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .feature-item-row {
        flex-direction: row;
        /* Metinler için yatay daha iyi */
        align-items: flex-start;
        text-align: left;
        margin-bottom: 0;
        background: #fff;
        padding: 20px;
        border-radius: 24px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
        border: 1px solid #f1f5f9;
        gap: 18px;
    }

    .feature-icon-box {
        margin-bottom: 0;
        width: 42px;
        height: 42px;
        background: #f8fafc;
        flex-shrink: 0;
    }

    .feature-text-box h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--primary-color);
    }

    .feature-text-box p {
        display: block;
        /* Metinler geri geldi */
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--text-muted);
        margin: 0;
    }

    .technical-img {
        max-height: 350px;
        margin: 0 auto;
        display: block;
    }
}

/* --- Blog Section --- */
.blog-section {
    background: #ffffff;
    padding: 100px 0;
}

.btn-all {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: #e9ecef;
    /* Referanstaki gibi gri tonlu buton */
    border-radius: 50px;
    text-decoration: none;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-all:hover {
    background: #1e293b;
    color: #fff;
    transform: scale(1.05);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.blog-card {
    background: #f1f3f5;
    /* Kartların kendisi gri referanstaki gibi */
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-image {
    width: 100%;
    height: 180px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.75rem;
    color: #868e96;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.4;
    margin-bottom: 20px;
}

.blog-link-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    margin-top: auto;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-link-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--accent-color);
}

@media (max-width: 991.98px) {
    .blog-grid {
        display: flex;
        /* Mobilde slider yapısına geçtik */
        grid-template-columns: none;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 15px;
        margin-right: -15px;
        padding-right: 15px;
    }

    .blog-grid::-webkit-scrollbar {
        display: none;
    }

    .blog-card {
        flex: 0 0 100%;
        /* Tam genişlik yaptık */
        flex-shrink: 0;
        /* Küçülmesini engelledik */
    }


    .blog-title {
        font-size: 1.1rem;
    }
}


/* --- CTA Section --- */
.cta-banner {
    position: relative;
    padding: 60px 80px;
    background: url('img/img_01_kopya.webp') center center no-repeat;
    background-size: cover;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

/* Cam/Kristal Dokusu Üzerine Overlay */
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    /* Görselin üzerine hafif beyazlık */
    backdrop-filter: blur(1px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background: #0f172a;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section {
    background-color: white;
}

.btn-cta:hover {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.05) translateY(-3px);
}

@media (max-width: 991.98px) {
    .cta-banner {
        padding: 50px 30px;
        text-align: center;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .btn-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

.btn-blog-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-blog-nav:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}



.footer-top {
    padding: 100px 0 60px;
}

.footer-title {
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-desc {
    line-height: 1.8;
    font-size: 0.95rem;
    color: #64748b;
}

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

.footer-links a {
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li span {
    font-size: 0.9rem;
    color: #1e293b;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #1e293b;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

/* --- Dropdown Styling --- */
.dropdown-menu {
    border-radius: 20px;
    margin-top: 0 !important;
    /* Gap'i sıfırladık */
    min-width: 240px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
    padding: 15px;
    animation: fadeInDown 0.3s ease-out;
    border: none;
}

/* Hover köprüsü: Menü ile link arasındaki boşlukta kapanmasın diye */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}


@media (min-width: 992px) {
    .dropdown-hover:hover .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}




@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.dropdown-item {
    font-weight: 500;
    color: #475569;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--accent-light);
    color: var(--accent-color);
    transform: translateX(5px);
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* --- About Page Styles --- */
.about-hero-section {
    height: 650px;
    margin-top: 100px;
    position: relative;
    padding-bottom: 20px;
}

.about-hero-card-wrapper {
    position: relative;
    background: url('/assets/img/breadcumb_01.webp') center center no-repeat;
    background-size: cover;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: 60px;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent);
    backdrop-filter: blur(10px);
}

.about-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--primary-color);
}

.underline-effect {
    position: relative;
    display: inline-block;
}



.about-hero-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    color: #4b5563;
    line-height: 1.6;
}

.pill-breadcrumb {
    margin-bottom: 25px;
}

.breadcrumb-bubble {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-bubble i {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-right: 10px;
}

.breadcrumb-bubble a {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-bubble .divider {
    margin: 0 10px;
    color: #cbd5e1;
}

.breadcrumb-bubble .active {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-row {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid #f1f5f9;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-txt {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-image-box {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-color);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-year {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    height: 100%;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.value-card.active,
.value-card:hover {
    background: var(--primary-color);
    color: #fff !important;
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.value-card.active p,
.value-card:hover p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.value-card.active h4,
.value-card:hover h4 {
    color: #fff !important;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.value-card.active .value-icon,
.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.1);
}

.value-icon .material-icons-outlined {
    font-size: 30px;
    color: var(--accent-color);
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.vision-mission-modern {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: url('img/img_01_kopya.webp') center center no-repeat;
    background-size: cover;
}

.vision-mission-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    /* Overlay to make it light */
    backdrop-filter: blur(2px);
    z-index: 1;
}

.vision-mission-modern .container {
    position: relative;
    z-index: 2;
}

.quality-glass-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 235, 238, 0.65));
}

.quality-list li {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.certs-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991.98px) {
    .about-hero-section {
        height: auto;
        padding-bottom: 0;
    }

    .about-hero-card-wrapper {
        flex-direction: column;
        border-radius: 25px;
        height: auto;
        display: block !important;
        padding-top: 280px; /* Space for the image */
        background-position: top center !important;
        background-size: 100% 280px !important;
        background-repeat: no-repeat !important;
        background-color: #fff !important;
    }

    .about-hero-card-wrapper::before {
        display: none;
    }

    .about-hero-content {
        margin-left: 0;
        padding: 30px 20px !important;
        text-align: left;
        width: 100%;
        background: #fff !important;
        backdrop-filter: none !important;
        border-radius: 0 !important;
    }

    .about-hero-content .pill-breadcrumb {
        justify-content: flex-start;
    }

    .about-hero-content .breadcrumb-bubble {
        background: #f8f9fa !important;
        color: var(--primary-color) !important;
        border: 1px solid #dee2e6 !important;
    }

    .about-hero-content .breadcrumb-bubble *, 
    .about-hero-content .about-hero-title, 
    .about-hero-content p {
        color: var(--primary-color) !important;
        text-shadow: none !important;
    }

    .about-hero-title {
        font-size: 1.8rem;
        margin-top: 10px;
    }

    .about-hero-title {
        font-size: 2.1rem;
    }

    .about-hero-subtitle {
        margin: 20px auto 0;
        font-size: 1rem;
    }

    .experience-badge {
        position: static;
        margin: 30px auto 0;
        width: fit-content;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .vision-box,
    .mission-box {
        text-align: center;
    }

    .vision-box .content-wrapper,
    .mission-box .content-wrapper {
        margin: 0 auto !important;
    }
}

/* --- Company Overview Styles --- */
.section-tag-sm {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #64748b;
}

.overview-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -1px;
}

.overview-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.daha-fazla-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.daha-fazla-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.overview-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    display: inline-grid;
}

.stat-box-modern {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f5f9;
    color: #64748b;
    transition: all 0.3s ease;
}

.stat-box-modern:hover .stat-icon-circle {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.stat-content .num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.stat-content .txt {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.vision-card-modern {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.vision-img-side {
    width: 65%;
    overflow: hidden;
}

.vision-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-text-side {
    width: 35%;
    background: #1e293b;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.vision-text-side h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.vision-text-side p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
}

.vision-globe-svg {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    opacity: 0.2;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .overview-stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        text-align: left;
        margin-top: 40px;
    }

    .vision-card-modern {
        flex-direction: column;
        min-height: auto;
    }

    .vision-img-side,
    .vision-text-side {
        width: 100%;
    }

    .vision-img-side {
        height: 300px;
    }

    .vision-text-side {
        padding: 40px 30px;
    }

    .vision-text-side h3 {
        font-size: 1.8rem;
    }
}

/* --- Vision & Mission Modern Styles --- */
.vision-mission-modern {
    background: #fff;
    position: relative;
    overflow: hidden;
    /* Silk-like background effect using multiple gradients */
    background: radial-gradient(circle at 10% 20%, rgba(243, 244, 246, 0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(243, 244, 246, 0.5) 0%, transparent 40%),
        #ffffff;
}

.vision-mission-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/white-diamond.png');
    /* Sublte texture */
    opacity: 0.03;
    pointer-events: none;
}

.vm-card {
    padding: 20px;
    transition: all 0.4s ease;
    height: 100%;
}

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

.vm-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #94a3b8;
    text-transform: uppercase;
}

.vm-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.5;
    max-width: 320px;
}

.vm-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-inner {
    width: 65px;
    height: 65px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    box-shadow:
        0 0 0 10px rgba(241, 245, 249, 0.5),
        0 0 0 20px rgba(241, 245, 249, 0.2);
    transition: all 0.5s ease;
}

.vm-card:hover .icon-inner {
    background: #fff;
    color: var(--accent-color);
    box-shadow:
        0 0 0 15px rgba(16, 185, 129, 0.1),
        0 0 0 30px rgba(16, 185, 129, 0.05);
    transform: scale(1.05);
}

.brand-divider-x {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    opacity: 0.8;
    position: relative;
    display: inline-block;
}

.brand-divider-x::before,
.brand-divider-x::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    left: 50%;
}

.brand-divider-x::before {
    top: -50px;
}

.brand-divider-x::after {
    bottom: -50px;
}

@media (max-width: 991.98px) {
    .vm-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .vm-title {
        max-width: 100%;
    }

    .brand-divider-x {
        display: none;
    }
}

.vm-modern-glass-box {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.6)), url('img/img_01_kopya.webp') center center no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding: 60px 80px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.vm-modern-glass-box .vm-tag {
    color: rgba(255, 255, 255, 0.5);
}

.vm-modern-glass-box .vm-title {
    color: #ffffff;
}

.vm-modern-glass-box .brand-divider-x {
    color: #ffffff;
}

.vm-modern-glass-box .icon-inner {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow:
        0 0 0 10px rgba(255, 255, 255, 0.05),
        0 0 0 20px rgba(255, 255, 255, 0.02);
}

.vm-modern-glass-box .vm-card:hover .icon-inner {
    background: var(--accent-color);
    color: #fff;
    box-shadow:
        0 0 0 15px rgba(16, 185, 129, 0.2),
        0 0 0 30px rgba(16, 185, 129, 0.1);
}

/* Clear section background if box has it */
.vision-mission-modern {
    background: #fff !important;
}

@media (max-width: 991.98px) {
    .vm-modern-glass-box {
        padding: 40px 20px;
        border-radius: 25px;
    }
}

/* --- Quality Modern Styles --- */
.quality-modern-wrapper {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.quality-feature {
    display: flex;
    align-items: center;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quality-feature:hover {
    background: #fff;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateX(5px);
}

.quality-feature i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.quality-cert-side {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.cert-cards-stack {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.cert-card-item {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.cert-card-item:hover {
    transform: scale(1.03) translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cert-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon-box.blue {
    background: rgba(59, 130, 246, 0.1);
}

.cert-icon-box.green {
    background: rgba(16, 185, 129, 0.1);
}

.cert-icon-box.dark {
    background: rgba(15, 23, 42, 0.1);
}

.cert-info h6 {
    margin: 0;
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.cert-info span {
    font-size: 0.8rem;
    color: #64748b;
}

.tech-lines-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .quality-modern-wrapper {
        border-radius: 25px;
    }

    .cert-card-item:hover {
        transform: scale(1.02);
    }
}

/* --- FAQ (SSS) Section Styles --- */
.faq-section {
    background: #fff;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.faq-accordion .accordion-button {
    padding: 25px 30px;
    font-weight: 700;
    color: #0f172a;
    background-color: #fff;
    font-size: 1.1rem;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: var(--accent-color);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 10px 30px 30px;
    color: #64748b;
    line-height: 1.8;
    background-color: #f8fafc;
}

.faq-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #f8fafc;
}

.faq-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-contact-box {
    background: var(--primary-color);
    padding: 40px;
    color: #fff;
}

.faq-contact-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-contact-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* --- Blog Page Styles --- */
.blog-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-bg-accent {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.btn-filter {
    padding: 10px 25px;
    border-radius: 50px;
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.blog-card-modern {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(16, 185, 129, 0.1);
}

.blog-card-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-meta .date {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.blog-card-title a {
    color: #1e293b;
    transition: color 0.3s ease;
}

.blog-card-modern:hover .blog-card-title a {
    color: var(--accent-color);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    /* Multiline ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    color: var(--accent-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    gap: 12px !important;
    color: #0d9488;
}

/* Pagination Styles */
.blog-pagination .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-weight: 700;
    transition: all 0.3s ease;
}

.blog-pagination .page-item.active .page-link {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.blog-pagination .page-link:hover {
    background: #f1f5f9;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
}

/* Blog Title Hover Effect */
.blog-title a {
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title a,
.blog-title a:hover {
    color: var(--accent-color) !important;
}

.blog-card:hover .blog-link-btn {
    background: var(--accent-color) !important;
    color: #fff !important;
    transform: translateX(5px);
}

/* Fixing Blog Title Alignment */
.blog-title {
    height: 3.2em;
    /* Ensures titles take up the same space (approx 2 lines) */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 20px !important;
}

/* Ensure card content stretches correctly */
.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Refining Blog Card Alignment */
.blog-image {
    height: 220px !important;
    /* Slightly taller for better industrial look */
}

.blog-card {
    min-height: 420px;
    /* Uniform card height */
}

/* --- Blog Detail Page Styles --- */
.blog-detail-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.blog-badge {
    background: var(--accent-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.article-lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: #1e293b;
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.article-body h2 {
    color: var(--primary-color) !important;
}

.article-body ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.article-body ul li {
    margin-bottom: 15px;
    position: relative;
}

.article-body ul li::marker {
    color: var(--accent-color);
}

.share-btn-sm {
    width: 38px;
    height: 38px;
    transition: all 0.3s ease;
}

.share-btn-sm:hover {
    background: #f1f5f9;
    color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    transform: translateY(-3px);
}

.nav-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-card:hover {
    background: #fff !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
}

/* Typography refinement */
.article-body {
    letter-spacing: -0.01em;
}

@media (max-width: 991.98px) {
    .blog-detail-hero h1 {
        font-size: 2.2rem;
    }
}

/* --- Floating Catalog Button --- */
.floating-catalog-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--dark-color);
    color: #fff;
    padding: 25px 12px;
    border-radius: 15px 0 0 15px;
    text-decoration: none !important;
    z-index: 9999;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.floating-catalog-btn i {
    transform: rotate(90deg);
    font-size: 1.2rem;
}

.floating-catalog-btn:hover {
    padding-right: 20px;
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-50%) rotate(180deg) translateX(5px);
}

@media (max-width: 768px) {
    .floating-catalog-btn {
        display: none;
    }
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp-btn:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1) translateY(-5px);
}

@media (max-width: 768px) {
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
        right: 20px;
        bottom: 20px;
    }
}