@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Archivo", sans-serif !important;
    overflow-x: hidden !important;
}

/* Header Styles */
.site-header {
    background-color: transparent;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1000;
    border-top: 1px solid rgb(255, 255, 255);
    border-bottom: 1px solid rgb(255, 255, 255);
}

a.text-danger.fw-bold {
    text-decoration: none;
}

.header-inner {
    height: 80px;
    /* Adjust height based on preference */
}

/* Logo Area */
.logo-area {
    /* Width controlled by col-lg-1 */
    background-color: transparent;
    border-right: 1px solid rgb(255, 255, 255);
}

@media (min-width: 992px) {
    .logo-area {
        width: 100px;
        flex: 0 0 100px;
    }
}

/* Navigation */
.main-nav {
    height: 100%;
}

.main-nav .nav {
    height: 100%;
}

.main-nav .nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav .nav-link {
    color: #ffffff;
    font-size: 16px;
    padding: 0 1.2rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    border-top: 0;
    /* Reset default if any */
}

.main-nav .nav-link:hover {
    opacity: 1;
    font-weight: 700;
}

.main-nav .nav-link.active {
    opacity: 1;
    font-weight: 700;
}

/* Active indicator (thick top border) */
.main-nav .nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    /* Align to the very top of the header */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;

    /* Thicker border as requested */
    background-color: #ffffff;
}

/* Dropdown Menu Styles */
.main-nav .dropdown {
    position: relative;
}



.main-nav .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    margin-top: 0 !important;
    padding: 0;
    min-width: 200px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

/* Show dropdown on hover */
.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.main-nav .dropdown-item {
    color: #1d1d1b;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.main-nav .dropdown-item:last-child {
    border-bottom: none;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
    background-color: #f5f5f5;
    color: #bc2525;
}

.main-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.1em;
}




/* Right Side Actions */
.header-actions {
    margin-left: auto;
    /* Push to right on mobile if nav is hidden */
}

.lang-box {
    width: 70px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.lang-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-text {
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Custom Language Dropdown */
.lang-dropdown-menu {
    border: none;
    border-radius: 0;
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 70px !important;
    padding: 0;
    margin-top: 0;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
    top: 100% !important;
    animation: fadeInDropdown 0.3s ease forwards;
}

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

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

.lang-dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-dropdown-menu li:last-child {
    border-bottom: none;
}

.lang-dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    background: transparent;
    transition: all 0.2s ease;
}

.lang-dropdown-menu .dropdown-item:hover {
    background-color: #d71920;
    color: #ffffff !important;
    padding-left: 20px;
    /* Slight movement effect */
}

/* Scrolled State Adjustments */
.site-header.scrolled .lang-box {
    border-left-color: rgba(0, 0, 0, 0.1);
    border-right-color: rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .lang-box:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .lang-dropdown-menu {
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .lang-dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.site-header.scrolled .lang-dropdown-menu .dropdown-item {
    color: #333 !important;
}

.site-header.scrolled .lang-dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #d71920 !important;
}

.menu-btn {
    width: 80px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

/* Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn:hover .hamburger-icon span {
    scale: 1.1;
}


/* Scrolled Header Styles */
.site-header.scrolled {
    position: fixed;
    background-color: #ffffff;
    border-top-color: rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .logo-area {
    border-right-color: rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .lang-box {
    border-left-color: rgba(0, 0, 0, 0.1);
    border-right-color: rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .menu-btn {
    border-left-color: rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .hamburger-icon span {
    background-color: #1d1d1b;
}


.site-header.scrolled .nav-link {
    color: #000000;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: #000000;
}

.site-header.scrolled .nav-link.active::before {
    background-color: #d71920;
}

.site-header.scrolled .lang-text {
    color: #000000;
}

.site-header.scrolled .material-icons {
    color: #000000 !important;
}



/* Custom Responsive Heights for Hero Columns */
/* Custom Responsive Heights for Hero Columns */
.hero-text-col {
    padding-bottom: 2rem;
}

.hero-image-col {
    display: flex;
    align-items: flex-end;
    /* Mobile default: Bottom */
    justify-content: center;
    /* Mobile default: Center */
}

.hero-slider-img {
    height: auto;
    max-height: 300px;
    /* Small on mobile */
    max-width: 100%;
    width: auto;
    border-radius: 30px 0 0 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .site-header {
        position: relative;
        background-color: #d71920;
    }

    .lang-box {
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 767px) {
    .header-inner {
        height: 70px;
    }

    .logo-area {
        min-width: 80px;
    }
}

@media (min-width: 768px) {

    /* Desktop Heights (now including Tablet) */
    .hero-text-col,
    .hero-image-col {
        height: 100%;
    }

    /* Tablet/Laptop: Dead Center */
    .hero-image-col {
        justify-content: center;
        align-items: center;
    }

    .hero-slider-img {
        max-height: unset;
        height: auto;
        max-width: 100%;
        min-height: auto;
        /* Allow auto scaling */
    }
}

@media (min-width: 1400px) {

    /* Huge Screens: Bottom Right */
    .hero-image-col {
        justify-content: flex-end;
        align-items: flex-end;
    }

    .hero-slider-img {
        max-height: 85%;
        /* Cap height at 85% only on large screens */
    }
}

.hero-section {
    background-color: #d71920 !important;
    position: relative;
    width: 100%;
    padding-top: 0;
}

@media (min-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 80vh;
        /* Reduced from 100vh for better mobile flow */
        padding-bottom: 30px;
    }
}

/* Masking/Overlay */
.hero-overlay {
    background: linear-gradient(110deg, #d71920 45%, rgba(215, 25, 32, 0.95) 50%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper {
    z-index: 0;
}

.hero-content {
    z-index: 2;
}

.hero-pagination .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-pagination .dot.active,
.hero-pagination .dot:hover {
    background-color: white;
}

/* Typography adjustments to match image better */
.hero-title {
    font-size: 2.5rem;
    /* Mobile size */
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
        /* Laptop/Tablet Landscape size */
    }
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
        /* Large Desktop size */
    }
}

h1 .fst-italic {
    font-style: italic !important;
}

/* Global Presence Section */
.global-presence-section {
    padding: 0 0 60px 0;
    /* Remove top padding to let image stick to top */
    background-color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.map-bg img {
    width: 60vw;
    /* Responsive width */
    max-width: none;
    height: auto;
    object-fit: contain;
    /* Consistent offset */
}

@media (max-width: 767px) {
    .map-bg img {
        width: 100%;
        transform: none;
        opacity: 0.5;
        /* Fade it out a bit more on mobile so text pops */
    }
}

/* Container Image */
.global-container-img {
    max-width: 100%;
    width: 85%;
    /* Slightly smaller */
    height: auto;
}

@media (min-width: 768px) {
    .global-container-img {
        max-width: none;
        margin-top: -5%;
        /* Slight overlap */
    }
}

/* Custom Red Button */
.btn-red {
    background-color: #d71920;
    border: 2px solid #d71920;
    transition: all 0.3s ease;
}

.btn-red:hover {
    color: white !important;
    font-weight: bold !important;
    background-color: #1d1d1b !important;
}

/* Typography tweak for this section */
.global-presence-section h2 {
    line-height: 1.2;
}

/* Layout Constraint for Ultra Wide Screens */
@media (min-width: 1921px) {

    .site-header .header-inner,
    .hero-section>.container-fluid,
    .global-presence-section>.container-fluid,
    .discovery-section>.container-fluid,
    .products-icon-section>.container-fluid,
    .expert-section>.container-fluid,
    .anasayfa-blog-section>.container-fluid,
    .tarihce-hero-section>.container-fluid,
    .history-content-section>.container-fluid,
    .milestones-section .container-fluid:not(.px-0),
    .corporate-hero-section>.container-fluid,
    .who-we-are-section>.container-fluid,
    .engineering-section>.container-fluid,
    .production-units-section>.container-fluid,
    .rakamlarla-tosun-section>.container-fluid,
    .partners-section>.container-fluid,
    .contact-hero-section>.container-fluid,
    .contact-info-section>.container-fluid,
    .values-section>.container-fluid,
    .blog-article-section>.container-fluid,
    .blog-masonry-section>.container-fluid,
    .breadcrumb-section>.container-fluid,
    .faq-content-section>.container-fluid,
    .mission-vision-history-section>.container-fluid,
    .kariyer-hero-section>.container-fluid,
    .product-hero-section>.container-fluid,
    .capacity-selector-wrapper>.container-fluid {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Keep text aligned to the virtual 1920px grid while background stretches */
    .ps-header-align {
        padding-left: calc(50vw - 960px + 100px + 2.8rem) !important;
    }

    .pe-header-align {
        padding-right: calc(50vw - 960px + 100px + 2.8rem) !important;
    }

    /* Pull Solution & Discovery text slightly left as requested, without affecting others */
    .solution-section .ps-header-align,
    .discovery-section .ps-header-align,
    .anasayfa-blog-section .ps-header-align {
        padding-left: calc(50vw - 960px + 90px + 1rem) !important;
    }





}


/* Solution & Video Section */
.bg-red {
    background-color: #d71920;
}

.min-vh-50 {
    min-height: 500px;
}

.video-col {
    background-color: #d71920;
    position: relative;
    overflow: hidden;
}

.video-bg-overlay {
    background-image: url('/assets/img/tanitim_filmi_01.png');
    background-size: cover;
    background-position: center bottom;
    /* Valid content usually at bottom/center for vertical screens */
    /* 20% Opacity as requested */
    /* Optional: Improves the red tint effect */
    opacity: 0.3;
    z-index: 1;
}

@media (min-width: 992px) {
    .video-bg-overlay {
        background-position: 80% center;
    }
}

.solution-section h2 {
    letter-spacing: -0.5px;
}

.ps-custom {
    padding-left: 2rem !important;
}

/* Header Alignment Utility */
/* Header Alignment Utility */
@media (min-width: 992px) {
    .ps-header-align {
        padding-left: calc(100px + 2.8rem) !important;
    }

    /* Pull Solution & Discovery text slightly left as requested, without affecting others */
    /* Pull Solution & Discovery text slightly left as requested, without affecting others */
    .solution-section .ps-header-align,
    .discovery-section .ps-header-align {
        padding-left: calc(90px + 1rem) !important;
    }

    .anasayfa-blog-section .ps-header-align {
        padding-left: calc(130px + 1rem) !important;
    }

    .pe-header-align {
        padding-right: calc(100px + 2.8rem) !important;
    }

    .anasayfa-blog-section .pe-header-align {
        padding-right: calc(90px + 1rem) !important;
    }
}



/* Z-Index Utility */
.z-index-2 {
    z-index: 2;
}

/* Discovery Section */
.discovery-section {
    min-height: 111vh;
    display: flex;
    align-items: center;
}

.discovery-bg-shape {
    background-image: url('/assets/img/kesfet_01.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Adjust shape for mobile/tablet */
@media (max-width: 991px) {
    .discovery-section {
        min-height: auto;
        padding-bottom: 50px;
    }

    .discovery-bg-shape {
        background-color: #f4f6f8;
        background-size: contain;
        background-position: bottom center;
        background-repeat: no-repeat;
    }
}

/* Product Categories Grid */
.category-box {
    background-color: #f4f6f8;
    height: 260px;
    border: 1px solid #ffffff;
    transition: all 0.4s ease;
    color: #1d1d1b;
}

.category-box .box-title {
    color: #1d1d1b;
    transition: color 0.4s ease;
}

.category-box .category-icon {
    max-height: 80px;
    width: auto;
    transition: filter 0.4s ease;
}

/* Hover Effect */
.category-box:hover {
    background-color: #d71920;
    transform: translateY(-5px);
    /* Optional: slight lift */
    z-index: 10;
    box-shadow: 0 10px 30px rgba(215, 25, 32, 0.2);
}

.category-box:hover .box-title {
    color: #ffffff;
}

.category-box:hover .category-icon {
    filter: brightness(0) invert(1);
}

/* Expert Hands Section */
.expert-section {
    min-height: 100vh;
    background-image: url('/assets/img/uzman_eller_01.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 8rem !important;
}

@media (max-width: 991px) {
    .expert-section {
        background-color: #000 !important;
        background-image: none !important;
        display: block !important;
        min-height: auto !important;
        padding-top: 0 !important;
    }

    .expert-section::before {
        content: "";
        display: block;
        width: 100%;
        height: 350px;
        background-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0) 100%), url('img/uzman_eller_01.webp');
        background-size: cover;
        background-position: 25% center;
    }

    .expert-section .col-lg-5 {
        padding-top: 2rem !important;
        padding-bottom: 4rem !important;
    }
}

/* Homepage Blog Section */
.anasayfa-blog-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-card {
    border: none;
    background: transparent;
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.blog-date {
    background-color: #ededed;
    padding: 15px 20px;
    color: #444;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom-right-radius: 40px;
    display: block;
    width: 100%;
}

.blog-content {
    padding-top: 25px;
}

.blog-title {
    font-size: 1.5rem;
    color: #1d1d1b;
    font-weight: 400;
    min-height: 80px;
    /* Regular weight based on design */
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
    min-height: 80px;

}

.btn-blog-red {
    background-color: #d71920;
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}


/* Footer Styles */
/* Footer Styles */
.site-footer {
    background-color: #f4f6f8;
    color: #1d1d1b;
    border-top: 1px solid #e0e0e0;
    padding: 0;
}

.footer-container {
    padding: 0 !important;
}

@media (min-width: 1921px) {
    .site-footer>.container-fluid {
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-logo {
    display: block;
}

.footer-col {
    padding: 1.5rem;
}

/* Vertical Divider for Desktop */
@media (min-width: 992px) {
    .border-lg-end {
        border-right: 1px solid #e0e0e0;
    }

    .footer-col {
        min-height: 550px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        border-right: 2px solid #ffffff;
        padding-left: 3rem;
        padding-right: 2rem;
    }

    .footer-col:first-child {
        padding-left: calc(100px + 2.8rem) !important;
    }

    .footer-col:last-child {
        border-right: none;
    }

    /* Override previous specific border class since we apply to all */
    .border-lg-end {
        border-right: none;
    }

    /* Ensure content aligns well */
    .content-wrapper {
        width: 100%;
    }
}

/* Social Icons */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #d71920;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-links a {
    color: #666;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #d71920;
    transform: translateX(5px);
}

/* Typography Overrides for Footer */
.site-footer h4 {
    font-weight: 400;
}

.site-footer h5 {
    font-weight: 500;
}

.site-footer .text-dark {
    color: #1d1d1b !important;
}

.site-footer .fw-light {
    font-weight: 300 !important;
}

@media (max-width: 767px) {
    .site-footer h4.fs-5 {
        font-size: 1.1rem !important;
    }

    .site-footer h5 {
        font-size: 0.9rem !important;
    }

    .footer-contact-info,
    .footer-contact-info a,
    .footer-links a {
        font-size: 0.75rem !important;
        word-break: break-all;
    }

    .site-footer p {
        font-size: 0.8rem !important;
    }

    .footer-col {
        padding: 1rem !important;
    }

    .footer-logo {
        max-height: 35px !important;
    }
}

@media (min-width: 992px) {
    .site-footer h4.fs-5 {
        font-size: 30px !important;
    }

    .site-footer img.me-2 {
        height: 30px !important;
        /* Adjust icon size to match text */
        width: auto;
    }
}

/* Container Image Animation */
.global-container-img {
    opacity: 0;
    transform: translateY(-100px);
    /* Start from above */
    transition: all 1s ease-out;
}

.global-container-img.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Corporate Page Hero */
.corporate-hero-section {
    height: 100vh;
    min-height: 600px;
}

.corporate-hero-bg {
    background-image: url('img/kurumsal_01.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.corporate-hero-overlay {
    z-index: 1;
}

/* Adjust heading size for corporate hero specifically if needed */
.corporate-hero-section h1 {
    font-size: 3.5rem;
}

@media (max-width: 991px) {
    .corporate-hero-section {
        height: auto;
        min-height: 80vh;
        padding-top: 100px;
        /* Space for mobile header */
        padding-bottom: 50px;
    }

    .corporate-hero-section h1 {
        font-size: 2.5rem;
    }

}

/* Kariyer Page Hero */
.kariyer-hero-section {
    height: 100vh;
    min-height: 600px;
}

.kariyer-hero-bg {
    background-image: url('img/kariyer_01.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.kariyer-hero-overlay {
    z-index: 1;
}

.kariyer-hero-section h1 {
    font-size: 3.5rem;
}

@media (max-width: 991px) {
    .kariyer-hero-section {
        height: auto;
        min-height: 80vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .kariyer-hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Tarihce Hero Section */
.tarihce-hero-section {
    height: 100vh;
    min-height: 600px;
}

.tarihce-hero-bg {
    background-image: url('/assets/img/tarihce_01.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.tarihce-hero-overlay {
    z-index: 1;
}

.tarihce-hero-section h1 {
    font-size: 3.5rem;
}

@media (max-width: 991px) {
    .tarihce-hero-section {
        height: auto;
        min-height: 80vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .tarihce-hero-section h1 {
        font-size: 2.5rem;
    }
}


/* Timeline / Kilometre Taşları Section */
.milestones-section {
    background-color: #fff !important;
    padding: 0 0 100px 0;
}

.milestones-section h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 60px;
}

/* Horizontal Shifting Timeline */
.milestones-section {
    height: 600vh;
    /* Kaydırma alanı için yükseklik - Daha yavaş ve dengeli geçiş */
    position: relative;
    background-color: #fff;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 10vh;
    overflow: hidden;
}

.timeline-grid {
    display: flex;
    width: 100%;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.timeline-column {
    flex: 0 0 150px;
    /* İnaktifler dar */
    padding: 0 20px;
    position: relative;
    border-left: 1px solid #e0e0e0;
    height: 400px;
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

/* Desktop hover effect */
@media (min-width: 992px) {
    .timeline-column:not(.active):hover {
        border-left: 2px solid #666;
    }

    .timeline-column:not(.active):hover .timeline-year-text {
        color: #ccc;
    }
}

/* Aktif Sütun Özellikleri */
.timeline-column.active {
    flex: 0 0 600px;
    /* Aktif olan genişler */
    border-left: 2px solid #1d1d1b;
}

/* Sol taraftaki Üçgen (Arrow) */
.timeline-column.active::before {
    content: '';
    position: absolute;
    left: 12px;
    /* Çizginin tam üzerine oturması için */
    top: 40px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid #1d1d1b;
    transform: translateX(-100%);
    z-index: 10;
}

.timeline-year-text {
    font-size: 8rem;
    font-weight: 500;
    line-height: 0.8;
    margin-top: 20px;
    margin-bottom: 40px;
    transition: all 0.8s ease;
    color: #f0f0f0;
    /* Default silik */
}

.timeline-column.active .timeline-year-text {
    color: #bc2525;
    /* Aktif kırmızı */
}

.timeline-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1d1d1b;
    max-width: 450px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.9s ease;
}

.timeline-column.active .timeline-desc {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .milestones-section {
        height: auto !important;
        padding: 50px 0;
    }

    .sticky-wrapper {
        position: relative !important;
        height: auto !important;
        top: 0 !important;
        overflow: visible !important;
    }

    .timeline-grid {
        flex-direction: column !important;
        transform: none !important;
        gap: 40px;
        padding: 0 5%;
    }

    .timeline-column {
        flex: 0 0 100% !important;
        width: 100% !important;
        border-left: 2px solid #e0e0e0 !important;
        padding: 0 0 0 25px !important;
        opacity: 1 !important;
        transform: none !important;
        height: auto !important;
        cursor: default !important;
    }

    .timeline-column.active {
        border-left: 2px solid #bc2525 !important;
    }

    .timeline-year-text {
        font-size: 3.5rem !important;
        color: #bc2525 !important;
        margin-bottom: 10px !important;
        transform: none !important;
        transition: none !important;
        line-height: 1 !important;
    }

    .timeline-desc {
        opacity: 1 !important;
        transform: none !important;
        display: block !important;
    }

    .timeline-column.active::before {
        display: none;
    }
}






@media (max-width: 1200px) {
    .timeline-year-text {
        font-size: 6rem;
    }
}

@media (max-width: 991px) {
    .timeline-grid {
        flex-direction: column;
    }

    .timeline-column {
        border-left: 2px solid #e0e0e0;
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .timeline-column.active {
        border-left: 3px solid #1d1d1b;
    }

    .timeline-year-text {
        font-size: 5rem;
        margin-bottom: 20px;
    }

    .timeline-desc {
        opacity: 1;
        transform: none;
        max-width: 100%;
    }
}


/* Production Units Section */

/* Production Units Section */
.production-item {
    border-top: 1px solid #e0e0e0;
    /* Top border always visible */
    cursor: pointer;
    overflow: visible;
    /* Allow overflow for stacking */
    position: relative;
    background-color: #fff;
    /* Ensure white bg to cover items below */
    height: 120px;
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    margin-bottom: -35px;
    /* 80% of 120px = overlap by 96px, show 24px (20%) */
    z-index: 1;
    transform: translateY(-60px);
    background: white;
}

.production-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.production-item:last-child {
    border-bottom: 1px solid #e0e0e0;
    /* Last item gets bottom border */
}

/* Specific Column Reset */
.production-item .col-3,
.production-item .col-lg-2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.prod-number {
    font-size: 6rem;
    /* Standard large size */
    font-weight: 500;
    color: #e6e6e6;
    /* Visible Light Grey */
    line-height: 1;
    position: relative;
    /* Back to relative to occupy space */
    z-index: 0;
    transition: all 0.3s ease;
    user-select: none;
}

.prod-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1b;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
    /* Spacing on mobile */
}

@media (min-width: 992px) {
    .prod-title {
        padding-left: 0;
        /* Reset on desktop */
    }
}

.prod-desc {
    display: none;
    color: #666;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
    animation: fadeInSlide 0.4s ease forwards;
}

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

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

/* Active State */
.production-item.active {
    height: auto;
    background-color: white;
    padding: 3rem 0;
    /* More breathing room */
    margin-top: 2rem;
    /* Space from previous item */
    margin-bottom: 3rem;
    /* More space below */
}

.production-item.active .prod-number {
    color: #d71920;
    font-size: 6rem;
    /* Scale up when active */
}

.production-item.active .prod-desc {
    display: block;
}

/* Hover State */
.production-item:not(.active):hover .prod-number {
    color: #ccc;
}

/* Desktop sizing */
@media (min-width: 992px) {
    .production-item {
        height: 160px;
        margin-bottom: -50px;
        /* Keep desktop overlap */
    }

    .production-item.active {
        height: auto;
        padding: 3rem 0;
    }

    .prod-number {
        font-size: 8rem;
        /* Bigger on desktop */
    }

    .production-item.active .prod-number {
        font-size: 10rem;
        /* Huge when active */
    }
}

/* Rakamlarla Tosun Section */
.rakamlarla-tosun-section {
    color: #fff;
    min-height: 600px;
    position: relative;
}

.rakamlarla-bg-image {
    background-image: url('img/rakamlarla_tosun_01.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .rakamlarla-bg-image {
        background-image: linear-gradient(135deg, #d71920 0%, #a51218 50%, #7a0e12 100%) !important;
    }
}

.rakamlarla-tosun-section .stat-item {
    padding-bottom: 1.5rem;
}

.rakamlarla-tosun-section .stat-label {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
    border-bottom: 1px solid rgb(255, 255, 255);
    padding-bottom: 0.75rem;
}

.rakamlarla-tosun-section .stat-number-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;

}

.rakamlarla-tosun-section .stat-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    width: 200px;
    flex-shrink: 0;
}

.rakamlarla-tosun-section .stat-desc {
    font-size: 20px;
    line-height: 1.6;
    width: 300px;
    margin: 0;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .rakamlarla-tosun-section .stat-number {
        font-size: 5rem;
        width: 250px;
    }

    .rakamlarla-tosun-section .stat-label {
        font-size: 1.25rem;
    }


}

@media (max-width: 767px) {
    .rakamlarla-tosun-section .stat-label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1rem !important;
    }

    .rakamlarla-tosun-section .stat-number-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .rakamlarla-tosun-section .stat-number {
        font-size: 2.8rem !important;
        width: auto;
    }

    .rakamlarla-tosun-section .stat-desc {
        font-size: 0.95rem !important;
        width: auto;
    }
}

/* Partners Section */
.partners-section {
    color: #1d1d1b;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 2rem;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.partner-item:nth-child(4n) {
    border-right: none;
}

.partner-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.partner-item i {
    font-size: 1.5rem;
    color: #1d1d1b;
}

.partner-item .partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1b;
}

.partner-item:hover {
    transform: translateY(-2px);

}

.partner-item img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}


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

    .partner-item:nth-child(4n) {
        border-right: 1px solid #e0e0e0;
    }

    .partner-item:nth-child(2n) {
        border-right: none;
    }

    .partner-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #e0e0e0;
    }

    .partner-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* Contact Hero Section */
.contact-hero-section {
    height: 100vh;
    min-height: 600px;
}

.contact-hero-bg {
    background-image: url('img/iletisim_background_01.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-hero-overlay {
    z-index: 1;
}

.contact-hero-section h1 {
    font-size: 3.5rem;
}

@media (max-width: 991px) {
    .contact-hero-section {
        height: auto;
        min-height: 80vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .contact-hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Contact Info & Form Section */
.contact-info-section {
    color: #1d1d1bd6;
}

.contact-section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 17px;
    line-height: 1.8;
    width: 416px;
    color: #1d1d1bd6;
}

.contact-address-title {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
}

.contact-details p {
    font-size: 1rem;
    color: #1d1d1bd6;
}

.contact-details strong {
    font-weight: 600;
}

/* Social Icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon.instagram {
    background-color: #bc2525;
}

.social-icon.twitter {
    background-color: #bc2525;
}

.social-icon.facebook {
    background-color: #bc2525;
}

.social-icon.linkedin {
    background-color: #bc2525;
}

.social-icon.youtube {
    background-color: #bc2525;
}

.social-icon-link {
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}


.contact-input,
.contact-textarea {
    border: none;
    border-bottom: 2px solid #d0d0d0;
    border-radius: 0;
    padding: 1rem 0;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    border-bottom-color: #bc2525;
    box-shadow: none;
    outline: none;
}

.contact-textarea {
    resize: none;
}

.contact-submit-btn {
    background-color: #bc2525;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    width: 160px;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 37, 37, 0.3);
}

/* Map Notice */
.map-notice {
    font-size: 1.1rem;
    color: #1d1d1b;
}


@media (max-width: 991px) {
    .contact-section-title {
        font-size: 2rem;
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #bc2525;
    padding: 10.5rem 0;
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-section .breadcrumb-item,
.breadcrumb-section .breadcrumb-item a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
}

.breadcrumb-section .breadcrumb-item a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-section .breadcrumb-item a:hover {
    opacity: 0.8;
}

.breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #fff;
    padding: 0 0.5rem;
}

.breadcrumb-section .breadcrumb-item.active {
    color: #fff;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 5.5rem 0;
    }

    .breadcrumb-section .breadcrumb {
        flex-wrap: nowrap !important;
        overflow: hidden;
    }

    .breadcrumb-section .breadcrumb-item,
    .breadcrumb-section .breadcrumb-item a {
        font-size: 0.85rem;
        /* Further reduced for better fit */
        white-space: nowrap;
    }

    .breadcrumb-section .breadcrumb-item {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .breadcrumb-section .breadcrumb-item.active {
        flex: 1;
    }
}

/* FAQ Content Section */
.faq-content-section {
    color: #1d1d1b;
}


.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid #000000;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1b;
}

.faq-answer {
    font-size: 18px;
    line-height: 1.8;
    color: #1d1d1bd6;
    font-weight: 300;

    width: 860px;
    margin: 0;
}

.faq-load-more-btn {
    background-color: #bc2525;
    color: #fff;
    border: none;
    padding: 0.5rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.faq-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 37, 37, 0.3);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
        width: 100%;
    }
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);

    background-position: center center;
    background-repeat: no-repeat;
    background-size: 400px auto;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.4s ease-out;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-sidebar {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 2px solid #bc2525;
    background-color: #fff;
}

.mobile-menu-close {
    background: #f5f5f5;
    border: none;
    color: #1d1d1b;
    cursor: pointer;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 45px;
    height: 45px;
}

.mobile-menu-close:hover {
    background-color: #bc2525;
    color: #fff;
    transform: rotate(90deg);
}

.mobile-menu-close .material-icons {
    font-size: 28px;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav>ul>li {
    border-bottom: 1px solid #e8e8e8;
}

.mobile-menu-nav>ul>li:last-child {
    border-bottom: none;
}

.mobile-menu-nav>ul>li>a {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    color: #1d1d1b;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 4px solid transparent;
}

.mobile-menu-nav>ul>li>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background-color: rgba(188, 37, 37, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}




.mobile-menu-nav>ul>li>a .material-icons.arrow {
    margin-left: auto;
    font-size: 26px;
    transition: transform 0.3s ease;
    color: #bc2525;
}

.mobile-menu-nav>ul>li>a:hover {

    font-weight: bolder;
    padding-left: 2.5rem;
}

.mobile-menu-nav>ul>li>a.active {
    color: #bc2525;
    font-weight: 600;
    border-left: 4px solid #bc2525;
}

/* Submenu Styles */
.mobile-menu-nav .has-submenu>a.submenu-toggle.open .material-icons.arrow {
    transform: rotate(90deg);
}

.mobile-menu-nav .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f8f8f8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-nav .has-submenu.open .submenu {
    max-height: 500px;
}

.mobile-menu-nav .submenu li a {
    display: block;
    padding: 0.875rem 1.5rem 0.875rem 4.5rem;
    color: #1d1d1b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e8e8e8;
}

.mobile-menu-nav .submenu li:last-child a {
    border-bottom: none;
}

.mobile-menu-nav .submenu li a:hover {
    background-color: #ffffff;
    color: #bc2525;
    padding-left: 5rem;
}

/* Mobile Social Media Item */
.mobile-social-item {
    padding: 2rem 2rem;
    display: flex;
    justify-content: flex-start;
    border-bottom: none !important;
}

.mobile-social-item .mobile-social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.mobile-social-item .mobile-social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #bc2525;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(188, 37, 37, 0.2);
}

.mobile-social-item .mobile-social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(188, 37, 37, 0.4);
    background-color: #a01f1f;
}


/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 2rem;
    border-top: 2px solid #bc2525;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.mobile-social-links {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mobile-social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #bc2525;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(188, 37, 37, 0.2);
}

.mobile-social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(188, 37, 37, 0.4);
    background-color: #a01f1f;
}

.mobile-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .mobile-menu-overlay {
        display: none;
    }
}

/* Mission & Vision History Section */
.mission-vision-history-section {
    background-color: #fff;
    overflow: hidden;
}

.vision-box-history,
.mission-box-history {
    min-height: 780px;
    transition: all 0.3s ease;
}

.vision-box-history h2,
.mission-box-history h2 {
    font-size: 50px !important;
}

.vision-box-history p,
.mission-box-history p {
    font-size: 24px !important;
}

.mission-vision-history-side-text h3 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .mission-vision-history-side-text h3 {
        font-size: 2.5rem;
        padding-left: 0 !important;
    }

    .vision-box-history,
    .mission-box-history {
        min-height: auto;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
}

.mission-vision-image-wrapper {
    overflow: hidden;
    background-color: #fff;
}

.mission-vision-history-side-text {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    pointer-events: none;
    /* Metnin altındaki resme tıklanabilsin diye */
}

/* Kariyer Job List Section */
.job-list-section {
    background-color: #fff;
}

.job-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.filter-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.job-filter-input,
.job-filter-select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
}

.job-filter-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M1 4l5 5 5-5' stroke='%23000' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.filter-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.show-all-link {
    color: #1d1d1b;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    white-space: nowrap;
}

.job-item {
    padding: 4rem 0;
    border-bottom: 1px solid #000;
}

.job-item:last-child {
    border-bottom: none;
}

.job-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1d1d1b;
}

.job-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.job-date {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2rem;
}

.btn-basvur {
    background-color: #bc2525;
    color: #fff;
    border: none;
    padding: 0.6rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-basvur:hover {
    background-color: #a01f1f;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 768px) {
    .job-filter-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .job-title {
        font-size: 1.5rem;
    }
}

/* Job Detail & Application Form */
.job-detail-title {
    font-size: 2.2rem;
    font-weight: 400;
    color: #1d1d1b;
}

.job-meta-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.job-meta-list li {
    font-size: 1.1rem;
    color: #1d1d1b;
    margin-bottom: 0.5rem;
}

.job-meta-list li strong {
    font-weight: 700;
    width: 140px;
    display: inline-block;
}

.job-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.job-content-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.job-content-text p {
    margin-bottom: 0.5rem;
}

.form-line-input {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    padding: 1rem 0;
    font-size: 1.1rem;
    background: transparent;
    width: 100%;
    outline: none;
    margin-bottom: 2rem;
}

.form-line-input::placeholder {
    color: #1d1d1b;
    opacity: 0.8;
}

.btn-cv-ekle {
    background-color: #f0f0f0;
    color: #1d1d1b;
    border: none;
    padding: 0.6rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 1rem;
}

.btn-cv-ekle:hover {
    background-color: #e0e0e0;
}

.btn-basvur-red {
    background-color: #bc2525;
    color: #fff;
    border: none;
    padding: 0.6rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-basvur-red:hover {
    background-color: #a01f1f;
    color: #fff;
    transform: translateY(-2px);
}

.section-divider {
    border-bottom: 1px solid #000000;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

/* Medya Page Styles (Adapted from History) */
.medya-hero-section {
    height: 100vh;
    min-height: 600px;
}

.medya-hero-bg {
    background-image: url('img/medya_01.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.medya-hero-overlay {
    z-index: 1;
}

.medya-hero-section h1 {
    font-size: 3.5rem;
}

@media (max-width: 991px) {
    .medya-hero-section {
        height: auto;
        min-height: 80vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .medya-hero-section h1 {
        font-size: 2.5rem;
    }
}

.medya-news-section {
    height: 400vh;
    position: relative;
    background-color: #fff;
}

.media-content-section {
    color: #1d1d1b;
}

.media-vision-box,
.media-mission-box {
    min-height: 500px;
    transition: all 0.3s ease;
}

.media-vision-box h2,
.media-mission-box h2 {
    font-size: 50px !important;
}

.media-vision-box p,
.media-mission-box p {
    font-size: 24px !important;
}

/* Medya News Section (Duplicated from Milestones) */
.medya-news-section {
    height: 400vh;
    position: relative;
    background-color: #fff;
}

.news-grid {
    display: flex;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.news-column {
    flex: 0 0 150px;
    padding: 0 20px;
    position: relative;
    border-left: 1px solid #e0e0e0;
    height: 400px;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.news-column.active {
    flex: 0 0 600px;
    border-left: 2px solid #1d1d1b;
}

.news-column.active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 40px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid #1d1d1b;
    transform: translateX(-100%);
    z-index: 10;
}

.news-year-text {
    font-size: 8rem;
    font-weight: 500;
    line-height: 0.8;
    margin-top: 20px;
    margin-bottom: 40px;
    transition: all 0.6s ease;
    color: #f0f0f0;
}

.news-column.active .news-year-text {
    color: #bc2525;
}

.news-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1d1d1b;
    max-width: 450px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.news-column.active .news-desc {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .medya-news-section {
        height: auto !important;
        padding: 50px 0;
    }

    .news-grid {
        flex-direction: column !important;
        transform: none !important;
        gap: 40px;
        padding: 0 5%;
    }

    .news-column {
        flex: 0 0 100% !important;
        width: 100% !important;
        border-left: 2px solid #e0e0e0 !important;
        padding: 0 0 0 25px !important;
        height: auto !important;
    }

    .news-column.active {
        border-left: 2px solid #bc2525 !important;
    }

    .news-year-text {
        font-size: 3.5rem !important;
        color: #bc2525 !important;
        margin-bottom: 10px !important;
        line-height: 1 !important;
    }

    .news-desc {
        opacity: 1 !important;
        transform: none !important;
        display: block !important;
    }
}

/* Media Gallery Section (Based on Design) */
.media-gallery-section {
    padding: 60px 0;
    background-color: #fff;
}

.media-gallery-filters {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.media-gallery-filters li {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.media-gallery-filters li.active {
    color: #bc2525;
}

.media-gallery-filters li.separator {
    color: #e0e0e0;
    cursor: default;
}

.media-gallery-filters li:hover:not(.separator) {
    color: #bc2525;
}

.media-card {
    margin-bottom: 2rem;
}

.media-card-img-wrapper {
    aspect-ratio: 1 / 1;
    background-color: #e9e6e4;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.media-card:hover .media-card-img-wrapper {
    transform: translateY(-5px);
}

.media-card-title {
    font-size: 1.5em;
    font-weight: 300;
    color: #000;
    margin-bottom: 0.2rem;
}

.media-card-subtitle {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.media-sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.media-sidebar-list {
    list-style: none;
    padding: 0;
}

.media-sidebar-list li {
    margin-bottom: 0.8rem;
}

.media-sidebar-list a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.media-sidebar-list a:hover {
    color: #bc2525;
}

.btn-load-more {
    background-color: #bc2525;
    color: #fff;
    border: none;
    padding: 0.6rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
}

.btn-load-more:hover {
    background-color: #a01f1f;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .media-sidebar {
        margin-bottom: 3rem;
        border-bottom: 1px solid #eee;
        padding-bottom: 2rem;
    }

    .media-sidebar-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
    }

    .media-sidebar-list li {
        margin-bottom: 10px;
    }

    .media-gallery-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 5% 1.2rem 5%;
        margin-left: -5%;
        margin-right: -5%;
        gap: 1.5rem;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid #eee;
        margin-bottom: 2rem;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .media-gallery-filters::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .media-gallery-filters {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .media-gallery-filters li {
        white-space: nowrap;
        font-size: 0.95rem;
        position: relative;
    }

    .media-gallery-filters li.active::after {
        content: '';
        position: absolute;
        bottom: -1.2rem;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #bc2525;
    }
}

/* Custom Blog Masonry Exact Match */
.blog-filter-list-custom li {
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.blog-filter-list-custom li:hover {
    color: #d71920 !important;
}

.blog-card-custom {
    border: 1px solid #1a181861;
    /* Görseldeki ince gri çizgi */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-custom:hover {
    transform: translateY(-5px);
    /* Hafif gölge */
}

.blog-card-custom .title {
    font-size: 30px;
    font-weight: 400;
}

.blog-card-custom .desc {
    line-height: 1.6;
    font-weight: 300;
    font-size: 24px;
}

/* Force image heights for layout control */
.blog-card-custom .img-wrapper img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Middle column cards 30% taller */
.blog-card-custom.blog-card-tall .img-wrapper img {
    height: 350px;
    /* ~30-40% taller than 250px */
}

.btn-read-more {
    display: inline-block;
    background-color: #d71920;
    /* Tosun Kırmızı */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    /* Pill Shape */
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-read-more:hover {
    background-color: #b0141a;
    color: #fff;
}

@media (max-width: 991px) {
    .media-gallery-filters li.separator {
        display: none;
    }
}

/* Grid Layout (Left-to-Right Flow) */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.blog-card-wrapper {
    margin-bottom: 0;
    /* Gap handles this now */
}

/* Tablet & Desktop */
@media (min-width: 992px) {
    .masonry-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

/* Blog Filter Navigation */
.blog-filter-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-filter-nav li {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.blog-filter-nav li.active {
    color: #bc2525;
}

.blog-filter-nav li.separator {
    color: #e0e0e0;
    cursor: default;
    pointer-events: none;
}

.blog-filter-nav li:not(.separator):not(.search-wrapper):hover {
    color: #bc2525;
}

.blog-filter-nav .search-wrapper {
    position: relative;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.blog-search-input {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 8px 40px 8px 10px;
    font-size: 0.9rem;
    outline: none;
    width: 250px;
    transition: border-color 0.3s;
}

.blog-search-input:focus {
    border-bottom-color: #bc2525;
}

.blog-search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    right: 10px;
    color: #666;
    font-size: 1.3rem;
    pointer-events: none;
}

/* Blog Masonry Grid */
.blog-masonry-section {
    background-color: #fff;
}

.blog-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-flow: dense;
}

/* Normal Card */
.blog-masonry-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-masonry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Tall Card - spans 2 rows */
.blog-masonry-card.tall {
    grid-row: span 2;
}

/* Wide Card - spans 2 columns */
.blog-masonry-card.wide {
    grid-column: span 2;
}

/* Highlight Card - Red Background */
.blog-masonry-card.highlight {
    background-color: #bc2525;
    color: #fff;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-masonry-card.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(188, 37, 37, 0.3);
}

.blog-masonry-content-highlight {
    text-align: left;
}

.quote-large {
    font-size: 4rem;
    line-height: 1;
    font-family: serif;
    margin-bottom: 15px;
    opacity: 0.9;
}

.highlight-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Card Image */
.blog-masonry-image {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.blog-masonry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-masonry-card:hover .blog-masonry-image img {
    transform: scale(1.05);
}

/* Card Content */
.blog-masonry-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-masonry-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1d1d1b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-masonry-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-blog-more {
    display: inline-block;
    background-color: #bc2525;
    color: #fff;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.btn-blog-more:hover {
    background-color: #a01f1f;
    color: #fff;
    transform: translateX(5px);
}

/* Pagination */
.blog-pagination-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pagination-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.pagination-number:hover,
.pagination-number.active {
    color: #bc2525;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-filter-nav {
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .blog-filter-nav .search-wrapper {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .blog-search-input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-masonry-grid {
        grid-template-columns: 1fr;
    }

    .blog-masonry-card.wide,
    .blog-masonry-card.tall {
        grid-column: auto;
        grid-row: auto;
    }

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

    .highlight-title {
        font-size: 1.4rem;
    }
}

/* Blog Detay Rich Text - Iki Sutunlu Yapi */
.blog-rich-text-content {
    /* column-count: 2; */
    column-gap: 4rem;
    text-align: justify;
    line-height: 1.8;
    font-weight: 300;
    color: black;
    font-size: 20px;
}

@media (max-width: 991px) {
    .blog-rich-text-content {
        column-count: 1;
        column-gap: 0;
    }
}

/*  ========================================
    MEGA MENU STYLES
    ======================================== */

.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-22%);
    width: 115vw;
    /* max-width: 1725px; */
    max-height: 100vh;
    height: 100vh;
    overflow-y: auto;
    padding: 2.5rem 3.5rem;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    margin-top: 0;
}

.mega-menu-item:hover .mega-dropdown-menu {
    display: block;
}

.mega-product-card {
    padding: 1.25rem;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
    min-height: 150px;
    align-items: start;
}

.mega-product-card:hover {
    scale: 1.01;
}

.mega-product-card .product-image {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.mega-product-card .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mega-product-card .product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.mega-product-card .product-title {
    font-size: 1.05rem;
    line-height: 1.4;
    color: #1d1d1b;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.mega-product-card .product-specs {
    color: #000000;
    line-height: 1.7;
    font-size: 0.95rem;
}

.mega-product-card .product-specs.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 0.15rem;
}

.mega-product-card .product-specs li {
    padding: 2px 0;
}

.btn-close-mega {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    z-index: 10;
    padding: 0.5rem;
}

.btn-close-mega:hover {
    color: #d71920;
}

/* Responsive */
@media (max-width: 991px) {
    .mega-dropdown-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 70px);
        padding: 1.5rem 1rem;
    }

    .mega-product-card {
        padding: 0.75rem;
        min-height: auto;
    }

    .mega-product-card .product-image {
        width: 80px;
        height: 80px;
    }

    .mega-product-card .product-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .mega-product-card .product-specs {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {
    .mega-dropdown-menu {
        width: 90vw;
    }
}

/* Mega Menu - Clickable Specs */
.mega-product-card .product-specs li {
    margin-right: 0.5rem;
}

.mega-product-card .product-specs a {
    color: #6c757d;
    text-decoration: none;
    padding: 2px 8px;
    border-radius: 3px;
    transition: all 0.2s ease;
    display: inline-block;
}

.mega-product-card .product-specs a:hover {
    color: #d71920;
    background-color: #f8f9fa;
}

/* Feature Section Styles */
.feature-box {
    padding: 4rem 3rem !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Tepeden hizzala */
    align-items: flex-start;
    min-height: 400px;
    transition: all 0.4s ease;
    /* Yumuşak geçiş */
    cursor: default;
}

.feature-box:hover {
    transform: translateY(-10px);
    /* Yukarı kaydır */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    /* Gölge ekle */
    z-index: 2;
    /* Öne çıkar */
}

.feature-box:hover img {
    transform: scale(1.1);
    /* İkonu büyüt */
    transition: transform 0.4s ease;
}

/* İkon Alanını Sabitle */
.feature-box>div:first-child {
    min-height: 110px;
    /* Biraz arttırdım */
    display: flex;
    align-items: flex-end;
    /* İkonları alt çizgiye yasla */
    justify-content: flex-start;
    width: 100%;
}

.feature-box h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 400;
    /* fw-normal */
    margin-bottom: 1rem;
}

.feature-box h3 strong {
    font-weight: 700;
}

.feature-box p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Light Box Variant */
.feature-box-light {
    background-color: #f4f4f4;
}

.feature-box-light p {
    color: #6c757d;
    /* text-secondary equivalent */
}

/* Red Box Variant */
.feature-box-red {
    background-color: #d71920;
    color: white;
}

.feature-box-red p {
    color: rgba(255, 255, 255, 0.9);
}

/* Spesifik Köşe Yuvarlatmaları */
.feature-box-first {
    border-top-left-radius: 80px;
}

.feature-box-last {
    border-bottom-right-radius: 80px;
}

/* Mobilde köşe yuvarlatmalarını ve paddingleri düzenle */
@media (max-width: 991px) {
    .feature-box {
        min-height: auto;
        padding: 2rem !important;
        border-radius: 0 !important;
        /* Mobilde köşeleri düzelt */
    }

    .feature-box-first {
        border-top-left-radius: 30px !important;
        /* Mobilde biraz daha az */
    }

    .feature-box-last {
        border-bottom-right-radius: 30px !important;
    }
}

/* Technology Section Styles */
.technology-section h2 {
    font-size: 2.5rem;
    color: #000;
    line-height: 1.3;
}

.tech-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
}

/* Technology Carousel Indicators */
.carousel-indicators.tech-pagination button {
    width: 30px !important;
    height: 6px !important;
    background-color: #e5e5e5 !important;
    border-radius: 3px !important;
    border: none !important;
    margin: 0 4px !important;
    opacity: 1 !important;
    transition: background-color 0.3s ease;
}

.carousel-indicators.tech-pagination button.active {
    background-color: #d71920 !important;
    width: 30px !important;
    /* Genişlik aynı kalsın */
}

/* Video Section Styles */
.video-section {
    width: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    /* İçeriği dikey ortala */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Hafif karartma */
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.play-button {
    width: 80px;
    height: 60px;
    background-color: #ff0000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid white;
}

/* Container Swinging Animation (Sarkaç Hareketi) */
@keyframes swingContainer {
    0% {
        transform: rotate(1deg);
    }

    50% {
        transform: rotate(-1deg);
    }

    100% {
        transform: rotate(1deg);
    }
}

.global-container-img {
    transform-origin: top center;
    /* Zincirin asıldığı noktadan sallasın */
    animation: swingContainer 4s ease-in-out infinite;
}

@media (max-width: 991px) {
    .mission-vision-history-section .ps-header-align {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}